interface IntermediateTableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CleanRooms.IntermediateTableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscleanrooms#IntermediateTableReference |
Java | software.amazon.awscdk.interfaces.cleanrooms.IntermediateTableReference |
Python | aws_cdk.interfaces.aws_cleanrooms.IntermediateTableReference |
TypeScript | aws-cdk-lib » interfaces » aws_cleanrooms » IntermediateTableReference |
A reference to a IntermediateTable 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 intermediateTableReference: interfaces_cleanrooms.IntermediateTableReference = {
intermediateTableArn: 'intermediateTableArn',
intermediateTableIdentifier: 'intermediateTableIdentifier',
membershipIdentifier: 'membershipIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| intermediate | string | The ARN of the IntermediateTable resource. |
| intermediate | string | The IntermediateTableIdentifier of the IntermediateTable resource. |
| membership | string | The MembershipIdentifier of the IntermediateTable resource. |
intermediateTableArn
Type:
string
The ARN of the IntermediateTable resource.
intermediateTableIdentifier
Type:
string
The IntermediateTableIdentifier of the IntermediateTable resource.
membershipIdentifier
Type:
string
The MembershipIdentifier of the IntermediateTable resource.

.NET
Go
Java
Python
TypeScript