Interface CfnIdNamespaceAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespaceAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:05.322Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdNamespaceAssociationPropsstatic final classAn implementation forCfnIdNamespaceAssociationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the ID namespace association.default ObjectThe 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
-