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.
      10952 10953 10954 10955 10956 10957 10958  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10952 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.
      10952 10953 10954 10955 10956 10957 10958  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10952 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.
      10952 10953 10954 10955 10956 10957 10958  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10952 class VerifyUserAttributeRequest < Struct.new( :access_token, :attribute_name, :code) SENSITIVE = [:access_token] include Aws::Structure end  |