Class: Aws::IoTFleetWise::Types::FormattedVss
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::FormattedVss
- Defined in:
- gems/aws-sdk-iotfleetwise/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) is a precise language used to describe and model signals in vehicle networks. The JSON file collects signal specificiations in a VSS format.
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
1442 1443 1444 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 1442 def unknown @unknown end |
#vss_json ⇒ String
Provides the VSS in JSON format.
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 1442 class FormattedVss < Struct.new( :vss_json, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class VssJson < FormattedVss; end class Unknown < FormattedVss; end end |