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();
 
  • Method Details

    • getFlowArn

      @Stability(Stable) @NotNull String getFlowArn()
      The Amazon Resource Name (ARN) of the flow this output is attached to.
    • getProtocol

      @Stability(Stable) @NotNull String getProtocol()
      The protocol to use for the output.
    • getCidrAllowList

      @Stability(Stable) @Nullable default List<String> 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

      @Stability(Stable) @Nullable default String 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

      @Stability(Stable) @Nullable default String getDestination()
      The IP address where you want to send the output.
    • getEncryption

      @Stability(Stable) @Nullable default Object getEncryption()
      The encryption credentials that you want to use for the output.
    • getMaxLatency

      @Stability(Stable) @Nullable default Number getMaxLatency()
      The maximum latency in milliseconds.

      This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.

    • getMinLatency

      @Stability(Stable) @Nullable default Number 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

      @Stability(Stable) @Nullable default String getName()
      The name of the VPC interface.
    • getPort

      @Stability(Stable) @Nullable default Number getPort()
      The port to use when MediaConnect distributes content to the output.
    • getRemoteId

      @Stability(Stable) @Nullable default String getRemoteId()
      The identifier that is assigned to the Zixi receiver.

      This parameter applies only to outputs that use Zixi pull.

    • getSmoothingLatency

      @Stability(Stable) @Nullable default Number getSmoothingLatency()
      The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
    • getStreamId

      @Stability(Stable) @Nullable default String getStreamId()
      The stream ID that you want to use for this transport.

      This parameter applies only to Zixi and SRT caller-based streams.

    • getVpcInterfaceAttachment

      @Stability(Stable) @Nullable default Object getVpcInterfaceAttachment()
      The VPC interface that you want to send your output to.
    • builder

      @Stability(Stable) static CfnFlowOutputProps.Builder builder()
      Returns:
      a CfnFlowOutputProps.Builder of CfnFlowOutputProps