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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFlowSourceAttributesstatic final classAn implementation forFlowSourceAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic FlowSourceAttributes.Builderbuilder()(experimental) The Amazon Resource Name (ARN) of the flow source.default String(experimental) The name of the flow source.default String(experimental) The IP address that the flow will be listening on for incoming content.default String(experimental) The port that the flow will be listening on for incoming content.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowSourceArn
(experimental) The Amazon Resource Name (ARN) of the flow source. -
getFlowSourceName
(experimental) The name of the flow source.Default: - accessing `flowSourceName` on the imported source throws; only provide when available.
-
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
(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
- Returns:
- a
FlowSourceAttributes.BuilderofFlowSourceAttributes
-