interface HlsAkamaiSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.HlsAkamaiSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.HlsAkamaiSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.HlsAkamaiSettingsProperty |
TypeScript | @aws-cdk/aws-medialive » CfnChannel » HlsAkamaiSettingsProperty |
The Akamai settings in 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 * as medialive from '@aws-cdk/aws-medialive';
const hlsAkamaiSettingsProperty: medialive.CfnChannel.HlsAkamaiSettingsProperty = {
connectionRetryInterval: 123,
filecacheDuration: 123,
httpTransferMode: 'httpTransferMode',
numRetries: 123,
restartDelay: 123,
salt: 'salt',
token: 'token',
};
Properties
Name | Type | Description |
---|---|---|
connection | number | The number of seconds to wait before retrying a connection to the CDN if the connection is lost. |
filecache | number | The size, in seconds, of the file cache for streaming outputs. |
http | string | Specifies whether to use chunked transfer encoding to Akamai. |
num | number | The number of retry attempts that will be made before the channel is put into an error state. |
restart | number | If a streaming output fails, the number of seconds to wait until a restart is initiated. |
salt? | string | The salt for authenticated Akamai. |
token? | string | The token parameter for authenticated Akamai. |
connectionRetryInterval?
Type:
number
(optional)
The number of seconds to wait before retrying a connection to the CDN if the connection is lost.
filecacheDuration?
Type:
number
(optional)
The size, in seconds, of the file cache for streaming outputs.
httpTransferMode?
Type:
string
(optional)
Specifies whether to use chunked transfer encoding to Akamai.
To enable this feature, contact Akamai.
numRetries?
Type:
number
(optional)
The number of retry attempts that will be made before the channel is put into an error state.
restartDelay?
Type:
number
(optional)
If a streaming output fails, the number of seconds to wait until a restart is initiated.
A value of 0 means never restart.
salt?
Type:
string
(optional)
The salt for authenticated Akamai.
token?
Type:
string
(optional)
The token parameter for authenticated Akamai.
If this is not specified, gda is used.