interface CfnChannelPolicyProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MediaTailor.CfnChannelPolicyProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnChannelPolicyProps | 
  Java | software.amazon.awscdk.services.mediatailor.CfnChannelPolicyProps | 
  Python | aws_cdk.aws_mediatailor.CfnChannelPolicyProps | 
  TypeScript  | aws-cdk-lib » aws_mediatailor » CfnChannelPolicyProps | 
Properties for defining a CfnChannelPolicy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
declare const policy: any;
const cfnChannelPolicyProps: mediatailor.CfnChannelPolicyProps = {
  channelName: 'channelName',
  policy: policy,
};
Properties
| Name | Type | Description | 
|---|---|---|
| channel | string | The name of the channel associated with this Channel Policy. | 
| policy | any | The IAM policy for the channel. | 
channelName
Type:
string
The name of the channel associated with this Channel Policy.
policy
Type:
any
The IAM policy for the channel.
IAM policies are used to control access to your channel.

 .NET
 Go
 Java
 Python
 TypeScript