/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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.See Also:
AWS
* API Reference
Provides the VSS in JSON format.
*/ inline const Aws::String& GetVssJson() const{ return m_vssJson; } /** *Provides the VSS in JSON format.
*/ inline bool VssJsonHasBeenSet() const { return m_vssJsonHasBeenSet; } /** *Provides the VSS in JSON format.
*/ inline void SetVssJson(const Aws::String& value) { m_vssJsonHasBeenSet = true; m_vssJson = value; } /** *Provides the VSS in JSON format.
*/ inline void SetVssJson(Aws::String&& value) { m_vssJsonHasBeenSet = true; m_vssJson = std::move(value); } /** *Provides the VSS in JSON format.
*/ inline void SetVssJson(const char* value) { m_vssJsonHasBeenSet = true; m_vssJson.assign(value); } /** *Provides the VSS in JSON format.
*/ inline FormattedVss& WithVssJson(const Aws::String& value) { SetVssJson(value); return *this;} /** *Provides the VSS in JSON format.
*/ inline FormattedVss& WithVssJson(Aws::String&& value) { SetVssJson(std::move(value)); return *this;} /** *Provides the VSS in JSON format.
*/ inline FormattedVss& WithVssJson(const char* value) { SetVssJson(value); return *this;} private: Aws::String m_vssJson; bool m_vssJsonHasBeenSet = false; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws