interface CfnTablePolicyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTablePolicyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTablePolicyProps |
Java | software.amazon.awscdk.services.s3tables.CfnTablePolicyProps |
Python | aws_cdk.aws_s3tables.CfnTablePolicyProps |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTablePolicyProps |
Properties for defining a CfnTablePolicy.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as s3tables } from 'aws-cdk-lib';
declare const resourcePolicy: any;
const cfnTablePolicyProps: s3tables.CfnTablePolicyProps = {
resourcePolicy: resourcePolicy,
tableArn: 'tableArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | any | The JSON that defines the policy. |
| table | string | The Amazon Resource Name (ARN) of the table. |
resourcePolicy
Type:
any
The JSON that defines the policy.
tableArn
Type:
string
The Amazon Resource Name (ARN) of the table.

.NET
Go
Java
Python
TypeScript