AWS SDK for C++

AWS SDK for C++ Version 1.11.717

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