interface TableReference
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DynamoDB.TableReference |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#TableReference |
![]() | software.amazon.awscdk.services.dynamodb.TableReference |
![]() | aws_cdk.aws_dynamodb.TableReference |
![]() | aws-cdk-lib » aws_dynamodb » TableReference |
A reference to a Table resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const tableReference: dynamodb.TableReference = {
tableArn: 'tableArn',
tableName: 'tableName',
};
Properties
Name | Type | Description |
---|---|---|
table | string | The ARN of the Table resource. |
table | string | The TableName of the Table resource. |
tableArn
Type:
string
The ARN of the Table resource.
tableName
Type:
string
The TableName of the Table resource.