Interface FlowSourceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FlowSourceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.167Z") @Stability(Experimental) public interface FlowSourceProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for the flow source.

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.mediaconnect.alpha.*;
 Flow flow;
 SourceConfiguration sourceConfiguration;
 FlowSourceProps flowSourceProps = FlowSourceProps.builder()
         .flow(flow)
         .source(sourceConfiguration)
         .build();
 
  • Method Details

    • getFlow

      @Stability(Experimental) @NotNull IFlow getFlow()
      (experimental) The flow this source is connected to.

      The flow must have Failover enabled to add an additional source.

    • getSource

      @Stability(Experimental) @NotNull SourceConfiguration getSource()
      (experimental) Additional Source Configuration.

      Set the source's name via name on the configuration (e.g. SourceConfiguration.rtp({ name })). When no name is set there, one is generated from construct naming.

    • builder

      @Stability(Experimental) static FlowSourceProps.Builder builder()
      Returns:
      a FlowSourceProps.Builder of FlowSourceProps