Class: Aws::TimestreamWrite::Types::Dimension

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

Overview

Represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dimension_value_typeString

The data type of the dimension for the time-series data point.

Returns:

  • (String)


677
678
679
680
681
682
683
# File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 677

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

#nameString

Dimension represents the metadata attributes of the time series. For example, the name and Availability Zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.

For constraints on dimension names, see Naming Constraints.

Returns:

  • (String)


677
678
679
680
681
682
683
# File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 677

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

#valueString

The value of the dimension.

Returns:

  • (String)


677
678
679
680
681
682
683
# File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 677

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