CfnIdNamespaceAssociationPropsMixin

class aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdNamespaceAssociationPropsMixin(props, *, strategy=None)

Bases: Mixin

Provides information to create the ID namespace association.

See:

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

CloudformationResource:

AWS::CleanRooms::IdNamespaceAssociation

Mixin:

true

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.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_cleanrooms import mixins as cleanrooms_mixins

cfn_id_namespace_association_props_mixin = cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin(cleanrooms_mixins.CfnIdNamespaceAssociationMixinProps(
    description="description",
    id_mapping_config=cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin.IdMappingConfigProperty(
        allow_use_as_dimension_column=False
    ),
    input_reference_config=cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty(
        input_reference_arn="inputReferenceArn",
        manage_resource_policies=False
    ),
    membership_identifier="membershipIdentifier",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::CleanRooms::IdNamespaceAssociation.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['description', 'idMappingConfig', 'inputReferenceConfig', 'membershipIdentifier', 'name', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

IdMappingConfigProperty

class CfnIdNamespaceAssociationPropsMixin.IdMappingConfigProperty(*, allow_use_as_dimension_column=None)

Bases: object

The configuration settings for the ID mapping table.

Parameters:

allow_use_as_dimension_column (Union[bool, IResolvable, None]) – An indicator as to whether you can use your column as a dimension column in the ID mapping table ( TRUE ) or not ( FALSE ). Default is FALSE .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idmappingconfig.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.mixins_preview.aws_cleanrooms import mixins as cleanrooms_mixins

id_mapping_config_property = cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin.IdMappingConfigProperty(
    allow_use_as_dimension_column=False
)

Attributes

allow_use_as_dimension_column

An indicator as to whether you can use your column as a dimension column in the ID mapping table ( TRUE ) or not ( FALSE ).

Default is FALSE .

See:

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

IdNamespaceAssociationInputReferenceConfigProperty

class CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty(*, input_reference_arn=None, manage_resource_policies=None)

Bases: object

Provides the information for the ID namespace association input reference configuration.

Parameters:
  • input_reference_arn (Optional[str]) – The Amazon Resource Name (ARN) of the AWS Entity Resolution resource that is being associated to the collaboration. Valid resource ARNs are from the ID namespaces that you own.

  • manage_resource_policies (Union[bool, IResolvable, None]) – When TRUE , AWS Clean Rooms manages permissions for the ID namespace association resource. When FALSE , the resource owner manages permissions for the ID namespace association resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.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.mixins_preview.aws_cleanrooms import mixins as cleanrooms_mixins

id_namespace_association_input_reference_config_property = cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty(
    input_reference_arn="inputReferenceArn",
    manage_resource_policies=False
)

Attributes

input_reference_arn

The Amazon Resource Name (ARN) of the AWS Entity Resolution resource that is being associated to the collaboration.

Valid resource ARNs are from the ID namespaces that you own.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig-inputreferencearn

manage_resource_policies

When TRUE , AWS Clean Rooms manages permissions for the ID namespace association resource.

When FALSE , the resource owner manages permissions for the ID namespace association resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceconfig-manageresourcepolicies

IdNamespaceAssociationInputReferencePropertiesProperty

class CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferencePropertiesProperty(*, id_mapping_workflows_supported=None, id_namespace_type=None)

Bases: object

Provides the information for the ID namespace association input reference properties.

Parameters:
  • id_mapping_workflows_supported (Union[Sequence[Any], IResolvable, None]) – Defines how ID mapping workflows are supported for this ID namespace association.

  • id_namespace_type (Optional[str]) – The ID namespace type for this ID namespace association.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.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.mixins_preview.aws_cleanrooms import mixins as cleanrooms_mixins

# id_mapping_workflows_supported: Any

id_namespace_association_input_reference_properties_property = cleanrooms_mixins.CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferencePropertiesProperty(
    id_mapping_workflows_supported=[id_mapping_workflows_supported],
    id_namespace_type="idNamespaceType"
)

Attributes

id_mapping_workflows_supported

Defines how ID mapping workflows are supported for this ID namespace association.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties-idmappingworkflowssupported

id_namespace_type

The ID namespace type for this ID namespace association.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties.html#cfn-cleanrooms-idnamespaceassociation-idnamespaceassociationinputreferenceproperties-idnamespacetype