CfnConfiguredTableAssociationMixinProps
- class aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTableAssociationMixinProps(*, configured_table_association_analysis_rules=None, configured_table_identifier=None, description=None, membership_identifier=None, name=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnConfiguredTableAssociationPropsMixin.
- Parameters:
configured_table_association_analysis_rules (
Union[IResolvable,Sequence[Union[IResolvable,ConfiguredTableAssociationAnalysisRuleProperty,Dict[str,Any]]],None]) – 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, theConfiguredTableAssociationAnalysisRuleis referred to as the collaboration analysis rule .configured_table_identifier (
Optional[str]) – A unique identifier for the configured table to be associated to. Currently accepts a configured table ID.description (
Optional[str]) – A description of the configured table association.membership_identifier (
Optional[str]) – The unique ID for the membership this configured table association belongs to.name (
Optional[str]) – The name of the configured table association, in lowercase. The table is identified by this name when running protected queries against the underlying data.role_arn (
Optional[str]) – The service will assume this role to access catalog metadata and query the table.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – 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:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_cleanrooms import mixins as cleanrooms_mixins cfn_configured_table_association_mixin_props = cleanrooms_mixins.CfnConfiguredTableAssociationMixinProps( configured_table_association_analysis_rules=[cleanrooms_mixins.CfnConfiguredTableAssociationPropsMixin.ConfiguredTableAssociationAnalysisRuleProperty( policy=cleanrooms_mixins.CfnConfiguredTableAssociationPropsMixin.ConfiguredTableAssociationAnalysisRulePolicyProperty( v1=cleanrooms_mixins.CfnConfiguredTableAssociationPropsMixin.ConfiguredTableAssociationAnalysisRulePolicyV1Property( aggregation=cleanrooms_mixins.CfnConfiguredTableAssociationPropsMixin.ConfiguredTableAssociationAnalysisRuleAggregationProperty( allowed_additional_analyses=["allowedAdditionalAnalyses"], allowed_result_receivers=["allowedResultReceivers"] ), custom=cleanrooms_mixins.CfnConfiguredTableAssociationPropsMixin.ConfiguredTableAssociationAnalysisRuleCustomProperty( allowed_additional_analyses=["allowedAdditionalAnalyses"], allowed_result_receivers=["allowedResultReceivers"] ), list=cleanrooms_mixins.CfnConfiguredTableAssociationPropsMixin.ConfiguredTableAssociationAnalysisRuleListProperty( allowed_additional_analyses=["allowedAdditionalAnalyses"], allowed_result_receivers=["allowedResultReceivers"] ) ) ), type="type" )], configured_table_identifier="configuredTableIdentifier", description="description", membership_identifier="membershipIdentifier", name="name", role_arn="roleArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- configured_table_association_analysis_rules
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 .
- configured_table_identifier
A unique identifier for the configured table to be associated to.
Currently accepts a configured table ID.
- description
A description of the configured table association.
- membership_identifier
The unique ID for the membership this configured table association belongs to.
- name
The name of the configured table association, in lowercase.
The table is identified by this name when running protected queries against the underlying data.
- role_arn
The service will assume this role to access catalog metadata and query the table.
- tags
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.