Module Values.GetExtensionRequestSource

Returns information about an AppConfig extension.

Sourcetype nonrec t = {
  1. extensionIdentifier : Identifier.t;
    (*

    The name, the ID, or the Amazon Resource Name (ARN) of the extension.

    *)
  2. versionNumber : Integer.t option;
    (*

    The extension version number. If no version number was defined, AppConfig uses the highest version.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionNumber:??? -> extensionIdentifier:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of Identifier.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