Module Values.UpdateTaskSetRequestSource

Modifies a task set. This is used when a service uses the EXTERNAL deployment controller type. For more information, see Amazon ECS Deployment Types in the Amazon Elastic Container Service Developer Guide.

Sourcetype nonrec t = {
  1. cluster : String_.t;
    (*

    The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service that the task set is found in.

    *)
  2. service : String_.t;
    (*

    The short name or full Amazon Resource Name (ARN) of the service that the task set is found in.

    *)
  3. taskSet : String_.t;
    (*

    The short name or full Amazon Resource Name (ARN) of the task set to update.

    *)
  4. scale : Scale.t;
    (*

    A floating-point percentage of the desired number of tasks to place and keep running in the task set.

    *)
}
Sourceval context_ : string
Sourceval make : cluster:String_.t -> service:String_.t -> taskSet:String_.t -> scale:Scale.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Double of Double.t | `Enum of string ]) 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