Module Values.UpdateContainerInstancesStateRequestSource

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

    The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instance to update. If you do not specify a cluster, the default cluster is assumed.

    *)
  2. containerInstances : StringList.t;
    (*

    A list of up to 10 container instance IDs or full ARN entries.

    *)
  3. status : ContainerInstanceStatus.t;
    (*

    The container instance state to update the container instance with. The only valid values for this action are ACTIVE and DRAINING. A container instance can only be updated to DRAINING status once it has reached an ACTIVE state. If a container instance is in REGISTERING, DEREGISTERING, or REGISTRATION_FAILED state you can describe the container instance but can't update the container instance state.

    *)
}
Sourceval context_ : string
Sourceval make : ?cluster:??? -> containerInstances:StringList.t -> status:ContainerInstanceStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) 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