interface CfnChannelPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnChannelPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnChannelPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnChannelPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnChannelPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » 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 mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
declare const policy: any;
const cfnChannelPolicyMixinProps: mediapackagev2_mixins.CfnChannelPolicyMixinProps = {
channelGroupName: 'channelGroupName',
channelName: 'channelName',
policy: policy,
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The name of the channel group associated with the channel policy. |
| channel | string | The name of the channel associated with the channel policy. |
| policy? | any | The policy associated with the channel. |
channelGroupName?
Type:
string
(optional)
The name of the channel group associated with the channel policy.
channelName?
Type:
string
(optional)
The name of the channel associated with the channel policy.
policy?
Type:
any
(optional)
The policy associated with the channel.

.NET
Go
Java
Python
TypeScript