/*
* 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 mediatailor-2018-04-23.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.MediaTailor.Model
{
///
/// The SCTE-35 time_signal
message can be sent with one or more segmentation_descriptor
/// messages. A time_signal
message can be sent only if a single segmentation_descriptor
/// message is sent.
///
///
///
/// The time_signal
message contains only the splice_time
field
/// which is constructed using a given presentation timestamp. When sending a time_signal
/// message, the splice_command_type
field in the splice_info_section
/// message is set to 6 (0x06).
///
///
///
/// See the time_signal()
table of the 2022 SCTE-35 specification for more
/// information.
///
///
public partial class TimeSignalMessage
{
private List _segmentationDescriptors = new List();
///
/// Gets and sets the property SegmentationDescriptors.
///
/// The configurations for the SCTE-35 segmentation_descriptor
message(s)
/// sent with the time_signal
message.
///
///
public List SegmentationDescriptors
{
get { return this._segmentationDescriptors; }
set { this._segmentationDescriptors = value; }
}
// Check to see if SegmentationDescriptors property is set
internal bool IsSetSegmentationDescriptors()
{
return this._segmentationDescriptors != null && this._segmentationDescriptors.Count > 0;
}
}
}