Class: Aws::SNS::Types::ListTopicsResponse

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

Overview

Response for ListTopics action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

Token to pass along to the next ‘ListTopics` request. This element is returned if there are additional topics to retrieve.

Returns:

  • (String)


902
903
904
905
906
# File 'lib/aws-sdk-sns/types.rb', line 902

class ListTopicsResponse < Struct.new(
  :topics,
  :next_token)
  include Aws::Structure
end

#topicsArray<Types::Topic>

A list of topic ARNs.

Returns:



902
903
904
905
906
# File 'lib/aws-sdk-sns/types.rb', line 902

class ListTopicsResponse < Struct.new(
  :topics,
  :next_token)
  include Aws::Structure
end