Interface CfnIdMappingTableMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingTableMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.899Z")
@Stability(Stable)
public interface CfnIdMappingTableMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIdMappingTablePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
CfnIdMappingTableMixinProps cfnIdMappingTableMixinProps = CfnIdMappingTableMixinProps.builder()
.description("description")
.inputReferenceConfig(IdMappingTableInputReferenceConfigProperty.builder()
.inputReferenceArn("inputReferenceArn")
.manageResourcePolicies(false)
.build())
.kmsKeyArn("kmsKeyArn")
.membershipIdentifier("membershipIdentifier")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdMappingTableMixinPropsstatic final classAn implementation forCfnIdMappingTableMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the ID mapping table.default ObjectThe input reference configuration for the ID mapping table.default StringThe Amazon Resource Name (ARN) of the AWS KMS key.default StringThe unique identifier of the membership resource for the ID mapping table.default StringgetName()The name of the ID mapping table.getTags()An optional label that you can assign to a resource when you create it.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the ID mapping table.- See Also:
-
getInputReferenceConfig
The input reference configuration for the ID mapping table.Returns union: either
IResolvableorCfnIdMappingTablePropsMixin.IdMappingTableInputReferenceConfigProperty- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the AWS KMS key.- See Also:
-
getMembershipIdentifier
The unique identifier of the membership resource for the ID mapping table.- See Also:
-
getName
The name of the ID mapping table.- See Also:
-
getTags
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 Also:
-
builder
-