Class: Aws::SNS::Types::ListPhoneNumbersOptedOutResponse

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

Overview

The response from the ‘ListPhoneNumbersOptedOut` action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A ‘NextToken` string is returned when you call the `ListPhoneNumbersOptedOut` action if additional records are available after the first page of results.

Returns:

  • (String)


705
706
707
708
709
# File 'lib/aws-sdk-sns/types.rb', line 705

class ListPhoneNumbersOptedOutResponse < Struct.new(
  :phone_numbers,
  :next_token)
  include Aws::Structure
end

#phone_numbersArray<String>

A list of phone numbers that are opted out of receiving SMS messages. The list is paginated, and each page can contain up to 100 phone numbers.

Returns:

  • (Array<String>)


705
706
707
708
709
# File 'lib/aws-sdk-sns/types.rb', line 705

class ListPhoneNumbersOptedOutResponse < Struct.new(
  :phone_numbers,
  :next_token)
  include Aws::Structure
end