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)


3254
3255
3256
3257
3258
3259
# File 'lib/aws-sdk-resiliencehub/types.rb', line 3254

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

#nameString

Name of the field.

Returns:

  • (String)


3254
3255
3256
3257
3258
3259
# File 'lib/aws-sdk-resiliencehub/types.rb', line 3254

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