interface CfnTableBucketPolicyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTableBucketPolicyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTableBucketPolicyProps |
Java | software.amazon.awscdk.services.s3tables.CfnTableBucketPolicyProps |
Python | aws_cdk.aws_s3tables.CfnTableBucketPolicyProps |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTableBucketPolicyProps |
Properties for defining a CfnTableBucketPolicy.
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 cfnTableBucketPolicyProps: s3tables.CfnTableBucketPolicyProps = {
resourcePolicy: resourcePolicy,
tableBucketArn: 'tableBucketArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | any | The bucket policy JSON for the table bucket. |
| table | string | The Amazon Resource Name (ARN) of the table bucket. |
resourcePolicy
Type:
any
The bucket policy JSON for the table bucket.
tableBucketArn
Type:
string
The Amazon Resource Name (ARN) of the table bucket.

.NET
Go
Java
Python
TypeScript