AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartScreenSharingRequest.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/ConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace Connect
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONNECT_API StartScreenSharingRequest();
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 "StartScreenSharing"; }
32
33 AWS_CONNECT_API Aws::String SerializePayload() const override;
34
35
37
44 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
45 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
46 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
47 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
48 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
49 inline StartScreenSharingRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
50 inline StartScreenSharingRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
51 inline StartScreenSharingRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
53
55
60 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
61 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
62 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
63 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
64 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
65 inline StartScreenSharingRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
66 inline StartScreenSharingRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
67 inline StartScreenSharingRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
69
71
74 inline const Aws::String& GetContactId() const{ return m_contactId; }
75 inline bool ContactIdHasBeenSet() const { return m_contactIdHasBeenSet; }
76 inline void SetContactId(const Aws::String& value) { m_contactIdHasBeenSet = true; m_contactId = value; }
77 inline void SetContactId(Aws::String&& value) { m_contactIdHasBeenSet = true; m_contactId = std::move(value); }
78 inline void SetContactId(const char* value) { m_contactIdHasBeenSet = true; m_contactId.assign(value); }
79 inline StartScreenSharingRequest& WithContactId(const Aws::String& value) { SetContactId(value); return *this;}
80 inline StartScreenSharingRequest& WithContactId(Aws::String&& value) { SetContactId(std::move(value)); return *this;}
81 inline StartScreenSharingRequest& WithContactId(const char* value) { SetContactId(value); return *this;}
83 private:
84
85 Aws::String m_clientToken;
86 bool m_clientTokenHasBeenSet = false;
87
88 Aws::String m_instanceId;
89 bool m_instanceIdHasBeenSet = false;
90
91 Aws::String m_contactId;
92 bool m_contactIdHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace Connect
97} // namespace Aws
StartScreenSharingRequest & WithClientToken(const Aws::String &value)
StartScreenSharingRequest & WithInstanceId(const char *value)
virtual const char * GetServiceRequestName() const override
AWS_CONNECT_API Aws::String SerializePayload() const override
StartScreenSharingRequest & WithContactId(const char *value)
StartScreenSharingRequest & WithInstanceId(const Aws::String &value)
StartScreenSharingRequest & WithInstanceId(Aws::String &&value)
StartScreenSharingRequest & WithContactId(const Aws::String &value)
StartScreenSharingRequest & WithContactId(Aws::String &&value)
StartScreenSharingRequest & WithClientToken(const char *value)
StartScreenSharingRequest & WithClientToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String