Interface FlowSourceAttributes

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.167Z") @Stability(Experimental) public interface FlowSourceAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for importing an existing 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.*;
 FlowSourceAttributes flowSourceAttributes = FlowSourceAttributes.builder()
         .flowSourceArn("flowSourceArn")
         // the properties below are optional
         .flowSourceName("flowSourceName")
         .ingestIp("ingestIp")
         .sourceIngestPort("sourceIngestPort")
         .build();
 
  • Method Details

    • getFlowSourceArn

      @Stability(Experimental) @NotNull String getFlowSourceArn()
      (experimental) The Amazon Resource Name (ARN) of the flow source.
    • getFlowSourceName

      @Stability(Experimental) @Nullable default String getFlowSourceName()
      (experimental) The name of the flow source.

      Default: - accessing `flowSourceName` on the imported source throws; only provide when available.

    • getIngestIp

      @Stability(Experimental) @Nullable default String getIngestIp()
      (experimental) The IP address that the flow will be listening on for incoming content.

      Default: - accessing `ingestIp` on the imported source throws; only provide when available.

    • getSourceIngestPort

      @Stability(Experimental) @Nullable default String getSourceIngestPort()
      (experimental) The port that the flow will be listening on for incoming content.

      Default: - accessing `sourceIngestPort` on the imported source throws; only provide when available.

    • builder

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