Class DescribeIndexFieldsResult
- java.lang.Object
-
- com.amazonaws.services.cloudsearchv2.model.DescribeIndexFieldsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeIndexFieldsResult extends Object implements Serializable, Cloneable
The result of a
DescribeIndexFields
request. Contains the index fields configured for the domain specified in the request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeIndexFieldsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeIndexFieldsResult
clone()
boolean
equals(Object obj)
List<IndexFieldStatus>
getIndexFields()
The index fields configured for the domain.int
hashCode()
void
setIndexFields(Collection<IndexFieldStatus> indexFields)
The index fields configured for the domain.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeIndexFieldsResult
withIndexFields(IndexFieldStatus... indexFields)
The index fields configured for the domain.DescribeIndexFieldsResult
withIndexFields(Collection<IndexFieldStatus> indexFields)
The index fields configured for the domain.
-
-
-
Method Detail
-
getIndexFields
public List<IndexFieldStatus> getIndexFields()
The index fields configured for the domain.
- Returns:
- The index fields configured for the domain.
-
setIndexFields
public void setIndexFields(Collection<IndexFieldStatus> indexFields)
The index fields configured for the domain.
- Parameters:
indexFields
- The index fields configured for the domain.
-
withIndexFields
public DescribeIndexFieldsResult withIndexFields(IndexFieldStatus... indexFields)
The index fields configured for the domain.
NOTE: This method appends the values to the existing list (if any). Use
setIndexFields(java.util.Collection)
orwithIndexFields(java.util.Collection)
if you want to override the existing values.- Parameters:
indexFields
- The index fields configured for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withIndexFields
public DescribeIndexFieldsResult withIndexFields(Collection<IndexFieldStatus> indexFields)
The index fields configured for the domain.
- Parameters:
indexFields
- The index fields configured for the domain.- 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 DescribeIndexFieldsResult clone()
-
-