/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTFleetWise { namespace Model { /** *

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

*/ class FormattedVss { public: AWS_IOTFLEETWISE_API FormattedVss(); AWS_IOTFLEETWISE_API FormattedVss(Aws::Utils::Json::JsonView jsonValue); AWS_IOTFLEETWISE_API FormattedVss& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTFLEETWISE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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