@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-02T20:25:33.227Z") @Deprecated public class GlobalTable extends Construct
Example:
import software.amazon.awscdk.services.dynamodb.AttributeType; import software.amazon.awscdk.services.dynamodb.global.GlobalTable; import software.amazon.awscdk.core.App; App app = new App(); GlobalTable.Builder.create(app, "globdynamodb") .partitionKey(Attribute.builder().name("hashKey").type(AttributeType.STRING).build()) .tableName("GlobalTable") .regions(List.of("us-east-1", "us-east-2", "us-west-2")) .build(); app.synth();
Modifier and Type | Class and Description |
---|---|
static class |
GlobalTable.Builder
Deprecated.
|
IConstruct.Jsii$Default, IConstruct.Jsii$Proxy
Modifier | Constructor and Description |
---|---|
|
GlobalTable(Construct scope,
java.lang.String id,
GlobalTableProps props)
Deprecated.
|
protected |
GlobalTable(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
Deprecated.
|
protected |
GlobalTable(software.amazon.jsii.JsiiObjectRef objRef)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Table> |
getRegionalTables()
Deprecated.
|
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
protected GlobalTable(software.amazon.jsii.JsiiObjectRef objRef)
protected GlobalTable(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Deprecated public GlobalTable(Construct scope, java.lang.String id, GlobalTableProps props)
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.@Deprecated public java.util.List<Table> getRegionalTables()