@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
41 lines (40 loc) • 1.23 kB
TypeScript
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<GetBridgeSourceResult>;
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<GetBridgeSourceResult>;
export interface GetBridgeSourceOutputArgs {
/**
* The Amazon Resource Number (ARN) of the bridge.
*/
bridgeArn: pulumi.Input<string>;
/**
* The name of the source.
*/
name: pulumi.Input<string>;
}