Show / Hide Table of Contents

Interface IEnvironment

Models an AWS execution environment, for use within the CDK toolkit.

Namespace: Amazon.CDK.CXAPI
Assembly: Amazon.CDK.CXAPI.dll
Syntax (csharp)
public interface IEnvironment
Syntax (vb)
Public Interface IEnvironment
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.CXAPI;

Environment environment = new Environment {
    Account = "account",
    Name = "name",
    Region = "region"
};

Synopsis

Properties

Account

The AWS account this environment deploys into.

Name

The arbitrary name of this environment (user-set, or at least user-meaningful).

Region

The AWS region name where this environment deploys into.

Properties

Account

The AWS account this environment deploys into.

string Account { get; }
Property Value

System.String

Name

The arbitrary name of this environment (user-set, or at least user-meaningful).

string Name { get; }
Property Value

System.String

Region

The AWS region name where this environment deploys into.

string Region { get; }
Property Value

System.String

Back to top Generated by DocFX