Interface NamespaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NamespaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:18.635Z")
@Stability(Experimental)
public interface NamespaceProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Parameters for constructing a Namespace.
Example:
// Build a namespace
Namespace sampleNamespace = Namespace.Builder.create(scope, "ExampleNamespace")
.namespaceName("example-namespace-1")
.tableBucket(tableBucket)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forNamespacePropsstatic final classAn implementation forNamespaceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic NamespaceProps.Builderbuilder()(experimental) A name for the namespace.default RemovalPolicy(experimental) Policy to apply when the policy is removed from this stack.(experimental) The table bucket this namespace belongs to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNamespaceName
(experimental) A name for the namespace. -
getTableBucket
(experimental) The table bucket this namespace belongs to. -
getRemovalPolicy
(experimental) Policy to apply when the policy is removed from this stack.Default: RemovalPolicy.DESTROY
-
builder
- Returns:
- a
NamespaceProps.BuilderofNamespaceProps
-