Class: Aws::CloudWatchOmni::Types::Field
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::Field
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
A telemetry field available for use in query expressions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#children ⇒ Array<Types::Field>
Child fields nested under this field.
-
#name ⇒ String
The name of the field.
Instance Attribute Details
#children ⇒ Array<Types::Field>
Child fields nested under this field.
1967 1968 1969 1970 1971 1972 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1967 class Field < Struct.new( :name, :children) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the field. Field names are case-sensitive and must be used exactly as returned when referencing them in query expressions.
1967 1968 1969 1970 1971 1972 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1967 class Field < Struct.new( :name, :children) SENSITIVE = [] include Aws::Structure end |