Module Values.EcsTaskDetailsSource

The details of a task definition that describes the container and volume definitions of an Amazon ECS task.

Sourcetype nonrec t = {
  1. containers : ListTaskContainerDetails.t option;
    (*

    A list of containers that are included in the taskProperties list.

    *)
  2. containerInstanceArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the container instance that hosts the task.

    *)
  3. taskArn : String_.t option;
    (*

    The ARN of the Amazon ECS task.

    *)
  4. ephemeralStorage : EphemeralStorage.t option;
    (*

    The amount of ephemeral storage allocated for the task.

    *)
  5. executionRoleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the execution role that Batch can assume. For more information, see Batch execution IAM role in the Batch User Guide.

    *)
  6. platformVersion : String_.t option;
    (*

    The Fargate platform version where the jobs are running.

    *)
  7. ipcMode : String_.t option;
    (*

    The IPC resource namespace to use for the containers in the task. The valid values are host, task, or none. For more information see ipcMode in EcsTaskProperties.

    *)
  8. taskRoleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that the container can assume for Amazon Web Services permissions. For more information, see IAM roles for tasks in the Amazon Elastic Container Service Developer Guide. This is object is comparable to ContainerProperties:jobRoleArn.

    *)
  9. pidMode : String_.t option;
    (*

    The process namespace to use for the containers in the task. The valid values are host, or task. For more information see pidMode in EcsTaskProperties.

    *)
  10. networkConfiguration : NetworkConfiguration.t option;
    (*

    The network configuration for jobs that are running on Fargate resources. Jobs that are running on Amazon EC2 resources must not specify this parameter.

    *)
  11. runtimePlatform : RuntimePlatform.t option;
    (*

    An object that represents the compute environment architecture for Batch jobs on Fargate.

    *)
  12. volumes : Volumes.t option;
    (*

    A list of data volumes used in a job.

    *)
  13. enableExecuteCommand : Boolean.t option;
    (*

    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.

    *)
}
Sourceval make : ?containers:??? -> ?containerInstanceArn:??? -> ?taskArn:??? -> ?ephemeralStorage:??? -> ?executionRoleArn:??? -> ?platformVersion:??? -> ?ipcMode:??? -> ?taskRoleArn:??? -> ?pidMode:??? -> ?networkConfiguration:??? -> ?runtimePlatform:??? -> ?volumes:??? -> ?enableExecuteCommand:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Enum of string | `String of String_.t ] list | `String of String_.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t