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 AccessPoliciesStatus
clone()
boolean
equals(Object obj)
String
getOptions()
The access policy configured for the Elasticsearch domain.OptionStatus
getStatus()
The status of the access policy for the Elasticsearch domain.int
hashCode()
void
setOptions(String options)
The access policy configured for the Elasticsearch domain.void
setStatus(OptionStatus status)
The status of the access policy for the Elasticsearch domain.String
toString()
Returns a string representation of this object; useful for testing and debugging.AccessPoliciesStatus
withOptions(String options)
The access policy configured for the Elasticsearch domain.AccessPoliciesStatus
withStatus(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
OptionStatus
for the status information that's included.- Parameters:
status
- The status of the access policy for the Elasticsearch domain. SeeOptionStatus
for the status information that's included.
-
getStatus
public OptionStatus getStatus()
The status of the access policy for the Elasticsearch domain. See
OptionStatus
for the status information that's included.- Returns:
- The status of the access policy for the Elasticsearch domain. See
OptionStatus
for the status information that's included.
-
withStatus
public AccessPoliciesStatus withStatus(OptionStatus status)
The status of the access policy for the Elasticsearch domain. See
OptionStatus
for the status information that's included.- Parameters:
status
- The status of the access policy for the Elasticsearch domain. SeeOptionStatus
for 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public AccessPoliciesStatus clone()
-
-