Interface CfnFlowOutputProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutputProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:59.891Z")
@Stability(Stable)
public interface CfnFlowOutputProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnFlowOutput.
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.*;
CfnFlowOutputProps cfnFlowOutputProps = CfnFlowOutputProps.builder()
.flowArn("flowArn")
.protocol("protocol")
// the properties below are optional
.cidrAllowList(List.of("cidrAllowList"))
.description("description")
.destination("destination")
.encryption(EncryptionProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
// the properties below are optional
.algorithm("algorithm")
.keyType("keyType")
.build())
.maxLatency(123)
.minLatency(123)
.name("name")
.port(123)
.remoteId("remoteId")
.smoothingLatency(123)
.streamId("streamId")
.vpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
.vpcInterfaceName("vpcInterfaceName")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowOutputPropsstatic final classAn implementation forCfnFlowOutputProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFlowOutputProps.Builderbuilder()The range of IP addresses that are allowed to initiate output requests to this flow.default StringA description of the output.default StringThe IP address where you want to send the output.default ObjectThe encryption credentials that you want to use for the output.The Amazon Resource Name (ARN) of the flow this output is attached to.default NumberThe maximum latency in milliseconds.default NumberThe minimum latency in milliseconds for SRT-based streams.default StringgetName()The name of the VPC interface.default NumbergetPort()The port to use when MediaConnect distributes content to the output.The protocol to use for the output.default StringThe identifier that is assigned to the Zixi receiver.default NumberThe smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.default StringThe stream ID that you want to use for this transport.default ObjectThe VPC interface that you want to send your output to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowArn
The Amazon Resource Name (ARN) of the flow this output is attached to. -
getProtocol
The protocol to use for the output. -
getCidrAllowList
The range of IP addresses that are allowed to initiate output requests to this flow.Format the IP addresses as a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
-
getDescription
A description of the output.This description is not visible outside of the current AWS account even if the account grants entitlements to other accounts.
-
getDestination
The IP address where you want to send the output. -
getEncryption
The encryption credentials that you want to use for the output. -
getMaxLatency
The maximum latency in milliseconds.This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
-
getMinLatency
The minimum latency in milliseconds for SRT-based streams.In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
-
getName
The name of the VPC interface. -
getPort
The port to use when MediaConnect distributes content to the output. -
getRemoteId
The identifier that is assigned to the Zixi receiver.This parameter applies only to outputs that use Zixi pull.
-
getSmoothingLatency
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams. -
getStreamId
The stream ID that you want to use for this transport.This parameter applies only to Zixi and SRT caller-based streams.
-
getVpcInterfaceAttachment
The VPC interface that you want to send your output to. -
builder
- Returns:
- a
CfnFlowOutputProps.BuilderofCfnFlowOutputProps
-