@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)
57 lines (56 loc) • 1.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Definition of AWS::Omics::AnnotationStore Resource Type
*/
export declare function getAnnotationStore(args: GetAnnotationStoreArgs, opts?: pulumi.InvokeOptions): Promise<GetAnnotationStoreResult>;
export interface GetAnnotationStoreArgs {
/**
* The name of the Annotation Store.
*/
name: string;
}
export interface GetAnnotationStoreResult {
/**
* When the store was created.
*/
readonly creationTime?: string;
/**
* A description for the store.
*/
readonly description?: string;
/**
* The store's ID.
*/
readonly id?: string;
/**
* The store's status.
*/
readonly status?: enums.omics.AnnotationStoreStoreStatus;
/**
* The store's status message.
*/
readonly statusMessage?: string;
/**
* The store's ARN.
*/
readonly storeArn?: string;
/**
* The store's size in bytes.
*/
readonly storeSizeBytes?: number;
/**
* When the store was updated.
*/
readonly updateTime?: string;
}
/**
* Definition of AWS::Omics::AnnotationStore Resource Type
*/
export declare function getAnnotationStoreOutput(args: GetAnnotationStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAnnotationStoreResult>;
export interface GetAnnotationStoreOutputArgs {
/**
* The name of the Annotation Store.
*/
name: pulumi.Input<string>;
}