AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetParticipantRequest.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 GetParticipantRequest();
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 "GetParticipant"; }
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 GetParticipantRequest& WithStageArn(const Aws::String& value) { SetStageArn(value); return *this;}
45 inline GetParticipantRequest& WithStageArn(Aws::String&& value) { SetStageArn(std::move(value)); return *this;}
46 inline GetParticipantRequest& 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 GetParticipantRequest& WithSessionId(const Aws::String& value) { SetSessionId(value); return *this;}
59 inline GetParticipantRequest& WithSessionId(Aws::String&& value) { SetSessionId(std::move(value)); return *this;}
60 inline GetParticipantRequest& 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 GetParticipantRequest& WithParticipantId(const Aws::String& value) { SetParticipantId(value); return *this;}
74 inline GetParticipantRequest& WithParticipantId(Aws::String&& value) { SetParticipantId(std::move(value)); return *this;}
75 inline GetParticipantRequest& WithParticipantId(const char* value) { SetParticipantId(value); return *this;}
77 private:
78
79 Aws::String m_stageArn;
80 bool m_stageArnHasBeenSet = false;
81
82 Aws::String m_sessionId;
83 bool m_sessionIdHasBeenSet = false;
84
85 Aws::String m_participantId;
86 bool m_participantIdHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace ivsrealtime
91} // namespace Aws
GetParticipantRequest & WithStageArn(Aws::String &&value)
GetParticipantRequest & WithParticipantId(const Aws::String &value)
AWS_IVSREALTIME_API Aws::String SerializePayload() const override
GetParticipantRequest & WithStageArn(const char *value)
GetParticipantRequest & WithSessionId(const char *value)
GetParticipantRequest & WithStageArn(const Aws::String &value)
GetParticipantRequest & WithSessionId(const Aws::String &value)
GetParticipantRequest & WithSessionId(Aws::String &&value)
GetParticipantRequest & WithParticipantId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
GetParticipantRequest & WithParticipantId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String