interface CfnChannelGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackageV2.CfnChannelGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackagev2#CfnChannelGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.CfnChannelGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediapackagev2.CfnChannelGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackagev2 » 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 { aws_mediapackagev2 as mediapackagev2 } from '@aws-cdk/cfn-property-mixins';
const cfnChannelGroupMixinProps: mediapackagev2.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