/** * 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 DeleteImagePipelineResult { public: AWS_IMAGEBUILDER_API DeleteImagePipelineResult(); AWS_IMAGEBUILDER_API DeleteImagePipelineResult(const Aws::AmazonWebServiceResult& result); AWS_IMAGEBUILDER_API DeleteImagePipelineResult& 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 DeleteImagePipelineResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *

The request ID that uniquely identifies this request.

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

The request ID that uniquely identifies this request.

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

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

*/ inline const Aws::String& GetImagePipelineArn() const{ return m_imagePipelineArn; } /** *

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

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

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

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

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

*/ inline void SetImagePipelineArn(const char* value) { m_imagePipelineArn.assign(value); } /** *

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

*/ inline DeleteImagePipelineResult& WithImagePipelineArn(const Aws::String& value) { SetImagePipelineArn(value); return *this;} /** *

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

*/ inline DeleteImagePipelineResult& WithImagePipelineArn(Aws::String&& value) { SetImagePipelineArn(std::move(value)); return *this;} /** *

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

*/ inline DeleteImagePipelineResult& WithImagePipelineArn(const char* value) { SetImagePipelineArn(value); return *this;} private: Aws::String m_requestId; Aws::String m_imagePipelineArn; }; } // namespace Model } // namespace imagebuilder } // namespace Aws