import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::EC2::TransitGatewayConnectPeer */ export declare function getTransitGatewayConnectPeer(args: GetTransitGatewayConnectPeerArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTransitGatewayConnectPeerArgs { /** * The ID of the Connect peer. */ transitGatewayConnectPeerId: string; } export interface GetTransitGatewayConnectPeerResult { /** * The creation time. */ readonly creationTime?: string; /** * The state of the Connect peer. */ readonly state?: string; /** * The tags for the Connect Peer. */ readonly tags?: outputs.Tag[]; /** * The ID of the Connect peer. */ readonly transitGatewayConnectPeerId?: string; } /** * Resource Type definition for AWS::EC2::TransitGatewayConnectPeer */ export declare function getTransitGatewayConnectPeerOutput(args: GetTransitGatewayConnectPeerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTransitGatewayConnectPeerOutputArgs { /** * The ID of the Connect peer. */ transitGatewayConnectPeerId: pulumi.Input; }