Class AccessPoliciesStatus
- java.lang.Object
-
- com.amazonaws.services.elasticsearch.model.AccessPoliciesStatus
-
- All Implemented Interfaces:
Serializable,Cloneable
public class AccessPoliciesStatus extends Object implements Serializable, Cloneable
The configured access rules for the domain's document and search endpoints, and the current status of those rules.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AccessPoliciesStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccessPoliciesStatusclone()booleanequals(Object obj)StringgetOptions()The access policy configured for the Elasticsearch domain.OptionStatusgetStatus()The status of the access policy for the Elasticsearch domain.inthashCode()voidsetOptions(String options)The access policy configured for the Elasticsearch domain.voidsetStatus(OptionStatus status)The status of the access policy for the Elasticsearch domain.StringtoString()Returns a string representation of this object; useful for testing and debugging.AccessPoliciesStatuswithOptions(String options)The access policy configured for the Elasticsearch domain.AccessPoliciesStatuswithStatus(OptionStatus status)The status of the access policy for the Elasticsearch domain.
-
-
-
Method Detail
-
setOptions
public void setOptions(String options)
The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
- Parameters:
options- The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
-
getOptions
public String getOptions()
The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
- Returns:
- The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
-
withOptions
public AccessPoliciesStatus withOptions(String options)
The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.
- Parameters:
options- The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStatus
public void setStatus(OptionStatus status)
The status of the access policy for the Elasticsearch domain. See
OptionStatusfor the status information that's included.- Parameters:
status- The status of the access policy for the Elasticsearch domain. SeeOptionStatusfor the status information that's included.
-
getStatus
public OptionStatus getStatus()
The status of the access policy for the Elasticsearch domain. See
OptionStatusfor the status information that's included.- Returns:
- The status of the access policy for the Elasticsearch domain. See
OptionStatusfor the status information that's included.
-
withStatus
public AccessPoliciesStatus withStatus(OptionStatus status)
The status of the access policy for the Elasticsearch domain. See
OptionStatusfor the status information that's included.- Parameters:
status- The status of the access policy for the Elasticsearch domain. SeeOptionStatusfor the status information that's included.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public AccessPoliciesStatus clone()
-
-