/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The UpdatePipelineNotificationsResponse
structure.See
* Also:
AWS
* API Reference
A section of the response body that provides information about the pipeline * associated with this notification.
*/ inline const Pipeline& GetPipeline() const{ return m_pipeline; } /** *A section of the response body that provides information about the pipeline * associated with this notification.
*/ inline void SetPipeline(const Pipeline& value) { m_pipeline = value; } /** *A section of the response body that provides information about the pipeline * associated with this notification.
*/ inline void SetPipeline(Pipeline&& value) { m_pipeline = std::move(value); } /** *A section of the response body that provides information about the pipeline * associated with this notification.
*/ inline UpdatePipelineNotificationsResult& WithPipeline(const Pipeline& value) { SetPipeline(value); return *this;} /** *A section of the response body that provides information about the pipeline * associated with this notification.
*/ inline UpdatePipelineNotificationsResult& 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 UpdatePipelineNotificationsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdatePipelineNotificationsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdatePipelineNotificationsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Pipeline m_pipeline; Aws::String m_requestId; }; } // namespace Model } // namespace ElasticTranscoder } // namespace Aws