interface CfnChannelProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaPackage.CfnChannelProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackage#CfnChannelProps |
Java | software.amazon.awscdk.services.mediapackage.CfnChannelProps |
Python | aws_cdk.aws_mediapackage.CfnChannelProps |
TypeScript | aws-cdk-lib » aws_mediapackage » CfnChannelProps |
Properties for defining a CfnChannel
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-channel.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackage as mediapackage } from 'aws-cdk-lib';
const cfnChannelProps: mediapackage.CfnChannelProps = {
id: 'id',
// the properties below are optional
description: 'description',
egressAccessLogs: {
logGroupName: 'logGroupName',
},
hlsIngest: {
ingestEndpoints: [{
id: 'id',
password: 'password',
url: 'url',
username: 'username',
}],
},
ingressAccessLogs: {
logGroupName: 'logGroupName',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
id | string | Unique identifier that you assign to the channel. |
description? | string | Any descriptive information that you want to add to the channel for future identification purposes. |
egress | IResolvable | Log | Configures egress access logs. |
hls | IResolvable | Hls | The input URL where the source stream should be sent. |
ingress | IResolvable | Log | Configures ingress access logs. |
tags? | Cfn [] | The tags to assign to the channel. |
id
Type:
string
Unique identifier that you assign to the channel.
description?
Type:
string
(optional)
Any descriptive information that you want to add to the channel for future identification purposes.
egressAccessLogs?
Type:
IResolvable
|
Log
(optional)
Configures egress access logs.
hlsIngest?
Type:
IResolvable
|
Hls
(optional)
The input URL where the source stream should be sent.
ingressAccessLogs?
Type:
IResolvable
|
Log
(optional)
Configures ingress access logs.
tags?
Type:
Cfn
[]
(optional)
The tags to assign to the channel.