CfnChannelGroupProps
- class aws_cdk.aws_mediapackagev2.CfnChannelGroupProps(*, channel_group_name, description=None, tags=None)
Bases:
object
Properties for defining a
CfnChannelGroup
.- Parameters:
channel_group_name (
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 import aws_mediapackagev2 as mediapackagev2 cfn_channel_group_props = mediapackagev2.CfnChannelGroupProps( channel_group_name="channelGroupName", # the properties below are optional 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.