Show / Hide Table of Contents

Class NamespaceReference

A reference to a Namespace resource.

Inheritance
object
NamespaceReference
Implements
INamespaceReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

TableBucketArn

The TableBucketARN of the Namespace resource.

public string TableBucketArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

INamespaceReference
Back to top Generated by DocFX