UNPKG

@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)

49 lines (48 loc) 1.54 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::RTBFabric::Link Resource Type */ export declare function getLink(args: GetLinkArgs, opts?: pulumi.InvokeOptions): Promise<GetLinkResult>; export interface GetLinkArgs { arn: string; } export interface GetLinkResult { readonly arn?: string; readonly createdTimestamp?: string; /** * The unique identifier of the gateway. */ readonly gatewayId?: string; /** * Attributes of the link. */ readonly linkAttributes?: outputs.rtbfabric.LinkAttributes; readonly linkDirection?: enums.rtbfabric.LinkDirection; /** * The unique identifier of the link. */ readonly linkId?: string; /** * Settings for the application logs. */ readonly linkLogSettings?: outputs.rtbfabric.LinkLogSettings; readonly linkStatus?: enums.rtbfabric.LinkStatus; /** * The unique identifier of the peer gateway. */ readonly peerGatewayId?: string; /** * A map of the key-value pairs of the tag or tags to assign to the resource. */ readonly tags?: outputs.Tag[]; readonly updatedTimestamp?: string; } /** * Resource Type definition for AWS::RTBFabric::Link Resource Type */ export declare function getLinkOutput(args: GetLinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLinkResult>; export interface GetLinkOutputArgs { arn: pulumi.Input<string>; }