Class: Aws::InternetMonitor::Types::QueryField

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of a field to query your application's Amazon CloudWatch Internet Monitor data for, such as availability_score.

Returns:

  • (String)


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

#typeString

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.

Returns:

  • (String)


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