AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
CmafAdditionalManifest.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace MediaConvert
23{
24namespace Model
25{
26
36 {
37 public:
38 AWS_MEDIACONVERT_API CmafAdditionalManifest() = default;
39 AWS_MEDIACONVERT_API CmafAdditionalManifest(Aws::Utils::Json::JsonView jsonValue);
41 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
55 inline const Aws::String& GetManifestNameModifier() const { return m_manifestNameModifier; }
56 inline bool ManifestNameModifierHasBeenSet() const { return m_manifestNameModifierHasBeenSet; }
57 template<typename ManifestNameModifierT = Aws::String>
58 void SetManifestNameModifier(ManifestNameModifierT&& value) { m_manifestNameModifierHasBeenSet = true; m_manifestNameModifier = std::forward<ManifestNameModifierT>(value); }
59 template<typename ManifestNameModifierT = Aws::String>
60 CmafAdditionalManifest& WithManifestNameModifier(ManifestNameModifierT&& value) { SetManifestNameModifier(std::forward<ManifestNameModifierT>(value)); return *this;}
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) { m_selectedOutputsHasBeenSet = true; m_selectedOutputs = std::forward<SelectedOutputsT>(value); }
72 template<typename SelectedOutputsT = Aws::Vector<Aws::String>>
73 CmafAdditionalManifest& WithSelectedOutputs(SelectedOutputsT&& value) { SetSelectedOutputs(std::forward<SelectedOutputsT>(value)); return *this;}
74 template<typename SelectedOutputsT = Aws::String>
75 CmafAdditionalManifest& AddSelectedOutputs(SelectedOutputsT&& value) { m_selectedOutputsHasBeenSet = true; m_selectedOutputs.emplace_back(std::forward<SelectedOutputsT>(value)); return *this; }
77 private:
78
79 Aws::String m_manifestNameModifier;
80 bool m_manifestNameModifierHasBeenSet = false;
81
82 Aws::Vector<Aws::String> m_selectedOutputs;
83 bool m_selectedOutputsHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace MediaConvert
88} // 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