/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace RoboMaker { namespace Model { class AWS_ROBOMAKER_API DeregisterRobotResult { public: DeregisterRobotResult(); DeregisterRobotResult(const Aws::AmazonWebServiceResult& result); DeregisterRobotResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline const Aws::String& GetFleet() const{ return m_fleet; } /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline void SetFleet(const Aws::String& value) { m_fleet = value; } /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline void SetFleet(Aws::String&& value) { m_fleet = std::move(value); } /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline void SetFleet(const char* value) { m_fleet.assign(value); } /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline DeregisterRobotResult& WithFleet(const Aws::String& value) { SetFleet(value); return *this;} /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline DeregisterRobotResult& WithFleet(Aws::String&& value) { SetFleet(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the fleet.

*/ inline DeregisterRobotResult& WithFleet(const char* value) { SetFleet(value); return *this;} /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline const Aws::String& GetRobot() const{ return m_robot; } /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline void SetRobot(const Aws::String& value) { m_robot = value; } /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline void SetRobot(Aws::String&& value) { m_robot = std::move(value); } /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline void SetRobot(const char* value) { m_robot.assign(value); } /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline DeregisterRobotResult& WithRobot(const Aws::String& value) { SetRobot(value); return *this;} /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline DeregisterRobotResult& WithRobot(Aws::String&& value) { SetRobot(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the robot.

*/ inline DeregisterRobotResult& WithRobot(const char* value) { SetRobot(value); return *this;} private: Aws::String m_fleet; Aws::String m_robot; }; } // namespace Model } // namespace RoboMaker } // namespace Aws