interface ConfiguredTableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.ConfiguredTableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#ConfiguredTableReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.ConfiguredTableReference |
Python | aws_cdk.interfaces.aws_cleanrooms.ConfiguredTableReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » ConfiguredTableReference |
A reference to a ConfiguredTable 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_aws_cleanrooms } from 'aws-cdk-lib/interfaces';
const configuredTableReference: interfaces_aws_cleanrooms.ConfiguredTableReference = {
configuredTableArn: 'configuredTableArn',
configuredTableIdentifier: 'configuredTableIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| configured | string | The ARN of the ConfiguredTable resource. |
| configured | string | The ConfiguredTableIdentifier of the ConfiguredTable resource. |
configuredTableArn
Type:
string
The ARN of the ConfiguredTable resource.
configuredTableIdentifier
Type:
string
The ConfiguredTableIdentifier of the ConfiguredTable resource.

.NET
Go
Java
Python
TypeScript