aws-cdk-lib.aws_stepfunctions_tasks.TaskEnvironmentVariable

interface TaskEnvironmentVariable

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.Tasks.TaskEnvironmentVariable
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#TaskEnvironmentVariable
Javasoftware.amazon.awscdk.services.stepfunctions.tasks.TaskEnvironmentVariable
Pythonaws_cdk.aws_stepfunctions_tasks.TaskEnvironmentVariable
TypeScript (source)aws-cdk-lib » aws_stepfunctions_tasks » TaskEnvironmentVariable

An environment variable to be set in the container run as a task.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';
const taskEnvironmentVariable: stepfunctions_tasks.TaskEnvironmentVariable = {
  name: 'name',
  value: 'value',
};

Properties

NameTypeDescription
namestringName for the environment variable.
valuestringValue of the environment variable.

name

Type: string

Name for the environment variable.

Use JsonPath class's static methods to specify name from a JSON path.


value

Type: string

Value of the environment variable.

Use JsonPath class's static methods to specify value from a JSON path.