interface ChannelPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaPackageV2.ChannelPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediapackagev2#ChannelPolicyReference |
Java | software.amazon.awscdk.interfaces.mediapackagev2.ChannelPolicyReference |
Python | aws_cdk.interfaces.aws_mediapackagev2.ChannelPolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediapackagev2 » ChannelPolicyReference |
A reference to a ChannelPolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as interfaces_aws_mediapackagev2 } from 'aws-cdk-lib/interfaces';
const channelPolicyReference: interfaces_aws_mediapackagev2.ChannelPolicyReference = {
channelGroupName: 'channelGroupName',
channelName: 'channelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The ChannelGroupName of the ChannelPolicy resource. |
| channel | string | The ChannelName of the ChannelPolicy resource. |
channelGroupName
Type:
string
The ChannelGroupName of the ChannelPolicy resource.
channelName
Type:
string
The ChannelName of the ChannelPolicy resource.

.NET
Go
Java
Python
TypeScript