aws-cdk-lib.aws_batch.CfnJobDefinition.EksContainerEnvironmentVariableProperty

interface EksContainerEnvironmentVariableProperty

LanguageType name
.NETAmazon.CDK.AWS.Batch.CfnJobDefinition.EksContainerEnvironmentVariableProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_EksContainerEnvironmentVariableProperty
Javasoftware.amazon.awscdk.services.batch.CfnJobDefinition.EksContainerEnvironmentVariableProperty
Pythonaws_cdk.aws_batch.CfnJobDefinition.EksContainerEnvironmentVariableProperty
TypeScript aws-cdk-lib » aws_batch » CfnJobDefinition » EksContainerEnvironmentVariableProperty

An environment variable.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from 'aws-cdk-lib';
const eksContainerEnvironmentVariableProperty: batch.CfnJobDefinition.EksContainerEnvironmentVariableProperty = {
  name: 'name',

  // the properties below are optional
  value: 'value',
};

Properties

NameTypeDescription
namestringThe name of the environment variable.
value?stringThe value of the environment variable.

name

Type: string

The name of the environment variable.


value?

Type: string (optional)

The value of the environment variable.