/** * 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 ElasticTranscoder { namespace Model { /** *

When you update status for a pipeline, Elastic Transcoder returns the values * that you specified in the request.

See Also:

AWS * API Reference

*/ class AWS_ELASTICTRANSCODER_API UpdatePipelineStatusResult { public: UpdatePipelineStatusResult(); UpdatePipelineStatusResult(const Aws::AmazonWebServiceResult& result); UpdatePipelineStatusResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A section of the response body that provides information about the * pipeline.

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

A section of the response body that provides information about the * pipeline.

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

A section of the response body that provides information about the * pipeline.

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

A section of the response body that provides information about the * pipeline.

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

A section of the response body that provides information about the * pipeline.

*/ inline UpdatePipelineStatusResult& WithPipeline(Pipeline&& value) { SetPipeline(std::move(value)); return *this;} private: Pipeline m_pipeline; }; } // namespace Model } // namespace ElasticTranscoder } // namespace Aws