Show / Hide Table of Contents

Class EnvironmentReference

A reference to a Environment resource.

Inheritance
object
EnvironmentReference
Implements
IEnvironmentReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.FinSpace
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EnvironmentReference : IEnvironmentReference
Syntax (vb)
Public Class EnvironmentReference Implements IEnvironmentReference
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.AWS.FinSpace;

            var environmentReference = new EnvironmentReference {
                EnvironmentArn = "environmentArn",
                EnvironmentId = "environmentId"
            };

Synopsis

Constructors

EnvironmentReference()

A reference to a Environment resource.

Properties

EnvironmentArn

The ARN of the Environment resource.

EnvironmentId

The EnvironmentId of the Environment resource.

Constructors

EnvironmentReference()

A reference to a Environment resource.

public EnvironmentReference()
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.AWS.FinSpace;

            var environmentReference = new EnvironmentReference {
                EnvironmentArn = "environmentArn",
                EnvironmentId = "environmentId"
            };

Properties

EnvironmentArn

The ARN of the Environment resource.

public string EnvironmentArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

EnvironmentId

The EnvironmentId of the Environment resource.

public string EnvironmentId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IEnvironmentReference
Back to top Generated by DocFX