import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Amazon OpenSearchServerless collection resource
 */
export declare function getCollection(args: GetCollectionArgs, opts?: pulumi.InvokeOptions): Promise<GetCollectionResult>;
export interface GetCollectionArgs {
    /**
     * The identifier of the collection
     */
    id: string;
}
export interface GetCollectionResult {
    /**
     * The Amazon Resource Name (ARN) of the collection.
     */
    readonly arn?: string;
    /**
     * The endpoint for the collection.
     */
    readonly collectionEndpoint?: string;
    /**
     * The OpenSearch Dashboards endpoint for the collection.
     */
    readonly dashboardEndpoint?: string;
    readonly deletionProtection?: enums.opensearchserverless.CollectionDeletionProtection;
    /**
     * The description of the collection
     */
    readonly description?: string;
    readonly fipsEndpoints?: outputs.opensearchserverless.CollectionFipsEndpoints;
    /**
     * The identifier of the collection
     */
    readonly id?: string;
    /**
     * Key Management Service key used to encrypt the collection.
     */
    readonly kmsKeyArn?: string;
    readonly vectorOptions?: outputs.opensearchserverless.CollectionVectorOptions;
}
/**
 * Amazon OpenSearchServerless collection resource
 */
export declare function getCollectionOutput(args: GetCollectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCollectionResult>;
export interface GetCollectionOutputArgs {
    /**
     * The identifier of the collection
     */
    id: pulumi.Input<string>;
}
