Module Values.DaemonDeploymentSummarySource

A summary of a daemon deployment.

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

    The Amazon Resource Name (ARN) of the daemon deployment.

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

    The Amazon Resource Name (ARN) of the daemon.

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

    The Amazon Resource Name (ARN) of the cluster that hosts the daemon.

    *)
  4. status : DaemonDeploymentStatus.t option;
    (*

    The status of the daemon deployment.

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

    Information about why the daemon deployment is in the current status.

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

    The ARN of the daemon revision being deployed.

    *)
  7. createdAt : Timestamp.t option;
    (*

    The time the daemon deployment was created.

    *)
  8. startedAt : Timestamp.t option;
    (*

    The time the daemon deployment started.

    *)
  9. stoppedAt : Timestamp.t option;
    (*

    The time the daemon deployment stopped.

    *)
  10. finishedAt : Timestamp.t option;
    (*

    The time the daemon deployment finished.

    *)
}
Sourceval make : ?daemonDeploymentArn:??? -> ?daemonArn:??? -> ?clusterArn:??? -> ?status:??? -> ?statusReason:??? -> ?targetDaemonRevisionArn:??? -> ?createdAt:??? -> ?startedAt:??? -> ?stoppedAt:??? -> ?finishedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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