Class: Aws::SNS::Types::VerifySMSSandboxPhoneNumberInput

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

Overview

Note:

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

{
  phone_number: "PhoneNumberString", # required
  one_time_password: "OTPCode", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#one_time_passwordString

The OTP sent to the destination number from the ‘CreateSMSSandBoxPhoneNumber` call.

Returns:

  • (String)


2803
2804
2805
2806
2807
2808
# File 'lib/aws-sdk-sns/types.rb', line 2803

class VerifySMSSandboxPhoneNumberInput < Struct.new(
  :phone_number,
  :one_time_password)
  SENSITIVE = []
  include Aws::Structure
end

#phone_numberString

The destination phone number to verify.

Returns:

  • (String)


2803
2804
2805
2806
2807
2808
# File 'lib/aws-sdk-sns/types.rb', line 2803

class VerifySMSSandboxPhoneNumberInput < Struct.new(
  :phone_number,
  :one_time_password)
  SENSITIVE = []
  include Aws::Structure
end