interface ChannelReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaTailor.ChannelReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediatailor#ChannelReference |
Java | software.amazon.awscdk.interfaces.mediatailor.ChannelReference |
Python | aws_cdk.interfaces.aws_mediatailor.ChannelReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediatailor » ChannelReference |
A reference to a Channel resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as interfaces_mediatailor } from 'aws-cdk-lib/interfaces';
const channelReference: interfaces_mediatailor.ChannelReference = {
channelArn: 'channelArn',
channelName: 'channelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The ARN of the Channel resource. |
| channel | string | The ChannelName of the Channel resource. |
channelArn
Type:
string
The ARN of the Channel resource.
channelName
Type:
string
The ChannelName of the Channel resource.

.NET
Go
Java
Python
TypeScript