AWS Batch JobDefinition ContainerProperties
The ContainerProperties property type specifies various properties
specific to container-based jobs.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "MountPoints" : [ MountPoints, ... ], "User" :String, "Volumes" : [ Volumes, ... ], "Command" : [String, ... ], "Memory" :Integer, "Privileged" :Boolean, "Environment" : [ Environment, ... ], "JobRoleArn" :String, "ReadonlyRootFilesystem" :Boolean, "Ulimits" : [ Ulimit, ... ], "Vcpus" :Integer, "Image" :String}
YAML
MountPoints: - MountPoints User:StringVolumes: - Volumes Command: -StringMemory:IntegerPrivileged:BooleanEnvironment: - Environment JobRoleArn:StringReadonlyRootFilesystem:BooleanUlimits: - Ulimit Vcpus:IntegerImage:String
Properties
MountPoints-
The mount points for data volumes in your container. This parameter maps to
Volumesin the Create a container section of the Docker Remote API and the--volumeoption to docker run.Required: no
Type: List of AWS Batch JobDefinition MountPoints
Update requires: No Interruption
User-
The user name to use inside the container. This parameter maps to
Userin the Create a container section of the Docker Remote API and the--useroption to docker run.Required: no
Type: String
Update requires: No Interruption
Volumes-
A list of data volumes used in a job.
Required: no
Type: List of AWS Batch JobDefinition Volumes
Update requires: No Interruption
Command-
The command that is passed to the container. This parameter maps to
Cmdin the Create a container section of the Docker Remote API and theCOMMANDparameter to docker run.Required: no
Type: List of String values
Update requires: No Interruption
Memory-
The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to
Memoryin the Create a container section of the Docker Remote API and the--memoryoption to docker run.Required: yes
Type: Integer
Update requires: No Interruption
Privileged-
When this parameter is true, the container is given elevated privileges on the host container instance (similar to the
rootuser). This parameter maps toPrivilegedin the Create a container section of the Docker Remote API and the--privilegedoption to docker run.Required: no
Type: Boolean
Update requires: No Interruption
JobRoleArn-
The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.
Required: no
Type: String
Update requires: No Interruption
Environment-
The environment variables to pass to a container. This parameter maps to
Envin the Create a container section of the Docker Remote API and the--envoption to docker run.Important
We do not recommend using plain text environment variables for sensitive information, such as credential data.
Required: no
Type: List of AWS Batch JobDefinition Environment
Update requires: No Interruption
ReadonlyRootFilesystem-
When this parameter is true, the container is given read-only access to its root file system. This parameter maps to
ReadonlyRootfsin the Create a container section of the Docker Remote API and the--read-onlyoption todocker run.Required: no
Type: Boolean
Update requires: No Interruption
Ulimits-
A list of
ulimitsto set in the container. This parameter maps toUlimitsin the Create a container section of the Docker Remote API and the--ulimitoption to docker run.Required: no
Type: List of AWS Batch JobDefinition Ulimit
Update requires: No Interruption
Vcpus-
The number of vCPUs reserved for the container. This parameter maps to
CpuSharesin the Create a container section of the Docker Remote API and the--cpu-sharesoption to docker run. Each vCPU is equivalent to 1,024 CPU shares.Required: yes
Type: Integer
Update requires: No Interruption
Image-
The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with
. Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps torepository-url/image:tagImagein the Create a container section of the Docker Remote API and theIMAGEparameter of docker run.-
Images in Amazon ECR repositories use the full registry and repository URI (for example,
012345678910.dkr.ecr.).region-name.amazonaws.com/repository-name -
Images in official repositories on Docker Hub use a single name (for example,
ubuntuormongo). -
Images in other repositories on Docker Hub are qualified with an organization name (for example,
amazon/amazon-ecs-agent). -
Images in other online repositories are qualified further by a domain name (for example,
quay.io/assemblyline/ubuntu).
Required: yes
Type: String
Update requires: No Interruption
-
