/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaConvert { namespace Model { /** * Use these settings to insert a DVB Network Information Table (NIT) in the * transport stream of this output.

See Also:

AWS * API Reference

*/ class DvbNitSettings { public: AWS_MEDIACONVERT_API DvbNitSettings(); AWS_MEDIACONVERT_API DvbNitSettings(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIACONVERT_API DvbNitSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const; /** * The numeric value placed in the Network Information Table (NIT). */ inline int GetNetworkId() const{ return m_networkId; } /** * The numeric value placed in the Network Information Table (NIT). */ inline bool NetworkIdHasBeenSet() const { return m_networkIdHasBeenSet; } /** * The numeric value placed in the Network Information Table (NIT). */ inline void SetNetworkId(int value) { m_networkIdHasBeenSet = true; m_networkId = value; } /** * The numeric value placed in the Network Information Table (NIT). */ inline DvbNitSettings& WithNetworkId(int value) { SetNetworkId(value); return *this;} /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline const Aws::String& GetNetworkName() const{ return m_networkName; } /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline bool NetworkNameHasBeenSet() const { return m_networkNameHasBeenSet; } /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline void SetNetworkName(const Aws::String& value) { m_networkNameHasBeenSet = true; m_networkName = value; } /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline void SetNetworkName(Aws::String&& value) { m_networkNameHasBeenSet = true; m_networkName = std::move(value); } /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline void SetNetworkName(const char* value) { m_networkNameHasBeenSet = true; m_networkName.assign(value); } /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline DvbNitSettings& WithNetworkName(const Aws::String& value) { SetNetworkName(value); return *this;} /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline DvbNitSettings& WithNetworkName(Aws::String&& value) { SetNetworkName(std::move(value)); return *this;} /** * The network name text placed in the network_name_descriptor inside the Network * Information Table. Maximum length is 256 characters. */ inline DvbNitSettings& WithNetworkName(const char* value) { SetNetworkName(value); return *this;} /** * The number of milliseconds between instances of this table in the output * transport stream. */ inline int GetNitInterval() const{ return m_nitInterval; } /** * The number of milliseconds between instances of this table in the output * transport stream. */ inline bool NitIntervalHasBeenSet() const { return m_nitIntervalHasBeenSet; } /** * The number of milliseconds between instances of this table in the output * transport stream. */ inline void SetNitInterval(int value) { m_nitIntervalHasBeenSet = true; m_nitInterval = value; } /** * The number of milliseconds between instances of this table in the output * transport stream. */ inline DvbNitSettings& WithNitInterval(int value) { SetNitInterval(value); return *this;} private: int m_networkId; bool m_networkIdHasBeenSet = false; Aws::String m_networkName; bool m_networkNameHasBeenSet = false; int m_nitInterval; bool m_nitIntervalHasBeenSet = false; }; } // namespace Model } // namespace MediaConvert } // namespace Aws