interface ConfiguredTableAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.ConfiguredTableAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#ConfiguredTableAssociationReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.ConfiguredTableAssociationReference |
Python | aws_cdk.interfaces.aws_cleanrooms.ConfiguredTableAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » ConfiguredTableAssociationReference |
A reference to a ConfiguredTableAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as interfaces_cleanrooms } from 'aws-cdk-lib/interfaces';
const configuredTableAssociationReference: interfaces_cleanrooms.ConfiguredTableAssociationReference = {
configuredTableAssociationArn: 'configuredTableAssociationArn',
configuredTableAssociationIdentifier: 'configuredTableAssociationIdentifier',
membershipIdentifier: 'membershipIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| configured | string | The ARN of the ConfiguredTableAssociation resource. |
| configured | string | The ConfiguredTableAssociationIdentifier of the ConfiguredTableAssociation resource. |
| membership | string | The MembershipIdentifier of the ConfiguredTableAssociation resource. |
configuredTableAssociationArn
Type:
string
The ARN of the ConfiguredTableAssociation resource.
configuredTableAssociationIdentifier
Type:
string
The ConfiguredTableAssociationIdentifier of the ConfiguredTableAssociation resource.
membershipIdentifier
Type:
string
The MembershipIdentifier of the ConfiguredTableAssociation resource.

.NET
Go
Java
Python
TypeScript