interface ChannelGroupAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.ChannelGroupAttributes |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#ChannelGroupAttributes |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.ChannelGroupAttributes |
Python | aws_cdk.aws_mediapackagev2_alpha.ChannelGroupAttributes |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป ChannelGroupAttributes |
Attributes to enable import of a Channel Group, which in turn can be used to create a Channel and OriginEndpoint).
Example
declare const stack: Stack;
const channelGroup = ChannelGroup.fromChannelGroupAttributes(stack, 'ImportedChannelGroup', {
channelGroupName: 'MyChannelGroup',
});
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | Channel Group Name. |
| egress | string | The egress domain where packaged content is available. |
channelGroupName
Type:
string
Channel Group Name.
egressDomain?
Type:
string
(optional, default: not available on imported channel groups)
The egress domain where packaged content is available.
Use this as the origin domain when configuring a CDN such as Amazon CloudFront.

.NET
Go
Java
Python
TypeScript (