interface CfnChannelGroupProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_mediapackagev2.CfnChannelGroupProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnChannelGroupProps | 
|  Java | software.amazon.awscdk.services.mediapackagev2.CfnChannelGroupProps | 
|  Python | aws_cdk.aws_mediapackagev2.CfnChannelGroupProps | 
|  TypeScript | aws-cdk-lib»aws_mediapackagev2»CfnChannelGroupProps | 
Properties for defining a CfnChannelGroup.
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-lib';
const cfnChannelGroupProps: mediapackagev2.CfnChannelGroupProps = {
  channelGroupName: 'channelGroupName',
  // the properties below are optional
  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
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.
