Class: Aws::DevOpsGuru::Types::CloudWatchMetricsDimension

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb

Overview

The dimension of an Amazon CloudWatch metric that is used when DevOps Guru analyzes the resources in your account for operational problems and anomalous behavior. A dimension is a name/value pair that is part of the identity of a metric. A metric can have up to 10 dimensions. For more information, see Dimensions in the Amazon CloudWatch User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the CloudWatch dimension.

Returns:

  • (String)


470
471
472
473
474
475
# File 'gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb', line 470

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

#valueString

The value of the CloudWatch dimension.

Returns:

  • (String)


470
471
472
473
474
475
# File 'gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb', line 470

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