Class: Aws::CognitoIdentityProvider::Types::MFAOptionType

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

Overview

Note:

When making an API call, you may pass MFAOptionType data as a hash:

{
  delivery_medium: "SMS", # accepts SMS, EMAIL
  attribute_name: "AttributeNameType",
}

*This data type is no longer supported.* Applies only to SMS multi-factor authentication (MFA) configurations. Does not apply to time-based one-time password (TOTP) software token MFA configurations.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_nameString

The attribute name of the MFA option type. The only valid value is `phone_number`.

Returns:

  • (String)


6932
6933
6934
6935
6936
6937
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6932

class MFAOptionType < Struct.new(
  :delivery_medium,
  :attribute_name)
  SENSITIVE = []
  include Aws::Structure
end

#delivery_mediumString

The delivery medium to send the MFA code. You can use this parameter to set only the `SMS` delivery medium value.

Returns:

  • (String)


6932
6933
6934
6935
6936
6937
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6932

class MFAOptionType < Struct.new(
  :delivery_medium,
  :attribute_name)
  SENSITIVE = []
  include Aws::Structure
end