Class: Aws::IoTFleetWise::Types::FormattedVss

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Unknown, VssJson

Defined Under Namespace

Classes: Unknown, VssJson

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1345
1346
1347
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 1345

def unknown
  @unknown
end

#vss_jsonString

Provides the VSS in JSON format.

Returns:

  • (String)


1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 1345

class FormattedVss < Struct.new(
  :vss_json,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class VssJson < FormattedVss; end
  class Unknown < FormattedVss; end
end