Module Values.ExtensionSummarySource

Information about an extension. Call GetExtension to get more information about an extension.

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

    The system-generated ID of the extension.

    *)
  2. name : Name.t option;
    (*

    The extension name.

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

    The extension version number.

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

    The system-generated Amazon Resource Name (ARN) for the extension.

    *)
  5. description : Description.t option;
    (*

    Information about the extension.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?versionNumber:??? -> ?arn:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of Id.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