AWS SDK for C++

AWS SDK for C++ Version 1.11.758

Loading...
Searching...
No Matches
InputSwitchScheduleActionSettings.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/medialive/MediaLive_EXPORTS.h>
10#include <aws/medialive/model/InputClippingSettings.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace MediaLive {
22namespace Model {
23
31 public:
32 AWS_MEDIALIVE_API InputSwitchScheduleActionSettings() = default;
35 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
42 inline const Aws::String& GetInputAttachmentNameReference() const { return m_inputAttachmentNameReference; }
43 inline bool InputAttachmentNameReferenceHasBeenSet() const { return m_inputAttachmentNameReferenceHasBeenSet; }
44 template <typename InputAttachmentNameReferenceT = Aws::String>
45 void SetInputAttachmentNameReference(InputAttachmentNameReferenceT&& value) {
46 m_inputAttachmentNameReferenceHasBeenSet = true;
47 m_inputAttachmentNameReference = std::forward<InputAttachmentNameReferenceT>(value);
48 }
49 template <typename InputAttachmentNameReferenceT = Aws::String>
51 SetInputAttachmentNameReference(std::forward<InputAttachmentNameReferenceT>(value));
52 return *this;
53 }
55
57
61 inline const InputClippingSettings& GetInputClippingSettings() const { return m_inputClippingSettings; }
62 inline bool InputClippingSettingsHasBeenSet() const { return m_inputClippingSettingsHasBeenSet; }
63 template <typename InputClippingSettingsT = InputClippingSettings>
64 void SetInputClippingSettings(InputClippingSettingsT&& value) {
65 m_inputClippingSettingsHasBeenSet = true;
66 m_inputClippingSettings = std::forward<InputClippingSettingsT>(value);
67 }
68 template <typename InputClippingSettingsT = InputClippingSettings>
70 SetInputClippingSettings(std::forward<InputClippingSettingsT>(value));
71 return *this;
72 }
74
76
82 inline const Aws::Vector<Aws::String>& GetUrlPath() const { return m_urlPath; }
83 inline bool UrlPathHasBeenSet() const { return m_urlPathHasBeenSet; }
84 template <typename UrlPathT = Aws::Vector<Aws::String>>
85 void SetUrlPath(UrlPathT&& value) {
86 m_urlPathHasBeenSet = true;
87 m_urlPath = std::forward<UrlPathT>(value);
88 }
89 template <typename UrlPathT = Aws::Vector<Aws::String>>
91 SetUrlPath(std::forward<UrlPathT>(value));
92 return *this;
93 }
94 template <typename UrlPathT = Aws::String>
96 m_urlPathHasBeenSet = true;
97 m_urlPath.emplace_back(std::forward<UrlPathT>(value));
98 return *this;
99 }
101 private:
102 Aws::String m_inputAttachmentNameReference;
103
104 InputClippingSettings m_inputClippingSettings;
105
106 Aws::Vector<Aws::String> m_urlPath;
107 bool m_inputAttachmentNameReferenceHasBeenSet = false;
108 bool m_inputClippingSettingsHasBeenSet = false;
109 bool m_urlPathHasBeenSet = false;
110};
111
112} // namespace Model
113} // namespace MediaLive
114} // namespace Aws
InputSwitchScheduleActionSettings & WithInputClippingSettings(InputClippingSettingsT &&value)
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
InputSwitchScheduleActionSettings & WithUrlPath(UrlPathT &&value)
InputSwitchScheduleActionSettings & WithInputAttachmentNameReference(InputAttachmentNameReferenceT &&value)
void SetInputAttachmentNameReference(InputAttachmentNameReferenceT &&value)
AWS_MEDIALIVE_API InputSwitchScheduleActionSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
InputSwitchScheduleActionSettings & AddUrlPath(UrlPathT &&value)
AWS_MEDIALIVE_API InputSwitchScheduleActionSettings(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIALIVE_API InputSwitchScheduleActionSettings()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue