Show / Hide Table of Contents

Class Environment

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

Inheritance
System.Object
Environment
Implements
IEnvironment
Namespace: Amazon.CDK.CXAPI
Assembly: Amazon.CDK.CXAPI.dll
Syntax (csharp)
public class Environment : Object, IEnvironment
Syntax (vb)
Public Class Environment
    Inherits Object
    Implements 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;

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

Synopsis

Constructors

Environment()

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.

Constructors

Environment()

public Environment()

Properties

Account

The AWS account this environment deploys into.

public string Account { get; set; }
Property Value

System.String

Name

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

public string Name { get; set; }
Property Value

System.String

Region

The AWS region name where this environment deploys into.

public string Region { get; set; }
Property Value

System.String

Implements

IEnvironment
Back to top Generated by DocFX