AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
RemoteAccessEndpoints.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace DeviceFarm {
20namespace Model {
21
29 public:
30 AWS_DEVICEFARM_API RemoteAccessEndpoints() = default;
33 AWS_DEVICEFARM_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetRemoteDriverEndpoint() const { return m_remoteDriverEndpoint; }
41 inline bool RemoteDriverEndpointHasBeenSet() const { return m_remoteDriverEndpointHasBeenSet; }
42 template <typename RemoteDriverEndpointT = Aws::String>
43 void SetRemoteDriverEndpoint(RemoteDriverEndpointT&& value) {
44 m_remoteDriverEndpointHasBeenSet = true;
45 m_remoteDriverEndpoint = std::forward<RemoteDriverEndpointT>(value);
46 }
47 template <typename RemoteDriverEndpointT = Aws::String>
48 RemoteAccessEndpoints& WithRemoteDriverEndpoint(RemoteDriverEndpointT&& value) {
49 SetRemoteDriverEndpoint(std::forward<RemoteDriverEndpointT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetInteractiveEndpoint() const { return m_interactiveEndpoint; }
60 inline bool InteractiveEndpointHasBeenSet() const { return m_interactiveEndpointHasBeenSet; }
61 template <typename InteractiveEndpointT = Aws::String>
62 void SetInteractiveEndpoint(InteractiveEndpointT&& value) {
63 m_interactiveEndpointHasBeenSet = true;
64 m_interactiveEndpoint = std::forward<InteractiveEndpointT>(value);
65 }
66 template <typename InteractiveEndpointT = Aws::String>
67 RemoteAccessEndpoints& WithInteractiveEndpoint(InteractiveEndpointT&& value) {
68 SetInteractiveEndpoint(std::forward<InteractiveEndpointT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_remoteDriverEndpoint;
74
75 Aws::String m_interactiveEndpoint;
76 bool m_remoteDriverEndpointHasBeenSet = false;
77 bool m_interactiveEndpointHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace DeviceFarm
82} // namespace Aws
RemoteAccessEndpoints & WithInteractiveEndpoint(InteractiveEndpointT &&value)
AWS_DEVICEFARM_API RemoteAccessEndpoints(Aws::Utils::Json::JsonView jsonValue)
RemoteAccessEndpoints & WithRemoteDriverEndpoint(RemoteDriverEndpointT &&value)
void SetInteractiveEndpoint(InteractiveEndpointT &&value)
AWS_DEVICEFARM_API RemoteAccessEndpoints()=default
AWS_DEVICEFARM_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DEVICEFARM_API RemoteAccessEndpoints & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetRemoteDriverEndpoint(RemoteDriverEndpointT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue