/** * 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 MediaLive { namespace Model { /** * Ttml Destination Settings

See Also:

AWS * API Reference

*/ class TtmlDestinationSettings { public: AWS_MEDIALIVE_API TtmlDestinationSettings(); AWS_MEDIALIVE_API TtmlDestinationSettings(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API TtmlDestinationSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * This field is not currently supported and will not affect the output styling. * Leave the default value. */ inline const TtmlDestinationStyleControl& GetStyleControl() const{ return m_styleControl; } /** * This field is not currently supported and will not affect the output styling. * Leave the default value. */ inline bool StyleControlHasBeenSet() const { return m_styleControlHasBeenSet; } /** * This field is not currently supported and will not affect the output styling. * Leave the default value. */ inline void SetStyleControl(const TtmlDestinationStyleControl& value) { m_styleControlHasBeenSet = true; m_styleControl = value; } /** * This field is not currently supported and will not affect the output styling. * Leave the default value. */ inline void SetStyleControl(TtmlDestinationStyleControl&& value) { m_styleControlHasBeenSet = true; m_styleControl = std::move(value); } /** * This field is not currently supported and will not affect the output styling. * Leave the default value. */ inline TtmlDestinationSettings& WithStyleControl(const TtmlDestinationStyleControl& value) { SetStyleControl(value); return *this;} /** * This field is not currently supported and will not affect the output styling. * Leave the default value. */ inline TtmlDestinationSettings& WithStyleControl(TtmlDestinationStyleControl&& value) { SetStyleControl(std::move(value)); return *this;} private: TtmlDestinationStyleControl m_styleControl; bool m_styleControlHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws