NamespaceAttributes

class aws_cdk.aws_s3tables_alpha.NamespaceAttributes(*, namespace_name, table_bucket)

Bases: object

(experimental) Attributes for importing an existing namespace.

Parameters:
  • namespace_name (str) – (experimental) The name of the namespace.

  • table_bucket (ITableBucket) – (experimental) The table bucket this namespace belongs to.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_s3tables_alpha as s3tables_alpha

# table_bucket: s3tables_alpha.TableBucket

namespace_attributes = s3tables_alpha.NamespaceAttributes(
    namespace_name="namespaceName",
    table_bucket=table_bucket
)

Attributes

namespace_name

(experimental) The name of the namespace.

Stability:

experimental

table_bucket

(experimental) The table bucket this namespace belongs to.

Stability:

experimental