Class EnvironmentReference
A reference to a Environment resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.FinSpace
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EnvironmentReference : IEnvironmentReferenceSyntax (vb)
Public Class EnvironmentReference Implements IEnvironmentReferenceRemarks
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
Remarks
ExampleMetadata: fixture=_generated
EnvironmentId
The EnvironmentId of the Environment resource.
public string EnvironmentId { get; set; }Property Value
Remarks
ExampleMetadata: fixture=_generated