Module Values.DaemonDeploymentSource

Information about a daemon deployment. A daemon deployment orchestrates the progressive rollout of daemon task updates across container instances.

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

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

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

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

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

    The status of the daemon deployment.

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

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

    *)
  5. targetDaemonRevision : DaemonDeploymentRevisionDetail.t option;
    (*

    The daemon revision being deployed.

    *)
  6. sourceDaemonRevisions : DaemonDeploymentRevisionDetailList.t option;
    (*

    The currently deployed daemon revisions that are being replaced.

    *)
  7. circuitBreaker : DaemonCircuitBreaker.t option;
    (*

    The circuit breaker configuration that determines when a daemon deployment has failed.

    *)
  8. alarms : DaemonDeploymentAlarms.t option;
    (*

    The CloudWatch alarms that determine when a daemon deployment fails.

    *)
  9. rollback : DaemonRollback.t option;
    (*

    The rollback options for the daemon deployment.

    *)
  10. deploymentConfiguration : DaemonDeploymentConfiguration.t option;
    (*

    The deployment configuration used for this daemon deployment.

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

    The time the daemon deployment was created. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

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

    The time the daemon deployment started. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

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

    The time the daemon deployment stopped. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

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

    The time the daemon deployment finished. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

    *)
}
Sourceval make : ?daemonDeploymentArn:??? -> ?clusterArn:??? -> ?status:??? -> ?statusReason:??? -> ?targetDaemonRevision:??? -> ?sourceDaemonRevisions:??? -> ?circuitBreaker:??? -> ?alarms:??? -> ?rollback:??? -> ?deploymentConfiguration:??? -> ?createdAt:??? -> ?startedAt:??? -> ?stoppedAt:??? -> ?finishedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of BoxedInteger.t | `List of [> `Structure of (string * [> `Integer of BoxedInteger.t | `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Double of DaemonDrainPercent.t | `Enum of string | `Integer of BoxedInteger.t | `List of [> `String of String_.t | `Structure of (string * [> `Integer of BoxedInteger.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list ]) list | `Timestamp of Timestamp.t ]) list | `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