You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::IoTSiteWise::Types::AssetPropertyValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::AssetPropertyValue
- Defined in:
- (unknown)
Overview
Note:
When passing AssetPropertyValue as input to an Aws::Client method, you can use a vanilla Hash:
{
value: { # required
string_value: "PropertyValueStringValue",
integer_value: 1,
double_value: 1.0,
boolean_value: false,
},
timestamp: { # required
time_in_seconds: 1, # required
offset_in_nanos: 1,
},
quality: "GOOD", # accepts GOOD, BAD, UNCERTAIN
}
Contains asset property value information.
Returned by:
Instance Attribute Summary collapse
-
#quality ⇒ String
The quality of the asset property value.
-
#timestamp ⇒ Types::TimeInNanos
The timestamp of the asset property value.
-
#value ⇒ Types::Variant
The value of the asset property (see
Variant
).
Instance Attribute Details
#quality ⇒ String
The quality of the asset property value.
Possible values:
- GOOD
- BAD
- UNCERTAIN
#timestamp ⇒ Types::TimeInNanos
The timestamp of the asset property value.
#value ⇒ Types::Variant
The value of the asset property (see Variant
).