import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::MediaConnect::FlowSource */ export declare function getFlowSource(args: GetFlowSourceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetFlowSourceArgs { /** * The ARN of the source. */ sourceArn: string; } export interface GetFlowSourceResult { /** * The type of encryption that is used on the content ingested from this source. */ readonly decryption?: outputs.mediaconnect.FlowSourceEncryption; /** * A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account. */ readonly description?: string; /** * The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator's flow. */ readonly entitlementArn?: string; /** * The source configuration for cloud flows receiving a stream from a bridge. */ readonly gatewayBridgeSource?: outputs.mediaconnect.FlowSourceGatewayBridgeSource; /** * The IP address that the flow will be listening on for incoming content. */ readonly ingestIp?: string; /** * The port that the flow will be listening on for incoming content. */ readonly ingestPort?: number; /** * The smoothing max bitrate for RIST, RTP, and RTP-FEC streams. */ readonly maxBitrate?: number; /** * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams. */ readonly maxLatency?: number; /** * The minimum latency in milliseconds. */ readonly minLatency?: number; /** * The port that the flow uses to send outbound requests to initiate connection with the sender for fujitsu-qos protocol. */ readonly senderControlPort?: number; /** * The IP address that the flow communicates with to initiate connection with the sender for fujitsu-qos protocol. */ readonly senderIpAddress?: string; /** * The ARN of the source. */ readonly sourceArn?: string; /** * The port that the flow will be listening on for incoming content.(ReadOnly) */ readonly sourceIngestPort?: string; /** * Source IP or domain name for SRT-caller protocol. */ readonly sourceListenerAddress?: string; /** * Source port for SRT-caller protocol. */ readonly sourceListenerPort?: number; /** * The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */ readonly streamId?: string; /** * Key-value pairs that can be used to tag and organize this flow source. */ readonly tags?: outputs.Tag[]; /** * The name of the VPC Interface this Source is configured with. */ readonly vpcInterfaceName?: string; /** * The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. */ readonly whitelistCidr?: string; } /** * Resource Type definition for AWS::MediaConnect::FlowSource */ export declare function getFlowSourceOutput(args: GetFlowSourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetFlowSourceOutputArgs { /** * The ARN of the source. */ sourceArn: pulumi.Input; }