interface HlsIngestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackage.CfnChannel.HlsIngestProperty |
Java | software.amazon.awscdk.services.mediapackage.CfnChannel.HlsIngestProperty |
Python | aws_cdk.aws_mediapackage.CfnChannel.HlsIngestProperty |
TypeScript | @aws-cdk/aws-mediapackage » CfnChannel » HlsIngestProperty |
HLS ingest configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediapackage from '@aws-cdk/aws-mediapackage';
const hlsIngestProperty: mediapackage.CfnChannel.HlsIngestProperty = {
ingestEndpoints: [{
id: 'id',
password: 'password',
url: 'url',
username: 'username',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| ingest | IResolvable | IResolvable | Ingest[] | The input URL where the source stream should be sent. |
ingestEndpoints?
Type:
IResolvable | IResolvable | Ingest[]
(optional)
The input URL where the source stream should be sent.

.NET
Java
Python
TypeScript