Module Values.ServiceDeploymentBriefSource

The service deployment properties that are retured when you call ListServiceDeployments. This provides a high-level overview of the service deployment.

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

    The ARN of the service deployment.

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

    The ARN of the service for this service deployment.

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

    The ARN of the cluster that hosts the service.

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

    The time that the service deployment statred. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

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

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

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

    The time that the service deployment completed. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

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

    The ARN of the service revision being deplyed.

    *)
  8. status : ServiceDeploymentStatus.t option;
    (*

    The status of the service deployment

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

    Information about why the service deployment is in the current status. For example, the circuit breaker detected a deployment failure.

    *)
}
Sourceval make : ?serviceDeploymentArn:??? -> ?serviceArn:??? -> ?clusterArn:??? -> ?startedAt:??? -> ?createdAt:??? -> ?finishedAt:??? -> ?targetServiceRevisionArn:??? -> ?status:??? -> ?statusReason:??? -> 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