AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListParticipantReplicasRequest.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 <utility>
11
12namespace Aws
13{
14namespace ivsrealtime
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_IVSREALTIME_API ListParticipantReplicasRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ListParticipantReplicas"; }
31
32 AWS_IVSREALTIME_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetSourceStageArn() const { return m_sourceStageArn; }
40 inline bool SourceStageArnHasBeenSet() const { return m_sourceStageArnHasBeenSet; }
41 template<typename SourceStageArnT = Aws::String>
42 void SetSourceStageArn(SourceStageArnT&& value) { m_sourceStageArnHasBeenSet = true; m_sourceStageArn = std::forward<SourceStageArnT>(value); }
43 template<typename SourceStageArnT = Aws::String>
44 ListParticipantReplicasRequest& WithSourceStageArn(SourceStageArnT&& value) { SetSourceStageArn(std::forward<SourceStageArnT>(value)); return *this;}
46
48
55 inline const Aws::String& GetParticipantId() const { return m_participantId; }
56 inline bool ParticipantIdHasBeenSet() const { return m_participantIdHasBeenSet; }
57 template<typename ParticipantIdT = Aws::String>
58 void SetParticipantId(ParticipantIdT&& value) { m_participantIdHasBeenSet = true; m_participantId = std::forward<ParticipantIdT>(value); }
59 template<typename ParticipantIdT = Aws::String>
60 ListParticipantReplicasRequest& WithParticipantId(ParticipantIdT&& value) { SetParticipantId(std::forward<ParticipantIdT>(value)); return *this;}
62
64
68 inline const Aws::String& GetNextToken() const { return m_nextToken; }
69 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
70 template<typename NextTokenT = Aws::String>
71 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
72 template<typename NextTokenT = Aws::String>
73 ListParticipantReplicasRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
75
77
80 inline int GetMaxResults() const { return m_maxResults; }
81 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
82 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
83 inline ListParticipantReplicasRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
85 private:
86
87 Aws::String m_sourceStageArn;
88 bool m_sourceStageArnHasBeenSet = false;
89
90 Aws::String m_participantId;
91 bool m_participantIdHasBeenSet = false;
92
93 Aws::String m_nextToken;
94 bool m_nextTokenHasBeenSet = false;
95
96 int m_maxResults{0};
97 bool m_maxResultsHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace ivsrealtime
102} // namespace Aws
ListParticipantReplicasRequest & WithSourceStageArn(SourceStageArnT &&value)
AWS_IVSREALTIME_API Aws::String SerializePayload() const override
ListParticipantReplicasRequest & WithParticipantId(ParticipantIdT &&value)
ListParticipantReplicasRequest & WithNextToken(NextTokenT &&value)
AWS_IVSREALTIME_API ListParticipantReplicasRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String