interface CfnChannelGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnChannelGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnChannelGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnChannelGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnChannelGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnChannelGroupMixinProps |
Properties for CfnChannelGroupPropsMixin.
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';
const cfnChannelGroupMixinProps: mediapackagev2_mixins.CfnChannelGroupMixinProps = {
channelGroupName: 'channelGroupName',
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The name of the channel group. |
| description? | string | The configuration for a MediaPackage V2 channel group. |
| tags? | Cfn[] | The tags associated with the channel group. |
channelGroupName?
Type:
string
(optional)
The name of the channel group.
description?
Type:
string
(optional)
The configuration for a MediaPackage V2 channel group.
tags?
Type:
Cfn[]
(optional)
The tags associated with the channel group.

.NET
Go
Java
Python
TypeScript