import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::MediaConnect::BridgeSource */ export declare function getBridgeSource(args: GetBridgeSourceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetBridgeSourceArgs { /** * The Amazon Resource Number (ARN) of the bridge. */ bridgeArn: string; /** * The name of the source. */ name: string; } export interface GetBridgeSourceResult { /** * The source of the flow. */ readonly flowSource?: outputs.mediaconnect.BridgeSourceBridgeFlowSource; /** * The source of the network. */ readonly networkSource?: outputs.mediaconnect.BridgeSourceBridgeNetworkSource; } /** * Resource schema for AWS::MediaConnect::BridgeSource */ export declare function getBridgeSourceOutput(args: GetBridgeSourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetBridgeSourceOutputArgs { /** * The Amazon Resource Number (ARN) of the bridge. */ bridgeArn: pulumi.Input; /** * The name of the source. */ name: pulumi.Input; }