Interface CfnFlowOutputProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutputProps.Jsii$Proxy
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) .mediaStreamOutputConfigurations(List.of(MediaStreamOutputConfigurationProperty.builder() .encodingName("encodingName") .mediaStreamName("mediaStreamName") // the properties below are optional .destinationConfigurations(List.of(DestinationConfigurationProperty.builder() .destinationIp("destinationIp") .destinationPort(123) .interface(InterfaceProperty.builder() .name("name") .build()) .build())) .encodingParameters(EncodingParametersProperty.builder() .compressionFactor(123) // the properties below are optional .encoderProfile("encoderProfile") .build()) .build())) .minLatency(123) .name("name") .outputStatus("outputStatus") .port(123) .remoteId("remoteId") .smoothingLatency(123) .streamId("streamId") .vpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder() .vpcInterfaceName("vpcInterfaceName") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowOutputProps
static final class
An implementation forCfnFlowOutputProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFlowOutputProps.Builder
builder()
The range of IP addresses that are allowed to initiate output requests to this flow.default String
A description of the output.default String
The IP address where you want to send the output.default Object
The encryption credentials that you want to use for the output.The Amazon Resource Name (ARN) of the flow this output is attached to.default Number
The maximum latency in milliseconds.default Object
The definition for each media stream that is associated with the output.default Number
The minimum latency in milliseconds for SRT-based streams.default String
getName()
The name of the output.default String
An indication of whether the new output should be enabled or disabled as soon as it is created.default Number
getPort()
The port to use when MediaConnect distributes content to the output.The protocol to use for the output.default String
The identifier that is assigned to the Zixi receiver.default Number
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.default String
The stream ID that you want to use for this transport.default Object
The 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.- See Also:
-
getProtocol
The protocol to use for the output.AWS Elemental MediaConnect no longer supports the Fujitsu QoS protocol. This reference is maintained for legacy purposes only.
- See Also:
-
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.
- See Also:
-
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.
- See Also:
-
getDestination
The IP address where you want to send the output.- See Also:
-
getEncryption
The encryption credentials that you want to use for the output.- See Also:
-
getMaxLatency
The maximum latency in milliseconds.This parameter applies only to RIST-based and Zixi-based streams.
- See Also:
-
getMediaStreamOutputConfigurations
The definition for each media stream that is associated with the output.- See Also:
-
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.
- See Also:
-
getName
The name of the output.This value must be unique within the current flow.
- See Also:
-
getOutputStatus
An indication of whether the new output should be enabled or disabled as soon as it is created.If you don't specify the outputStatus field in your request, MediaConnect sets it to ENABLED.
- See Also:
-
getPort
The port to use when MediaConnect distributes content to the output.- See Also:
-
getRemoteId
The identifier that is assigned to the Zixi receiver.This parameter applies only to outputs that use Zixi pull.
- See Also:
-
getSmoothingLatency
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.- See Also:
-
getStreamId
The stream ID that you want to use for this transport.This parameter applies only to Zixi and SRT caller-based streams.
- See Also:
-
getVpcInterfaceAttachment
The VPC interface that you want to send your output to.- See Also:
-
builder
- Returns:
- a
CfnFlowOutputProps.Builder
ofCfnFlowOutputProps
-