AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListParticipantEventsRequest.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 ListParticipantEventsRequest();
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 "ListParticipantEvents"; }
31
32 AWS_IVSREALTIME_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetStageArn() const{ return m_stageArn; }
40 inline bool StageArnHasBeenSet() const { return m_stageArnHasBeenSet; }
41 inline void SetStageArn(const Aws::String& value) { m_stageArnHasBeenSet = true; m_stageArn = value; }
42 inline void SetStageArn(Aws::String&& value) { m_stageArnHasBeenSet = true; m_stageArn = std::move(value); }
43 inline void SetStageArn(const char* value) { m_stageArnHasBeenSet = true; m_stageArn.assign(value); }
44 inline ListParticipantEventsRequest& WithStageArn(const Aws::String& value) { SetStageArn(value); return *this;}
45 inline ListParticipantEventsRequest& WithStageArn(Aws::String&& value) { SetStageArn(std::move(value)); return *this;}
46 inline ListParticipantEventsRequest& WithStageArn(const char* value) { SetStageArn(value); return *this;}
48
50
53 inline const Aws::String& GetSessionId() const{ return m_sessionId; }
54 inline bool SessionIdHasBeenSet() const { return m_sessionIdHasBeenSet; }
55 inline void SetSessionId(const Aws::String& value) { m_sessionIdHasBeenSet = true; m_sessionId = value; }
56 inline void SetSessionId(Aws::String&& value) { m_sessionIdHasBeenSet = true; m_sessionId = std::move(value); }
57 inline void SetSessionId(const char* value) { m_sessionIdHasBeenSet = true; m_sessionId.assign(value); }
58 inline ListParticipantEventsRequest& WithSessionId(const Aws::String& value) { SetSessionId(value); return *this;}
59 inline ListParticipantEventsRequest& WithSessionId(Aws::String&& value) { SetSessionId(std::move(value)); return *this;}
60 inline ListParticipantEventsRequest& WithSessionId(const char* value) { SetSessionId(value); return *this;}
62
64
68 inline const Aws::String& GetParticipantId() const{ return m_participantId; }
69 inline bool ParticipantIdHasBeenSet() const { return m_participantIdHasBeenSet; }
70 inline void SetParticipantId(const Aws::String& value) { m_participantIdHasBeenSet = true; m_participantId = value; }
71 inline void SetParticipantId(Aws::String&& value) { m_participantIdHasBeenSet = true; m_participantId = std::move(value); }
72 inline void SetParticipantId(const char* value) { m_participantIdHasBeenSet = true; m_participantId.assign(value); }
73 inline ListParticipantEventsRequest& WithParticipantId(const Aws::String& value) { SetParticipantId(value); return *this;}
74 inline ListParticipantEventsRequest& WithParticipantId(Aws::String&& value) { SetParticipantId(std::move(value)); return *this;}
75 inline ListParticipantEventsRequest& WithParticipantId(const char* value) { SetParticipantId(value); return *this;}
77
79
83 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
84 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
85 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
86 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
87 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
88 inline ListParticipantEventsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
89 inline ListParticipantEventsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
90 inline ListParticipantEventsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
92
94
97 inline int GetMaxResults() const{ return m_maxResults; }
98 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
99 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
100 inline ListParticipantEventsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
102 private:
103
104 Aws::String m_stageArn;
105 bool m_stageArnHasBeenSet = false;
106
107 Aws::String m_sessionId;
108 bool m_sessionIdHasBeenSet = false;
109
110 Aws::String m_participantId;
111 bool m_participantIdHasBeenSet = false;
112
113 Aws::String m_nextToken;
114 bool m_nextTokenHasBeenSet = false;
115
116 int m_maxResults;
117 bool m_maxResultsHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace ivsrealtime
122} // namespace Aws
ListParticipantEventsRequest & WithParticipantId(Aws::String &&value)
ListParticipantEventsRequest & WithStageArn(const char *value)
ListParticipantEventsRequest & WithSessionId(Aws::String &&value)
ListParticipantEventsRequest & WithNextToken(const Aws::String &value)
ListParticipantEventsRequest & WithStageArn(Aws::String &&value)
ListParticipantEventsRequest & WithParticipantId(const char *value)
ListParticipantEventsRequest & WithNextToken(Aws::String &&value)
ListParticipantEventsRequest & WithParticipantId(const Aws::String &value)
ListParticipantEventsRequest & WithSessionId(const Aws::String &value)
ListParticipantEventsRequest & WithNextToken(const char *value)
ListParticipantEventsRequest & WithStageArn(const Aws::String &value)
ListParticipantEventsRequest & WithSessionId(const char *value)
AWS_IVSREALTIME_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String