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

Information about a robot software suite (ROS distribution).

See * Also:

AWS * API Reference

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

The name of the robot software suite (ROS distribution).

*/ inline const RobotSoftwareSuiteType& GetName() const{ return m_name; } /** *

The name of the robot software suite (ROS distribution).

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the robot software suite (ROS distribution).

*/ inline void SetName(const RobotSoftwareSuiteType& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the robot software suite (ROS distribution).

*/ inline void SetName(RobotSoftwareSuiteType&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the robot software suite (ROS distribution).

*/ inline RobotSoftwareSuite& WithName(const RobotSoftwareSuiteType& value) { SetName(value); return *this;} /** *

The name of the robot software suite (ROS distribution).

*/ inline RobotSoftwareSuite& WithName(RobotSoftwareSuiteType&& value) { SetName(std::move(value)); return *this;} /** *

The version of the robot software suite (ROS distribution).

*/ inline const RobotSoftwareSuiteVersionType& GetVersion() const{ return m_version; } /** *

The version of the robot software suite (ROS distribution).

*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *

The version of the robot software suite (ROS distribution).

*/ inline void SetVersion(const RobotSoftwareSuiteVersionType& value) { m_versionHasBeenSet = true; m_version = value; } /** *

The version of the robot software suite (ROS distribution).

*/ inline void SetVersion(RobotSoftwareSuiteVersionType&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *

The version of the robot software suite (ROS distribution).

*/ inline RobotSoftwareSuite& WithVersion(const RobotSoftwareSuiteVersionType& value) { SetVersion(value); return *this;} /** *

The version of the robot software suite (ROS distribution).

*/ inline RobotSoftwareSuite& WithVersion(RobotSoftwareSuiteVersionType&& value) { SetVersion(std::move(value)); return *this;} private: RobotSoftwareSuiteType m_name; bool m_nameHasBeenSet = false; RobotSoftwareSuiteVersionType m_version; bool m_versionHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws