79 lines
2.4 KiB
C++
79 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/elastictranscoder/ElasticTranscoder_EXPORTS.h>
|
|
#include <aws/elastictranscoder/model/Pipeline.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace ElasticTranscoder
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>The <code>UpdatePipelineNotificationsResponse</code> structure.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/elastictranscoder-2012-09-25/UpdatePipelineNotificationsResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ELASTICTRANSCODER_API UpdatePipelineNotificationsResult
|
|
{
|
|
public:
|
|
UpdatePipelineNotificationsResult();
|
|
UpdatePipelineNotificationsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdatePipelineNotificationsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>A section of the response body that provides information about the pipeline
|
|
* associated with this notification.</p>
|
|
*/
|
|
inline const Pipeline& GetPipeline() const{ return m_pipeline; }
|
|
|
|
/**
|
|
* <p>A section of the response body that provides information about the pipeline
|
|
* associated with this notification.</p>
|
|
*/
|
|
inline void SetPipeline(const Pipeline& value) { m_pipeline = value; }
|
|
|
|
/**
|
|
* <p>A section of the response body that provides information about the pipeline
|
|
* associated with this notification.</p>
|
|
*/
|
|
inline void SetPipeline(Pipeline&& value) { m_pipeline = std::move(value); }
|
|
|
|
/**
|
|
* <p>A section of the response body that provides information about the pipeline
|
|
* associated with this notification.</p>
|
|
*/
|
|
inline UpdatePipelineNotificationsResult& WithPipeline(const Pipeline& value) { SetPipeline(value); return *this;}
|
|
|
|
/**
|
|
* <p>A section of the response body that provides information about the pipeline
|
|
* associated with this notification.</p>
|
|
*/
|
|
inline UpdatePipelineNotificationsResult& WithPipeline(Pipeline&& value) { SetPipeline(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Pipeline m_pipeline;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ElasticTranscoder
|
|
} // namespace Aws
|