Class: Aws::PrometheusService::Types::ListScrapersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::ListScrapersResponse
- Defined in:
- gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb
Overview
Represents the output of a ListScrapers operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token indicating that there are more results to retrieve.
-
#scrapers ⇒ Array<Types::ScraperSummary>
A list of
ScraperSummarystructures giving information about scrapers in the account that match the filters provided.
Instance Attribute Details
#next_token ⇒ String
A token indicating that there are more results to retrieve. You can
use this token as part of your next ListScrapers operation to
retrieve those results.
1703 1704 1705 1706 1707 1708 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 1703 class ListScrapersResponse < Struct.new( :scrapers, :next_token) SENSITIVE = [] include Aws::Structure end |
#scrapers ⇒ Array<Types::ScraperSummary>
A list of ScraperSummary structures giving information about
scrapers in the account that match the filters provided.
1703 1704 1705 1706 1707 1708 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 1703 class ListScrapersResponse < Struct.new( :scrapers, :next_token) SENSITIVE = [] include Aws::Structure end |