GlobalTableReference

class aws_cdk.aws_dynamodb.GlobalTableReference(*, global_table_arn, table_name)

Bases: object

A reference to a GlobalTable resource.

Parameters:
  • global_table_arn (str) – The ARN of the GlobalTable resource.

  • table_name (str) – The TableName of the GlobalTable resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_dynamodb as dynamodb

global_table_reference = dynamodb.GlobalTableReference(
    global_table_arn="globalTableArn",
    table_name="tableName"
)

Attributes

global_table_arn

The ARN of the GlobalTable resource.

table_name

The TableName of the GlobalTable resource.