CfnIdNamespaceAssociationPropsMixin
- class aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdNamespaceAssociationPropsMixin(props, *, strategy=None)
Bases:
MixinProvides information to create the ID namespace association.
- See:
- 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:
props (
Union[CfnIdNamespaceAssociationMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- 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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
IdMappingConfigProperty
- class CfnIdNamespaceAssociationPropsMixin.IdMappingConfigProperty(*, allow_use_as_dimension_column=None)
Bases:
objectThe 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 isFALSE.- 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 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.
IdNamespaceAssociationInputReferenceConfigProperty
- class CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferenceConfigProperty(*, input_reference_arn=None, manage_resource_policies=None)
Bases:
objectProvides 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]) – WhenTRUE, AWS Clean Rooms manages permissions for the ID namespace association resource. WhenFALSE, the resource owner manages permissions for the ID namespace association 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 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.
- 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.
IdNamespaceAssociationInputReferencePropertiesProperty
- class CfnIdNamespaceAssociationPropsMixin.IdNamespaceAssociationInputReferencePropertiesProperty(*, id_mapping_workflows_supported=None, id_namespace_type=None)
Bases:
objectProvides 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:
- 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.
- id_namespace_type
The ID namespace type for this ID namespace association.