CfnIdMappingTableMixinProps
- class aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnIdMappingTableMixinProps(*, description=None, input_reference_config=None, kms_key_arn=None, membership_identifier=None, name=None, tags=None)
Bases:
objectProperties for CfnIdMappingTablePropsMixin.
- Parameters:
description (
Optional[str]) – The description of the ID mapping table.input_reference_config (
Union[IResolvable,IdMappingTableInputReferenceConfigProperty,Dict[str,Any],None]) – The input reference configuration for the ID mapping table.kms_key_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the AWS KMS key.membership_identifier (
Optional[str]) – The unique identifier of the membership resource for the ID mapping table.name (
Optional[str]) – The name of 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:
- 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_mapping_table_mixin_props = cleanrooms_mixins.CfnIdMappingTableMixinProps( description="description", input_reference_config=cleanrooms_mixins.CfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty( input_reference_arn="inputReferenceArn", manage_resource_policies=False ), kms_key_arn="kmsKeyArn", membership_identifier="membershipIdentifier", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the ID mapping table.
- input_reference_config
The input reference configuration for the ID mapping table.
- kms_key_arn
The Amazon Resource Name (ARN) of the AWS KMS key.
- membership_identifier
The unique identifier of the membership resource for the ID mapping table.
- name
The name of the ID mapping table.
- 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.