class Aws::IoTTwinMaker::Types::PropertyValue

An object that contains information about a value for a time series property.

@note When making an API call, you may pass PropertyValue

data as a hash:

    {
      time: "Time",
      timestamp: Time.now,
      value: { # required
        boolean_value: false,
        double_value: 1.0,
        expression: "Expression",
        integer_value: 1,
        list_value: [
          {
            # recursive DataValue
          },
        ],
        long_value: 1,
        map_value: {
          "String" => {
            # recursive DataValue
          },
        },
        relationship_value: {
          target_component_name: "Name",
          target_entity_id: "EntityId",
        },
        string_value: "String",
      },
    }

@!attribute [rw] time

Timestamp represented in ISO 8601 format
@return [String]

@!attribute [rw] timestamp

The timestamp of a value for a time series property.
@return [Time]

@!attribute [rw] value

An object that specifies a value for a time series property.
@return [Types::DataValue]

Constants

SENSITIVE