interface NamespaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_s3tables.NamespaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#NamespaceReference |
Java | software.amazon.awscdk.services.s3tables.NamespaceReference |
Python | aws_cdk.aws_s3tables.NamespaceReference |
TypeScript | aws-cdk-lib » aws_s3tables » NamespaceReference |
A reference to a Namespace resource.
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 namespaceReference: s3tables.NamespaceReference = {
namespace: 'namespace',
tableBucketArn: 'tableBucketArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| namespace | string | The Namespace of the Namespace resource. |
| table | string | The TableBucketARN of the Namespace resource. |
namespace
Type:
string
The Namespace of the Namespace resource.
tableBucketArn
Type:
string
The TableBucketARN of the Namespace resource.

.NET
Go
Java
Python
TypeScript