interface TablePolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.S3Tables.TablePolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awss3tables#TablePolicyReference |
Java | software.amazon.awscdk.interfaces.s3tables.TablePolicyReference |
Python | aws_cdk.interfaces.aws_s3tables.TablePolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_s3tables » TablePolicyReference |
A reference to a TablePolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as interfaces_aws_s3tables } from 'aws-cdk-lib/interfaces';
const tablePolicyReference: interfaces_aws_s3tables.TablePolicyReference = {
tableArn: 'tableArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | The TableARN of the TablePolicy resource. |
tableArn
Type:
string
The TableARN of the TablePolicy resource.

.NET
Go
Java
Python
TypeScript