@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)
74 lines (73 loc) • 2.59 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Resource Type definition for AWS::EC2::InstanceConnectEndpoint
*/
export declare function getInstanceConnectEndpoint(args: GetInstanceConnectEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetInstanceConnectEndpointResult>;
export interface GetInstanceConnectEndpointArgs {
/**
* The ID of the EC2 Instance Connect Endpoint.
*/
id: string;
}
export interface GetInstanceConnectEndpointResult {
/**
* The Availability Zone of the EC2 Instance Connect Endpoint
*/
readonly availabilityZone?: string;
/**
* The ID of the Availability Zone of the EC2 Instance Connect Endpoint
*/
readonly availabilityZoneId?: string;
/**
* The date and time that the EC2 Instance Connect Endpoint was created
*/
readonly createdAt?: string;
/**
* The ID of the EC2 Instance Connect Endpoint.
*/
readonly id?: string;
/**
* The Amazon Resource Name (ARN) of the EC2 Instance Connect Endpoint
*/
readonly instanceConnectEndpointArn?: string;
/**
* The ID of the elastic network interface that Amazon EC2 automatically created when creating the EC2 Instance Connect Endpoint
*/
readonly networkInterfaceIds?: string[];
/**
* The ID of the AWS account that created the EC2 Instance Connect Endpoint
*/
readonly ownerId?: string;
/**
* The public DNS names of the endpoint
*/
readonly publicDnsNames?: outputs.ec2.InstanceConnectEndpointPublicDnsNames;
/**
* The current state of the EC2 Instance Connect Endpoint
*/
readonly state?: enums.ec2.InstanceConnectEndpointState;
/**
* The message for the current state of the EC2 Instance Connect Endpoint. Can include a failure message
*/
readonly stateMessage?: string;
/**
* The tags assigned to the EC2 Instance Connect Endpoint.
*/
readonly tags?: outputs.Tag[];
/**
* The ID of the VPC in which the EC2 Instance Connect Endpoint was created
*/
readonly vpcId?: string;
}
/**
* Resource Type definition for AWS::EC2::InstanceConnectEndpoint
*/
export declare function getInstanceConnectEndpointOutput(args: GetInstanceConnectEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInstanceConnectEndpointResult>;
export interface GetInstanceConnectEndpointOutputArgs {
/**
* The ID of the EC2 Instance Connect Endpoint.
*/
id: pulumi.Input<string>;
}