@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)
30 lines (29 loc) • 1.33 kB
TypeScript
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>;
}