Interface AddFlowOutputOptions

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-08-13T16:20:30.981Z") @Stability(Experimental) public interface AddFlowOutputOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for adding an output to a flow.

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.*;
 OutputConfiguration outputConfiguration;
 AddFlowOutputOptions addFlowOutputOptions = AddFlowOutputOptions.builder()
         .output(outputConfiguration)
         // the properties below are optional
         .description("description")
         .flowOutputName("flowOutputName")
         .outputStatus(State.ENABLED)
         .build();
 
  • Method Details

    • getOutput

      @Stability(Experimental) @NotNull OutputConfiguration getOutput()
      (experimental) The output configuration.
    • getDescription

      @Stability(Experimental) @Nullable default String getDescription()
      (experimental) A description of the output.

      Default: - no description

    • getFlowOutputName

      @Stability(Experimental) @Nullable default String getFlowOutputName()
      (experimental) The name of the flow output.

      Default: - auto-generated

    • getOutputStatus

      @Stability(Experimental) @Nullable default State getOutputStatus()
      (experimental) Whether the output is enabled.

      Default: State.ENABLED

    • builder

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