CfnTableBucketPolicyMixinProps
- class aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTableBucketPolicyMixinProps(*, resource_policy=None, table_bucket_arn=None)
Bases:
objectProperties for CfnTableBucketPolicyPropsMixin.
- Parameters:
resource_policy (
Any) – The bucket policy JSON for the table bucket.table_bucket_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the table bucket.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_s3tables import mixins as s3tables_mixins # resource_policy: Any cfn_table_bucket_policy_mixin_props = s3tables_mixins.CfnTableBucketPolicyMixinProps( resource_policy=resource_policy, table_bucket_arn="tableBucketArn" )
Attributes
- resource_policy
The bucket policy JSON for the table bucket.
- table_bucket_arn
The Amazon Resource Name (ARN) of the table bucket.