Class: Aws::IoTSiteWise::Types::Variant
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Variant
- Defined in:
- gems/aws-sdk-iotsitewise/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).
-
#null_value ⇒ Types::PropertyValueNullValue
The type of null asset property data with BAD and UNCERTAIN qualities.
-
#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).
9804 9805 9806 9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9804 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#double_value ⇒ Float
Asset property data of type double (floating point number). The min value is -1010. The max value is 1010. Double.NaN is allowed.
9804 9805 9806 9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9804 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#integer_value ⇒ Integer
Asset property data of type integer (whole number).
9804 9805 9806 9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9804 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#null_value ⇒ Types::PropertyValueNullValue
The type of null asset property data with BAD and UNCERTAIN qualities.
9804 9805 9806 9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9804 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value, :null_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
Asset property data of type string (sequence of characters). The allowed pattern: "^$|[^\u0000-\u001F\u007F]+". The max length is 1024.
9804 9805 9806 9807 9808 9809 9810 9811 9812 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 9804 class Variant < Struct.new( :string_value, :integer_value, :double_value, :boolean_value, :null_value) SENSITIVE = [] include Aws::Structure end |