interface CfnTableBucketPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins.CfnTableBucketPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3tables/mixins#CfnTableBucketPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3tables.mixins.CfnTableBucketPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTableBucketPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3tables » mixins » 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 { mixins as s3tables_mixins } from '@aws-cdk/mixins-preview/aws-s3tables';
declare const resourcePolicy: any;
const cfnTableBucketPolicyMixinProps: s3tables_mixins.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