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:
IResource
,INamespace
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-08-06T18:14:48.675Z")
@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.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.s3tables.alpha.INamespace
INamespace.Jsii$Default, INamespace.Jsii$Proxy
Nested 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
ConstructorsModifierConstructorDescriptionprotected
Namespace
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
Namespace
(software.amazon.jsii.JsiiObjectRef objRef) Namespace
(software.constructs.Construct scope, String id, NamespaceProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic INamespace
fromNamespaceAttributes
(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 void
validateNamespaceName
(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, isResource
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.constructs.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getEnv, getStack
Methods 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:
getNamespaceName
in interfaceINamespace
-
getTableBucket
(experimental) The table bucket which this namespace belongs to.- Specified by:
getTableBucket
in interfaceINamespace
-