/** * 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 { /** *

Specifications for defining a vehicle network.

See Also:

AWS * API Reference

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

Information, including CAN DBC files, about the configurations used to create * a decoder manifest.

*/ inline const CanDbcDefinition& GetCanDbc() const{ return m_canDbc; } /** *

Information, including CAN DBC files, about the configurations used to create * a decoder manifest.

*/ inline bool CanDbcHasBeenSet() const { return m_canDbcHasBeenSet; } /** *

Information, including CAN DBC files, about the configurations used to create * a decoder manifest.

*/ inline void SetCanDbc(const CanDbcDefinition& value) { m_canDbcHasBeenSet = true; m_canDbc = value; } /** *

Information, including CAN DBC files, about the configurations used to create * a decoder manifest.

*/ inline void SetCanDbc(CanDbcDefinition&& value) { m_canDbcHasBeenSet = true; m_canDbc = std::move(value); } /** *

Information, including CAN DBC files, about the configurations used to create * a decoder manifest.

*/ inline NetworkFileDefinition& WithCanDbc(const CanDbcDefinition& value) { SetCanDbc(value); return *this;} /** *

Information, including CAN DBC files, about the configurations used to create * a decoder manifest.

*/ inline NetworkFileDefinition& WithCanDbc(CanDbcDefinition&& value) { SetCanDbc(std::move(value)); return *this;} private: CanDbcDefinition m_canDbc; bool m_canDbcHasBeenSet = false; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws