@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)
42 lines (41 loc) • 1.38 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::OpenSearchServerless::CollectionGroup
*/
export declare function getCollectionGroup(args: GetCollectionGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetCollectionGroupResult>;
export interface GetCollectionGroupArgs {
/**
* The unique identifier of the collection group.
*/
id: string;
}
export interface GetCollectionGroupResult {
/**
* The Amazon Resource Name (ARN) of the collection group.
*/
readonly arn?: string;
readonly capacityLimits?: outputs.opensearchserverless.CollectionGroupCapacityLimits;
/**
* The description of the collection group.
*/
readonly description?: string;
/**
* The unique identifier of the collection group.
*/
readonly id?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::OpenSearchServerless::CollectionGroup
*/
export declare function getCollectionGroupOutput(args: GetCollectionGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCollectionGroupResult>;
export interface GetCollectionGroupOutputArgs {
/**
* The unique identifier of the collection group.
*/
id: pulumi.Input<string>;
}