Class: Aws::Sustainability::Types::DimensionEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Sustainability::Types::DimensionEntry
- Defined in:
- gems/aws-sdk-sustainability/lib/aws-sdk-sustainability/types.rb
Overview
Represents a dimension and its corresponding value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dimension ⇒ String
The dimension type that categorizes this entry.
-
#value ⇒ String
The value for the specified dimension.
Instance Attribute Details
#dimension ⇒ String
The dimension type that categorizes this entry.
40 41 42 43 44 45 |
# File 'gems/aws-sdk-sustainability/lib/aws-sdk-sustainability/types.rb', line 40 class DimensionEntry < Struct.new( :dimension, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value for the specified dimension. Valid values vary based on
the dimension type (e.g., us-east-1 for the REGION dimension,
AmazonEC2 for the SERVICE dimension).
40 41 42 43 44 45 |
# File 'gems/aws-sdk-sustainability/lib/aws-sdk-sustainability/types.rb', line 40 class DimensionEntry < Struct.new( :dimension, :value) SENSITIVE = [] include Aws::Structure end |