Module Values.DeploymentSource

An immutable representation of an API that can be called by users. A Deployment must be associated with a Stage for it to be callable over the internet.

Sourcetype nonrec t = {
  1. autoDeployed : bool option;
    (*

    Specifies whether a deployment was automatically released.

    *)
  2. createdDate : string option;
    (*

    The date and time when the Deployment resource was created.

    *)
  3. deploymentId : Id.t option;
    (*

    The identifier for the deployment.

    *)
  4. deploymentStatus : DeploymentStatus.t option;
    (*

    The status of the deployment: PENDING, FAILED, or SUCCEEDED.

    *)
  5. deploymentStatusMessage : string option;
    (*

    May contain additional feedback on the status of an API deployment.

    *)
  6. description : StringWithLengthBetween0And1024.t option;
    (*

    The description for the deployment.

    *)
}
Sourceval make : ?autoDeployed:??? -> ?createdDate:??? -> ?deploymentId:??? -> ?deploymentStatus:??? -> ?deploymentStatusMessage:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `String of Id.t | `Timestamp of string ]) 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