Module Values.ApplicationStateSource

The state of an application discovered through Migration Hub import, the AWS Agentless Discovery Connector, or the AWS Application Discovery Agent.

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

    The configurationId from the Application Discovery Service that uniquely identifies an application.

    *)
  2. applicationStatus : ApplicationStatus.t option;
    (*

    The current status of an application.

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

    The timestamp when the application status was last updated.

    *)
}
Sourceval make : ?applicationId:??? -> ?applicationStatus:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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