Class DefineIndexFieldResult
- java.lang.Object
-
- com.amazonaws.services.cloudsearchv2.model.DefineIndexFieldResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DefineIndexFieldResult extends Object implements Serializable, Cloneable
The result of a
DefineIndexField
request. Contains the status of the newly-configured index field.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefineIndexFieldResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefineIndexFieldResult
clone()
boolean
equals(Object obj)
IndexFieldStatus
getIndexField()
int
hashCode()
void
setIndexField(IndexFieldStatus indexField)
String
toString()
Returns a string representation of this object; useful for testing and debugging.DefineIndexFieldResult
withIndexField(IndexFieldStatus indexField)
-
-
-
Method Detail
-
setIndexField
public void setIndexField(IndexFieldStatus indexField)
- Parameters:
indexField
-
-
getIndexField
public IndexFieldStatus getIndexField()
- Returns:
-
withIndexField
public DefineIndexFieldResult withIndexField(IndexFieldStatus indexField)
- Parameters:
indexField
-- 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 DefineIndexFieldResult clone()
-
-