CfnIdNamespaceAssociationMixinProps
- class aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdNamespaceAssociationMixinProps(*, description=None, id_mapping_config=None, input_reference_config=None, membership_identifier=None, name=None, tags=None)
Bases:
objectProperties for CfnIdNamespaceAssociationPropsMixin.
- Parameters:
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.input_reference_config (
Union[IResolvable,IdNamespaceAssociationInputReferenceConfigProperty,Dict[str,Any],None]) – The input reference configuration for the ID namespace association.membership_identifier (
Optional[str]) – The unique identifier of the membership that contains the ID namespace association.name (
Optional[str]) – The name of this ID namespace association.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:
- 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 cfn_id_namespace_association_mixin_props = 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" )] )
Attributes
- description
The description of the ID namespace association.
- id_mapping_config
The configuration settings for the ID mapping table.
- input_reference_config
The input reference configuration for the ID namespace association.
- membership_identifier
The unique identifier of the membership that contains the ID namespace association.
- name
The name of this ID namespace association.
- 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.