Module Values.OutputSource

The settings for an output.

Sourcetype nonrec t = {
  1. dataTransferSubscriberFeePercent : Integer.t option;
    (*

    Percentage from 0-100 of the data transfer cost to be billed to the subscriber.

    *)
  2. description : String_.t option;
    (*

    A description of the output.

    *)
  3. destination : String_.t option;
    (*

    The address where you want to send the output.

    *)
  4. encryption : Encryption.t option;
    (*

    The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).

    *)
  5. entitlementArn : String_.t option;
    (*

    The ARN of the entitlement on the originator''s flow. This value is relevant only on entitled flows.

    *)
  6. listenerAddress : String_.t option;
    (*

    The IP address that the receiver requires in order to establish a connection with the flow. For public networking, the ListenerAddress is represented by the elastic IP address of the flow. For private networking, the ListenerAddress is represented by the elastic network interface IP address of the VPC. This field applies only to outputs that use the Zixi pull or SRT listener protocol.

    *)
  7. mediaLiveInputArn : String_.t option;
    (*

    The input ARN of the MediaLive channel. This parameter is relevant only for outputs that were added by creating a MediaLive input.

    *)
  8. mediaStreamOutputConfigurations : MediaStreamOutputConfiguration.t list option;
    (*

    The configuration for each media stream that is associated with the output.

    *)
  9. name : String_.t option;
    (*

    The name of the output. This value must be unique within the current flow.

    *)
  10. outputArn : String_.t option;
    (*

    The ARN of the output.

    *)
  11. port : Integer.t option;
    (*

    The port to use when content is distributed to this output.

    *)
  12. transport : Transport.t option;
    (*

    Attributes related to the transport stream that are used in the output.

    *)
  13. vpcInterfaceAttachment : VpcInterfaceAttachment.t option;
    (*

    The name of the VPC interface attachment to use for this output.

    *)
  14. bridgeArn : String_.t option;
    (*

    The ARN of the bridge added to this output.

    *)
  15. bridgePorts : Integer.t list option;
    (*

    The bridge output ports currently in use.

    *)
  16. outputStatus : OutputStatus.t option;
    (*

    An indication of whether the output is transmitting data or not.

    *)
  17. peerIpAddress : String_.t option;
    (*

    The IP address of the device that is currently receiving content from this output. For outputs that use protocols where you specify the destination (such as SRT Caller or Zixi Push), this value matches the configured destination address. For outputs that use listener protocols (such as SRT Listener), this value shows the address of the connected receiver. Peer IP addresses aren't available for entitlements, managed MediaLive outputs, NDI® sources and outputs, and CDI/ST2110 outputs. The peer IP address might not be visible for flows that haven't been started yet, or flows that were started before May 2025. In these cases, restart your flow to see the peer IP address.

    *)
  18. routerIntegrationState : State.t option;
    (*

    Indicates if router integration is enabled or disabled on the flow output.

    *)
  19. routerIntegrationTransitEncryption : FlowTransitEncryption.t option;
    (*

    The encryption configuration for the output when router integration is enabled.

    *)
  20. connectedRouterInputArn : String_.t option;
    (*

    The ARN of the router input that's connected to this flow output.

    *)
}
Sourceval make : ?dataTransferSubscriberFeePercent:??? -> ?description:??? -> ?destination:??? -> ?encryption:??? -> ?entitlementArn:??? -> ?listenerAddress:??? -> ?mediaLiveInputArn:??? -> ?mediaStreamOutputConfigurations:??? -> ?name:??? -> ?outputArn:??? -> ?port:??? -> ?transport:??? -> ?vpcInterfaceAttachment:??? -> ?bridgeArn:??? -> ?bridgePorts:??? -> ?outputStatus:??? -> ?peerIpAddress:??? -> ?routerIntegrationState:??? -> ?routerIntegrationTransitEncryption:??? -> ?connectedRouterInputArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Integer of Integer.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `String of String_.t | `Structure of (string * [> `Double of Double.t | `Enum of string ]) list ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of SecretArn.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t