interface CfnChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnChannelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnChannelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnChannelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnChannelMixinProps |
Properties for CfnChannelPropsMixin.
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/cfn-property-mixins';
const cfnChannelMixinProps: mediapackage.CfnChannelMixinProps = {
description: 'description',
egressAccessLogs: {
logGroupName: 'logGroupName',
},
hlsIngest: {
ingestEndpoints: [{
id: 'id',
password: 'password',
url: 'url',
username: 'username',
}],
},
id: 'id',
ingressAccessLogs: {
logGroupName: 'logGroupName',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| id? | string | Unique identifier that you assign to the channel. |
| ingress | IResolvable | Log | Configures ingress access logs. |
| tags? | Cfn[] | The tags to 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.
id?
Type:
string
(optional)
Unique identifier that you assign to the channel.
ingressAccessLogs?
Type:
IResolvable | Log
(optional)
Configures ingress access logs.
tags?
Type:
Cfn[]
(optional)
The tags to assign to the channel.

.NET
Go
Java
Python
TypeScript