Class Scte35SegmentationScope

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.medialive.alpha.Scte35SegmentationScope
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.326Z") @Stability(Experimental) public class Scte35SegmentationScope extends software.amazon.jsii.JsiiObject
(experimental) Controls which output groups receive SCTE-35 segmentation cues.

Example:

 import software.amazon.awscdk.services.ssm.StringParameter;
 Stack stack;
 IInput input;
 IBucket bucket;
 EncodeConfiguration video;
 StringParameter poisPassword;
 Channel.Builder.create(stack, "Channel")
         .inputs(List.of(InputAttachment.builder().input(input).build()))
         .availSettings(AvailSettings.esam(EsamSettings.builder()
                 .pois(PoisEndpoint.builder()
                         .url("https://pois.example.com/esam")
                         .username("pois-user")
                         .password(poisPassword)
                         .build())
                 .acquisitionPointId("acquisition-point-1")
                 .adAvailOffset(Duration.millis(200))
                 .build()))
         .scte35SegmentationScope(Scte35SegmentationScope.SCTE35_ENABLED_OUTPUT_GROUPS)
         .outputGroups(List.of(OutputGroupConfiguration.hls(HlsOutputGroupProps.builder()
                 .name("hls")
                 .destinations(List.of(OutputDestination.toBucket(bucket, "live/stream")))
                 .outputs(List.of(HlsOutputDefinition.builder().encodes(List.of(video)).outputName("hls_out").build()))
                 .build())))
         .build();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (experimental) Insert segment breaks in all output groups.
    (experimental) Insert segment breaks only in output groups with SCTE-35 passthrough enabled (recommended).
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    Scte35SegmentationScope(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    Scte35SegmentationScope(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The underlying string value passed to CloudFormation.
    of(String value)
    (experimental) A value not yet modelled by AWS CDK.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • ALL_OUTPUT_GROUPS

      @Stability(Experimental) public static final Scte35SegmentationScope ALL_OUTPUT_GROUPS
      (experimental) Insert segment breaks in all output groups.
    • SCTE35_ENABLED_OUTPUT_GROUPS

      @Stability(Experimental) public static final Scte35SegmentationScope SCTE35_ENABLED_OUTPUT_GROUPS
      (experimental) Insert segment breaks only in output groups with SCTE-35 passthrough enabled (recommended).
  • Constructor Details

    • Scte35SegmentationScope

      protected Scte35SegmentationScope(software.amazon.jsii.JsiiObjectRef objRef)
    • Scte35SegmentationScope

      protected Scte35SegmentationScope(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • of

      @Stability(Experimental) @NotNull public static Scte35SegmentationScope of(@NotNull String value)
      (experimental) A value not yet modelled by AWS CDK.

      Parameters:
      value - This parameter is required.
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The underlying string value passed to CloudFormation.