@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)
48 lines (47 loc) • 1.32 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* 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;
/**
* The description of the collection
*/
readonly description?: string;
/**
* The identifier of the collection
*/
readonly id?: string;
/**
* The ARN of the AWS KMS key used to encrypt the collection.
*/
readonly kmsKeyArn?: string;
}
/**
* 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>;
}