AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DvbSdtSettings.h
1
6#pragma once
7#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
8#include <aws/mediaconvert/model/OutputSdt.h>
9#include <aws/core/utils/memory/stl/AWSString.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
34 {
35 public:
36 AWS_MEDIACONVERT_API DvbSdtSettings();
37 AWS_MEDIACONVERT_API DvbSdtSettings(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MEDIACONVERT_API DvbSdtSettings& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
51 inline const OutputSdt& GetOutputSdt() const{ return m_outputSdt; }
52 inline bool OutputSdtHasBeenSet() const { return m_outputSdtHasBeenSet; }
53 inline void SetOutputSdt(const OutputSdt& value) { m_outputSdtHasBeenSet = true; m_outputSdt = value; }
54 inline void SetOutputSdt(OutputSdt&& value) { m_outputSdtHasBeenSet = true; m_outputSdt = std::move(value); }
55 inline DvbSdtSettings& WithOutputSdt(const OutputSdt& value) { SetOutputSdt(value); return *this;}
56 inline DvbSdtSettings& WithOutputSdt(OutputSdt&& value) { SetOutputSdt(std::move(value)); return *this;}
58
60
64 inline int GetSdtInterval() const{ return m_sdtInterval; }
65 inline bool SdtIntervalHasBeenSet() const { return m_sdtIntervalHasBeenSet; }
66 inline void SetSdtInterval(int value) { m_sdtIntervalHasBeenSet = true; m_sdtInterval = value; }
67 inline DvbSdtSettings& WithSdtInterval(int value) { SetSdtInterval(value); return *this;}
69
71
75 inline const Aws::String& GetServiceName() const{ return m_serviceName; }
76 inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; }
77 inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; }
78 inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); }
79 inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); }
80 inline DvbSdtSettings& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;}
81 inline DvbSdtSettings& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;}
82 inline DvbSdtSettings& WithServiceName(const char* value) { SetServiceName(value); return *this;}
84
86
90 inline const Aws::String& GetServiceProviderName() const{ return m_serviceProviderName; }
91 inline bool ServiceProviderNameHasBeenSet() const { return m_serviceProviderNameHasBeenSet; }
92 inline void SetServiceProviderName(const Aws::String& value) { m_serviceProviderNameHasBeenSet = true; m_serviceProviderName = value; }
93 inline void SetServiceProviderName(Aws::String&& value) { m_serviceProviderNameHasBeenSet = true; m_serviceProviderName = std::move(value); }
94 inline void SetServiceProviderName(const char* value) { m_serviceProviderNameHasBeenSet = true; m_serviceProviderName.assign(value); }
95 inline DvbSdtSettings& WithServiceProviderName(const Aws::String& value) { SetServiceProviderName(value); return *this;}
96 inline DvbSdtSettings& WithServiceProviderName(Aws::String&& value) { SetServiceProviderName(std::move(value)); return *this;}
97 inline DvbSdtSettings& WithServiceProviderName(const char* value) { SetServiceProviderName(value); return *this;}
99 private:
100
101 OutputSdt m_outputSdt;
102 bool m_outputSdtHasBeenSet = false;
103
104 int m_sdtInterval;
105 bool m_sdtIntervalHasBeenSet = false;
106
107 Aws::String m_serviceName;
108 bool m_serviceNameHasBeenSet = false;
109
110 Aws::String m_serviceProviderName;
111 bool m_serviceProviderNameHasBeenSet = false;
112 };
113
114} // namespace Model
115} // namespace MediaConvert
116} // namespace Aws
void SetServiceProviderName(const Aws::String &value)
const Aws::String & GetServiceProviderName() const
void SetOutputSdt(const OutputSdt &value)
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetServiceName(const Aws::String &value)
DvbSdtSettings & WithServiceProviderName(const Aws::String &value)
void SetServiceName(Aws::String &&value)
DvbSdtSettings & WithServiceName(const Aws::String &value)
void SetServiceProviderName(Aws::String &&value)
AWS_MEDIACONVERT_API DvbSdtSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
DvbSdtSettings & WithServiceProviderName(const char *value)
AWS_MEDIACONVERT_API DvbSdtSettings(Aws::Utils::Json::JsonView jsonValue)
DvbSdtSettings & WithOutputSdt(const OutputSdt &value)
DvbSdtSettings & WithServiceName(const char *value)
void SetServiceProviderName(const char *value)
DvbSdtSettings & WithOutputSdt(OutputSdt &&value)
DvbSdtSettings & WithServiceName(Aws::String &&value)
const OutputSdt & GetOutputSdt() const
DvbSdtSettings & WithSdtInterval(int value)
const Aws::String & GetServiceName() const
DvbSdtSettings & WithServiceProviderName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue