NamespaceReference
- class aws_cdk.aws_s3tables.NamespaceReference(*, namespace, table_bucket_arn)
Bases:
object
A reference to a Namespace resource.
- Parameters:
namespace (
str
) – The Namespace of the Namespace resource.table_bucket_arn (
str
) – The TableBucketARN of the Namespace resource.
- 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 namespace_reference = s3tables.NamespaceReference( namespace="namespace", table_bucket_arn="tableBucketArn" )
Attributes
- namespace
The Namespace of the Namespace resource.
- table_bucket_arn
The TableBucketARN of the Namespace resource.