AWS SDK for C++

AWS SDK for C++ Version 1.11.759

Loading...
Searching...
No Matches
InputPrepareScheduleActionSettings.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 InputPrepareScheduleActionSettings() = default;
35 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
43 inline const Aws::String& GetInputAttachmentNameReference() const { return m_inputAttachmentNameReference; }
44 inline bool InputAttachmentNameReferenceHasBeenSet() const { return m_inputAttachmentNameReferenceHasBeenSet; }
45 template <typename InputAttachmentNameReferenceT = Aws::String>
46 void SetInputAttachmentNameReference(InputAttachmentNameReferenceT&& value) {
47 m_inputAttachmentNameReferenceHasBeenSet = true;
48 m_inputAttachmentNameReference = std::forward<InputAttachmentNameReferenceT>(value);
49 }
50 template <typename InputAttachmentNameReferenceT = Aws::String>
52 SetInputAttachmentNameReference(std::forward<InputAttachmentNameReferenceT>(value));
53 return *this;
54 }
56
58
62 inline const InputClippingSettings& GetInputClippingSettings() const { return m_inputClippingSettings; }
63 inline bool InputClippingSettingsHasBeenSet() const { return m_inputClippingSettingsHasBeenSet; }
64 template <typename InputClippingSettingsT = InputClippingSettings>
65 void SetInputClippingSettings(InputClippingSettingsT&& value) {
66 m_inputClippingSettingsHasBeenSet = true;
67 m_inputClippingSettings = std::forward<InputClippingSettingsT>(value);
68 }
69 template <typename InputClippingSettingsT = InputClippingSettings>
71 SetInputClippingSettings(std::forward<InputClippingSettingsT>(value));
72 return *this;
73 }
75
77
83 inline const Aws::Vector<Aws::String>& GetUrlPath() const { return m_urlPath; }
84 inline bool UrlPathHasBeenSet() const { return m_urlPathHasBeenSet; }
85 template <typename UrlPathT = Aws::Vector<Aws::String>>
86 void SetUrlPath(UrlPathT&& value) {
87 m_urlPathHasBeenSet = true;
88 m_urlPath = std::forward<UrlPathT>(value);
89 }
90 template <typename UrlPathT = Aws::Vector<Aws::String>>
92 SetUrlPath(std::forward<UrlPathT>(value));
93 return *this;
94 }
95 template <typename UrlPathT = Aws::String>
97 m_urlPathHasBeenSet = true;
98 m_urlPath.emplace_back(std::forward<UrlPathT>(value));
99 return *this;
100 }
102 private:
103 Aws::String m_inputAttachmentNameReference;
104
105 InputClippingSettings m_inputClippingSettings;
106
107 Aws::Vector<Aws::String> m_urlPath;
108 bool m_inputAttachmentNameReferenceHasBeenSet = false;
109 bool m_inputClippingSettingsHasBeenSet = false;
110 bool m_urlPathHasBeenSet = false;
111};
112
113} // namespace Model
114} // namespace MediaLive
115} // namespace Aws
InputPrepareScheduleActionSettings & AddUrlPath(UrlPathT &&value)
InputPrepareScheduleActionSettings & WithInputClippingSettings(InputClippingSettingsT &&value)
AWS_MEDIALIVE_API InputPrepareScheduleActionSettings(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIALIVE_API InputPrepareScheduleActionSettings()=default
void SetInputAttachmentNameReference(InputAttachmentNameReferenceT &&value)
AWS_MEDIALIVE_API InputPrepareScheduleActionSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
InputPrepareScheduleActionSettings & WithInputAttachmentNameReference(InputAttachmentNameReferenceT &&value)
InputPrepareScheduleActionSettings & WithUrlPath(UrlPathT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue