interface NamespaceAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.S3Tables.Alpha.NamespaceAttributes |
![]() | software.amazon.awscdk.services.s3tables.alpha.NamespaceAttributes |
![]() | aws_cdk.aws_s3tables_alpha.NamespaceAttributes |
![]() | @aws-cdk/aws-s3tables-alpha » NamespaceAttributes |
Attributes for importing an existing namespace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as s3tables_alpha from '@aws-cdk/aws-s3tables-alpha';
declare const tableBucket: s3tables_alpha.TableBucket;
const namespaceAttributes: s3tables_alpha.NamespaceAttributes = {
namespaceName: 'namespaceName',
tableBucket: tableBucket,
};
Properties
Name | Type | Description |
---|---|---|
namespace | string | The name of the namespace. |
table | ITable | The table bucket this namespace belongs to. |
namespaceName
Type:
string
The name of the namespace.
tableBucket
Type:
ITable
The table bucket this namespace belongs to.