interface ContainerOverrides
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.StepFunctions.Tasks.ContainerOverrides |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#ContainerOverrides |
![]() | software.amazon.awscdk.services.stepfunctions.tasks.ContainerOverrides |
![]() | aws_cdk.aws_stepfunctions_tasks.ContainerOverrides |
![]() | aws-cdk-lib » aws_stepfunctions_tasks » ContainerOverrides |
The overrides that should be sent to a container.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';
declare const instanceType: ec2.InstanceType;
const containerOverrides: stepfunctions_tasks.ContainerOverrides = {
command: ['command'],
environment: {
environmentKey: 'environment',
},
gpuCount: 123,
instanceType: instanceType,
memory: 123,
vcpus: 123,
};
Properties
Name | Type | Description |
---|---|---|
command? | string[] | The command to send to the container that overrides the default command from the Docker image or the job definition. |
environment? | { [string]: string } | The environment variables to send to the container. |
gpu | number | The number of physical GPUs to reserve for the container. |
instance | Instance | The instance type to use for a multi-node parallel job. |
memory? | number | The number of MiB of memory reserved for the job. |
vcpus? | number | The number of vCPUs to reserve for the container. |
command?
Type:
string[]
(optional, default: No command overrides)
The command to send to the container that overrides the default command from the Docker image or the job definition.
environment?
Type:
{ [string]: string }
(optional, default: No environment overrides)
The environment variables to send to the container.
You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.
gpuCount?
Type:
number
(optional, default: No GPU reservation)
The number of physical GPUs to reserve for the container.
The number of GPUs reserved for all containers in a job should not exceed the number of available GPUs on the compute resource that the job is launched on.
instanceType?
Type:
Instance
(optional, default: No instance type overrides)
The instance type to use for a multi-node parallel job.
This parameter is not valid for single-node container jobs.
memory?
Type:
number
(optional, default: No memory overrides)
The number of MiB of memory reserved for the job.
This value overrides the value set in the job definition.
vcpus?
Type:
number
(optional, default: No vCPUs overrides)
The number of vCPUs to reserve for the container.
This value overrides the value set in the job definition.