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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFlowSourcePropsstatic final classAn implementation forFlowSourceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic FlowSourceProps.Builderbuilder()getFlow()(experimental) The flow this source is connected to.(experimental) Additional Source Configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlow
(experimental) The flow this source is connected to.The flow must have Failover enabled to add an additional source.
-
getSource
(experimental) Additional Source Configuration.Set the source's name via
nameon the configuration (e.g.SourceConfiguration.rtp({ name })). When no name is set there, one is generated from construct naming. -
builder
- Returns:
- a
FlowSourceProps.BuilderofFlowSourceProps
-