Module Values.DeleteHostedConfigurationVersionRequestSource

Deletes a version of a configuration from the AppConfig hosted configuration store.

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

    The application ID.

    *)
  2. configurationProfileId : Id.t;
    (*

    The configuration profile ID.

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

    The versions number to delete.

    *)
}
Sourceval context_ : string
Sourceval make : applicationId:Id.t -> configurationProfileId:Id.t -> versionNumber:Integer.t -> 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