Class: Aws::SNS::Types::OptInPhoneNumberInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::OptInPhoneNumberInput
- Defined in:
- gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb
Overview
Note:
When making an API call, you may pass OptInPhoneNumberInput data as a hash:
{
phone_number: "PhoneNumber", # required
}
Input for the OptInPhoneNumber action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#phone_number ⇒ String
The phone number to opt in.
Instance Attribute Details
#phone_number ⇒ String
The phone number to opt in.
1405 1406 1407 1408 1409 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1405 class OptInPhoneNumberInput < Struct.new( :phone_number) SENSITIVE = [] include Aws::Structure end |