You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Dimension as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "StringValue256", # required
  value: "StringValue2048", # required
  dimension_value_type: "VARCHAR", # accepts VARCHAR
}

Dimension represents the meta data 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.

Instance Attribute Summary collapse

Instance Attribute Details

#dimension_value_typeString

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

Possible values:

  • VARCHAR

Returns:

  • (String)

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

#nameString

Dimension represents the meta data 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. Dimension names can only contain alphanumeric characters and underscores. Dimension names cannot end with an underscore.

Returns:

  • (String)

    Dimension represents the meta data attributes of the time series.

#valueString

The value of the dimension.

Returns:

  • (String)

    The value of the dimension.