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