Class: Aws::InternetMonitor::Types::QueryField
- Inherits:
-
Struct
- Object
- Struct
- Aws::InternetMonitor::Types::QueryField
- Defined in:
- gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb
Overview
Defines a field to query for your application's Amazon CloudWatch
Internet Monitor data. You create a data repository by running a query
of a specific type. Each QueryType
includes a specific set of fields
and datatypes to retrieve data for.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of a field to query your application's Amazon CloudWatch Internet Monitor data for, such as
availability_score
. -
#type ⇒ String
The data type for a query field, which must correspond to the field you're defining for
QueryField
.
Instance Attribute Details
#name ⇒ String
The name of a field to query your application's Amazon CloudWatch
Internet Monitor data for, such as availability_score
.
1660 1661 1662 1663 1664 1665 |
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1660 class QueryField < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type for a query field, which must correspond to the field
you're defining for QueryField
. For example, if the query field
name is availability_score
, the data type is float
.
1660 1661 1662 1663 1664 1665 |
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1660 class QueryField < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |