interface CfnChannelPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnChannelPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnChannelPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnChannelPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnChannelPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » CfnChannelPolicyMixinProps |
Properties for CfnChannelPolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediatailor_mixins } from '@aws-cdk/mixins-preview/aws-mediatailor';
declare const policy: any;
const cfnChannelPolicyMixinProps: mediatailor_mixins.CfnChannelPolicyMixinProps = {
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
(optional)
The name of the channel associated with this Channel Policy.
policy?
Type:
any
(optional)
The IAM policy for the channel.
IAM policies are used to control access to your channel.

.NET
Go
Java
Python
TypeScript