import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets information about an AWS PrivateLink connection for an Aiven service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getAwsPrivatelink({ * project: "my-project", * serviceName: "foo", * }); * ``` */ export declare function getAwsPrivatelink(args: GetAwsPrivatelinkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAwsPrivatelink. */ export interface GetAwsPrivatelinkArgs { /** * Project name. */ project: string; /** * Service name. */ serviceName: string; timeouts?: inputs.GetAwsPrivatelinkTimeouts; } /** * A collection of values returned by getAwsPrivatelink. */ export interface GetAwsPrivatelinkResult { /** * AWS VPC endpoint service ID. */ readonly awsServiceId: string; /** * AWS VPC endpoint service name. */ readonly awsServiceName: string; /** * Resource ID composed as: `project/service_name`. */ readonly id: string; /** * ARNs of principals allowed connecting to the service. */ readonly principals: string[]; /** * Project name. */ readonly project: string; /** * Service name. */ readonly serviceName: string; /** * Privatelink resource state. The possible values are `active`, `creating` and `deleting`. */ readonly state: string; /** * Allow new connections to the endpoint from these regions, in addition to the region the endpoint is in. */ readonly supportedRegions: string[]; readonly timeouts?: outputs.GetAwsPrivatelinkTimeouts; } /** * Gets information about an AWS PrivateLink connection for an Aiven service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getAwsPrivatelink({ * project: "my-project", * serviceName: "foo", * }); * ``` */ export declare function getAwsPrivatelinkOutput(args: GetAwsPrivatelinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAwsPrivatelink. */ export interface GetAwsPrivatelinkOutputArgs { /** * Project name. */ project: pulumi.Input; /** * Service name. */ serviceName: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getAwsPrivatelink.d.ts.map