/** * 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 SageMaker { namespace Model { /** */ class DeleteAppImageConfigRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API DeleteAppImageConfigRequest(); // 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 "DeleteAppImageConfig"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the AppImageConfig to delete.

*/ inline const Aws::String& GetAppImageConfigName() const{ return m_appImageConfigName; } /** *

The name of the AppImageConfig to delete.

*/ inline bool AppImageConfigNameHasBeenSet() const { return m_appImageConfigNameHasBeenSet; } /** *

The name of the AppImageConfig to delete.

*/ inline void SetAppImageConfigName(const Aws::String& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = value; } /** *

The name of the AppImageConfig to delete.

*/ inline void SetAppImageConfigName(Aws::String&& value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName = std::move(value); } /** *

The name of the AppImageConfig to delete.

*/ inline void SetAppImageConfigName(const char* value) { m_appImageConfigNameHasBeenSet = true; m_appImageConfigName.assign(value); } /** *

The name of the AppImageConfig to delete.

*/ inline DeleteAppImageConfigRequest& WithAppImageConfigName(const Aws::String& value) { SetAppImageConfigName(value); return *this;} /** *

The name of the AppImageConfig to delete.

*/ inline DeleteAppImageConfigRequest& WithAppImageConfigName(Aws::String&& value) { SetAppImageConfigName(std::move(value)); return *this;} /** *

The name of the AppImageConfig to delete.

*/ inline DeleteAppImageConfigRequest& WithAppImageConfigName(const char* value) { SetAppImageConfigName(value); return *this;} private: Aws::String m_appImageConfigName; bool m_appImageConfigNameHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws