import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::DirectConnect::DirectConnectGateway */ export declare function getDirectConnectGateway(args: GetDirectConnectGatewayArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDirectConnectGatewayArgs { /** * The ARN of the Direct Connect gateway. */ directConnectGatewayArn: string; } export interface GetDirectConnectGatewayResult { /** * The ARN of the Direct Connect gateway. */ readonly directConnectGatewayArn?: string; /** * The ID of the Direct Connect gateway. */ readonly directConnectGatewayId?: string; /** * The name of the Direct Connect gateway. */ readonly directConnectGatewayName?: string; /** * The tags associated with the Direct Connect gateway. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::DirectConnect::DirectConnectGateway */ export declare function getDirectConnectGatewayOutput(args: GetDirectConnectGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDirectConnectGatewayOutputArgs { /** * The ARN of the Direct Connect gateway. */ directConnectGatewayArn: pulumi.Input; }