Class CfnFlowOutput

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:09.703Z") @Stability(Stable) public class CfnFlowOutput extends CfnResource implements IInspectable
The AWS::MediaConnect::FlowOutput resource defines the destination address, protocol, and port that AWS Elemental MediaConnect sends the ingested video to.

Each flow can have up to 50 outputs. An output can have the same protocol or a different protocol from the source. The following protocols are supported: RIST, RTP, RTP-FEC, SRT-listener, SRT-caller, Zixi pull, Zixi push, and Fujitsu-QoS. CDI and ST 2110 JPEG XS protocols are not currently supported by AWS CloudFormation.

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.*;
 CfnFlowOutput cfnFlowOutput = CfnFlowOutput.Builder.create(this, "MyCfnFlowOutput")
         .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();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnFlowOutput

      protected CfnFlowOutput(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnFlowOutput

      protected CfnFlowOutput(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnFlowOutput

      @Stability(Stable) public CfnFlowOutput(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnFlowOutputProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrOutputArn

      @Stability(Stable) @NotNull public String getAttrOutputArn()
      The ARN of the output.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getFlowArn

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

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

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

      @Stability(Stable) public void setProtocol(@NotNull String value)
      The protocol to use for the output.
    • getCidrAllowList

      @Stability(Stable) @Nullable public List<String> getCidrAllowList()
      The range of IP addresses that are allowed to initiate output requests to this flow.
    • setCidrAllowList

      @Stability(Stable) public void setCidrAllowList(@Nullable List<String> value)
      The range of IP addresses that are allowed to initiate output requests to this flow.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the output.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the output.
    • getDestination

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

      @Stability(Stable) public void setDestination(@Nullable String value)
      The IP address where you want to send the output.
    • getEncryption

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

      @Stability(Stable) public void setEncryption(@Nullable IResolvable value)
      The encryption credentials that you want to use for the output.
    • setEncryption

      @Stability(Stable) public void setEncryption(@Nullable CfnFlowOutput.EncryptionProperty value)
      The encryption credentials that you want to use for the output.
    • getMaxLatency

      @Stability(Stable) @Nullable public Number getMaxLatency()
      The maximum latency in milliseconds.
    • setMaxLatency

      @Stability(Stable) public void setMaxLatency(@Nullable Number value)
      The maximum latency in milliseconds.
    • getMinLatency

      @Stability(Stable) @Nullable public Number getMinLatency()
      The minimum latency in milliseconds for SRT-based streams.
    • setMinLatency

      @Stability(Stable) public void setMinLatency(@Nullable Number value)
      The minimum latency in milliseconds for SRT-based streams.
    • getName

      @Stability(Stable) @Nullable public String getName()
      The name of the output.
    • setName

      @Stability(Stable) public void setName(@Nullable String value)
      The name of the output.
    • getPort

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

      @Stability(Stable) public void setPort(@Nullable Number value)
      The port to use when MediaConnect distributes content to the output.
    • getRemoteId

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

      @Stability(Stable) public void setRemoteId(@Nullable String value)
      The identifier that is assigned to the Zixi receiver.
    • getSmoothingLatency

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

      @Stability(Stable) public void setSmoothingLatency(@Nullable Number value)
      The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
    • getStreamId

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

      @Stability(Stable) public void setStreamId(@Nullable String value)
      The stream ID that you want to use for this transport.
    • getVpcInterfaceAttachment

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

      @Stability(Stable) public void setVpcInterfaceAttachment(@Nullable IResolvable value)
      The VPC interface that you want to send your output to.
    • setVpcInterfaceAttachment

      @Stability(Stable) public void setVpcInterfaceAttachment(@Nullable CfnFlowOutput.VpcInterfaceAttachmentProperty value)
      The VPC interface that you want to send your output to.