/*
* 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
{
///
/// Specify the details for each additional HLS manifest that you want the service to
/// generate for this output group. Each manifest can reference a different subset of
/// outputs in the group.
///
public partial class HlsAdditionalManifest
{
private string _manifestNameModifier;
private List _selectedOutputs = new List();
///
/// Gets and sets the property ManifestNameModifier. Specify a name modifier that the
/// service adds to the name of this manifest to make it different from the file names
/// of the other main manifests in the output group. For example, say that the default
/// main manifest for your HLS group is film-name.m3u8. If you enter "-no-premium" for
/// this setting, then the file name the service generates for this top-level manifest
/// is film-name-no-premium.m3u8. For HLS output groups, specify a manifestNameModifier
/// that is different from the nameModifier of the output. The service uses the output
/// name modifier to create unique names for the individual variant manifests.
///
[AWSProperty(Min=1)]
public string ManifestNameModifier
{
get { return this._manifestNameModifier; }
set { this._manifestNameModifier = value; }
}
// Check to see if ManifestNameModifier property is set
internal bool IsSetManifestNameModifier()
{
return this._manifestNameModifier != null;
}
///
/// Gets and sets the property SelectedOutputs. Specify the outputs that you want this
/// additional top-level manifest to reference.
///
public List SelectedOutputs
{
get { return this._selectedOutputs; }
set { this._selectedOutputs = value; }
}
// Check to see if SelectedOutputs property is set
internal bool IsSetSelectedOutputs()
{
return this._selectedOutputs != null && this._selectedOutputs.Count > 0;
}
}
}