Class: Aws::SNS::Types::CheckIfPhoneNumberIsOptedOutInput

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 CheckIfPhoneNumberIsOptedOutInput data as a hash:

{
  phone_number: "PhoneNumber", # required
}

The input for the ‘CheckIfPhoneNumberIsOptedOut` action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#phone_numberString

The phone number for which you want to check the opt out status.

Returns:

  • (String)


83
84
85
86
87
# File 'lib/aws-sdk-sns/types.rb', line 83

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