interface GlobalTableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DynamoDB.GlobalTableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdynamodb#GlobalTableReference |
Java | software.amazon.awscdk.interfaces.dynamodb.GlobalTableReference |
Python | aws_cdk.interfaces.aws_dynamodb.GlobalTableReference |
TypeScript | aws-cdk-lib » interfaces » aws_dynamodb » GlobalTableReference |
A reference to a GlobalTable resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as interfaces_aws_dynamodb } from 'aws-cdk-lib/interfaces';
const globalTableReference: interfaces_aws_dynamodb.GlobalTableReference = {
globalTableArn: 'globalTableArn',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | The ARN of the GlobalTable resource. |
| table | string | The TableName of the GlobalTable resource. |
globalTableArn
Type:
string
The ARN of the GlobalTable resource.
tableName
Type:
string
The TableName of the GlobalTable resource.

.NET
Go
Java
Python
TypeScript