Class CfnMultiplexprogram

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-27T16:51:00.455Z") @Stability(Stable) public class CfnMultiplexprogram extends CfnResource implements IInspectable
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:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String 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)
      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)
      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

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      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:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrChannelId

      @Stability(Stable) @NotNull public String getAttrChannelId()
      The unique ID of the channel.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getMultiplexId

      @Stability(Stable) @Nullable public String getMultiplexId()
      The unique id of the multiplex.
    • setMultiplexId

      @Stability(Stable) public void setMultiplexId(@Nullable String value)
      The unique id of the multiplex.
    • getMultiplexProgramSettings

      @Stability(Stable) @Nullable public Object getMultiplexProgramSettings()
      Multiplex Program settings configuration.
    • setMultiplexProgramSettings

      @Stability(Stable) public void setMultiplexProgramSettings(@Nullable IResolvable value)
      Multiplex Program settings configuration.
    • setMultiplexProgramSettings

      @Stability(Stable) public void setMultiplexProgramSettings(@Nullable CfnMultiplexprogram.MultiplexProgramSettingsProperty value)
      Multiplex Program settings configuration.
    • getPacketIdentifiersMap

      @Stability(Stable) @Nullable public Object getPacketIdentifiersMap()
      Packet identifiers map for a given Multiplex program.
    • setPacketIdentifiersMap

      @Stability(Stable) public void setPacketIdentifiersMap(@Nullable IResolvable value)
      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

      @Stability(Stable) @Nullable public Object getPipelineDetails()
      Contains information about the current sources for the specified program in the specified multiplex.
    • setPipelineDetails

      @Stability(Stable) public void setPipelineDetails(@Nullable IResolvable value)
      Contains information about the current sources for the specified program in the specified multiplex.
    • setPipelineDetails

      @Stability(Stable) public void setPipelineDetails(@Nullable List<Object> value)
      Contains information about the current sources for the specified program in the specified multiplex.
    • getPreferredChannelPipeline

      @Stability(Stable) @Nullable public String getPreferredChannelPipeline()
      Indicates which pipeline is preferred by the multiplex for program ingest.
    • setPreferredChannelPipeline

      @Stability(Stable) public void setPreferredChannelPipeline(@Nullable String value)
      Indicates which pipeline is preferred by the multiplex for program ingest.
    • getProgramName

      @Stability(Stable) @Nullable public String getProgramName()
      The name of the multiplex program.
    • setProgramName

      @Stability(Stable) public void setProgramName(@Nullable String value)
      The name of the multiplex program.