CfnIdNamespaceAssociationProps

class aws_cdk.aws_cleanrooms.CfnIdNamespaceAssociationProps(*, input_reference_config, membership_identifier, name, description=None, id_mapping_config=None, tags=None)

Bases: object

Properties for defining a CfnIdNamespaceAssociation.

Parameters:
  • input_reference_config (Union[IResolvable, IdNamespaceAssociationInputReferenceConfigProperty, Dict[str, Any]]) – The input reference configuration for the ID namespace association.

  • membership_identifier (str) – The unique identifier of the membership that contains the ID namespace association.

  • name (str) – The name of this ID namespace association.

  • description (Optional[str]) – The description of the ID namespace association.

  • id_mapping_config (Union[IResolvable, IdMappingConfigProperty, Dict[str, Any], None]) – The configuration settings for the ID mapping table.

  • 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-idnamespaceassociation.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_namespace_association_props = cleanrooms.CfnIdNamespaceAssociationProps(
    input_reference_config=cleanrooms.CfnIdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfigProperty(
        input_reference_arn="inputReferenceArn",
        manage_resource_policies=False
    ),
    membership_identifier="membershipIdentifier",
    name="name",

    # the properties below are optional
    description="description",
    id_mapping_config=cleanrooms.CfnIdNamespaceAssociation.IdMappingConfigProperty(
        allow_use_as_dimension_column=False
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the ID namespace association.

See:

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

id_mapping_config

The configuration settings for the ID mapping table.

See:

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

input_reference_config

The input reference configuration for the ID namespace association.

See:

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

membership_identifier

The unique identifier of the membership that contains the ID namespace association.

See:

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

name

The name of this ID namespace association.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-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-idnamespaceassociation.html#cfn-cleanrooms-idnamespaceassociation-tags