Class: Aws::CognitoIdentityProvider::Types::SetUserSettingsRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Represents the request to set user settings.

Constant Summary collapse

SENSITIVE =
[:access_token]

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

A valid access token that Amazon Cognito issued to the user whose user settings you want to configure.

Returns:

  • (String)


7780
7781
7782
7783
7784
7785
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7780

class SetUserSettingsRequest < Struct.new(
  :access_token,
  :mfa_options)
  SENSITIVE = [:access_token]
  include Aws::Structure
end

#mfa_optionsArray<Types::MFAOptionType>

You can use this parameter only to set an SMS configuration that uses SMS for delivery.

Returns:



7780
7781
7782
7783
7784
7785
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 7780

class SetUserSettingsRequest < Struct.new(
  :access_token,
  :mfa_options)
  SENSITIVE = [:access_token]
  include Aws::Structure
end