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

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

Overview

Note:

When making an API call, you may pass Dimension data as a hash:

{
  name: "SchemaName", # required
  value: "SchemaValue", # 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.

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)


380
381
382
383
384
385
386
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 380

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

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

For constraints on Dimension names, see [Naming Constraints].

[1]: docs.aws.amazon.com/timestream/latest/developerguide/ts-limits.html#limits.naming

Returns:

  • (String)


380
381
382
383
384
385
386
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 380

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

#valueString

The value of the dimension.

Returns:

  • (String)


380
381
382
383
384
385
386
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 380

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