AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListIngestConfigurationsRequest.h
1
6#pragma once
7#include <aws/ivs-realtime/Ivsrealtime_EXPORTS.h>
8#include <aws/ivs-realtime/IvsrealtimeRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/ivs-realtime/model/IngestConfigurationState.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ivsrealtime
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IVSREALTIME_API ListIngestConfigurationsRequest() = 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 "ListIngestConfigurations"; }
32
33 AWS_IVSREALTIME_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetFilterByStageArn() const { return m_filterByStageArn; }
42 inline bool FilterByStageArnHasBeenSet() const { return m_filterByStageArnHasBeenSet; }
43 template<typename FilterByStageArnT = Aws::String>
44 void SetFilterByStageArn(FilterByStageArnT&& value) { m_filterByStageArnHasBeenSet = true; m_filterByStageArn = std::forward<FilterByStageArnT>(value); }
45 template<typename FilterByStageArnT = Aws::String>
46 ListIngestConfigurationsRequest& WithFilterByStageArn(FilterByStageArnT&& value) { SetFilterByStageArn(std::forward<FilterByStageArnT>(value)); return *this;}
48
50
54 inline IngestConfigurationState GetFilterByState() const { return m_filterByState; }
55 inline bool FilterByStateHasBeenSet() const { return m_filterByStateHasBeenSet; }
56 inline void SetFilterByState(IngestConfigurationState value) { m_filterByStateHasBeenSet = true; m_filterByState = value; }
59
61
65 inline const Aws::String& GetNextToken() const { return m_nextToken; }
66 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
67 template<typename NextTokenT = Aws::String>
68 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
69 template<typename NextTokenT = Aws::String>
70 ListIngestConfigurationsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
72
74
77 inline int GetMaxResults() const { return m_maxResults; }
78 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
79 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
80 inline ListIngestConfigurationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
82 private:
83
84 Aws::String m_filterByStageArn;
85 bool m_filterByStageArnHasBeenSet = false;
86
88 bool m_filterByStateHasBeenSet = false;
89
90 Aws::String m_nextToken;
91 bool m_nextTokenHasBeenSet = false;
92
93 int m_maxResults{0};
94 bool m_maxResultsHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace ivsrealtime
99} // namespace Aws
ListIngestConfigurationsRequest & WithFilterByStageArn(FilterByStageArnT &&value)
ListIngestConfigurationsRequest & WithNextToken(NextTokenT &&value)
AWS_IVSREALTIME_API Aws::String SerializePayload() const override
AWS_IVSREALTIME_API ListIngestConfigurationsRequest()=default
ListIngestConfigurationsRequest & WithFilterByState(IngestConfigurationState value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String