AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TransferringInputDeviceSummary.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/medialive/model/InputDeviceTransferType.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace MediaLive
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIALIVE_API TransferringInputDeviceSummary();
39 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetId() const{ return m_id; }
47 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
48 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
49 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
50 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
51 inline TransferringInputDeviceSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
52 inline TransferringInputDeviceSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
53 inline TransferringInputDeviceSummary& WithId(const char* value) { SetId(value); return *this;}
55
57
60 inline const Aws::String& GetMessage() const{ return m_message; }
61 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
62 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
63 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
64 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
65 inline TransferringInputDeviceSummary& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
66 inline TransferringInputDeviceSummary& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
67 inline TransferringInputDeviceSummary& WithMessage(const char* value) { SetMessage(value); return *this;}
69
71
74 inline const Aws::String& GetTargetCustomerId() const{ return m_targetCustomerId; }
75 inline bool TargetCustomerIdHasBeenSet() const { return m_targetCustomerIdHasBeenSet; }
76 inline void SetTargetCustomerId(const Aws::String& value) { m_targetCustomerIdHasBeenSet = true; m_targetCustomerId = value; }
77 inline void SetTargetCustomerId(Aws::String&& value) { m_targetCustomerIdHasBeenSet = true; m_targetCustomerId = std::move(value); }
78 inline void SetTargetCustomerId(const char* value) { m_targetCustomerIdHasBeenSet = true; m_targetCustomerId.assign(value); }
80 inline TransferringInputDeviceSummary& WithTargetCustomerId(Aws::String&& value) { SetTargetCustomerId(std::move(value)); return *this;}
81 inline TransferringInputDeviceSummary& WithTargetCustomerId(const char* value) { SetTargetCustomerId(value); return *this;}
83
85
88 inline const InputDeviceTransferType& GetTransferType() const{ return m_transferType; }
89 inline bool TransferTypeHasBeenSet() const { return m_transferTypeHasBeenSet; }
90 inline void SetTransferType(const InputDeviceTransferType& value) { m_transferTypeHasBeenSet = true; m_transferType = value; }
91 inline void SetTransferType(InputDeviceTransferType&& value) { m_transferTypeHasBeenSet = true; m_transferType = std::move(value); }
95 private:
96
97 Aws::String m_id;
98 bool m_idHasBeenSet = false;
99
100 Aws::String m_message;
101 bool m_messageHasBeenSet = false;
102
103 Aws::String m_targetCustomerId;
104 bool m_targetCustomerIdHasBeenSet = false;
105
106 InputDeviceTransferType m_transferType;
107 bool m_transferTypeHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace MediaLive
112} // namespace Aws
TransferringInputDeviceSummary & WithId(const char *value)
TransferringInputDeviceSummary & WithTargetCustomerId(Aws::String &&value)
TransferringInputDeviceSummary & WithTransferType(InputDeviceTransferType &&value)
TransferringInputDeviceSummary & WithMessage(const Aws::String &value)
TransferringInputDeviceSummary & WithMessage(Aws::String &&value)
AWS_MEDIALIVE_API TransferringInputDeviceSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
TransferringInputDeviceSummary & WithTargetCustomerId(const Aws::String &value)
TransferringInputDeviceSummary & WithMessage(const char *value)
TransferringInputDeviceSummary & WithId(const Aws::String &value)
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
TransferringInputDeviceSummary & WithTransferType(const InputDeviceTransferType &value)
TransferringInputDeviceSummary & WithTargetCustomerId(const char *value)
AWS_MEDIALIVE_API TransferringInputDeviceSummary(Aws::Utils::Json::JsonView jsonValue)
TransferringInputDeviceSummary & WithId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue