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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channelgroup.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channelgroup.html#cfn-mediapackagev2-channelgroup-channelgroupname

description

The configuration for a MediaPackage V2 channel group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channelgroup.html#cfn-mediapackagev2-channelgroup-description

tags

The tags associated with the channel group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channelgroup.html#cfn-mediapackagev2-channelgroup-tags