/** * 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 RoboMaker { namespace Model { /** */ class DescribeSimulationApplicationRequest : public RoboMakerRequest { public: AWS_ROBOMAKER_API DescribeSimulationApplicationRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeSimulationApplication"; } AWS_ROBOMAKER_API Aws::String SerializePayload() const override; /** *

The application information for the simulation application.

*/ inline const Aws::String& GetApplication() const{ return m_application; } /** *

The application information for the simulation application.

*/ inline bool ApplicationHasBeenSet() const { return m_applicationHasBeenSet; } /** *

The application information for the simulation application.

*/ inline void SetApplication(const Aws::String& value) { m_applicationHasBeenSet = true; m_application = value; } /** *

The application information for the simulation application.

*/ inline void SetApplication(Aws::String&& value) { m_applicationHasBeenSet = true; m_application = std::move(value); } /** *

The application information for the simulation application.

*/ inline void SetApplication(const char* value) { m_applicationHasBeenSet = true; m_application.assign(value); } /** *

The application information for the simulation application.

*/ inline DescribeSimulationApplicationRequest& WithApplication(const Aws::String& value) { SetApplication(value); return *this;} /** *

The application information for the simulation application.

*/ inline DescribeSimulationApplicationRequest& WithApplication(Aws::String&& value) { SetApplication(std::move(value)); return *this;} /** *

The application information for the simulation application.

*/ inline DescribeSimulationApplicationRequest& WithApplication(const char* value) { SetApplication(value); return *this;} /** *

The version of the simulation application to describe.

*/ inline const Aws::String& GetApplicationVersion() const{ return m_applicationVersion; } /** *

The version of the simulation application to describe.

*/ inline bool ApplicationVersionHasBeenSet() const { return m_applicationVersionHasBeenSet; } /** *

The version of the simulation application to describe.

*/ inline void SetApplicationVersion(const Aws::String& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = value; } /** *

The version of the simulation application to describe.

*/ inline void SetApplicationVersion(Aws::String&& value) { m_applicationVersionHasBeenSet = true; m_applicationVersion = std::move(value); } /** *

The version of the simulation application to describe.

*/ inline void SetApplicationVersion(const char* value) { m_applicationVersionHasBeenSet = true; m_applicationVersion.assign(value); } /** *

The version of the simulation application to describe.

*/ inline DescribeSimulationApplicationRequest& WithApplicationVersion(const Aws::String& value) { SetApplicationVersion(value); return *this;} /** *

The version of the simulation application to describe.

*/ inline DescribeSimulationApplicationRequest& WithApplicationVersion(Aws::String&& value) { SetApplicationVersion(std::move(value)); return *this;} /** *

The version of the simulation application to describe.

*/ inline DescribeSimulationApplicationRequest& WithApplicationVersion(const char* value) { SetApplicationVersion(value); return *this;} private: Aws::String m_application; bool m_applicationHasBeenSet = false; Aws::String m_applicationVersion; bool m_applicationVersionHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws