This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-datapipeline/include/aws/datapipeline/model/GetPipelineDefinitionResult.h

162 lines
5.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/datapipeline/DataPipeline_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/datapipeline/model/PipelineObject.h>
#include <aws/datapipeline/model/ParameterObject.h>
#include <aws/datapipeline/model/ParameterValue.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace DataPipeline
{
namespace Model
{
/**
* <p>Contains the output of GetPipelineDefinition.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/GetPipelineDefinitionOutput">AWS
* API Reference</a></p>
*/
class AWS_DATAPIPELINE_API GetPipelineDefinitionResult
{
public:
GetPipelineDefinitionResult();
GetPipelineDefinitionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetPipelineDefinitionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The objects defined in the pipeline.</p>
*/
inline const Aws::Vector<PipelineObject>& GetPipelineObjects() const{ return m_pipelineObjects; }
/**
* <p>The objects defined in the pipeline.</p>
*/
inline void SetPipelineObjects(const Aws::Vector<PipelineObject>& value) { m_pipelineObjects = value; }
/**
* <p>The objects defined in the pipeline.</p>
*/
inline void SetPipelineObjects(Aws::Vector<PipelineObject>&& value) { m_pipelineObjects = std::move(value); }
/**
* <p>The objects defined in the pipeline.</p>
*/
inline GetPipelineDefinitionResult& WithPipelineObjects(const Aws::Vector<PipelineObject>& value) { SetPipelineObjects(value); return *this;}
/**
* <p>The objects defined in the pipeline.</p>
*/
inline GetPipelineDefinitionResult& WithPipelineObjects(Aws::Vector<PipelineObject>&& value) { SetPipelineObjects(std::move(value)); return *this;}
/**
* <p>The objects defined in the pipeline.</p>
*/
inline GetPipelineDefinitionResult& AddPipelineObjects(const PipelineObject& value) { m_pipelineObjects.push_back(value); return *this; }
/**
* <p>The objects defined in the pipeline.</p>
*/
inline GetPipelineDefinitionResult& AddPipelineObjects(PipelineObject&& value) { m_pipelineObjects.push_back(std::move(value)); return *this; }
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline const Aws::Vector<ParameterObject>& GetParameterObjects() const{ return m_parameterObjects; }
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline void SetParameterObjects(const Aws::Vector<ParameterObject>& value) { m_parameterObjects = value; }
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline void SetParameterObjects(Aws::Vector<ParameterObject>&& value) { m_parameterObjects = std::move(value); }
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& WithParameterObjects(const Aws::Vector<ParameterObject>& value) { SetParameterObjects(value); return *this;}
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& WithParameterObjects(Aws::Vector<ParameterObject>&& value) { SetParameterObjects(std::move(value)); return *this;}
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& AddParameterObjects(const ParameterObject& value) { m_parameterObjects.push_back(value); return *this; }
/**
* <p>The parameter objects used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& AddParameterObjects(ParameterObject&& value) { m_parameterObjects.push_back(std::move(value)); return *this; }
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline const Aws::Vector<ParameterValue>& GetParameterValues() const{ return m_parameterValues; }
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline void SetParameterValues(const Aws::Vector<ParameterValue>& value) { m_parameterValues = value; }
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline void SetParameterValues(Aws::Vector<ParameterValue>&& value) { m_parameterValues = std::move(value); }
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& WithParameterValues(const Aws::Vector<ParameterValue>& value) { SetParameterValues(value); return *this;}
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& WithParameterValues(Aws::Vector<ParameterValue>&& value) { SetParameterValues(std::move(value)); return *this;}
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& AddParameterValues(const ParameterValue& value) { m_parameterValues.push_back(value); return *this; }
/**
* <p>The parameter values used in the pipeline definition.</p>
*/
inline GetPipelineDefinitionResult& AddParameterValues(ParameterValue&& value) { m_parameterValues.push_back(std::move(value)); return *this; }
private:
Aws::Vector<PipelineObject> m_pipelineObjects;
Aws::Vector<ParameterObject> m_parameterObjects;
Aws::Vector<ParameterValue> m_parameterValues;
};
} // namespace Model
} // namespace DataPipeline
} // namespace Aws