Class: Aws::SNS::Types::VerifySMSSandboxPhoneNumberInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::VerifySMSSandboxPhoneNumberInput
- Defined in:
- gems/aws-sdk-sns/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
-
#one_time_password ⇒ String
The OTP sent to the destination number from the
CreateSMSSandBoxPhoneNumber
call. -
#phone_number ⇒ String
The destination phone number to verify.
Instance Attribute Details
#one_time_password ⇒ String
The OTP sent to the destination number from the
CreateSMSSandBoxPhoneNumber
call.
3198 3199 3200 3201 3202 3203 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 3198 class VerifySMSSandboxPhoneNumberInput < Struct.new( :phone_number, :one_time_password) SENSITIVE = [] include Aws::Structure end |
#phone_number ⇒ String
The destination phone number to verify.
3198 3199 3200 3201 3202 3203 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 3198 class VerifySMSSandboxPhoneNumberInput < Struct.new( :phone_number, :one_time_password) SENSITIVE = [] include Aws::Structure end |