Class: Aws::IoTSiteWise::Types::Variant
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Variant
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains an asset property value (of a single type only).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#boolean_value ⇒ Boolean
Asset property data of type Boolean (true or false).
-
#double_value ⇒ Float
Asset property data of type double (floating point number).
-
#integer_value ⇒ Integer
Asset property data of type integer (whole number).
-
#string_value ⇒ String
Asset property data of type string (sequence of characters).
Instance Attribute Details
#boolean_value ⇒ Boolean
Asset property data of type Boolean (true or false).
9718 9719 9720 9721 9722 9723 9724 9725 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 9718 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end |
#double_value ⇒ Float
Asset property data of type double (floating point number).
9718 9719 9720 9721 9722 9723 9724 9725 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 9718 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end |
#integer_value ⇒ Integer
Asset property data of type integer (whole number).
9718 9719 9720 9721 9722 9723 9724 9725 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 9718 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
Asset property data of type string (sequence of characters).
9718 9719 9720 9721 9722 9723 9724 9725 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 9718 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value) SENSITIVE = [] include Aws::Structure end |