CfnIdMappingTableProps

class aws_cdk.aws_cleanrooms.CfnIdMappingTableProps(*, input_reference_config, membership_identifier, name, description=None, kms_key_arn=None, tags=None)

Bases: object

Properties for defining a CfnIdMappingTable.

Parameters:
  • input_reference_config (Union[IResolvable, IdMappingTableInputReferenceConfigProperty, Dict[str, Any]]) – The input reference configuration for the ID mapping table.

  • membership_identifier (str) – The unique identifier of the membership resource for the ID mapping table.

  • name (str) – The name of the ID mapping table.

  • description (Optional[str]) – The description of the ID mapping table.

  • kms_key_arn (Optional[str]) – The Amazon Resource Name (ARN) of the AWS KMS key.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html

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

cfn_id_mapping_table_props = cleanrooms.CfnIdMappingTableProps(
    input_reference_config=cleanrooms.CfnIdMappingTable.IdMappingTableInputReferenceConfigProperty(
        input_reference_arn="inputReferenceArn",
        manage_resource_policies=False
    ),
    membership_identifier="membershipIdentifier",
    name="name",

    # the properties below are optional
    description="description",
    kms_key_arn="kmsKeyArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the ID mapping table.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-description

input_reference_config

The input reference configuration for the ID mapping table.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-inputreferenceconfig

kms_key_arn

The Amazon Resource Name (ARN) of the AWS KMS key.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-kmskeyarn

membership_identifier

The unique identifier of the membership resource for the ID mapping table.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-membershipidentifier

name

The name of the ID mapping table.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-name

tags

An optional label that you can assign to a resource when you create it.

Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idmappingtable.html#cfn-cleanrooms-idmappingtable-tags