AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
InputClipping.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace MediaConvert {
20namespace Model {
21
32 public:
33 AWS_MEDIACONVERT_API InputClipping() = default;
34 AWS_MEDIACONVERT_API InputClipping(Aws::Utils::Json::JsonView jsonValue);
35 AWS_MEDIACONVERT_API InputClipping& operator=(Aws::Utils::Json::JsonView jsonValue);
36 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
49 inline const Aws::String& GetEndTimecode() const { return m_endTimecode; }
50 inline bool EndTimecodeHasBeenSet() const { return m_endTimecodeHasBeenSet; }
51 template <typename EndTimecodeT = Aws::String>
52 void SetEndTimecode(EndTimecodeT&& value) {
53 m_endTimecodeHasBeenSet = true;
54 m_endTimecode = std::forward<EndTimecodeT>(value);
55 }
56 template <typename EndTimecodeT = Aws::String>
57 InputClipping& WithEndTimecode(EndTimecodeT&& value) {
58 SetEndTimecode(std::forward<EndTimecodeT>(value));
59 return *this;
60 }
62
64
74 inline const Aws::String& GetStartTimecode() const { return m_startTimecode; }
75 inline bool StartTimecodeHasBeenSet() const { return m_startTimecodeHasBeenSet; }
76 template <typename StartTimecodeT = Aws::String>
77 void SetStartTimecode(StartTimecodeT&& value) {
78 m_startTimecodeHasBeenSet = true;
79 m_startTimecode = std::forward<StartTimecodeT>(value);
80 }
81 template <typename StartTimecodeT = Aws::String>
82 InputClipping& WithStartTimecode(StartTimecodeT&& value) {
83 SetStartTimecode(std::forward<StartTimecodeT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_endTimecode;
89
90 Aws::String m_startTimecode;
91 bool m_endTimecodeHasBeenSet = false;
92 bool m_startTimecodeHasBeenSet = false;
93};
94
95} // namespace Model
96} // namespace MediaConvert
97} // namespace Aws
InputClipping & WithEndTimecode(EndTimecodeT &&value)
InputClipping & WithStartTimecode(StartTimecodeT &&value)
AWS_MEDIACONVERT_API InputClipping()=default
const Aws::String & GetStartTimecode() const
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIACONVERT_API InputClipping & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIACONVERT_API InputClipping(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetEndTimecode() const
void SetStartTimecode(StartTimecodeT &&value)
void SetEndTimecode(EndTimecodeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue