Class: Aws::ResilienceHub::Types::Field

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-resiliencehub/types.rb

Overview

Indicates the field or attribute of a resource or data structure on which a condition is being applied or evaluated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aggregationString

(Optional) Indicates the type of aggregation or summary operation (such as Sum, Average, and so on) to be performed on a particular field or set of data.

Returns:

  • (String)


3207
3208
3209
3210
3211
3212
# File 'lib/aws-sdk-resiliencehub/types.rb', line 3207

class Field < Struct.new(
  :aggregation,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

Name of the field.

Returns:

  • (String)


3207
3208
3209
3210
3211
3212
# File 'lib/aws-sdk-resiliencehub/types.rb', line 3207

class Field < Struct.new(
  :aggregation,
  :name)
  SENSITIVE = []
  include Aws::Structure
end