import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of the AWS::QuickSight::VPCConnection Resource Type. */ export declare function getVpcConnection(args: GetVpcConnectionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetVpcConnectionArgs { /** * The AWS account ID of the account where you want to create a new VPC connection. */ awsAccountId: string; /** * The ID of the VPC connection that you're creating. This ID is a unique identifier for each AWS Region in an AWS account. */ vpcConnectionId: string; } export interface GetVpcConnectionResult { /** *

The Amazon Resource Name (ARN) of the VPC connection.

*/ readonly arn?: string; /** * The availability status of the VPC connection. */ readonly availabilityStatus?: enums.quicksight.VpcConnectionVpcConnectionAvailabilityStatus; /** *

The time that the VPC connection was created.

*/ readonly createdTime?: string; /** * A list of IP addresses of DNS resolver endpoints for the VPC connection. */ readonly dnsResolvers?: string[]; /** *

The time that the VPC connection was last updated.

*/ readonly lastUpdatedTime?: string; /** * The display name for the VPC connection. */ readonly name?: string; /** *

A list of network interfaces.

*/ readonly networkInterfaces?: outputs.quicksight.VpcConnectionNetworkInterface[]; /** * The ARN of the IAM role associated with the VPC connection. */ readonly roleArn?: string; /** * The Amazon EC2 security group IDs associated with the VPC connection. */ readonly securityGroupIds?: string[]; /** * The HTTP status of the request. */ readonly status?: enums.quicksight.VpcConnectionVpcConnectionResourceStatus; /** * A map of the key-value pairs for the resource tag or tags assigned to the VPC connection. */ readonly tags?: outputs.Tag[]; /** *

The Amazon EC2 VPC ID associated with the VPC connection.

*/ readonly vpcId?: string; } /** * Definition of the AWS::QuickSight::VPCConnection Resource Type. */ export declare function getVpcConnectionOutput(args: GetVpcConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetVpcConnectionOutputArgs { /** * The AWS account ID of the account where you want to create a new VPC connection. */ awsAccountId: pulumi.Input; /** * The ID of the VPC connection that you're creating. This ID is a unique identifier for each AWS Region in an AWS account. */ vpcConnectionId: pulumi.Input; }