/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace imagebuilder { namespace Model { class GetImagePipelineResult { public: AWS_IMAGEBUILDER_API GetImagePipelineResult(); AWS_IMAGEBUILDER_API GetImagePipelineResult(const Aws::AmazonWebServiceResult& result); AWS_IMAGEBUILDER_API GetImagePipelineResult& 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 GetImagePipelineResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *

The request ID that uniquely identifies this request.

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

The request ID that uniquely identifies this request.

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

The image pipeline object.

*/ inline const ImagePipeline& GetImagePipeline() const{ return m_imagePipeline; } /** *

The image pipeline object.

*/ inline void SetImagePipeline(const ImagePipeline& value) { m_imagePipeline = value; } /** *

The image pipeline object.

*/ inline void SetImagePipeline(ImagePipeline&& value) { m_imagePipeline = std::move(value); } /** *

The image pipeline object.

*/ inline GetImagePipelineResult& WithImagePipeline(const ImagePipeline& value) { SetImagePipeline(value); return *this;} /** *

The image pipeline object.

*/ inline GetImagePipelineResult& WithImagePipeline(ImagePipeline&& value) { SetImagePipeline(std::move(value)); return *this;} private: Aws::String m_requestId; ImagePipeline m_imagePipeline; }; } // namespace Model } // namespace imagebuilder } // namespace Aws