Class NamespaceReference
A reference to a Namespace resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.S3Tables
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class NamespaceReference : INamespaceReference
Syntax (vb)
Public Class NamespaceReference Implements INamespaceReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.S3Tables;
var namespaceReference = new NamespaceReference {
Namespace = "namespace",
TableBucketArn = "tableBucketArn"
};
Synopsis
Constructors
| NamespaceReference() | A reference to a Namespace resource. |
Properties
| Namespace | The Namespace of the Namespace resource. |
| TableBucketArn | The TableBucketARN of the Namespace resource. |
Constructors
NamespaceReference()
A reference to a Namespace resource.
public NamespaceReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.S3Tables;
var namespaceReference = new NamespaceReference {
Namespace = "namespace",
TableBucketArn = "tableBucketArn"
};
Properties
Namespace
The Namespace of the Namespace resource.
public string Namespace { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
TableBucketArn
The TableBucketARN of the Namespace resource.
public string TableBucketArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated