TableAttributes

class aws_cdk.aws_s3tables_alpha.TableAttributes(*, table_arn, table_name)

Bases: object

(experimental) A reference to a table outside this stack.

The tableName, region, and account can be provided explicitly or will be inferred from the tableArn

Parameters:
  • table_arn (str) – (experimental) The table’s ARN.

  • table_name (str) – (experimental) Name of this table.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

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

table_attributes = s3tables_alpha.TableAttributes(
    table_arn="tableArn",
    table_name="tableName"
)

Attributes

table_arn

(experimental) The table’s ARN.

Stability:

experimental

table_name

(experimental) Name of this table.

Stability:

experimental