AWS SDK for C++

AWS SDK for C++ Version 1.11.609

Loading...
Searching...
No Matches
MultiplexOutputSettings.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/medialive/model/OutputLocationRef.h>
9#include <aws/medialive/model/MultiplexContainerSettings.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 MediaLive
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_MEDIALIVE_API MultiplexOutputSettings() = default;
38 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const OutputLocationRef& GetDestination() const { return m_destination; }
46 inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; }
47 template<typename DestinationT = OutputLocationRef>
48 void SetDestination(DestinationT&& value) { m_destinationHasBeenSet = true; m_destination = std::forward<DestinationT>(value); }
49 template<typename DestinationT = OutputLocationRef>
50 MultiplexOutputSettings& WithDestination(DestinationT&& value) { SetDestination(std::forward<DestinationT>(value)); return *this;}
52
54
55 inline const MultiplexContainerSettings& GetContainerSettings() const { return m_containerSettings; }
56 inline bool ContainerSettingsHasBeenSet() const { return m_containerSettingsHasBeenSet; }
57 template<typename ContainerSettingsT = MultiplexContainerSettings>
58 void SetContainerSettings(ContainerSettingsT&& value) { m_containerSettingsHasBeenSet = true; m_containerSettings = std::forward<ContainerSettingsT>(value); }
59 template<typename ContainerSettingsT = MultiplexContainerSettings>
60 MultiplexOutputSettings& WithContainerSettings(ContainerSettingsT&& value) { SetContainerSettings(std::forward<ContainerSettingsT>(value)); return *this;}
62 private:
63
64 OutputLocationRef m_destination;
65 bool m_destinationHasBeenSet = false;
66
67 MultiplexContainerSettings m_containerSettings;
68 bool m_containerSettingsHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace MediaLive
73} // namespace Aws
AWS_MEDIALIVE_API MultiplexOutputSettings()=default
const MultiplexContainerSettings & GetContainerSettings() const
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
MultiplexOutputSettings & WithDestination(DestinationT &&value)
AWS_MEDIALIVE_API MultiplexOutputSettings(Aws::Utils::Json::JsonView jsonValue)
void SetContainerSettings(ContainerSettingsT &&value)
AWS_MEDIALIVE_API MultiplexOutputSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
MultiplexOutputSettings & WithContainerSettings(ContainerSettingsT &&value)
Aws::Utils::Json::JsonValue JsonValue