Class: Aws::CognitoIdentityProvider::Types::VerifyUserAttributeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::VerifyUserAttributeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Represents the request to verify user attributes.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose user attributes you want to verify.
-
#attribute_name ⇒ String
The attribute name in the request to verify user attributes.
-
#code ⇒ String
The verification code in the request to verify user attributes.
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose user attributes you want to verify.
13494 13495 13496 13497 13498 13499 13500 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13494 class VerifyUserAttributeRequest < Struct.new( :access_token, :attribute_name, :code) SENSITIVE = [:access_token] include Aws::Structure end |
#attribute_name ⇒ String
The attribute name in the request to verify user attributes.
13494 13495 13496 13497 13498 13499 13500 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13494 class VerifyUserAttributeRequest < Struct.new( :access_token, :attribute_name, :code) SENSITIVE = [:access_token] include Aws::Structure end |
#code ⇒ String
The verification code in the request to verify user attributes.
13494 13495 13496 13497 13498 13499 13500 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 13494 class VerifyUserAttributeRequest < Struct.new( :access_token, :attribute_name, :code) SENSITIVE = [:access_token] include Aws::Structure end |