public class CreateGlobalTableRequest extends AmazonWebServiceRequest implements java.io.Serializable
Creates a global table from an existing table. A global table creates a replication relationship between two or more DynamoDB tables with the same table name in the provided regions.
If you want to add a new replica table to a global table, each of the following conditions must be true:
The table must have the same primary key as all of the other replicas.
The table must have the same name as all of the other replicas.
The table must have DynamoDB Streams enabled, with the stream containing both the new and the old images of the item.
None of the replica tables in the global table can contain any data.
If global secondary indexes are specified, then the following conditions must also be met:
The global secondary indexes must have the same name.
The global secondary indexes must have the same hash key and sort key (if present).
Write capacity settings should be set consistently across your replica tables and secondary indexes. DynamoDB strongly recommends enabling auto scaling to manage the write capacity settings for all of your global tables replicas and indexes.
If you prefer to manage write capacity settings manually, you should provision equal replicated write capacity units to your replica tables. You should also provision equal replicated write capacity units to matching secondary indexes across your global table.
Constructor and Description |
---|
CreateGlobalTableRequest() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getGlobalTableName()
The global table name.
|
java.util.List<Replica> |
getReplicationGroup()
The regions where the global table needs to be created.
|
int |
hashCode() |
void |
setGlobalTableName(java.lang.String globalTableName)
The global table name.
|
void |
setReplicationGroup(java.util.Collection<Replica> replicationGroup)
The regions where the global table needs to be created.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateGlobalTableRequest |
withGlobalTableName(java.lang.String globalTableName)
The global table name.
|
CreateGlobalTableRequest |
withReplicationGroup(java.util.Collection<Replica> replicationGroup)
The regions where the global table needs to be created.
|
CreateGlobalTableRequest |
withReplicationGroup(Replica... replicationGroup)
The regions where the global table needs to be created.
|
clone, getCloneRoot, getCloneSource, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollector
public java.lang.String getGlobalTableName()
The global table name.
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
The global table name.
public void setGlobalTableName(java.lang.String globalTableName)
The global table name.
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
globalTableName
- The global table name.
public CreateGlobalTableRequest withGlobalTableName(java.lang.String globalTableName)
The global table name.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
globalTableName
- The global table name.
public java.util.List<Replica> getReplicationGroup()
The regions where the global table needs to be created.
The regions where the global table needs to be created.
public void setReplicationGroup(java.util.Collection<Replica> replicationGroup)
The regions where the global table needs to be created.
replicationGroup
- The regions where the global table needs to be created.
public CreateGlobalTableRequest withReplicationGroup(Replica... replicationGroup)
The regions where the global table needs to be created.
Returns a reference to this object so that method calls can be chained together.
replicationGroup
- The regions where the global table needs to be created.
public CreateGlobalTableRequest withReplicationGroup(java.util.Collection<Replica> replicationGroup)
The regions where the global table needs to be created.
Returns a reference to this object so that method calls can be chained together.
replicationGroup
- The regions where the global table needs to be created.
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.