Interface CfnIdNamespaceAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespaceAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-25T14:21:11.355Z")
@Stability(Stable)
public interface CfnIdNamespaceAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIdNamespaceAssociation
.
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.*; CfnIdNamespaceAssociationProps cfnIdNamespaceAssociationProps = CfnIdNamespaceAssociationProps.builder() .inputReferenceConfig(IdNamespaceAssociationInputReferenceConfigProperty.builder() .inputReferenceArn("inputReferenceArn") .manageResourcePolicies(false) .build()) .membershipIdentifier("membershipIdentifier") .name("name") // the properties below are optional .description("description") .idMappingConfig(IdMappingConfigProperty.builder() .allowUseAsDimensionColumn(false) .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdNamespaceAssociationProps
static final class
An implementation forCfnIdNamespaceAssociationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the ID namespace association.default Object
The configuration settings for the ID mapping table.The input reference configuration for the ID namespace association.The unique identifier of the membership that contains the ID namespace association.getName()
The name of this ID namespace association.getTags()
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputReferenceConfig
The input reference configuration for the ID namespace association.- See Also:
-
getMembershipIdentifier
The unique identifier of the membership that contains the ID namespace association.- See Also:
-
getName
The name of this ID namespace association.- See Also:
-
getDescription
The description of the ID namespace association.- See Also:
-
getIdMappingConfig
The configuration settings for the ID mapping table.- See Also:
-
getTags
- See Also:
-
builder
-