Class CfnChannel.HlsWebdavSettingsProperty
The configuration of a WebDav server as the downstream system for an HLS output.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnChannel.HlsWebdavSettingsProperty : CfnChannel.IHlsWebdavSettingsProperty
Syntax (vb)
Public Class CfnChannel.HlsWebdavSettingsProperty 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
HlsWebdavSettingsProperty() | The configuration of a WebDav server as the downstream system for an HLS output. |
Properties
ConnectionRetryInterval | The number of seconds to wait before retrying a connection to the CDN if the connection is lost. |
FilecacheDuration | The size, in seconds, of the file cache for streaming outputs. |
HttpTransferMode | Specifies whether to use chunked transfer encoding to WebDAV. |
NumRetries | The number of retry attempts that are made before the channel is put into an error state. |
RestartDelay | If a streaming output fails, the number of seconds to wait until a restart is initiated. |
Constructors
HlsWebdavSettingsProperty()
The configuration of a WebDav server as the downstream system for an HLS output.
public HlsWebdavSettingsProperty()
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
};
Properties
ConnectionRetryInterval
The number of seconds to wait before retrying a connection to the CDN if the connection is lost.
public double? ConnectionRetryInterval { get; set; }
Property Value
Remarks
FilecacheDuration
The size, in seconds, of the file cache for streaming outputs.
public double? FilecacheDuration { get; set; }
Property Value
Remarks
HttpTransferMode
Specifies whether to use chunked transfer encoding to WebDAV.
public string? HttpTransferMode { get; set; }
Property Value
Remarks
NumRetries
The number of retry attempts that are made before the channel is put into an error state.
public double? NumRetries { get; set; }
Property Value
Remarks
RestartDelay
If a streaming output fails, the number of seconds to wait until a restart is initiated.
public double? RestartDelay { get; set; }