Class CfnMultiplexprogram
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.medialive.CfnMultiplexprogram
- All Implemented Interfaces:
IInspectable,IEnvironmentAware,IMultiplexprogramRef,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:25.297Z")
@Stability(Stable)
public class CfnMultiplexprogram
extends CfnResource
implements IInspectable, IMultiplexprogramRef
Resource schema for AWS::MediaLive::Multiplexprogram.
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.medialive.*;
CfnMultiplexprogram cfnMultiplexprogram = CfnMultiplexprogram.Builder.create(this, "MyCfnMultiplexprogram")
.multiplexId("multiplexId")
.multiplexProgramSettings(MultiplexProgramSettingsProperty.builder()
.programNumber(123)
// the properties below are optional
.preferredChannelPipeline("preferredChannelPipeline")
.serviceDescriptor(MultiplexProgramServiceDescriptorProperty.builder()
.providerName("providerName")
.serviceName("serviceName")
.build())
.videoSettings(MultiplexVideoSettingsProperty.builder()
.constantBitrate(123)
.statmuxSettings(MultiplexStatmuxVideoSettingsProperty.builder()
.maximumBitrate(123)
.minimumBitrate(123)
.priority(123)
.build())
.build())
.build())
.packetIdentifiersMap(MultiplexProgramPacketIdentifiersMapProperty.builder()
.audioPids(List.of(123))
.dvbSubPids(List.of(123))
.dvbTeletextPid(123)
.etvPlatformPid(123)
.etvSignalPid(123)
.klvDataPids(List.of(123))
.pcrPid(123)
.pmtPid(123)
.privateMetadataPid(123)
.scte27Pids(List.of(123))
.scte35Pid(123)
.timedMetadataPid(123)
.videoPid(123)
.build())
.pipelineDetails(List.of(MultiplexProgramPipelineDetailProperty.builder()
.activeChannelPipeline("activeChannelPipeline")
.pipelineId("pipelineId")
.build()))
.preferredChannelPipeline("preferredChannelPipeline")
.programName("programName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnMultiplexprogram.static interfacePacket identifiers map for a given Multiplex program.static interfaceThe current source for one of the pipelines in the multiplex.static interfaceTransport stream service descriptor configuration for the Multiplex program.static interfaceMultiplex Program settings configuration.static interfaceStatmux rate control settings.static interfaceThe video configuration for each program in a multiplex.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.medialive.IMultiplexprogramRef
IMultiplexprogramRef.Jsii$Default, IMultiplexprogramRef.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnMultiplexprogram(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnMultiplexprogram(software.amazon.jsii.JsiiObjectRef objRef) CfnMultiplexprogram(software.constructs.Construct scope, String id) Create a newAWS::MediaLive::Multiplexprogram.CfnMultiplexprogram(software.constructs.Construct scope, String id, CfnMultiplexprogramProps props) Create a newAWS::MediaLive::Multiplexprogram. -
Method Summary
Modifier and TypeMethodDescriptionThe unique ID of the channel.The unique id of the multiplex.A reference to a Multiplexprogram resource.Multiplex Program settings configuration.Packet identifiers map for a given Multiplex program.Contains information about the current sources for the specified program in the specified multiplex.Indicates which pipeline is preferred by the multiplex for program ingest.The name of the multiplex program.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetMultiplexId(String value) The unique id of the multiplex.voidMultiplex Program settings configuration.voidMultiplex Program settings configuration.voidPacket identifiers map for a given Multiplex program.voidPacket identifiers map for a given Multiplex program.voidsetPipelineDetails(List<Object> value) Contains information about the current sources for the specified program in the specified multiplex.voidsetPipelineDetails(IResolvable value) Contains information about the current sources for the specified program in the specified multiplex.voidIndicates which pipeline is preferred by the multiplex for program ingest.voidsetProgramName(String value) The name of the multiplex program.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnMultiplexprogram
protected CfnMultiplexprogram(software.amazon.jsii.JsiiObjectRef objRef) -
CfnMultiplexprogram
protected CfnMultiplexprogram(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnMultiplexprogram
@Stability(Stable) public CfnMultiplexprogram(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnMultiplexprogramProps props) Create a newAWS::MediaLive::Multiplexprogram.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties.
-
CfnMultiplexprogram
@Stability(Stable) public CfnMultiplexprogram(@NotNull software.constructs.Construct scope, @NotNull String id) Create a newAWS::MediaLive::Multiplexprogram.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrChannelId
The unique ID of the channel. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getMultiplexprogramRef
A reference to a Multiplexprogram resource.- Specified by:
getMultiplexprogramRefin interfaceIMultiplexprogramRef
-
getMultiplexId
The unique id of the multiplex. -
setMultiplexId
The unique id of the multiplex. -
getMultiplexProgramSettings
Multiplex Program settings configuration.Returns union: either
IResolvableorCfnMultiplexprogram.MultiplexProgramSettingsProperty -
setMultiplexProgramSettings
Multiplex Program settings configuration. -
setMultiplexProgramSettings
@Stability(Stable) public void setMultiplexProgramSettings(@Nullable CfnMultiplexprogram.MultiplexProgramSettingsProperty value) Multiplex Program settings configuration. -
getPacketIdentifiersMap
Packet identifiers map for a given Multiplex program.Returns union: either
IResolvableorCfnMultiplexprogram.MultiplexProgramPacketIdentifiersMapProperty -
setPacketIdentifiersMap
Packet identifiers map for a given Multiplex program. -
setPacketIdentifiersMap
@Stability(Stable) public void setPacketIdentifiersMap(@Nullable CfnMultiplexprogram.MultiplexProgramPacketIdentifiersMapProperty value) Packet identifiers map for a given Multiplex program. -
getPipelineDetails
Contains information about the current sources for the specified program in the specified multiplex.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnMultiplexprogram.MultiplexProgramPipelineDetailProperty> -
setPipelineDetails
Contains information about the current sources for the specified program in the specified multiplex. -
setPipelineDetails
Contains information about the current sources for the specified program in the specified multiplex. -
getPreferredChannelPipeline
Indicates which pipeline is preferred by the multiplex for program ingest. -
setPreferredChannelPipeline
Indicates which pipeline is preferred by the multiplex for program ingest. -
getProgramName
The name of the multiplex program. -
setProgramName
The name of the multiplex program.
-