Show / Hide Table of Contents

Class CfnJobDefinition.EksContainerEnvironmentVariableProperty

An environment variable.

Inheritance
object
CfnJobDefinition.EksContainerEnvironmentVariableProperty
Implements
CfnJobDefinition.IEksContainerEnvironmentVariableProperty
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.EksContainerEnvironmentVariableProperty : CfnJobDefinition.IEksContainerEnvironmentVariableProperty
Syntax (vb)
Public Class CfnJobDefinition.EksContainerEnvironmentVariableProperty Implements CfnJobDefinition.IEksContainerEnvironmentVariableProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ekscontainerenvironmentvariable.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 eksContainerEnvironmentVariableProperty = new EksContainerEnvironmentVariableProperty {
                 Name = "name",

                 // the properties below are optional
                 Value = "value"
             };

Synopsis

Constructors

EksContainerEnvironmentVariableProperty()

An environment variable.

Properties

Name

The name of the environment variable.

Value

The value of the environment variable.

Constructors

EksContainerEnvironmentVariableProperty()

An environment variable.

public EksContainerEnvironmentVariableProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ekscontainerenvironmentvariable.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 eksContainerEnvironmentVariableProperty = new EksContainerEnvironmentVariableProperty {
                 Name = "name",

                 // the properties below are optional
                 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-ekscontainerenvironmentvariable.html#cfn-batch-jobdefinition-ekscontainerenvironmentvariable-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-ekscontainerenvironmentvariable.html#cfn-batch-jobdefinition-ekscontainerenvironmentvariable-value

Implements

CfnJobDefinition.IEksContainerEnvironmentVariableProperty
Back to top Generated by DocFX