import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Amazon OpenSearchServerless collection resource */ export declare function getCollection(args: GetCollectionArgs, opts?: pulumi.InvokeOptions): Promise; 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; /** * 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; } /** * Amazon OpenSearchServerless collection resource */ export declare function getCollectionOutput(args: GetCollectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetCollectionOutputArgs { /** * The identifier of the collection */ id: pulumi.Input; }