RtpFecOutputConfig
- class aws_cdk.aws_mediaconnect_alpha.RtpFecOutputConfig(*, destination, port, smoothing_latency=None, vpc_interface_attachment_name=None)
Bases:
RtpOutputConfig(experimental) Configuration options for RTP-FEC outputs.
- Parameters:
destination (
str) – (experimental) The IP address where you want to send the output.port (
Union[int,float]) – (experimental) The port to use when content is distributed to this output.smoothing_latency (
Optional[Duration]) – (experimental) The smoothing latency for RIST, RTP, and RTP-FEC streams. Default: - no smoothing latencyvpc_interface_attachment_name (
Optional[str]) – (experimental) The name of the VPC interface attachment to use for this output. Default: - no VPC interface attachment
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_mediaconnect_alpha as mediaconnect_alpha import aws_cdk as cdk rtp_fec_output_config = mediaconnect_alpha.RtpFecOutputConfig( destination="destination", port=123, # the properties below are optional smoothing_latency=cdk.Duration.minutes(30), vpc_interface_attachment_name="vpcInterfaceAttachmentName" )
Attributes
- destination
(experimental) The IP address where you want to send the output.
- Stability:
experimental
- port
(experimental) The port to use when content is distributed to this output.
- Stability:
experimental
- smoothing_latency
(experimental) The smoothing latency for RIST, RTP, and RTP-FEC streams.
- Default:
no smoothing latency
- Stability:
experimental
- vpc_interface_attachment_name
(experimental) The name of the VPC interface attachment to use for this output.
- Default:
no VPC interface attachment
- Stability:
experimental