Module Values.VerifyUserAttributeRequestSource

Represents the request to verify user attributes.

Sourcetype nonrec t = {
  1. accessToken : TokenModelType.t;
    (*

    A valid access token that Amazon Cognito issued to the currently signed-in user. Must include a scope claim for aws.cognito.signin.user.admin.

    *)
  2. attributeName : AttributeNameType.t;
    (*

    The name of the attribute that you want to verify.

    *)
  3. code : ConfirmationCodeType.t;
    (*

    The verification code that your user pool sent to the added or changed attribute, for example the user's email address.

    *)
}
Sourceval context_ : string
Sourceval make : accessToken:TokenModelType.t -> attributeName:AttributeNameType.t -> code:ConfirmationCodeType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TokenModelType.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