/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/codecatalyst/CodeCatalyst_EXPORTS.h> #include <aws/codecatalyst/CodeCatalystRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace CodeCatalyst { namespace Model { /** */ class DeleteDevEnvironmentRequest : public CodeCatalystRequest { public: AWS_CODECATALYST_API DeleteDevEnvironmentRequest(); // 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 "DeleteDevEnvironment"; } AWS_CODECATALYST_API Aws::String SerializePayload() const override; /** * <p>The name of the space.</p> */ inline const Aws::String& GetSpaceName() const{ return m_spaceName; } /** * <p>The name of the space.</p> */ inline bool SpaceNameHasBeenSet() const { return m_spaceNameHasBeenSet; } /** * <p>The name of the space.</p> */ inline void SetSpaceName(const Aws::String& value) { m_spaceNameHasBeenSet = true; m_spaceName = value; } /** * <p>The name of the space.</p> */ inline void SetSpaceName(Aws::String&& value) { m_spaceNameHasBeenSet = true; m_spaceName = std::move(value); } /** * <p>The name of the space.</p> */ inline void SetSpaceName(const char* value) { m_spaceNameHasBeenSet = true; m_spaceName.assign(value); } /** * <p>The name of the space.</p> */ inline DeleteDevEnvironmentRequest& WithSpaceName(const Aws::String& value) { SetSpaceName(value); return *this;} /** * <p>The name of the space.</p> */ inline DeleteDevEnvironmentRequest& WithSpaceName(Aws::String&& value) { SetSpaceName(std::move(value)); return *this;} /** * <p>The name of the space.</p> */ inline DeleteDevEnvironmentRequest& WithSpaceName(const char* value) { SetSpaceName(value); return *this;} /** * <p>The name of the project in the space.</p> */ inline const Aws::String& GetProjectName() const{ return m_projectName; } /** * <p>The name of the project in the space.</p> */ inline bool ProjectNameHasBeenSet() const { return m_projectNameHasBeenSet; } /** * <p>The name of the project in the space.</p> */ inline void SetProjectName(const Aws::String& value) { m_projectNameHasBeenSet = true; m_projectName = value; } /** * <p>The name of the project in the space.</p> */ inline void SetProjectName(Aws::String&& value) { m_projectNameHasBeenSet = true; m_projectName = std::move(value); } /** * <p>The name of the project in the space.</p> */ inline void SetProjectName(const char* value) { m_projectNameHasBeenSet = true; m_projectName.assign(value); } /** * <p>The name of the project in the space.</p> */ inline DeleteDevEnvironmentRequest& WithProjectName(const Aws::String& value) { SetProjectName(value); return *this;} /** * <p>The name of the project in the space.</p> */ inline DeleteDevEnvironmentRequest& WithProjectName(Aws::String&& value) { SetProjectName(std::move(value)); return *this;} /** * <p>The name of the project in the space.</p> */ inline DeleteDevEnvironmentRequest& WithProjectName(const char* value) { SetProjectName(value); return *this;} /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline const Aws::String& GetId() const{ return m_id; } /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline DeleteDevEnvironmentRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline DeleteDevEnvironmentRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** * <p>The system-generated unique ID of the Dev Environment you want to delete. To * retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p> */ inline DeleteDevEnvironmentRequest& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_spaceName; bool m_spaceNameHasBeenSet = false; Aws::String m_projectName; bool m_projectNameHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace CodeCatalyst } // namespace Aws