Show / Hide Table of Contents

Class CfnEnvironmentProps

Properties for defining a CfnEnvironment.

Inheritance
System.Object
CfnEnvironmentProps
Implements
ICfnEnvironmentProps
Namespace: Amazon.CDK.AWS.RefactorSpaces
Assembly: Amazon.CDK.AWS.RefactorSpaces.dll
Syntax (csharp)
public class CfnEnvironmentProps : Object, ICfnEnvironmentProps
Syntax (vb)
Public Class CfnEnvironmentProps
    Inherits Object
    Implements ICfnEnvironmentProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html

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.RefactorSpaces;

var cfnEnvironmentProps = new CfnEnvironmentProps {
    Name = "name",
    NetworkFabricType = "networkFabricType",

    // the properties below are optional
    Description = "description",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Constructors

CfnEnvironmentProps()

Properties

Description

A description of the environment.

Name

The name of the environment.

NetworkFabricType

The network fabric type of the environment.

Tags

The tags assigned to the environment.

Constructors

CfnEnvironmentProps()

public CfnEnvironmentProps()

Properties

Description

A description of the environment.

public string Description { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-description

Name

The name of the environment.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-name

NetworkFabricType

The network fabric type of the environment.

public string NetworkFabricType { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-networkfabrictype

Tags

The tags assigned to the environment.

public ICfnTag[] Tags { get; set; }
Property Value

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-tags

Implements

ICfnEnvironmentProps
Back to top Generated by DocFX