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: