Module Values.DeploymentEventSource

An object that describes a deployment event.

Sourcetype nonrec t = {
  1. eventType : DeploymentEventType.t option;
    (*

    The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; and the start or completion of a rollback.

    *)
  2. triggeredBy : TriggeredBy.t option;
    (*

    The entity that triggered the deployment event. Events can be triggered by a user, AppConfig, an Amazon CloudWatch alarm, or an internal error.

    *)
  3. description : Description.t option;
    (*

    A description of the deployment event. Descriptions include, but are not limited to, the following: The Amazon Web Services account or the Amazon CloudWatch alarm ARN that initiated a rollback. The percentage of hosts that received the deployment. A recommendation to attempt a new deployment (in the case of an internal error).

    *)
  4. actionInvocations : ActionInvocations.t option;
    (*

    The list of extensions that were invoked as part of the deployment.

    *)
  5. occurredAt : Iso8601DateTime.t option;
    (*

    The date and time the event occurred.

    *)
}
Sourceval make : ?eventType:??? -> ?triggeredBy:??? -> ?description:??? -> ?actionInvocations:??? -> ?occurredAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of Identifier.t ]) list ] list | `String of Description.t | `Timestamp of Iso8601DateTime.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