Module Values.DeploymentSource

Information about a deployment.

Sourcetype nonrec t = {
  1. createdAt : string option;
    (*

    The time, in milliseconds since the epoch, when the deployment was created.

    *)
  2. deploymentArn : string option;
    (*

    The ARN of the deployment.

    *)
  3. deploymentId : string option;
    (*

    The ID of the deployment.

    *)
  4. deploymentType : DeploymentType.t option;
    (*

    The type of the deployment.

    *)
  5. groupArn : string option;
    (*

    The ARN of the group for this deployment.

    *)
}
Sourceval make : ?createdAt:??? -> ?deploymentArn:??? -> ?deploymentId:??? -> ?deploymentType:??? -> ?groupArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String 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