AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetRemoteAccessSessionArn(const Aws::String& value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn = value; }
50 inline void SetRemoteAccessSessionArn(Aws::String&& value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn = std::move(value); }
51 inline void SetRemoteAccessSessionArn(const char* value) { m_remoteAccessSessionArnHasBeenSet = true; m_remoteAccessSessionArn.assign(value); }
56
58
61 inline const Aws::String& GetAppArn() const{ return m_appArn; }
62 inline bool AppArnHasBeenSet() const { return m_appArnHasBeenSet; }
63 inline void SetAppArn(const Aws::String& value) { m_appArnHasBeenSet = true; m_appArn = value; }
64 inline void SetAppArn(Aws::String&& value) { m_appArnHasBeenSet = true; m_appArn = std::move(value); }
65 inline void SetAppArn(const char* value) { m_appArnHasBeenSet = true; m_appArn.assign(value); }
66 inline InstallToRemoteAccessSessionRequest& WithAppArn(const Aws::String& value) { SetAppArn(value); return *this;}
67 inline InstallToRemoteAccessSessionRequest& WithAppArn(Aws::String&& value) { SetAppArn(std::move(value)); return *this;}
68 inline InstallToRemoteAccessSessionRequest& WithAppArn(const char* value) { SetAppArn(value); return *this;}
70 private:
71
72 Aws::String m_remoteAccessSessionArn;
73 bool m_remoteAccessSessionArnHasBeenSet = false;
74
75 Aws::String m_appArn;
76 bool m_appArnHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace DeviceFarm
81} // namespace Aws
InstallToRemoteAccessSessionRequest & WithRemoteAccessSessionArn(Aws::String &&value)
InstallToRemoteAccessSessionRequest & WithAppArn(Aws::String &&value)
InstallToRemoteAccessSessionRequest & WithAppArn(const char *value)
InstallToRemoteAccessSessionRequest & WithAppArn(const Aws::String &value)
AWS_DEVICEFARM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
InstallToRemoteAccessSessionRequest & WithRemoteAccessSessionArn(const char *value)
AWS_DEVICEFARM_API Aws::String SerializePayload() const override
InstallToRemoteAccessSessionRequest & WithRemoteAccessSessionArn(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String