@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
36 lines (35 loc) • 1.06 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource schema for AWS::OpenSearchServerless::CollectionIndex
*/
export declare function getCollectionIndex(args: GetCollectionIndexArgs, opts?: pulumi.InvokeOptions): Promise<GetCollectionIndexResult>;
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<GetCollectionIndexResult>;
export interface GetCollectionIndexOutputArgs {
/**
* The identifier of the collection
*/
id: pulumi.Input<string>;
/**
* The name of the collection index
*/
indexName: pulumi.Input<string>;
}