CfnTablePolicyProps
- class aws_cdk.aws_s3tables.CfnTablePolicyProps(*, resource_policy, table_arn)
Bases:
object
Properties for defining a
CfnTablePolicy
.- Parameters:
resource_policy (
Any
)table_arn (
str
) – The Amazon Resource Name (ARN) of the specified 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 import aws_s3tables as s3tables # resource_policy: Any cfn_table_policy_props = s3tables.CfnTablePolicyProps( resource_policy=resource_policy, table_arn="tableArn" )
Attributes
- resource_policy
-
- Type:
see
- table_arn
The Amazon Resource Name (ARN) of the specified table.