CfnChannelGroupMixinProps
- class aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnChannelGroupMixinProps(*, channel_group_name=None, description=None, tags=None)
Bases:
objectProperties for CfnChannelGroupPropsMixin.
- Parameters:
channel_group_name (
Optional[str]) – The name of the channel group.description (
Optional[str]) – The configuration for a MediaPackage V2 channel group.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with the channel group.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_mediapackagev2 import mixins as mediapackagev2_mixins cfn_channel_group_mixin_props = mediapackagev2_mixins.CfnChannelGroupMixinProps( channel_group_name="channelGroupName", description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- channel_group_name
The name of the channel group.
- description
The configuration for a MediaPackage V2 channel group.
- tags
The tags associated with the channel group.