interface CfnNamespaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnNamespaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnNamespaceProps |
Java | software.amazon.awscdk.services.s3tables.CfnNamespaceProps |
Python | aws_cdk.aws_s3tables.CfnNamespaceProps |
TypeScript | aws-cdk-lib » aws_s3tables » CfnNamespaceProps |
Properties for defining a CfnNamespace.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3tables as s3tables } from 'aws-cdk-lib';
const cfnNamespaceProps: s3tables.CfnNamespaceProps = {
namespace: 'namespace',
tableBucketArn: 'tableBucketArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| namespace | string | The name of the namespace. |
| table | string | The Amazon Resource Name (ARN) of the table bucket to create the namespace in. |
namespace
Type:
string
The name of the namespace.
tableBucketArn
Type:
string
The Amazon Resource Name (ARN) of the table bucket to create the namespace in.

.NET
Go
Java
Python
TypeScript