aws-cdk-lib.aws_mediapackage.CfnChannelProps

interface CfnChannelProps

LanguageType name
.NETAmazon.CDK.AWS.MediaPackage.CfnChannelProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediapackage#CfnChannelProps
Javasoftware.amazon.awscdk.services.mediapackage.CfnChannelProps
Pythonaws_cdk.aws_mediapackage.CfnChannelProps
TypeScript aws-cdk-lib » aws_mediapackage » CfnChannelProps

Properties for defining a CfnChannel.

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

NameTypeDescription
idstringUnique identifier that you assign to the channel.
description?stringAny descriptive information that you want to add to the channel for future identification purposes.
egressAccessLogs?IResolvable | LogConfigurationPropertyConfigures egress access logs.
hlsIngest?IResolvable | HlsIngestPropertyThe input URL where the source stream should be sent.
ingressAccessLogs?IResolvable | LogConfigurationPropertyConfigures ingress access logs.
tags?CfnTag[]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 | LogConfigurationProperty (optional)

Configures egress access logs.


hlsIngest?

Type: IResolvable | HlsIngestProperty (optional)

The input URL where the source stream should be sent.


ingressAccessLogs?

Type: IResolvable | LogConfigurationProperty (optional)

Configures ingress access logs.


tags?

Type: CfnTag[] (optional)

The tags to assign to the channel.