interface CfnTableBucketPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTableBucketPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTableBucketPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTableBucketPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTableBucketPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnTableBucketPolicyMixinProps |
Properties for CfnTableBucketPolicyPropsMixin.
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/cfn-property-mixins';
declare const resourcePolicy: any;
const cfnTableBucketPolicyMixinProps: s3tables.CfnTableBucketPolicyMixinProps = {
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
(optional)
The bucket policy JSON for the table bucket.
tableBucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the table bucket.

.NET
Go
Java
Python
TypeScript