Class UpdateGlobalSecondaryIndexAction
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.model.UpdateGlobalSecondaryIndexAction
-
- All Implemented Interfaces:
Serializable,Cloneable
public class UpdateGlobalSecondaryIndexAction extends Object implements Serializable, Cloneable
Represents the new provisioned throughput settings to be applied to a global secondary index.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateGlobalSecondaryIndexAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateGlobalSecondaryIndexActionclone()booleanequals(Object obj)StringgetIndexName()The name of the global secondary index to be updated.ProvisionedThroughputgetProvisionedThroughput()inthashCode()voidsetIndexName(String indexName)The name of the global secondary index to be updated.voidsetProvisionedThroughput(ProvisionedThroughput provisionedThroughput)StringtoString()Returns a string representation of this object; useful for testing and debugging.UpdateGlobalSecondaryIndexActionwithIndexName(String indexName)The name of the global secondary index to be updated.UpdateGlobalSecondaryIndexActionwithProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
-
-
-
Method Detail
-
setIndexName
public void setIndexName(String indexName)
The name of the global secondary index to be updated.
- Parameters:
indexName- The name of the global secondary index to be updated.
-
getIndexName
public String getIndexName()
The name of the global secondary index to be updated.
- Returns:
- The name of the global secondary index to be updated.
-
withIndexName
public UpdateGlobalSecondaryIndexAction withIndexName(String indexName)
The name of the global secondary index to be updated.
- Parameters:
indexName- The name of the global secondary index to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setProvisionedThroughput
public void setProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
- Parameters:
provisionedThroughput-
-
getProvisionedThroughput
public ProvisionedThroughput getProvisionedThroughput()
- Returns:
-
withProvisionedThroughput
public UpdateGlobalSecondaryIndexAction withProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
- Parameters:
provisionedThroughput-- 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 UpdateGlobalSecondaryIndexAction clone()
-
-