Interface CfnChannelGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:43.710Z")
@Stability(Stable)
public interface CfnChannelGroupProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mediapackagev2.*;
CfnChannelGroupProps cfnChannelGroupProps = CfnChannelGroupProps.builder()
.channelGroupName("channelGroupName")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelGroupPropsstatic final classAn implementation forCfnChannelGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnChannelGroupProps.Builderbuilder()The name of the channel group.default StringThe configuration for a MediaPackage V2 channel group.getTags()The tags associated with the channel group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelGroupName
The name of the channel group.- See Also:
-
getDescription
The configuration for a MediaPackage V2 channel group.- See Also:
-
getTags
The tags associated with the channel group.- See Also:
-
builder
- Returns:
- a
CfnChannelGroupProps.BuilderofCfnChannelGroupProps
-