AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
InstallToRemoteAccessSessionRequest.h
1
6#pragma once
7#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
8#include <aws/devicefarm/DeviceFarmRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DeviceFarm
15{
16namespace Model
17{
18
27 {
28 public:
29 AWS_DEVICEFARM_API InstallToRemoteAccessSessionRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "InstallToRemoteAccessSession"; }
36
37 AWS_DEVICEFARM_API Aws::String SerializePayload() const override;
38
40
41
43
47 inline const Aws::String& GetRemoteAccessSessionArn() const { return m_remoteAccessSessionArn; }
48 inline bool RemoteAccessSessionArnHasBeenSet() const { return m_remoteAccessSessionArnHasBeenSet; }
49 template<typename RemoteAccessSessionArnT = Aws::String>
50 void SetRemoteAccessSessionArn(RemoteAccessSessionArnT&& value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn = std::forward<RemoteAccessSessionArnT>(value); }
51 template<typename RemoteAccessSessionArnT = Aws::String>
52 InstallToRemoteAccessSessionRequest& WithRemoteAccessSessionArn(RemoteAccessSessionArnT&& value) { SetRemoteAccessSessionArn(std::forward<RemoteAccessSessionArnT>(value)); return *this;}
54
56
59 inline const Aws::String& GetAppArn() const { return m_appArn; }
60 inline bool AppArnHasBeenSet() const { return m_appArnHasBeenSet; }
61 template<typename AppArnT = Aws::String>
62 void SetAppArn(AppArnT&& value) { m_appArnHasBeenSet = true; m_appArn = std::forward<AppArnT>(value); }
63 template<typename AppArnT = Aws::String>
64 InstallToRemoteAccessSessionRequest& WithAppArn(AppArnT&& value) { SetAppArn(std::forward<AppArnT>(value)); return *this;}
66 private:
67
68 Aws::String m_remoteAccessSessionArn;
69 bool m_remoteAccessSessionArnHasBeenSet = false;
70
71 Aws::String m_appArn;
72 bool m_appArnHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace DeviceFarm
77} // namespace Aws
InstallToRemoteAccessSessionRequest & WithAppArn(AppArnT &&value)
InstallToRemoteAccessSessionRequest & WithRemoteAccessSessionArn(RemoteAccessSessionArnT &&value)
AWS_DEVICEFARM_API InstallToRemoteAccessSessionRequest()=default
AWS_DEVICEFARM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DEVICEFARM_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String