Interface CfnIdMappingTableProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingTableProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:16.060Z")
@Stability(Stable)
public interface CfnIdMappingTableProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIdMappingTable.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cleanrooms.*;
CfnIdMappingTableProps cfnIdMappingTableProps = CfnIdMappingTableProps.builder()
.inputReferenceConfig(IdMappingTableInputReferenceConfigProperty.builder()
.inputReferenceArn("inputReferenceArn")
.manageResourcePolicies(false)
.build())
.membershipIdentifier("membershipIdentifier")
.name("name")
// the properties below are optional
.description("description")
.kmsKeyArn("kmsKeyArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdMappingTablePropsstatic final classAn implementation forCfnIdMappingTableProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the ID mapping table.The input reference configuration for the ID mapping table.default StringThe Amazon Resource Name (ARN) of the AWS KMS key.The unique identifier of the membership resource for the ID mapping table.getName()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
-
getInputReferenceConfig
The input reference configuration for the ID mapping table.Returns union: either
IResolvableorCfnIdMappingTable.IdMappingTableInputReferenceConfigProperty- 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:
-
getDescription
The description of the ID mapping table.- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the AWS KMS key.- 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
- Returns:
- a
CfnIdMappingTableProps.BuilderofCfnIdMappingTableProps
-