AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetFilterByStageArn(const Aws::String& value) { m_filterByStageArnHasBeenSet = true; m_filterByStageArn = value; }
44 inline void SetFilterByStageArn(Aws::String&& value) { m_filterByStageArnHasBeenSet = true; m_filterByStageArn = std::move(value); }
45 inline void SetFilterByStageArn(const char* value) { m_filterByStageArnHasBeenSet = true; m_filterByStageArn.assign(value); }
47 inline ListIngestConfigurationsRequest& WithFilterByStageArn(Aws::String&& value) { SetFilterByStageArn(std::move(value)); return *this;}
48 inline ListIngestConfigurationsRequest& WithFilterByStageArn(const char* value) { SetFilterByStageArn(value); return *this;}
50
52
56 inline const IngestConfigurationState& GetFilterByState() const{ return m_filterByState; }
57 inline bool FilterByStateHasBeenSet() const { return m_filterByStateHasBeenSet; }
58 inline void SetFilterByState(const IngestConfigurationState& value) { m_filterByStateHasBeenSet = true; m_filterByState = value; }
59 inline void SetFilterByState(IngestConfigurationState&& value) { m_filterByStateHasBeenSet = true; m_filterByState = std::move(value); }
63
65
69 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
70 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
71 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
72 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
73 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
74 inline ListIngestConfigurationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
75 inline ListIngestConfigurationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
76 inline ListIngestConfigurationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
78
80
83 inline int GetMaxResults() const{ return m_maxResults; }
84 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
85 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
86 inline ListIngestConfigurationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
88 private:
89
90 Aws::String m_filterByStageArn;
91 bool m_filterByStageArnHasBeenSet = false;
92
93 IngestConfigurationState m_filterByState;
94 bool m_filterByStateHasBeenSet = false;
95
96 Aws::String m_nextToken;
97 bool m_nextTokenHasBeenSet = false;
98
99 int m_maxResults;
100 bool m_maxResultsHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace ivsrealtime
105} // namespace Aws
ListIngestConfigurationsRequest & WithNextToken(const char *value)
ListIngestConfigurationsRequest & WithFilterByStageArn(const char *value)
ListIngestConfigurationsRequest & WithFilterByState(IngestConfigurationState &&value)
ListIngestConfigurationsRequest & WithFilterByState(const IngestConfigurationState &value)
ListIngestConfigurationsRequest & WithFilterByStageArn(Aws::String &&value)
ListIngestConfigurationsRequest & WithNextToken(Aws::String &&value)
ListIngestConfigurationsRequest & WithFilterByStageArn(const Aws::String &value)
ListIngestConfigurationsRequest & WithNextToken(const Aws::String &value)
AWS_IVSREALTIME_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String