Module Values.DeleteExtensionRequestSource

Deletes an AppConfig extension. You must delete all associations to an extension before you delete the extension.

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

    The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.

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

    A specific version of an extension to delete. If omitted, the highest version is deleted.

    *)
}
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