Class Namespace
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.s3tables.alpha.Namespace
- All Implemented Interfaces:
IEnvironmentAware,IResource,INamespace,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:18.634Z")
@Stability(Experimental)
public class Namespace
extends Resource
implements INamespace
(experimental) An S3 Tables Namespace with helpers.
A namespace is a logical container for tables within a table bucket.
Example:
// Build a namespace
Namespace sampleNamespace = Namespace.Builder.create(scope, "ExampleNamespace")
.namespaceName("example-namespace-1")
.tableBucket(tableBucket)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forNamespace.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.s3tables.alpha.INamespace
INamespace.Jsii$Default, INamespace.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String(experimental) Uniquely identifies this class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedNamespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedNamespace(software.amazon.jsii.JsiiObjectRef objRef) Namespace(software.constructs.Construct scope, String id, NamespaceProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic INamespacefromNamespaceAttributes(software.constructs.Construct scope, String id, NamespaceAttributes attrs) (experimental) Import an existing namespace from its attributes.(experimental) The name of this namespace.(experimental) The table bucket which this namespace belongs to.static voidvalidateNamespaceName(String namespaceName) (experimental) See https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html.Methods inherited from class software.amazon.awscdk.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResourceMethods inherited from class software.constructs.Construct
getNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
PROPERTY_INJECTION_ID
(experimental) Uniquely identifies this class.
-
-
Constructor Details
-
Namespace
protected Namespace(software.amazon.jsii.JsiiObjectRef objRef) -
Namespace
protected Namespace(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
Namespace
@Stability(Experimental) public Namespace(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull NamespaceProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-
-
Method Details
-
fromNamespaceAttributes
@Stability(Experimental) @NotNull public static INamespace fromNamespaceAttributes(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull NamespaceAttributes attrs) (experimental) Import an existing namespace from its attributes.- Parameters:
scope- This parameter is required.id- This parameter is required.attrs- This parameter is required.
-
validateNamespaceName
(experimental) See https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html.- Parameters:
namespaceName- Name of the namespace. This parameter is required.
-
getNamespaceName
(experimental) The name of this namespace.- Specified by:
getNamespaceNamein interfaceINamespace
-
getTableBucket
(experimental) The table bucket which this namespace belongs to.- Specified by:
getTableBucketin interfaceINamespace
-