/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Summary information for a robot application.See Also:
AWS
* API Reference
The name of the robot application.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the robot application.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the robot application.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the robot application.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the robot application.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the robot application.
*/ inline RobotApplicationSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the robot application.
*/ inline RobotApplicationSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the robot application.
*/ inline RobotApplicationSummary& WithName(const char* value) { SetName(value); return *this;} /** *The Amazon Resource Name (ARN) of the robot.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the robot.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the robot.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the robot.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the robot.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the robot.
*/ inline RobotApplicationSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the robot.
*/ inline RobotApplicationSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the robot.
*/ inline RobotApplicationSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *The version of the robot application.
*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *The version of the robot application.
*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *The version of the robot application.
*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *The version of the robot application.
*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *The version of the robot application.
*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *The version of the robot application.
*/ inline RobotApplicationSummary& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *The version of the robot application.
*/ inline RobotApplicationSummary& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *The version of the robot application.
*/ inline RobotApplicationSummary& WithVersion(const char* value) { SetVersion(value); return *this;} /** *The time, in milliseconds since the epoch, when the robot application was * last updated.
*/ inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; } /** *The time, in milliseconds since the epoch, when the robot application was * last updated.
*/ inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; } /** *The time, in milliseconds since the epoch, when the robot application was * last updated.
*/ inline void SetLastUpdatedAt(const Aws::Utils::DateTime& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = value; } /** *The time, in milliseconds since the epoch, when the robot application was * last updated.
*/ inline void SetLastUpdatedAt(Aws::Utils::DateTime&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::move(value); } /** *The time, in milliseconds since the epoch, when the robot application was * last updated.
*/ inline RobotApplicationSummary& WithLastUpdatedAt(const Aws::Utils::DateTime& value) { SetLastUpdatedAt(value); return *this;} /** *The time, in milliseconds since the epoch, when the robot application was * last updated.
*/ inline RobotApplicationSummary& WithLastUpdatedAt(Aws::Utils::DateTime&& value) { SetLastUpdatedAt(std::move(value)); return *this;} /** *Information about a robot software suite (ROS distribution).
*/ inline const RobotSoftwareSuite& GetRobotSoftwareSuite() const{ return m_robotSoftwareSuite; } /** *Information about a robot software suite (ROS distribution).
*/ inline bool RobotSoftwareSuiteHasBeenSet() const { return m_robotSoftwareSuiteHasBeenSet; } /** *Information about a robot software suite (ROS distribution).
*/ inline void SetRobotSoftwareSuite(const RobotSoftwareSuite& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = value; } /** *Information about a robot software suite (ROS distribution).
*/ inline void SetRobotSoftwareSuite(RobotSoftwareSuite&& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = std::move(value); } /** *Information about a robot software suite (ROS distribution).
*/ inline RobotApplicationSummary& WithRobotSoftwareSuite(const RobotSoftwareSuite& value) { SetRobotSoftwareSuite(value); return *this;} /** *Information about a robot software suite (ROS distribution).
*/ inline RobotApplicationSummary& WithRobotSoftwareSuite(RobotSoftwareSuite&& value) { SetRobotSoftwareSuite(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_version; bool m_versionHasBeenSet = false; Aws::Utils::DateTime m_lastUpdatedAt; bool m_lastUpdatedAtHasBeenSet = false; RobotSoftwareSuite m_robotSoftwareSuite; bool m_robotSoftwareSuiteHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws