Class: Aws::SNS::Types::CheckIfPhoneNumberIsOptedOutInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::CheckIfPhoneNumberIsOptedOutInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sns/types.rb
Overview
The input for the ‘CheckIfPhoneNumberIsOptedOut` action.
Constant Summary collapse
- SENSITIVE =
[:phone_number]
Instance Attribute Summary collapse
-
#phone_number ⇒ String
The phone number for which you want to check the opt out status.
Instance Attribute Details
#phone_number ⇒ String
The phone number for which you want to check the opt out status.
124 125 126 127 128 |
# File 'lib/aws-sdk-sns/types.rb', line 124 class CheckIfPhoneNumberIsOptedOutInput < Struct.new( :phone_number) SENSITIVE = [:phone_number] include Aws::Structure end |