AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TransferInputDeviceRequest.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/medialive/MediaLiveRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace MediaLive
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_MEDIALIVE_API TransferInputDeviceRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "TransferInputDevice"; }
34
35 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
36
37
39
42 inline const Aws::String& GetInputDeviceId() const{ return m_inputDeviceId; }
43 inline bool InputDeviceIdHasBeenSet() const { return m_inputDeviceIdHasBeenSet; }
44 inline void SetInputDeviceId(const Aws::String& value) { m_inputDeviceIdHasBeenSet = true; m_inputDeviceId = value; }
45 inline void SetInputDeviceId(Aws::String&& value) { m_inputDeviceIdHasBeenSet = true; m_inputDeviceId = std::move(value); }
46 inline void SetInputDeviceId(const char* value) { m_inputDeviceIdHasBeenSet = true; m_inputDeviceId.assign(value); }
47 inline TransferInputDeviceRequest& WithInputDeviceId(const Aws::String& value) { SetInputDeviceId(value); return *this;}
48 inline TransferInputDeviceRequest& WithInputDeviceId(Aws::String&& value) { SetInputDeviceId(std::move(value)); return *this;}
49 inline TransferInputDeviceRequest& WithInputDeviceId(const char* value) { SetInputDeviceId(value); return *this;}
51
53
56 inline const Aws::String& GetTargetCustomerId() const{ return m_targetCustomerId; }
57 inline bool TargetCustomerIdHasBeenSet() const { return m_targetCustomerIdHasBeenSet; }
58 inline void SetTargetCustomerId(const Aws::String& value) { m_targetCustomerIdHasBeenSet = true; m_targetCustomerId = value; }
59 inline void SetTargetCustomerId(Aws::String&& value) { m_targetCustomerIdHasBeenSet = true; m_targetCustomerId = std::move(value); }
60 inline void SetTargetCustomerId(const char* value) { m_targetCustomerIdHasBeenSet = true; m_targetCustomerId.assign(value); }
62 inline TransferInputDeviceRequest& WithTargetCustomerId(Aws::String&& value) { SetTargetCustomerId(std::move(value)); return *this;}
63 inline TransferInputDeviceRequest& WithTargetCustomerId(const char* value) { SetTargetCustomerId(value); return *this;}
65
67
70 inline const Aws::String& GetTargetRegion() const{ return m_targetRegion; }
71 inline bool TargetRegionHasBeenSet() const { return m_targetRegionHasBeenSet; }
72 inline void SetTargetRegion(const Aws::String& value) { m_targetRegionHasBeenSet = true; m_targetRegion = value; }
73 inline void SetTargetRegion(Aws::String&& value) { m_targetRegionHasBeenSet = true; m_targetRegion = std::move(value); }
74 inline void SetTargetRegion(const char* value) { m_targetRegionHasBeenSet = true; m_targetRegion.assign(value); }
75 inline TransferInputDeviceRequest& WithTargetRegion(const Aws::String& value) { SetTargetRegion(value); return *this;}
76 inline TransferInputDeviceRequest& WithTargetRegion(Aws::String&& value) { SetTargetRegion(std::move(value)); return *this;}
77 inline TransferInputDeviceRequest& WithTargetRegion(const char* value) { SetTargetRegion(value); return *this;}
79
81
84 inline const Aws::String& GetTransferMessage() const{ return m_transferMessage; }
85 inline bool TransferMessageHasBeenSet() const { return m_transferMessageHasBeenSet; }
86 inline void SetTransferMessage(const Aws::String& value) { m_transferMessageHasBeenSet = true; m_transferMessage = value; }
87 inline void SetTransferMessage(Aws::String&& value) { m_transferMessageHasBeenSet = true; m_transferMessage = std::move(value); }
88 inline void SetTransferMessage(const char* value) { m_transferMessageHasBeenSet = true; m_transferMessage.assign(value); }
90 inline TransferInputDeviceRequest& WithTransferMessage(Aws::String&& value) { SetTransferMessage(std::move(value)); return *this;}
91 inline TransferInputDeviceRequest& WithTransferMessage(const char* value) { SetTransferMessage(value); return *this;}
93 private:
94
95 Aws::String m_inputDeviceId;
96 bool m_inputDeviceIdHasBeenSet = false;
97
98 Aws::String m_targetCustomerId;
99 bool m_targetCustomerIdHasBeenSet = false;
100
101 Aws::String m_targetRegion;
102 bool m_targetRegionHasBeenSet = false;
103
104 Aws::String m_transferMessage;
105 bool m_transferMessageHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace MediaLive
110} // namespace Aws
TransferInputDeviceRequest & WithTransferMessage(const Aws::String &value)
TransferInputDeviceRequest & WithTransferMessage(const char *value)
TransferInputDeviceRequest & WithTargetCustomerId(const char *value)
TransferInputDeviceRequest & WithTransferMessage(Aws::String &&value)
TransferInputDeviceRequest & WithTargetCustomerId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
TransferInputDeviceRequest & WithInputDeviceId(Aws::String &&value)
TransferInputDeviceRequest & WithInputDeviceId(const char *value)
TransferInputDeviceRequest & WithTargetRegion(const char *value)
TransferInputDeviceRequest & WithTargetCustomerId(Aws::String &&value)
TransferInputDeviceRequest & WithTargetRegion(const Aws::String &value)
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
TransferInputDeviceRequest & WithInputDeviceId(const Aws::String &value)
TransferInputDeviceRequest & WithTargetRegion(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String