CfnTablePolicyMixinProps
- class aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTablePolicyMixinProps(*, resource_policy=None, table_arn=None)
Bases:
objectProperties for CfnTablePolicyPropsMixin.
- Parameters:
resource_policy (
Any) – TheJSONthat defines the policy.table_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the table.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html
- 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_policy_mixin_props = s3tables_mixins.CfnTablePolicyMixinProps( resource_policy=resource_policy, table_arn="tableArn" )
Attributes
- resource_policy
The
JSONthat defines the policy.
- table_arn
The Amazon Resource Name (ARN) of the table.