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)

41 lines (40 loc) 1.38 kB
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<GetDirectConnectGatewayResult>; 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<GetDirectConnectGatewayResult>; export interface GetDirectConnectGatewayOutputArgs { /** * The ARN of the Direct Connect gateway. */ directConnectGatewayArn: pulumi.Input<string>; }