import * as pulumi from "@pulumi/pulumi"; /** * Resource schema for AWS::OpenSearchServerless::CollectionIndex */ export declare function getCollectionIndex(args: GetCollectionIndexArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetCollectionIndexArgs { /** * The identifier of the collection */ id: string; /** * The name of the collection index */ indexName: string; } export interface GetCollectionIndexResult { /** * The Mappings for the collection index */ readonly indexSchema?: string; } /** * Resource schema for AWS::OpenSearchServerless::CollectionIndex */ export declare function getCollectionIndexOutput(args: GetCollectionIndexOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetCollectionIndexOutputArgs { /** * The identifier of the collection */ id: pulumi.Input; /** * The name of the collection index */ indexName: pulumi.Input; }