Class DeleteGlobalSecondaryIndexAction
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.model.DeleteGlobalSecondaryIndexAction
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DeleteGlobalSecondaryIndexAction extends Object implements Serializable, Cloneable
Represents a global secondary index to be deleted from an existing table.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteGlobalSecondaryIndexAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteGlobalSecondaryIndexAction
clone()
boolean
equals(Object obj)
String
getIndexName()
The name of the global secondary index to be deleted.int
hashCode()
void
setIndexName(String indexName)
The name of the global secondary index to be deleted.String
toString()
Returns a string representation of this object; useful for testing and debugging.DeleteGlobalSecondaryIndexAction
withIndexName(String indexName)
The name of the global secondary index to be deleted.
-
-
-
Method Detail
-
setIndexName
public void setIndexName(String indexName)
The name of the global secondary index to be deleted.
- Parameters:
indexName
- The name of the global secondary index to be deleted.
-
getIndexName
public String getIndexName()
The name of the global secondary index to be deleted.
- Returns:
- The name of the global secondary index to be deleted.
-
withIndexName
public DeleteGlobalSecondaryIndexAction withIndexName(String indexName)
The name of the global secondary index to be deleted.
- Parameters:
indexName
- The name of the global secondary index to be deleted.- 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 DeleteGlobalSecondaryIndexAction clone()
-
-