Interface CfnConfiguredTableAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTableAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:31.503Z")
@Stability(Stable)
public interface CfnConfiguredTableAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfiguredTableAssociation.
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.*;
CfnConfiguredTableAssociationProps cfnConfiguredTableAssociationProps = CfnConfiguredTableAssociationProps.builder()
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfiguredTableAssociationPropsstatic final classAn implementation forCfnConfiguredTableAssociationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAn analysis rule for a configured table association.A unique identifier for the configured table to be associated to.default StringA description of the configured table association.The unique ID for the membership this configured table association belongs to.getName()The name of the configured table association, in lowercase.The service will assume this role to access catalog metadata and query the table.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
-
getConfiguredTableIdentifier
A unique identifier for the configured table to be associated to.Currently accepts a configured table ID.
- See Also:
-
getMembershipIdentifier
The unique ID for the membership this configured table association belongs to.- See Also:
-
getName
The name of the configured table association, in lowercase.The table is identified by this name when running protected queries against the underlying data.
- See Also:
-
getRoleArn
The service will assume this role to access catalog metadata and query the table.- See Also:
-
getConfiguredTableAssociationAnalysisRules
An analysis rule for a configured table association.This analysis rule specifies how data from the table can be used within its associated collaboration. In the console, the
ConfiguredTableAssociationAnalysisRuleis referred to as the collaboration analysis rule .Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnConfiguredTableAssociation.ConfiguredTableAssociationAnalysisRuleProperty>- See Also:
-
getDescription
A description of the configured table association.- 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
-