Class: Aws::InternetMonitor::Types::GetQueryResultsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::InternetMonitor::Types::GetQueryResultsOutput
- Defined in:
- gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data ⇒ Array<Array<String>>
The data results that the query returns.
-
#fields ⇒ Array<Types::QueryField>
The fields that the query returns data for.
-
#next_token ⇒ String
The token for the next set of results.
Instance Attribute Details
#data ⇒ Array<Array<String>>
The data results that the query returns. Data is returned in arrays,
aligned with the Fields
for the query, which creates a repository
of Amazon CloudWatch Internet Monitor information for your
application. Then, you can filter the information in the repository
by using FilterParameters
that you define.
735 736 737 738 739 740 741 |
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 735 class GetQueryResultsOutput < Struct.new( :fields, :data, :next_token) SENSITIVE = [] include Aws::Structure end |
#fields ⇒ Array<Types::QueryField>
The fields that the query returns data for. Fields are name-data
type pairs, such as availability_score
-float
.
735 736 737 738 739 740 741 |
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 735 class GetQueryResultsOutput < Struct.new( :fields, :data, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. You receive this token from a previous call.
735 736 737 738 739 740 741 |
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 735 class GetQueryResultsOutput < Struct.new( :fields, :data, :next_token) SENSITIVE = [] include Aws::Structure end |