@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.32 kB
TypeScript
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<GetTransitGatewayConnectPeerResult>;
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<GetTransitGatewayConnectPeerResult>;
export interface GetTransitGatewayConnectPeerOutputArgs {
/**
* The ID of the Connect peer.
*/
transitGatewayConnectPeerId: pulumi.Input<string>;
}