/** * 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 Http { class URI; } //namespace Http namespace SimSpaceWeaver { namespace Model { /** */ class DeleteAppRequest : public SimSpaceWeaverRequest { public: AWS_SIMSPACEWEAVER_API DeleteAppRequest(); // 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 "DeleteApp"; } AWS_SIMSPACEWEAVER_API Aws::String SerializePayload() const override; AWS_SIMSPACEWEAVER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The name of the app.

*/ inline const Aws::String& GetApp() const{ return m_app; } /** *

The name of the app.

*/ inline bool AppHasBeenSet() const { return m_appHasBeenSet; } /** *

The name of the app.

*/ inline void SetApp(const Aws::String& value) { m_appHasBeenSet = true; m_app = value; } /** *

The name of the app.

*/ inline void SetApp(Aws::String&& value) { m_appHasBeenSet = true; m_app = std::move(value); } /** *

The name of the app.

*/ inline void SetApp(const char* value) { m_appHasBeenSet = true; m_app.assign(value); } /** *

The name of the app.

*/ inline DeleteAppRequest& WithApp(const Aws::String& value) { SetApp(value); return *this;} /** *

The name of the app.

*/ inline DeleteAppRequest& WithApp(Aws::String&& value) { SetApp(std::move(value)); return *this;} /** *

The name of the app.

*/ inline DeleteAppRequest& WithApp(const char* value) { SetApp(value); return *this;} /** *

The name of the domain of the app.

*/ inline const Aws::String& GetDomain() const{ return m_domain; } /** *

The name of the domain of the app.

*/ inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; } /** *

The name of the domain of the app.

*/ inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; } /** *

The name of the domain of the app.

*/ inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); } /** *

The name of the domain of the app.

*/ inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); } /** *

The name of the domain of the app.

*/ inline DeleteAppRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;} /** *

The name of the domain of the app.

*/ inline DeleteAppRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;} /** *

The name of the domain of the app.

*/ inline DeleteAppRequest& WithDomain(const char* value) { SetDomain(value); return *this;} /** *

The name of the simulation of the app.

*/ inline const Aws::String& GetSimulation() const{ return m_simulation; } /** *

The name of the simulation of the app.

*/ inline bool SimulationHasBeenSet() const { return m_simulationHasBeenSet; } /** *

The name of the simulation of the app.

*/ inline void SetSimulation(const Aws::String& value) { m_simulationHasBeenSet = true; m_simulation = value; } /** *

The name of the simulation of the app.

*/ inline void SetSimulation(Aws::String&& value) { m_simulationHasBeenSet = true; m_simulation = std::move(value); } /** *

The name of the simulation of the app.

*/ inline void SetSimulation(const char* value) { m_simulationHasBeenSet = true; m_simulation.assign(value); } /** *

The name of the simulation of the app.

*/ inline DeleteAppRequest& WithSimulation(const Aws::String& value) { SetSimulation(value); return *this;} /** *

The name of the simulation of the app.

*/ inline DeleteAppRequest& WithSimulation(Aws::String&& value) { SetSimulation(std::move(value)); return *this;} /** *

The name of the simulation of the app.

*/ inline DeleteAppRequest& WithSimulation(const char* value) { SetSimulation(value); return *this;} private: Aws::String m_app; bool m_appHasBeenSet = false; Aws::String m_domain; bool m_domainHasBeenSet = false; Aws::String m_simulation; bool m_simulationHasBeenSet = false; }; } // namespace Model } // namespace SimSpaceWeaver } // namespace Aws