interface ChannelAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.ChannelAttributes |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#ChannelAttributes |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.ChannelAttributes |
Python | aws_cdk.aws_mediapackagev2_alpha.ChannelAttributes |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป ChannelAttributes |
Represents a Channel defined outside of this stack.
Example
declare const stack: Stack;
const channel = Channel.fromChannelAttributes(stack, 'ImportedChannel', {
channelName: 'MyChannel',
channelGroupName: 'MyChannelGroup',
});
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The name that describes the channel group. |
| channel | string | The name that describes the channel. |
channelGroupName
Type:
string
The name that describes the channel group.
channelName
Type:
string
The name that describes the channel.

.NET
Go
Java
Python
TypeScript (