Module Values.NotifyApplicationStateRequestSource

Sets the migration state of an application. For a given application identified by the value passed to ApplicationId, its status is set or updated by passing one of three values to Status: NOT_STARTED | IN_PROGRESS | COMPLETED.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The configurationId in Application Discovery Service that uniquely identifies the grouped application.

    *)
  2. status : ApplicationStatus.t;
    (*

    Status of the application - Not Started, In-Progress, Complete.

    *)
  3. updateDateTime : UpdateDateTime.t option;
    (*

    The timestamp when the application state changed.

    *)
  4. dryRun : DryRun.t option;
    (*

    Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.

    *)
}
Sourceval context_ : string
Sourceval make : ?updateDateTime:??? -> ?dryRun:??? -> applicationId:ApplicationId.t -> status:ApplicationStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DryRun.t | `Enum of string | `String of ApplicationId.t | `Timestamp of UpdateDateTime.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