AWS SDK for C++

AWS SDK for C++ Version 1.11.717

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