Interface CfnIdMappingTableProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingTableProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-17T19:20:24.549Z")
@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 class
A builder forCfnIdMappingTableProps
static final class
An implementation forCfnIdMappingTableProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the ID mapping table.The input reference configuration for the ID mapping table.default String
The 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.- 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.Builder
ofCfnIdMappingTableProps
-