import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::DevOpsAgent::PrivateConnection
 */
export declare function getPrivateConnection(args: GetPrivateConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateConnectionResult>;
export interface GetPrivateConnectionArgs {
    /**
     * Unique name for this Private Connection within the account.
     */
    name: string;
}
export interface GetPrivateConnectionResult {
    /**
     * The Amazon Resource Name (ARN) of the Private Connection.
     */
    readonly arn?: string;
    /**
     * The expiry time of the certificate associated with the Private Connection.
     */
    readonly certificateExpiryTime?: string;
    /**
     * The status of the Private Connection.
     */
    readonly status?: enums.devopsagent.PrivateConnectionStatus;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::DevOpsAgent::PrivateConnection
 */
export declare function getPrivateConnectionOutput(args: GetPrivateConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateConnectionResult>;
export interface GetPrivateConnectionOutputArgs {
    /**
     * Unique name for this Private Connection within the account.
     */
    name: pulumi.Input<string>;
}
