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

Summary information for a simulation application.

See Also:

* AWS * API Reference

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

The name of the simulation application.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the simulation application.

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

The name of the simulation application.

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

The name of the simulation application.

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

The name of the simulation application.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the simulation application.

*/ inline SimulationApplicationSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the simulation application.

*/ inline SimulationApplicationSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the simulation application.

*/ inline SimulationApplicationSummary& WithName(const char* value) { SetName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline SimulationApplicationSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline SimulationApplicationSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the simulation application.

*/ inline SimulationApplicationSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *

The version of the simulation application.

*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *

The version of the simulation application.

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

The version of the simulation application.

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

The version of the simulation application.

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

The version of the simulation application.

*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *

The version of the simulation application.

*/ inline SimulationApplicationSummary& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *

The version of the simulation application.

*/ inline SimulationApplicationSummary& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *

The version of the simulation application.

*/ inline SimulationApplicationSummary& WithVersion(const char* value) { SetVersion(value); return *this;} /** *

The time, in milliseconds since the epoch, when the simulation application * was last updated.

*/ inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; } /** *

The time, in milliseconds since the epoch, when the simulation application * was last updated.

*/ inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; } /** *

The time, in milliseconds since the epoch, when the simulation 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 simulation 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 simulation application * was last updated.

*/ inline SimulationApplicationSummary& WithLastUpdatedAt(const Aws::Utils::DateTime& value) { SetLastUpdatedAt(value); return *this;} /** *

The time, in milliseconds since the epoch, when the simulation application * was last updated.

*/ inline SimulationApplicationSummary& 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 SimulationApplicationSummary& WithRobotSoftwareSuite(const RobotSoftwareSuite& value) { SetRobotSoftwareSuite(value); return *this;} /** *

Information about a robot software suite (ROS distribution).

*/ inline SimulationApplicationSummary& WithRobotSoftwareSuite(RobotSoftwareSuite&& value) { SetRobotSoftwareSuite(std::move(value)); return *this;} /** *

Information about a simulation software suite.

*/ inline const SimulationSoftwareSuite& GetSimulationSoftwareSuite() const{ return m_simulationSoftwareSuite; } /** *

Information about a simulation software suite.

*/ inline bool SimulationSoftwareSuiteHasBeenSet() const { return m_simulationSoftwareSuiteHasBeenSet; } /** *

Information about a simulation software suite.

*/ inline void SetSimulationSoftwareSuite(const SimulationSoftwareSuite& value) { m_simulationSoftwareSuiteHasBeenSet = true; m_simulationSoftwareSuite = value; } /** *

Information about a simulation software suite.

*/ inline void SetSimulationSoftwareSuite(SimulationSoftwareSuite&& value) { m_simulationSoftwareSuiteHasBeenSet = true; m_simulationSoftwareSuite = std::move(value); } /** *

Information about a simulation software suite.

*/ inline SimulationApplicationSummary& WithSimulationSoftwareSuite(const SimulationSoftwareSuite& value) { SetSimulationSoftwareSuite(value); return *this;} /** *

Information about a simulation software suite.

*/ inline SimulationApplicationSummary& WithSimulationSoftwareSuite(SimulationSoftwareSuite&& value) { SetSimulationSoftwareSuite(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; SimulationSoftwareSuite m_simulationSoftwareSuite; bool m_simulationSoftwareSuiteHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws