interface NamespaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.S3Tables.NamespaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awss3tables#NamespaceReference |
Java | software.amazon.awscdk.interfaces.s3tables.NamespaceReference |
Python | aws_cdk.interfaces.aws_s3tables.NamespaceReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_s3tables } from 'aws-cdk-lib/interfaces';
const namespaceReference: interfaces_aws_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