/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace imagebuilder { namespace Model { class DeleteImageRecipeResult { public: AWS_IMAGEBUILDER_API DeleteImageRecipeResult(); AWS_IMAGEBUILDER_API DeleteImageRecipeResult(const Aws::AmazonWebServiceResult& result); AWS_IMAGEBUILDER_API DeleteImageRecipeResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The request ID that uniquely identifies this request.

*/ inline const Aws::String& GetRequestId() const{ return m_requestId; } /** *

The request ID that uniquely identifies this request.

*/ inline void SetRequestId(const Aws::String& value) { m_requestId = value; } /** *

The request ID that uniquely identifies this request.

*/ inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } /** *

The request ID that uniquely identifies this request.

*/ inline void SetRequestId(const char* value) { m_requestId.assign(value); } /** *

The request ID that uniquely identifies this request.

*/ inline DeleteImageRecipeResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *

The request ID that uniquely identifies this request.

*/ inline DeleteImageRecipeResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} /** *

The request ID that uniquely identifies this request.

*/ inline DeleteImageRecipeResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline const Aws::String& GetImageRecipeArn() const{ return m_imageRecipeArn; } /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline void SetImageRecipeArn(const Aws::String& value) { m_imageRecipeArn = value; } /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline void SetImageRecipeArn(Aws::String&& value) { m_imageRecipeArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline void SetImageRecipeArn(const char* value) { m_imageRecipeArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline DeleteImageRecipeResult& WithImageRecipeArn(const Aws::String& value) { SetImageRecipeArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline DeleteImageRecipeResult& WithImageRecipeArn(Aws::String&& value) { SetImageRecipeArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the image recipe that was deleted.

*/ inline DeleteImageRecipeResult& WithImageRecipeArn(const char* value) { SetImageRecipeArn(value); return *this;} private: Aws::String m_requestId; Aws::String m_imageRecipeArn; }; } // namespace Model } // namespace imagebuilder } // namespace Aws