CfnNamespaceProps
- class aws_cdk.aws_s3tables.CfnNamespaceProps(*, namespace, table_bucket_arn)
Bases:
object
Properties for defining a
CfnNamespace
.- Parameters:
namespace (
str
) – The name of the namespace.table_bucket_arn (
str
) – The Amazon Resource Name (ARN) of the specified table bucket.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.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 cfn_namespace_props = s3tables.CfnNamespaceProps( namespace="namespace", table_bucket_arn="tableBucketArn" )
Attributes
- namespace
The name of the namespace.
- table_bucket_arn
The Amazon Resource Name (ARN) of the specified table bucket.