Module Values.SubmitContainerStateChangeRequestSource

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

    The short name or full ARN of the cluster that hosts the container.

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

    The task ID or full Amazon Resource Name (ARN) of the task that hosts the container.

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

    The name of the container.

    *)
  4. runtimeId : String_.t option;
    (*

    The ID of the Docker container.

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

    The status of the state change request.

    *)
  6. exitCode : BoxedInteger.t option;
    (*

    The exit code that's returned for the state change request.

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

    The reason for the state change request.

    *)
  8. networkBindings : NetworkBindings.t option;
    (*

    The network bindings of the container.

    *)
}
Sourceval make : ?cluster:??? -> ?task:??? -> ?containerName:??? -> ?runtimeId:??? -> ?status:??? -> ?exitCode:??? -> ?reason:??? -> ?networkBindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BoxedInteger.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of BoxedInteger.t | `String of String_.t ]) list ] 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