Module Awso_cognito_idp.DeleteUserPoolClientSecretRequestSource

The request to delete a specific client secret from a user pool app client.

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

    The ID of the user pool that contains the app client.

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

    The ID of the app client from which you want to delete the secret.

    *)
  3. clientSecretId : ClientSecretIdType.t;
    (*

    The unique identifier of the client secret you want to delete.

    *)
}
Sourceval context_ : string
Sourceval make : userPoolId:UserPoolIdType.t -> clientId:ClientIdType.t -> clientSecretId:ClientSecretIdType.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