Package services.mediapackagev2
Interface CfnChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:10.438Z")
@Stability(Stable)
public interface CfnChannelProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnChannel.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import services.mediapackagev2.*;
CfnChannelProps cfnChannelProps = CfnChannelProps.builder()
.channelGroupName("channelGroupName")
.channelName("channelName")
.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 forCfnChannelPropsstatic final classAn implementation forCfnChannelProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnChannelProps.Builderbuilder()default StringThe name of the channel group associated with the channel configuration.default StringThe name of the channel.default StringThe description of the channel.getTags()The tags associated with the channel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelGroupName
The name of the channel group associated with the channel configuration.- See Also:
-
getChannelName
The name of the channel.- See Also:
-
getDescription
The description of the channel.- See Also:
-
getTags
The tags associated with the channel.- See Also:
-
builder
- Returns:
- a
CfnChannelProps.BuilderofCfnChannelProps
-