Class: Aws::ApplicationSignals::Types::Metric
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::Metric
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
This structure defines the metric used for a service level indicator, including the metric name, namespace, and dimensions
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dimensions ⇒ Array<Types::Dimension>
An array of one or more dimensions to use to define the metric that you want to use.
-
#metric_name ⇒ String
The name of the metric to use.
-
#namespace ⇒ String
The namespace of the metric.
Instance Attribute Details
#dimensions ⇒ Array<Types::Dimension>
An array of one or more dimensions to use to define the metric that you want to use. For more information, see Dimensions.
965 966 967 968 969 970 971 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 965 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |
#metric_name ⇒ String
The name of the metric to use.
965 966 967 968 969 970 971 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 965 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace of the metric. For more information, see Namespaces.
965 966 967 968 969 970 971 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 965 class Metric < Struct.new( :namespace, :metric_name, :dimensions) SENSITIVE = [] include Aws::Structure end |