Show / Hide Table of Contents

Class CfnJobDefinition.EnvironmentProperty

The Environment property type specifies environment variables to use in a job definition.

Inheritance
object
CfnJobDefinition.EnvironmentProperty
Implements
CfnJobDefinition.IEnvironmentProperty
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.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobDefinition.EnvironmentProperty : CfnJobDefinition.IEnvironmentProperty
Syntax (vb)
Public Class CfnJobDefinition.EnvironmentProperty Implements CfnJobDefinition.IEnvironmentProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-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.Batch;

             var environmentProperty = new EnvironmentProperty {
                 Name = "name",
                 Value = "value"
             };

Synopsis

Constructors

EnvironmentProperty()

The Environment property type specifies environment variables to use in a job definition.

Properties

Name

The name of the environment variable.

Value

The value of the environment variable.

Constructors

EnvironmentProperty()

The Environment property type specifies environment variables to use in a job definition.

public EnvironmentProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-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.Batch;

             var environmentProperty = new EnvironmentProperty {
                 Name = "name",
                 Value = "value"
             };

Properties

Name

The name of the environment variable.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-environment.html#cfn-batch-jobdefinition-environment-name

Value

The value of the environment variable.

public string? Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-environment.html#cfn-batch-jobdefinition-environment-value

Implements

CfnJobDefinition.IEnvironmentProperty
Back to top Generated by DocFX