Class: Aws::IoTFleetWise::Types::FormattedVss
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::FormattedVss
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
Note:
FormattedVss is a union - when making an API calls you must set exactly one of the members.
- Vehicle Signal Specification (VSS)][1
-
is a precise language used to
describe and model signals in vehicle networks. The JSON file collects signal specificiations in a VSS format.
[1]: www.w3.org/auto/wg/wiki/Vehicle_Signal_Specification_(VSS)/Vehicle_Data_Spec
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#vss_json ⇒ String
Provides the VSS in JSON format.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1781 1782 1783 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1781 def unknown @unknown end |
#vss_json ⇒ String
Provides the VSS in JSON format.
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 1781 class FormattedVss < Struct.new( :vss_json, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class VssJson < FormattedVss; end class Unknown < FormattedVss; end end |