JobDefinitionMultiNodeEcsTaskPropertiesArgs

data class JobDefinitionMultiNodeEcsTaskPropertiesArgs(val containers: Output<List<JobDefinitionTaskContainerPropertiesArgs>>? = null, val enableExecuteCommand: Output<Boolean>? = null, val executionRoleArn: Output<String>? = null, val ipcMode: Output<String>? = null, val pidMode: Output<String>? = null, val taskRoleArn: Output<String>? = null, val volumes: Output<List<JobDefinitionVolumeArgs>>? = null) : ConvertibleToJava<JobDefinitionMultiNodeEcsTaskPropertiesArgs>

Constructors

constructor(containers: Output<List<JobDefinitionTaskContainerPropertiesArgs>>? = null, enableExecuteCommand: Output<Boolean>? = null, executionRoleArn: Output<String>? = null, ipcMode: Output<String>? = null, pidMode: Output<String>? = null, taskRoleArn: Output<String>? = null, volumes: Output<List<JobDefinitionVolumeArgs>>? = null)

Properties

Link copied to clipboard

This object is a list of containers.

Link copied to clipboard
val enableExecuteCommand: Output<Boolean>? = null

Determines whether execute command functionality is turned on for this task. If true , execute command functionality is turned on all the containers in the task.

Link copied to clipboard
val executionRoleArn: Output<String>? = null

The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see AWS Batch execution IAM role in the AWS Batch User Guide .

Link copied to clipboard
val ipcMode: Output<String>? = null

The IPC resource namespace to use for the containers in the task. The valid values are host , task , or none . If host is specified, all containers within the tasks that specified the host IPC mode on the same container instance share the same IPC resources with the host Amazon EC2 instance. If task is specified, all containers within the specified task share the same IPC resources. If none is specified, the IPC resources within the containers of a task are private, and are not shared with other containers in a task or on the container instance. If no value is specified, then the IPC resource namespace sharing depends on the Docker daemon setting on the container instance. For more information, see IPC settings in the Docker run reference.

Link copied to clipboard
val pidMode: Output<String>? = null

The process namespace to use for the containers in the task. The valid values are host or task . For example, monitoring sidecars might need pidMode to access information about other containers running in the same task. If host is specified, all containers within the tasks that specified the host PID mode on the same container instance share the process namespace with the host Amazon EC2 instance. If task is specified, all containers within the specified task share the same process namespace. If no value is specified, the default is a private namespace for each container. For more information, see PID settings in the Docker run reference.

Link copied to clipboard
val taskRoleArn: Output<String>? = null

The Amazon Resource Name (ARN) that's associated with the Amazon ECS task.

Link copied to clipboard
val volumes: Output<List<JobDefinitionVolumeArgs>>? = null

A list of volumes that are associated with the job.

Functions

Link copied to clipboard
open override fun toJava(): JobDefinitionMultiNodeEcsTaskPropertiesArgs