Interface CfnChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:22.250Z")
@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 software.amazon.awscdk.services.mediapackagev2.*; CfnChannelProps cfnChannelProps = CfnChannelProps.builder() .channelGroupName("channelGroupName") .channelName("channelName") // the properties below are optional .description("description") .inputType("inputType") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannelProps
static final class
An implementation forCfnChannelProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnChannelProps.Builder
builder()
The name of the channel group associated with the channel configuration.The name of the channel.default String
The description of the channel.default String
The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest.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:
-
getInputType
The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest.If unprovided, it will default to HLS to preserve current behavior.
The allowed values are:
HLS
- The HLS streaming specification (which defines M3U8 manifests and TS segments).CMAF
- The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
- See Also:
-
getTags
The tags associated with the channel.- See Also:
-
builder
- Returns:
- a
CfnChannelProps.Builder
ofCfnChannelProps
-