Interface CfnJobDefinition.IEksContainerEnvironmentVariableProperty
An environment variable.
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnJobDefinition.IEksContainerEnvironmentVariableProperty
Syntax (vb)
Public Interface 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
Properties
| Name | The name of the environment variable. |
| Value | The value of the environment variable. |
Properties
Name
The name of the environment variable.
string Name { get; }
Property Value
Remarks
Value
The value of the environment variable.
string? Value { get; }