interface EksContainerEnvironmentVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnJobDefinitionPropsMixin.EksContainerEnvironmentVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnJobDefinitionPropsMixin_EksContainerEnvironmentVariableProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnJobDefinitionPropsMixin.EksContainerEnvironmentVariableProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnJobDefinitionPropsMixin.EksContainerEnvironmentVariableProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnJobDefinitionPropsMixin » 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/cfn-property-mixins';
const eksContainerEnvironmentVariableProperty: batch.CfnJobDefinitionPropsMixin.EksContainerEnvironmentVariableProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the environment variable. |
| value? | string | The value of the environment variable. |
name?
Type:
string
(optional)
The name of the environment variable.
value?
Type:
string
(optional)
The value of the environment variable.

.NET
Go
Java
Python
TypeScript