Interface CfnIdNamespaceAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdNamespaceAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:32.755Z")
@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()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 namespace association.Returns union: either
IResolvableorCfnIdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfigProperty- 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.Returns union: either
IResolvableorCfnIdNamespaceAssociation.IdMappingConfigProperty- 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
-