package awsmedialive // The configuration of a WebDav server as the downstream system for an HLS output. // // The parent of this entity is HlsCdnSettings. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // hlsWebdavSettingsProperty := &HlsWebdavSettingsProperty{ // ConnectionRetryInterval: jsii.Number(123), // FilecacheDuration: jsii.Number(123), // HttpTransferMode: jsii.String("httpTransferMode"), // NumRetries: jsii.Number(123), // RestartDelay: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlswebdavsettings.html // type CfnChannel_HlsWebdavSettingsProperty struct { // The number of seconds to wait before retrying a connection to the CDN if the connection is lost. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlswebdavsettings.html#cfn-medialive-channel-hlswebdavsettings-connectionretryinterval // ConnectionRetryInterval *float64 `field:"optional" json:"connectionRetryInterval" yaml:"connectionRetryInterval"` // The size, in seconds, of the file cache for streaming outputs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlswebdavsettings.html#cfn-medialive-channel-hlswebdavsettings-filecacheduration // FilecacheDuration *float64 `field:"optional" json:"filecacheDuration" yaml:"filecacheDuration"` // Specifies whether to use chunked transfer encoding to WebDAV. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlswebdavsettings.html#cfn-medialive-channel-hlswebdavsettings-httptransfermode // HttpTransferMode *string `field:"optional" json:"httpTransferMode" yaml:"httpTransferMode"` // The number of retry attempts that are made before the channel is put into an error state. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlswebdavsettings.html#cfn-medialive-channel-hlswebdavsettings-numretries // NumRetries *float64 `field:"optional" json:"numRetries" yaml:"numRetries"` // If a streaming output fails, the number of seconds to wait until a restart is initiated. // // A value of 0 means never restart. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlswebdavsettings.html#cfn-medialive-channel-hlswebdavsettings-restartdelay // RestartDelay *float64 `field:"optional" json:"restartDelay" yaml:"restartDelay"` }