Class: Aws::CognitoIdentityProvider::Types::SetUserSettingsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::SetUserSettingsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Represents the request to set user settings.
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 settings you want to configure.
 - 
  
    
      #mfa_options  ⇒ Array<Types::MFAOptionType> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
You can use this parameter only to set an SMS configuration that uses SMS for delivery.
 
Instance Attribute Details
#access_token ⇒ String
A valid access token that Amazon Cognito issued to the user whose user settings you want to configure.
      9970 9971 9972 9973 9974 9975  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9970 class SetUserSettingsRequest < Struct.new( :access_token, :mfa_options) SENSITIVE = [:access_token] include Aws::Structure end  | 
  
#mfa_options ⇒ Array<Types::MFAOptionType>
You can use this parameter only to set an SMS configuration that uses SMS for delivery.
      9970 9971 9972 9973 9974 9975  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 9970 class SetUserSettingsRequest < Struct.new( :access_token, :mfa_options) SENSITIVE = [:access_token] include Aws::Structure end  |