Class CfnConfiguredTableAssociation

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.CfnConfiguredTableAssociation
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-05T03:43:39.754Z") @Stability(Stable) public class CfnConfiguredTableAssociation extends CfnResource implements IInspectable, ITaggableV2
Creates a configured table association.

A configured table association links a configured table with a collaboration.

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.*;
 CfnConfiguredTableAssociation cfnConfiguredTableAssociation = CfnConfiguredTableAssociation.Builder.create(this, "MyCfnConfiguredTableAssociation")
         .configuredTableIdentifier("configuredTableIdentifier")
         .membershipIdentifier("membershipIdentifier")
         .name("name")
         .roleArn("roleArn")
         // the properties below are optional
         .configuredTableAssociationAnalysisRules(List.of(ConfiguredTableAssociationAnalysisRuleProperty.builder()
                 .policy(ConfiguredTableAssociationAnalysisRulePolicyProperty.builder()
                         .v1(ConfiguredTableAssociationAnalysisRulePolicyV1Property.builder()
                                 .aggregation(ConfiguredTableAssociationAnalysisRuleAggregationProperty.builder()
                                         .allowedAdditionalAnalyses(List.of("allowedAdditionalAnalyses"))
                                         .allowedResultReceivers(List.of("allowedResultReceivers"))
                                         .build())
                                 .custom(ConfiguredTableAssociationAnalysisRuleCustomProperty.builder()
                                         .allowedAdditionalAnalyses(List.of("allowedAdditionalAnalyses"))
                                         .allowedResultReceivers(List.of("allowedResultReceivers"))
                                         .build())
                                 .list(ConfiguredTableAssociationAnalysisRuleListProperty.builder()
                                         .allowedAdditionalAnalyses(List.of("allowedAdditionalAnalyses"))
                                         .allowedResultReceivers(List.of("allowedResultReceivers"))
                                         .build())
                                 .build())
                         .build())
                 .type("type")
                 .build()))
         .description("description")
         .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

    • CfnConfiguredTableAssociation

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

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

      @Stability(Stable) public CfnConfiguredTableAssociation(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnConfiguredTableAssociationProps 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()
      Returns the Amazon Resource Name (ARN) of the specified configured table association.

      Example: arn:aws:cleanrooms:us-east-1:111122223333:configuredtable/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333

    • getAttrConfiguredTableAssociationIdentifier

      @Stability(Stable) @NotNull public String getAttrConfiguredTableAssociationIdentifier()
      Returns the unique identifier of the specified configured table association.

      Example: a1b2c3d4-5678-90ab-cdef-EXAMPLE33333

    • 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
    • getConfiguredTableIdentifier

      @Stability(Stable) @NotNull public String getConfiguredTableIdentifier()
      A unique identifier for the configured table to be associated to.
    • setConfiguredTableIdentifier

      @Stability(Stable) public void setConfiguredTableIdentifier(@NotNull String value)
      A unique identifier for the configured table to be associated to.
    • getMembershipIdentifier

      @Stability(Stable) @NotNull public String getMembershipIdentifier()
      The unique ID for the membership this configured table association belongs to.
    • setMembershipIdentifier

      @Stability(Stable) public void setMembershipIdentifier(@NotNull String value)
      The unique ID for the membership this configured table association belongs to.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the configured table association, in lowercase.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the configured table association, in lowercase.
    • getRoleArn

      @Stability(Stable) @NotNull public String getRoleArn()
      The service will assume this role to access catalog metadata and query the table.
    • setRoleArn

      @Stability(Stable) public void setRoleArn(@NotNull String value)
      The service will assume this role to access catalog metadata and query the table.
    • getConfiguredTableAssociationAnalysisRules

      @Stability(Stable) @Nullable public Object getConfiguredTableAssociationAnalysisRules()
      An analysis rule for a configured table association.
    • setConfiguredTableAssociationAnalysisRules

      @Stability(Stable) public void setConfiguredTableAssociationAnalysisRules(@Nullable IResolvable value)
      An analysis rule for a configured table association.
    • setConfiguredTableAssociationAnalysisRules

      @Stability(Stable) public void setConfiguredTableAssociationAnalysisRules(@Nullable List<Object> value)
      An analysis rule for a configured table association.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the configured table association.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the configured table association.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      An optional label that you can assign to a resource when you create it.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      An optional label that you can assign to a resource when you create it.