aws-cdk-lib.aws_cleanrooms.CfnConfiguredTableAssociationProps

interface CfnConfiguredTableAssociationProps

LanguageType name
.NETAmazon.CDK.aws_cleanrooms.CfnConfiguredTableAssociationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTableAssociationProps
Javaservices.cleanrooms.CfnConfiguredTableAssociationProps
Pythonaws_cdk.aws_cleanrooms.CfnConfiguredTableAssociationProps
TypeScript aws-cdk-lib » aws_cleanrooms » CfnConfiguredTableAssociationProps

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 { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const cfnConfiguredTableAssociationProps: cleanrooms.CfnConfiguredTableAssociationProps = {
  configuredTableIdentifier: 'configuredTableIdentifier',
  membershipIdentifier: 'membershipIdentifier',
  name: 'name',
  roleArn: 'roleArn',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
configuredTableIdentifierstringA unique identifier for the configured table to be associated to.
membershipIdentifierstringThe unique ID for the membership this configured table association belongs to.
namestringThe name of the configured table association, in lowercase.
roleArnstringThe service will assume this role to access catalog metadata and query the table.
description?stringA description of the configured table association.
tags?CfnTag[]An optional label that you can assign to a resource when you create it.

configuredTableIdentifier

Type: string

A unique identifier for the configured table to be associated to.

Currently accepts a configured table ID.


membershipIdentifier

Type: string

The unique ID for the membership this configured table association belongs to.


name

Type: string

The name of the configured table association, in lowercase.

The table is identified by this name when running protected queries against the underlying data.


roleArn

Type: string

The service will assume this role to access catalog metadata and query the table.


description?

Type: string (optional)

A description of the configured table association.


tags?

Type: CfnTag[] (optional)

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.