com.amazonaws.services.dynamodbv2.model
Class UpdateGlobalSecondaryIndexAction

java.lang.Object
  extended by com.amazonaws.services.dynamodbv2.model.UpdateGlobalSecondaryIndexAction
All Implemented Interfaces:
Serializable

public class UpdateGlobalSecondaryIndexAction
extends Object
implements Serializable

Represents the new provisioned throughput settings to be applied to a global secondary index.

See Also:
Serialized Form

Constructor Summary
UpdateGlobalSecondaryIndexAction()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getIndexName()
          The name of the global secondary index to be updated.
 ProvisionedThroughput getProvisionedThroughput()
          Represents the provisioned throughput settings for a specified table or index.
 int hashCode()
           
 void setIndexName(String indexName)
          The name of the global secondary index to be updated.
 void setProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
          Represents the provisioned throughput settings for a specified table or index.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 UpdateGlobalSecondaryIndexAction withIndexName(String indexName)
          The name of the global secondary index to be updated.
 UpdateGlobalSecondaryIndexAction withProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
          Represents the provisioned throughput settings for a specified table or index.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UpdateGlobalSecondaryIndexAction

public UpdateGlobalSecondaryIndexAction()
Method Detail

getIndexName

public String getIndexName()
The name of the global secondary index to be updated.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Returns:
The name of the global secondary index to be updated.

setIndexName

public void setIndexName(String indexName)
The name of the global secondary index to be updated.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Parameters:
indexName - 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.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Parameters:
indexName - The name of the global secondary index to be updated.
Returns:
A reference to this updated object so that method calls can be chained together.

getProvisionedThroughput

public ProvisionedThroughput getProvisionedThroughput()
Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

Returns:
Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.


setProvisionedThroughput

public void setProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

Parameters:
provisionedThroughput - Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.


withProvisionedThroughput

public UpdateGlobalSecondaryIndexAction withProvisionedThroughput(ProvisionedThroughput provisionedThroughput)
Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

Returns a reference to this object so that method calls can be chained together.

Parameters:
provisionedThroughput - Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

Returns:
A reference to this updated 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 class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2016. All rights reserved.