Module Values.ApplicationSource

An SAP application registered with AWS Systems Manager for SAP.

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

    The ID of the application.

    *)
  2. type_ : ApplicationType.t option;
    (*

    The type of the application.

    *)
  3. arn : SsmSapArn.t option;
    (*

    The Amazon Resource Name (ARN) of the application.

    *)
  4. appRegistryArn : AppRegistryArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Application Registry.

    *)
  5. status : ApplicationStatus.t option;
    (*

    The status of the application.

    *)
  6. discoveryStatus : ApplicationDiscoveryStatus.t option;
    (*

    The latest discovery result for the application.

    *)
  7. components : ComponentIdList.t option;
    (*

    The components of the application.

    *)
  8. lastUpdated : Timestamp.t option;
    (*

    The time at which the application was last updated.

    *)
  9. statusMessage : String_.t option;
    (*

    The status message.

    *)
  10. associatedApplicationArns : ApplicationArnList.t option;
    (*

    The Amazon Resource Names of the associated AWS Systems Manager for SAP applications.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?arn:??? -> ?appRegistryArn:??? -> ?status:??? -> ?discoveryStatus:??? -> ?components:??? -> ?lastUpdated:??? -> ?statusMessage:??? -> ?associatedApplicationArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ComponentId.t ] list | `String of ApplicationId.t | `Timestamp of Timestamp.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