Class FlowOutput
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.mediaconnect.alpha.FlowOutput
- All Implemented Interfaces:
IEnvironmentAware,IFlowOutputRef,IResource,IFlowOutput,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-31T10:49:55.147Z")
@Stability(Experimental)
public class FlowOutput
extends Resource
implements IFlowOutput
(experimental) Resource defines the destination address, protocol, and port that AWS Elemental MediaConnect sends the ingested video to.
Example:
Stack stack;
Flow flow;
IRole role;
ISecret secret;
// SRT Caller output with encryption
FlowOutput output = FlowOutput.Builder.create(stack, "EncryptedOutput")
.flow(flow)
.description("Encrypted SRT output")
.output(OutputConfiguration.srtCaller(SrtCallerOutputConfig.builder()
.destination("203.0.113.100")
.port(7000)
.encryption(SrtPasswordEncryption.builder().role(role).secret(secret).build())
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forFlowOutput.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.mediaconnect.alpha.IFlowOutput
IFlowOutput.Jsii$Default, IFlowOutput.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String(experimental) Uniquely identifies this class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFlowOutput(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedFlowOutput(software.amazon.jsii.JsiiObjectRef objRef) FlowOutput(software.constructs.Construct scope, String id, FlowOutputProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IFlowOutputfromFlowOutputArn(software.constructs.Construct scope, String id, String flowOutputArn) (experimental) Creates a Flow Ouput construct that represents an external (imported) Flow Output.(experimental) The Amazon Resource Name (ARN) of the flow output.(experimental) A reference to a FlowOutput resource.Methods inherited from class software.amazon.awscdk.Resource
applyCrossStackReferenceStrength, applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResource, withMethods inherited from class software.constructs.Construct
getNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
PROPERTY_INJECTION_ID
(experimental) Uniquely identifies this class.
-
-
Constructor Details
-
FlowOutput
protected FlowOutput(software.amazon.jsii.JsiiObjectRef objRef) -
FlowOutput
protected FlowOutput(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
FlowOutput
@Stability(Experimental) public FlowOutput(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull FlowOutputProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-
-
Method Details
-
fromFlowOutputArn
@Stability(Experimental) @NotNull public static IFlowOutput fromFlowOutputArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String flowOutputArn) (experimental) Creates a Flow Ouput construct that represents an external (imported) Flow Output.- Parameters:
scope- This parameter is required.id- This parameter is required.flowOutputArn- This parameter is required.
-
getFlowOutputArn
(experimental) The Amazon Resource Name (ARN) of the flow output.- Specified by:
getFlowOutputArnin interfaceIFlowOutput
-
getFlowOutputRef
(experimental) A reference to a FlowOutput resource.- Specified by:
getFlowOutputRefin interfaceIFlowOutputRef
-