AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DashAdditionalManifest.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 DashAdditionalManifest() = default;
33 AWS_MEDIACONVERT_API DashAdditionalManifest(Aws::Utils::Json::JsonView jsonValue);
35 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
45 inline const Aws::String& GetManifestNameModifier() const { return m_manifestNameModifier; }
46 inline bool ManifestNameModifierHasBeenSet() const { return m_manifestNameModifierHasBeenSet; }
47 template <typename ManifestNameModifierT = Aws::String>
48 void SetManifestNameModifier(ManifestNameModifierT&& value) {
49 m_manifestNameModifierHasBeenSet = true;
50 m_manifestNameModifier = std::forward<ManifestNameModifierT>(value);
51 }
52 template <typename ManifestNameModifierT = Aws::String>
53 DashAdditionalManifest& WithManifestNameModifier(ManifestNameModifierT&& value) {
54 SetManifestNameModifier(std::forward<ManifestNameModifierT>(value));
55 return *this;
56 }
58
60
64 inline const Aws::Vector<Aws::String>& GetSelectedOutputs() const { return m_selectedOutputs; }
65 inline bool SelectedOutputsHasBeenSet() const { return m_selectedOutputsHasBeenSet; }
66 template <typename SelectedOutputsT = Aws::Vector<Aws::String>>
67 void SetSelectedOutputs(SelectedOutputsT&& value) {
68 m_selectedOutputsHasBeenSet = true;
69 m_selectedOutputs = std::forward<SelectedOutputsT>(value);
70 }
71 template <typename SelectedOutputsT = Aws::Vector<Aws::String>>
72 DashAdditionalManifest& WithSelectedOutputs(SelectedOutputsT&& value) {
73 SetSelectedOutputs(std::forward<SelectedOutputsT>(value));
74 return *this;
75 }
76 template <typename SelectedOutputsT = Aws::String>
77 DashAdditionalManifest& AddSelectedOutputs(SelectedOutputsT&& value) {
78 m_selectedOutputsHasBeenSet = true;
79 m_selectedOutputs.emplace_back(std::forward<SelectedOutputsT>(value));
80 return *this;
81 }
83 private:
84 Aws::String m_manifestNameModifier;
85
86 Aws::Vector<Aws::String> m_selectedOutputs;
87 bool m_manifestNameModifierHasBeenSet = false;
88 bool m_selectedOutputsHasBeenSet = false;
89};
90
91} // namespace Model
92} // namespace MediaConvert
93} // namespace Aws
DashAdditionalManifest & AddSelectedOutputs(SelectedOutputsT &&value)
void SetManifestNameModifier(ManifestNameModifierT &&value)
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIACONVERT_API DashAdditionalManifest & operator=(Aws::Utils::Json::JsonView jsonValue)
DashAdditionalManifest & WithManifestNameModifier(ManifestNameModifierT &&value)
DashAdditionalManifest & WithSelectedOutputs(SelectedOutputsT &&value)
AWS_MEDIACONVERT_API DashAdditionalManifest(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIACONVERT_API DashAdditionalManifest()=default
const Aws::Vector< Aws::String > & GetSelectedOutputs() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue