Module Awso_cognito_idp.UserPoolClientDescriptionSource

A short description of a user pool app client.

Sourcetype nonrec t = {
  1. clientId : ClientIdType.t option;
    (*

    The app client ID.

    *)
  2. userPoolId : UserPoolIdType.t option;
    (*

    The ID of the user pool that's associated with the app client.

    *)
  3. clientName : ClientNameType.t option;
    (*

    The app client name.

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