ConfiguredTableReference

class aws_cdk.aws_cleanrooms.ConfiguredTableReference(*, configured_table_arn, configured_table_identifier)

Bases: object

A reference to a ConfiguredTable resource.

Parameters:
  • configured_table_arn (str) – The ARN of the ConfiguredTable resource.

  • configured_table_identifier (str) – The ConfiguredTableIdentifier of the ConfiguredTable 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_cleanrooms as cleanrooms

configured_table_reference = cleanrooms.ConfiguredTableReference(
    configured_table_arn="configuredTableArn",
    configured_table_identifier="configuredTableIdentifier"
)

Attributes

configured_table_arn

The ARN of the ConfiguredTable resource.

configured_table_identifier

The ConfiguredTableIdentifier of the ConfiguredTable resource.