Module Awso_cognito_idp.AddUserPoolClientSecretRequestSource

The request to create a new client secret for 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 for which you want to create a new secret.

    *)
  3. clientSecret : ClientSecretType.t option;
    (*

    The client secret value you want to use. If you don't provide this parameter, Amazon Cognito generates a secure secret for you.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientSecret:??? -> 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