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; 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; export interface GetAnnotationStoreOutputArgs { /** * The name of the Annotation Store. */ name: pulumi.Input; }