/** * 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 IoTAnalytics { namespace Model { class DescribePipelineResult { public: AWS_IOTANALYTICS_API DescribePipelineResult(); AWS_IOTANALYTICS_API DescribePipelineResult(const Aws::AmazonWebServiceResult& result); AWS_IOTANALYTICS_API DescribePipelineResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A Pipeline object that contains information about the * pipeline.

*/ inline const Pipeline& GetPipeline() const{ return m_pipeline; } /** *

A Pipeline object that contains information about the * pipeline.

*/ inline void SetPipeline(const Pipeline& value) { m_pipeline = value; } /** *

A Pipeline object that contains information about the * pipeline.

*/ inline void SetPipeline(Pipeline&& value) { m_pipeline = std::move(value); } /** *

A Pipeline object that contains information about the * pipeline.

*/ inline DescribePipelineResult& WithPipeline(const Pipeline& value) { SetPipeline(value); return *this;} /** *

A Pipeline object that contains information about the * pipeline.

*/ inline DescribePipelineResult& WithPipeline(Pipeline&& value) { SetPipeline(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribePipelineResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribePipelineResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribePipelineResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Pipeline m_pipeline; Aws::String m_requestId; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws