NamespaceReference
- class aws_cdk.interfaces.aws_s3tables.NamespaceReference(*, namespace, table_bucket_arn)
Bases:
objectA 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.interfaces import aws_s3tables as interfaces_aws_s3tables namespace_reference = interfaces_aws_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.