IntermediateTableReference

class aws_cdk.interfaces.aws_cleanrooms.IntermediateTableReference(*, intermediate_table_arn, intermediate_table_identifier, membership_identifier)

Bases: object

A reference to a IntermediateTable resource.

Parameters:
  • intermediate_table_arn (str) – The ARN of the IntermediateTable resource.

  • intermediate_table_identifier (str) – The IntermediateTableIdentifier of the IntermediateTable resource.

  • membership_identifier (str) – The MembershipIdentifier of the IntermediateTable 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.interfaces import aws_cleanrooms as interfaces_cleanrooms

intermediate_table_reference = interfaces_cleanrooms.IntermediateTableReference(
    intermediate_table_arn="intermediateTableArn",
    intermediate_table_identifier="intermediateTableIdentifier",
    membership_identifier="membershipIdentifier"
)

Attributes

intermediate_table_arn

The ARN of the IntermediateTable resource.

intermediate_table_identifier

The IntermediateTableIdentifier of the IntermediateTable resource.

membership_identifier

The MembershipIdentifier of the IntermediateTable resource.