AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
MssManifest.h
1
6#pragma once
7#include <aws/mediapackage-vod/MediaPackageVod_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/mediapackage-vod/model/StreamSelection.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 MediaPackageVod
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIAPACKAGEVOD_API MssManifest() = default;
37 AWS_MEDIAPACKAGEVOD_API MssManifest(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MEDIAPACKAGEVOD_API MssManifest& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MEDIAPACKAGEVOD_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetManifestName() const { return m_manifestName; }
47 inline bool ManifestNameHasBeenSet() const { return m_manifestNameHasBeenSet; }
48 template<typename ManifestNameT = Aws::String>
49 void SetManifestName(ManifestNameT&& value) { m_manifestNameHasBeenSet = true; m_manifestName = std::forward<ManifestNameT>(value); }
50 template<typename ManifestNameT = Aws::String>
51 MssManifest& WithManifestName(ManifestNameT&& value) { SetManifestName(std::forward<ManifestNameT>(value)); return *this;}
53
55
56 inline const StreamSelection& GetStreamSelection() const { return m_streamSelection; }
57 inline bool StreamSelectionHasBeenSet() const { return m_streamSelectionHasBeenSet; }
58 template<typename StreamSelectionT = StreamSelection>
59 void SetStreamSelection(StreamSelectionT&& value) { m_streamSelectionHasBeenSet = true; m_streamSelection = std::forward<StreamSelectionT>(value); }
60 template<typename StreamSelectionT = StreamSelection>
61 MssManifest& WithStreamSelection(StreamSelectionT&& value) { SetStreamSelection(std::forward<StreamSelectionT>(value)); return *this;}
63 private:
64
65 Aws::String m_manifestName;
66 bool m_manifestNameHasBeenSet = false;
67
68 StreamSelection m_streamSelection;
69 bool m_streamSelectionHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace MediaPackageVod
74} // namespace Aws
MssManifest & WithManifestName(ManifestNameT &&value)
Definition MssManifest.h:51
AWS_MEDIAPACKAGEVOD_API MssManifest()=default
const StreamSelection & GetStreamSelection() const
Definition MssManifest.h:56
MssManifest & WithStreamSelection(StreamSelectionT &&value)
Definition MssManifest.h:61
void SetStreamSelection(StreamSelectionT &&value)
Definition MssManifest.h:59
AWS_MEDIAPACKAGEVOD_API MssManifest & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetManifestName() const
Definition MssManifest.h:46
void SetManifestName(ManifestNameT &&value)
Definition MssManifest.h:49
AWS_MEDIAPACKAGEVOD_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDIAPACKAGEVOD_API MssManifest(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue