AWSIoTTimestreamDimension
Objective-C
@interface AWSIoTTimestreamDimension
Swift
class AWSIoTTimestreamDimension
Metadata attributes of the time series that are written in each measure record.
Required parameters: [name, value]
-
The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.
Dimensions cannot be named:
measure_name
,measure_value
, ortime
. These names are reserved. Dimension names cannot start withts_
ormeasure_value
and they cannot contain the colon (:
) character.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
The value to write in this column of the database record.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable value;
Swift
var value: String? { get set }