Module Values.ApplicationSummarySource

The summary of the SAP application registered with AWS Systems Manager for SAP.

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

    The ID of the application.

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

    The status of the latest discovery.

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

    The type of the application.

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

    The Amazon Resource Name (ARN) of the application.

    *)
  5. tags : TagMap.t option;
    (*

    The tags on the application.

    *)
}
Sourceval make : ?id:??? -> ?discoveryStatus:??? -> ?type_:??? -> ?arn:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ApplicationId.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