Class: Aws::CloudWatch::Types::DimensionFilter

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

Overview

Note:

When making an API call, you may pass DimensionFilter data as a hash:

{
  name: "DimensionName", # required
  value: "DimensionValue",
}

Represents filters for a dimension.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The dimension name to be matched.

Returns:

  • (String)


435
436
437
438
439
# File 'lib/aws-sdk-cloudwatch/types.rb', line 435

class DimensionFilter < Struct.new(
  :name,
  :value)
  include Aws::Structure
end

#valueString

The value of the dimension to be matched.

Returns:

  • (String)


435
436
437
438
439
# File 'lib/aws-sdk-cloudwatch/types.rb', line 435

class DimensionFilter < Struct.new(
  :name,
  :value)
  include Aws::Structure
end