Class CfnIntermediateTable

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, IIntermediateTableRef, IEnvironmentAware, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:50:58.792Z") @Stability(Stable) public class CfnIntermediateTable extends CfnResource implements IInspectable, IIntermediateTableRef, ITaggableV2
Represents an intermediate table that stores cached query results within 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.*;
 CfnIntermediateTable cfnIntermediateTable = CfnIntermediateTable.Builder.create(this, "MyCfnIntermediateTable")
         .membershipIdentifier("membershipIdentifier")
         .name("name")
         .populationAnalysisConfiguration(PopulationAnalysisConfigurationProperty.builder()
                 .sqlParameters(PopulationAnalysisSqlParametersProperty.builder()
                         .analysisTemplateArn("analysisTemplateArn")
                         .queryString("queryString")
                         .build())
                 .build())
         // the properties below are optional
         .analysisRules(List.of(IntermediateTableAnalysisRuleProperty.builder()
                 .policy(IntermediateTableAnalysisRulePolicyProperty.builder()
                         .v1(IntermediateTableAnalysisRulePolicyV1Property.builder()
                                 .custom(IntermediateTableAnalysisRuleCustomProperty.builder()
                                         .allowedAnalyses(List.of("allowedAnalyses"))
                                         // the properties below are optional
                                         .additionalAnalyses("additionalAnalyses")
                                         .allowedAnalysisProviders(List.of("allowedAnalysisProviders"))
                                         .allowedResultReceivers(List.of("allowedResultReceivers"))
                                         .differentialPrivacy(DifferentialPrivacyProperty.builder()
                                                 .columns(List.of(DifferentialPrivacyColumnProperty.builder()
                                                         .name("name")
                                                         .build()))
                                                 .build())
                                         .disallowedOutputColumns(List.of("disallowedOutputColumns"))
                                         .build())
                                 .build())
                         .build())
                 .type("type")
                 .build()))
         .description("description")
         .kmsKeyArn("kmsKeyArn")
         .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

    • CfnIntermediateTable

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

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

      @Stability(Stable) public CfnIntermediateTable(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnIntermediateTableProps props)
      Create a new AWS::CleanRooms::IntermediateTable.

      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

    • arnForIntermediateTable

      @Stability(Stable) @NotNull public static String arnForIntermediateTable(@NotNull IIntermediateTableRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnIntermediateTable

      @Stability(Stable) @NotNull public static Boolean isCfnIntermediateTable(@NotNull Object x)
      Checks whether the given object is a CfnIntermediateTable.

      Parameters:
      x - This parameter is required.
    • 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()
    • getAttrCollaborationArn

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

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

      @Stability(Stable) @NotNull public String getAttrIntermediateTableIdentifier()
    • getAttrMembershipArn

      @Stability(Stable) @NotNull public String getAttrMembershipArn()
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
    • 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
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getIntermediateTableRef

      @Stability(Stable) @NotNull public IntermediateTableReference getIntermediateTableRef()
      A reference to a IntermediateTable resource.
      Specified by:
      getIntermediateTableRef in interface IIntermediateTableRef
    • getMembershipIdentifier

      @Stability(Stable) @NotNull public String getMembershipIdentifier()
    • setMembershipIdentifier

      @Stability(Stable) public void setMembershipIdentifier(@NotNull String value)
    • getName

      @Stability(Stable) @NotNull public String getName()
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
    • getPopulationAnalysisConfiguration

      @Stability(Stable) @NotNull public Object getPopulationAnalysisConfiguration()
    • setPopulationAnalysisConfiguration

      @Stability(Stable) public void setPopulationAnalysisConfiguration(@NotNull IResolvable value)
    • setPopulationAnalysisConfiguration

      @Stability(Stable) public void setPopulationAnalysisConfiguration(@NotNull CfnIntermediateTable.PopulationAnalysisConfigurationProperty value)
    • getAnalysisRules

      @Stability(Stable) @Nullable public Object getAnalysisRules()
      Returns union: either IResolvable or Listinvalid input: '<'either IResolvable or CfnIntermediateTable.IntermediateTableAnalysisRuleProperty>
    • setAnalysisRules

      @Stability(Stable) public void setAnalysisRules(@Nullable IResolvable value)
    • setAnalysisRules

      @Stability(Stable) public void setAnalysisRules(@Nullable List<Object> value)
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
    • getKmsKeyArn

      @Stability(Stable) @Nullable public String getKmsKeyArn()
    • setKmsKeyArn

      @Stability(Stable) public void setKmsKeyArn(@Nullable String value)
    • getTags

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

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