Class: Aws::SNS::Types::ListTopicsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::ListTopicsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sns/types.rb
Overview
Response for ListTopics action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Token to pass along to the next ‘ListTopics` request.
-
#topics ⇒ Array<Types::Topic>
A list of topic ARNs.
Instance Attribute Details
#next_token ⇒ String
Token to pass along to the next ‘ListTopics` request. This element is returned if there are additional topics to retrieve.
1482 1483 1484 1485 1486 1487 |
# File 'lib/aws-sdk-sns/types.rb', line 1482 class ListTopicsResponse < Struct.new( :topics, :next_token) SENSITIVE = [] include Aws::Structure end |
#topics ⇒ Array<Types::Topic>
A list of topic ARNs.
1482 1483 1484 1485 1486 1487 |
# File 'lib/aws-sdk-sns/types.rb', line 1482 class ListTopicsResponse < Struct.new( :topics, :next_token) SENSITIVE = [] include Aws::Structure end |