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.
11119 11120 11121 11122 11123 11124 11125 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11119 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.
11119 11120 11121 11122 11123 11124 11125 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11119 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.
11119 11120 11121 11122 11123 11124 11125 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 11119 class VerifyUserAttributeRequest < Struct.new( :access_token, :attribute_name, :code) SENSITIVE = [:access_token] include Aws::Structure end |