Interface CfnChannelMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:22.780Z")
@Stability(Stable)
public interface CfnChannelMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnChannelPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.*;
CfnChannelMixinProps cfnChannelMixinProps = CfnChannelMixinProps.builder()
.channelGroupName("channelGroupName")
.channelName("channelName")
.description("description")
.inputSwitchConfiguration(InputSwitchConfigurationProperty.builder()
.mqcsInputSwitching(false)
.preferredInput(123)
.build())
.inputType("inputType")
.outputHeaderConfiguration(OutputHeaderConfigurationProperty.builder()
.publishMqcs(false)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelMixinPropsstatic final classAn implementation forCfnChannelMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnChannelMixinProps.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.default ObjectThe configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.default StringThe input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest.default ObjectThe settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.getTags()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:
-
getInputSwitchConfiguration
The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.Returns union: either
IResolvableorCfnChannelPropsMixin.InputSwitchConfigurationProperty- 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:
-
getOutputHeaderConfiguration
The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.Returns union: either
IResolvableorCfnChannelPropsMixin.OutputHeaderConfigurationProperty- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnChannelMixinProps.BuilderofCfnChannelMixinProps
-