Class CfnIdNamespaceAssociation

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.cleanrooms.CfnIdNamespaceAssociation
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-15T10:24:55.798Z") @Stability(Stable) public class CfnIdNamespaceAssociation extends CfnResource implements IInspectable, ITaggableV2
Provides information to create the ID namespace association.

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.*;
 CfnIdNamespaceAssociation cfnIdNamespaceAssociation = CfnIdNamespaceAssociation.Builder.create(this, "MyCfnIdNamespaceAssociation")
         .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:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnIdNamespaceAssociation

      protected CfnIdNamespaceAssociation(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnIdNamespaceAssociation

      protected CfnIdNamespaceAssociation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnIdNamespaceAssociation

      @Stability(Stable) public CfnIdNamespaceAssociation(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnIdNamespaceAssociationProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the ID namespace association.
    • getAttrCollaborationArn

      @Stability(Stable) @NotNull public String getAttrCollaborationArn()
      The Amazon Resource Name (ARN) of the collaboration that contains this ID namespace association.
    • getAttrCollaborationIdentifier

      @Stability(Stable) @NotNull public String getAttrCollaborationIdentifier()
    • getAttrIdNamespaceAssociationIdentifier

      @Stability(Stable) @NotNull public String getAttrIdNamespaceAssociationIdentifier()
    • getAttrInputReferenceProperties

      @Stability(Stable) @NotNull public IResolvable getAttrInputReferenceProperties()
    • getAttrMembershipArn

      @Stability(Stable) @NotNull public String getAttrMembershipArn()
      The Amazon Resource Name (ARN) of the membership resource for this ID namespace association.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getInputReferenceConfig

      @Stability(Stable) @NotNull public Object getInputReferenceConfig()
      The input reference configuration for the ID namespace association.
    • setInputReferenceConfig

      @Stability(Stable) public void setInputReferenceConfig(@NotNull IResolvable value)
      The input reference configuration for the ID namespace association.
    • setInputReferenceConfig

      @Stability(Stable) public void setInputReferenceConfig(@NotNull CfnIdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfigProperty value)
      The input reference configuration for the ID namespace association.
    • getMembershipIdentifier

      @Stability(Stable) @NotNull public String getMembershipIdentifier()
      The unique identifier of the membership that contains the ID namespace association.
    • setMembershipIdentifier

      @Stability(Stable) public void setMembershipIdentifier(@NotNull String value)
      The unique identifier of the membership that contains the ID namespace association.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of this ID namespace association.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of this ID namespace association.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      The description of the ID namespace association.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The description of the ID namespace association.
    • getIdMappingConfig

      @Stability(Stable) @Nullable public Object getIdMappingConfig()
      The configuration settings for the ID mapping table.
    • setIdMappingConfig

      @Stability(Stable) public void setIdMappingConfig(@Nullable IResolvable value)
      The configuration settings for the ID mapping table.
    • setIdMappingConfig

      @Stability(Stable) public void setIdMappingConfig(@Nullable CfnIdNamespaceAssociation.IdMappingConfigProperty value)
      The configuration settings for the ID mapping table.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)