/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the mediaconvert-2017-08-29.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.MediaConvert.Model { /// /// Settings for burning the output timecode and specified prefix into the output. /// public partial class TimecodeBurnin { private int? _fontSize; private TimecodeBurninPosition _position; private string _prefix; /// /// Gets and sets the property FontSize. Use Font size to set the font size of any burned-in /// timecode. Valid values are 10, 16, 32, 48. /// [AWSProperty(Min=10, Max=48)] public int FontSize { get { return this._fontSize.GetValueOrDefault(); } set { this._fontSize = value; } } // Check to see if FontSize property is set internal bool IsSetFontSize() { return this._fontSize.HasValue; } /// /// Gets and sets the property Position. Use Position under Timecode burn-in to specify /// the location the burned-in timecode on output video. /// public TimecodeBurninPosition Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } /// /// Gets and sets the property Prefix. Use Prefix to place ASCII characters before any /// burned-in timecode. For example, a prefix of "EZ-" will result in the timecode "EZ-00:00:00:00". /// Provide either the characters themselves or the ASCII code equivalents. The supported /// range of characters is 0x20 through 0x7e. This includes letters, numbers, and all /// special characters represented on a standard English keyboard. /// public string Prefix { get { return this._prefix; } set { this._prefix = value; } } // Check to see if Prefix property is set internal bool IsSetPrefix() { return this._prefix != null; } } }