Class CfnChannel.HlsWebdavSettingsProperty
The configuration of a WebDav server as the downstream system for an HLS output.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HlsWebdavSettingsProperty : Object, CfnChannel.IHlsWebdavSettingsProperty
Syntax (vb)
Public Class HlsWebdavSettingsProperty
Inherits Object
Implements CfnChannel.IHlsWebdavSettingsProperty
Remarks
The parent of this entity is HlsCdnSettings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaLive;
var hlsWebdavSettingsProperty = new HlsWebdavSettingsProperty {
ConnectionRetryInterval = 123,
FilecacheDuration = 123,
HttpTransferMode = "httpTransferMode",
NumRetries = 123,
RestartDelay = 123
};
Synopsis
Constructors
Hls |
Properties
Connection |
The number of seconds to wait before retrying a connection to the CDN if the connection is lost. |
Filecache |
The size, in seconds, of the file cache for streaming outputs. |
Http |
Specifies whether to use chunked transfer encoding to WebDAV. |
Num |
The number of retry attempts that are made before the channel is put into an error state. |
Restart |
If a streaming output fails, the number of seconds to wait until a restart is initiated. |
Constructors
HlsWebdavSettingsProperty()
public HlsWebdavSettingsProperty()
Properties
ConnectionRetryInterval
The number of seconds to wait before retrying a connection to the CDN if the connection is lost.
public Nullable<double> ConnectionRetryInterval { get; set; }
Property Value
System.
Remarks
FilecacheDuration
The size, in seconds, of the file cache for streaming outputs.
public Nullable<double> FilecacheDuration { get; set; }
Property Value
System.
Remarks
HttpTransferMode
Specifies whether to use chunked transfer encoding to WebDAV.
public string HttpTransferMode { get; set; }
Property Value
System.
Remarks
NumRetries
The number of retry attempts that are made before the channel is put into an error state.
public Nullable<double> NumRetries { get; set; }
Property Value
System.
Remarks
RestartDelay
If a streaming output fails, the number of seconds to wait until a restart is initiated.
public Nullable<double> RestartDelay { get; set; }
Property Value
System.