import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::RTBFabric::OutboundExternalLink Resource Type
 */
export declare function getOutboundExternalLink(args: GetOutboundExternalLinkArgs, opts?: pulumi.InvokeOptions): Promise<GetOutboundExternalLinkResult>;
export interface GetOutboundExternalLinkArgs {
    arn: string;
}
export interface GetOutboundExternalLinkResult {
    readonly arn?: string;
    readonly createdTimestamp?: string;
    readonly gatewayId?: string;
    readonly linkAttributes?: outputs.rtbfabric.OutboundExternalLinkLinkAttributes;
    readonly linkId?: string;
    readonly linkLogSettings?: outputs.rtbfabric.OutboundExternalLinkLinkLogSettings;
    readonly linkStatus?: enums.rtbfabric.OutboundExternalLinkLinkStatus;
    readonly publicEndpoint?: string;
    readonly tags?: outputs.Tag[];
    readonly updatedTimestamp?: string;
}
/**
 * Resource Type definition for AWS::RTBFabric::OutboundExternalLink Resource Type
 */
export declare function getOutboundExternalLinkOutput(args: GetOutboundExternalLinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOutboundExternalLinkResult>;
export interface GetOutboundExternalLinkOutputArgs {
    arn: pulumi.Input<string>;
}
