/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifications for defining a vehicle network.See Also:
AWS
* API Reference
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