interface CfnNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnNamespaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnNamespaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnNamespaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnNamespaceMixinProps |
Properties for CfnNamespacePropsMixin.
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/cfn-property-mixins';
const cfnNamespaceMixinProps: s3tables.CfnNamespaceMixinProps = {
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
(optional)
The name of the namespace.
tableBucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the table bucket to create the namespace in.

.NET
Go
Java
Python
TypeScript