Class: Aws::TimestreamWrite::Types::Dimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::Dimension
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-timestreamwrite/types.rb
Overview
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
-
#dimension_value_type ⇒ String
The data type of the dimension for the time series data point.
-
#name ⇒ String
Dimension represents the meta data attributes of the time series.
-
#value ⇒ String
The value of the dimension.
Instance Attribute Details
#dimension_value_type ⇒ String
The data type of the dimension for the time series data point.
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 |
#name ⇒ String
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
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 |