Class CfnJobDefinition.EksContainerEnvironmentVariableProperty
An environment variable.
Inherited Members
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
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
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
Remarks
Value
The value of the environment variable.
public string? Value { get; set; }