Interface SdiSourceProps

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.330Z") @Stability(Experimental) public interface SdiSourceProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for creating an SDI Source.

Example:

 Stack stack;
 SdiSource sdi = SdiSource.Builder.create(stack, "Sdi")
         .sdiSourceName("camera-1")
         .type(SdiType.SINGLE)
         .build();
 
  • Method Details

    • getType

      @Stability(Experimental) @NotNull SdiType getType()
      (experimental) Type of SDI input.
    • getMode

      @Stability(Experimental) @Nullable default SdiMode getMode()
      (experimental) SDI Mode, only applicable for QUAD type.

      Default: - no mode

    • getSdiSourceName

      @Stability(Experimental) @Nullable default String getSdiSourceName()
      (experimental) The name of the SDI source.

      Default: - auto-generated name

    • getTags

      @Stability(Experimental) @Nullable default Map<String,String> getTags()
      (experimental) Tags to add to the SDI source.

      Default: - no tagging

    • builder

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