interface CfnChannelPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnChannelPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnChannelPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnChannelPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnChannelPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » 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 { aws_mediatailor as mediatailor } from '@aws-cdk/cfn-property-mixins';
declare const policy: any;
const cfnChannelPolicyMixinProps: mediatailor.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