Interface CfnChannelGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:11.192Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannelGroupProps
static final class
An implementation forCfnChannelGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnChannelGroupProps.Builder
builder()
The name of the channel group.default String
The 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.Builder
ofCfnChannelGroupProps
-