Class: Aws::Sustainability::Types::DimensionEntry

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

Overview

Represents a dimension and its corresponding value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dimensionString

The dimension type that categorizes this entry.

Returns:

  • (String)


40
41
42
43
44
45
# File 'lib/aws-sdk-sustainability/types.rb', line 40

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

#valueString

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).

Returns:

  • (String)


40
41
42
43
44
45
# File 'lib/aws-sdk-sustainability/types.rb', line 40

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