interface CfnNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins.CfnNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3tables/mixins#CfnNamespaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3tables.mixins.CfnNamespaceMixinProps |
Python | aws_cdk.mixins_preview.aws_s3tables.mixins.CfnNamespaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3tables » mixins » 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 { mixins as s3tables_mixins } from '@aws-cdk/mixins-preview/aws-s3tables';
const cfnNamespaceMixinProps: s3tables_mixins.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