Class: Aws::SNS::Types::ListPhoneNumbersOptedOutResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::ListPhoneNumbersOptedOutResponse
- Defined in:
- gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb
Overview
The response from the ListPhoneNumbersOptedOut
action.
Constant Summary collapse
- SENSITIVE =
[:phone_numbers]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A
NextToken
string is returned when you call theListPhoneNumbersOptedOut
action if additional records are available after the first page of results. -
#phone_numbers ⇒ Array<String>
A list of phone numbers that are opted out of receiving SMS messages.
Instance Attribute Details
#next_token ⇒ String
A NextToken
string is returned when you call the
ListPhoneNumbersOptedOut
action if additional records are
available after the first page of results.
1298 1299 1300 1301 1302 1303 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1298 class ListPhoneNumbersOptedOutResponse < Struct.new( :phone_numbers, :next_token) SENSITIVE = [:phone_numbers] include Aws::Structure end |
#phone_numbers ⇒ Array<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.
1298 1299 1300 1301 1302 1303 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1298 class ListPhoneNumbersOptedOutResponse < Struct.new( :phone_numbers, :next_token) SENSITIVE = [:phone_numbers] include Aws::Structure end |