AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
MsSmoothAdditionalManifest.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/mediaconvert/MediaConvert_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace MediaConvert {
21namespace Model {
22
31 public:
32 AWS_MEDIACONVERT_API MsSmoothAdditionalManifest() = default;
35 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
46 inline const Aws::String& GetManifestNameModifier() const { return m_manifestNameModifier; }
47 inline bool ManifestNameModifierHasBeenSet() const { return m_manifestNameModifierHasBeenSet; }
48 template <typename ManifestNameModifierT = Aws::String>
49 void SetManifestNameModifier(ManifestNameModifierT&& value) {
50 m_manifestNameModifierHasBeenSet = true;
51 m_manifestNameModifier = std::forward<ManifestNameModifierT>(value);
52 }
53 template <typename ManifestNameModifierT = Aws::String>
54 MsSmoothAdditionalManifest& WithManifestNameModifier(ManifestNameModifierT&& value) {
55 SetManifestNameModifier(std::forward<ManifestNameModifierT>(value));
56 return *this;
57 }
59
61
65 inline const Aws::Vector<Aws::String>& GetSelectedOutputs() const { return m_selectedOutputs; }
66 inline bool SelectedOutputsHasBeenSet() const { return m_selectedOutputsHasBeenSet; }
67 template <typename SelectedOutputsT = Aws::Vector<Aws::String>>
68 void SetSelectedOutputs(SelectedOutputsT&& value) {
69 m_selectedOutputsHasBeenSet = true;
70 m_selectedOutputs = std::forward<SelectedOutputsT>(value);
71 }
72 template <typename SelectedOutputsT = Aws::Vector<Aws::String>>
74 SetSelectedOutputs(std::forward<SelectedOutputsT>(value));
75 return *this;
76 }
77 template <typename SelectedOutputsT = Aws::String>
79 m_selectedOutputsHasBeenSet = true;
80 m_selectedOutputs.emplace_back(std::forward<SelectedOutputsT>(value));
81 return *this;
82 }
84 private:
85 Aws::String m_manifestNameModifier;
86
87 Aws::Vector<Aws::String> m_selectedOutputs;
88 bool m_manifestNameModifierHasBeenSet = false;
89 bool m_selectedOutputsHasBeenSet = false;
90};
91
92} // namespace Model
93} // namespace MediaConvert
94} // namespace Aws
AWS_MEDIACONVERT_API MsSmoothAdditionalManifest()=default
const Aws::Vector< Aws::String > & GetSelectedOutputs() const
MsSmoothAdditionalManifest & AddSelectedOutputs(SelectedOutputsT &&value)
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
MsSmoothAdditionalManifest & WithManifestNameModifier(ManifestNameModifierT &&value)
AWS_MEDIACONVERT_API MsSmoothAdditionalManifest & operator=(Aws::Utils::Json::JsonView jsonValue)
MsSmoothAdditionalManifest & WithSelectedOutputs(SelectedOutputsT &&value)
AWS_MEDIACONVERT_API MsSmoothAdditionalManifest(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue