AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
DescribePipelinesRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/datapipeline/DataPipelineRequest.h>
10#include <aws/datapipeline/DataPipeline_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace DataPipeline {
16namespace Model {
17
24 public:
25 AWS_DATAPIPELINE_API DescribePipelinesRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribePipelines"; }
32
33 AWS_DATAPIPELINE_API Aws::String SerializePayload() const override;
34
35 AWS_DATAPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
38
42 inline const Aws::Vector<Aws::String>& GetPipelineIds() const { return m_pipelineIds; }
43 inline bool PipelineIdsHasBeenSet() const { return m_pipelineIdsHasBeenSet; }
44 template <typename PipelineIdsT = Aws::Vector<Aws::String>>
45 void SetPipelineIds(PipelineIdsT&& value) {
46 m_pipelineIdsHasBeenSet = true;
47 m_pipelineIds = std::forward<PipelineIdsT>(value);
48 }
49 template <typename PipelineIdsT = Aws::Vector<Aws::String>>
51 SetPipelineIds(std::forward<PipelineIdsT>(value));
52 return *this;
53 }
54 template <typename PipelineIdsT = Aws::String>
56 m_pipelineIdsHasBeenSet = true;
57 m_pipelineIds.emplace_back(std::forward<PipelineIdsT>(value));
58 return *this;
59 }
61 private:
62 Aws::Vector<Aws::String> m_pipelineIds;
63 bool m_pipelineIdsHasBeenSet = false;
64};
65
66} // namespace Model
67} // namespace DataPipeline
68} // namespace Aws
AWS_DATAPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DATAPIPELINE_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
DescribePipelinesRequest & AddPipelineIds(PipelineIdsT &&value)
AWS_DATAPIPELINE_API DescribePipelinesRequest()=default
const Aws::Vector< Aws::String > & GetPipelineIds() const
DescribePipelinesRequest & WithPipelineIds(PipelineIdsT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector