/*
* 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 output item response.
///
public partial class ResponseOutputItem
{
private DashPlaylistSettings _dashPlaylistSettings;
private HlsPlaylistSettings _hlsPlaylistSettings;
private string _manifestName;
private string _playbackUrl;
private string _sourceGroup;
///
/// Gets and sets the property DashPlaylistSettings.
///
/// DASH manifest configuration settings.
///
///
public DashPlaylistSettings DashPlaylistSettings
{
get { return this._dashPlaylistSettings; }
set { this._dashPlaylistSettings = value; }
}
// Check to see if DashPlaylistSettings property is set
internal bool IsSetDashPlaylistSettings()
{
return this._dashPlaylistSettings != null;
}
///
/// Gets and sets the property HlsPlaylistSettings.
///
/// HLS manifest configuration settings.
///
///
public HlsPlaylistSettings HlsPlaylistSettings
{
get { return this._hlsPlaylistSettings; }
set { this._hlsPlaylistSettings = value; }
}
// Check to see if HlsPlaylistSettings property is set
internal bool IsSetHlsPlaylistSettings()
{
return this._hlsPlaylistSettings != null;
}
///
/// Gets and sets the property ManifestName.
///
/// The name of the manifest for the channel that will appear in the channel output's
/// playback URL.
///
///
[AWSProperty(Required=true)]
public string ManifestName
{
get { return this._manifestName; }
set { this._manifestName = value; }
}
// Check to see if ManifestName property is set
internal bool IsSetManifestName()
{
return this._manifestName != null;
}
///
/// Gets and sets the property PlaybackUrl.
///
/// The URL used for playback by content players.
///
///
[AWSProperty(Required=true)]
public string PlaybackUrl
{
get { return this._playbackUrl; }
set { this._playbackUrl = value; }
}
// Check to see if PlaybackUrl property is set
internal bool IsSetPlaybackUrl()
{
return this._playbackUrl != null;
}
///
/// Gets and sets the property SourceGroup.
///
/// A string used to associate a package configuration source group with a channel output.
///
///
[AWSProperty(Required=true)]
public string SourceGroup
{
get { return this._sourceGroup; }
set { this._sourceGroup = value; }
}
// Check to see if SourceGroup property is set
internal bool IsSetSourceGroup()
{
return this._sourceGroup != null;
}
}
}