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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAddFlowOutputOptionsstatic final classAn implementation forAddFlowOutputOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic AddFlowOutputOptions.Builderbuilder()default String(experimental) A description of the output.default String(experimental) The name of the flow output.(experimental) The output configuration.default State(experimental) Whether the output is enabled.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutput
(experimental) The output configuration. -
getDescription
(experimental) A description of the output.Default: - no description
-
getFlowOutputName
(experimental) The name of the flow output.Default: - auto-generated
-
getOutputStatus
(experimental) Whether the output is enabled.Default: State.ENABLED
-
builder
- Returns:
- a
AddFlowOutputOptions.BuilderofAddFlowOutputOptions
-