Class: Aws::CognitoIdentityProvider::Types::AttributeType
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::AttributeType
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
The name and value of a user attribute.
This data type is a request parameter of
- AdminUpdateUserAttributes][1
 - 
and [UpdateUserAttributes].
 
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminUpdateUserAttributes.html [2]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UpdateUserAttributes.html
Constant Summary collapse
- SENSITIVE =
 [:value]
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the attribute.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value of the attribute.
 
Instance Attribute Details
#name ⇒ String
The name of the attribute.
      2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2596 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end  | 
  
#value ⇒ String
The value of the attribute.
      2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2596 class AttributeType < Struct.new( :name, :value) SENSITIVE = [:value] include Aws::Structure end  |