Module Awso_cognito_idp.DeleteUserPoolClientRequestSource

Represents the request to delete a user pool client.

Sourcetype nonrec t = {
  1. userPoolId : UserPoolIdType.t;
    (*

    The ID of the user pool where you want to delete the client.

    *)
  2. clientId : ClientIdType.t;
    (*

    The ID of the user pool app client that you want to delete.

    *)
}
Sourceval context_ : string
Sourceval make : userPoolId:UserPoolIdType.t -> clientId:ClientIdType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UserPoolIdType.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