AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
WebRTCMeeting.h
1
6#pragma once
7#include <aws/connectparticipant/ConnectParticipant_EXPORTS.h>
8#include <aws/connectparticipant/model/MeetingFeaturesConfiguration.h>
9#include <aws/connectparticipant/model/WebRTCMediaPlacement.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace ConnectParticipant {
22namespace Model {
23
30 public:
31 AWS_CONNECTPARTICIPANT_API WebRTCMeeting() = default;
32 AWS_CONNECTPARTICIPANT_API WebRTCMeeting(Aws::Utils::Json::JsonView jsonValue);
33 AWS_CONNECTPARTICIPANT_API WebRTCMeeting& operator=(Aws::Utils::Json::JsonView jsonValue);
34 AWS_CONNECTPARTICIPANT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const WebRTCMediaPlacement& GetMediaPlacement() const { return m_mediaPlacement; }
41 inline bool MediaPlacementHasBeenSet() const { return m_mediaPlacementHasBeenSet; }
42 template <typename MediaPlacementT = WebRTCMediaPlacement>
43 void SetMediaPlacement(MediaPlacementT&& value) {
44 m_mediaPlacementHasBeenSet = true;
45 m_mediaPlacement = std::forward<MediaPlacementT>(value);
46 }
47 template <typename MediaPlacementT = WebRTCMediaPlacement>
48 WebRTCMeeting& WithMediaPlacement(MediaPlacementT&& value) {
49 SetMediaPlacement(std::forward<MediaPlacementT>(value));
50 return *this;
51 }
53
55
56 inline const MeetingFeaturesConfiguration& GetMeetingFeatures() const { return m_meetingFeatures; }
57 inline bool MeetingFeaturesHasBeenSet() const { return m_meetingFeaturesHasBeenSet; }
58 template <typename MeetingFeaturesT = MeetingFeaturesConfiguration>
59 void SetMeetingFeatures(MeetingFeaturesT&& value) {
60 m_meetingFeaturesHasBeenSet = true;
61 m_meetingFeatures = std::forward<MeetingFeaturesT>(value);
62 }
63 template <typename MeetingFeaturesT = MeetingFeaturesConfiguration>
64 WebRTCMeeting& WithMeetingFeatures(MeetingFeaturesT&& value) {
65 SetMeetingFeatures(std::forward<MeetingFeaturesT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetMeetingId() const { return m_meetingId; }
75 inline bool MeetingIdHasBeenSet() const { return m_meetingIdHasBeenSet; }
76 template <typename MeetingIdT = Aws::String>
77 void SetMeetingId(MeetingIdT&& value) {
78 m_meetingIdHasBeenSet = true;
79 m_meetingId = std::forward<MeetingIdT>(value);
80 }
81 template <typename MeetingIdT = Aws::String>
82 WebRTCMeeting& WithMeetingId(MeetingIdT&& value) {
83 SetMeetingId(std::forward<MeetingIdT>(value));
84 return *this;
85 }
87 private:
88 WebRTCMediaPlacement m_mediaPlacement;
89
90 MeetingFeaturesConfiguration m_meetingFeatures;
91
92 Aws::String m_meetingId;
93 bool m_mediaPlacementHasBeenSet = false;
94 bool m_meetingFeaturesHasBeenSet = false;
95 bool m_meetingIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace ConnectParticipant
100} // namespace Aws
void SetMeetingFeatures(MeetingFeaturesT &&value)
void SetMediaPlacement(MediaPlacementT &&value)
const MeetingFeaturesConfiguration & GetMeetingFeatures() const
const WebRTCMediaPlacement & GetMediaPlacement() const
WebRTCMeeting & WithMeetingFeatures(MeetingFeaturesT &&value)
AWS_CONNECTPARTICIPANT_API WebRTCMeeting()=default
WebRTCMeeting & WithMediaPlacement(MediaPlacementT &&value)
WebRTCMeeting & WithMeetingId(MeetingIdT &&value)
AWS_CONNECTPARTICIPANT_API WebRTCMeeting(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECTPARTICIPANT_API WebRTCMeeting & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECTPARTICIPANT_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue