@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.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Definition of AWS::Omics::VariantStore Resource Type
*/
export declare function getVariantStore(args: GetVariantStoreArgs, opts?: pulumi.InvokeOptions): Promise<GetVariantStoreResult>;
export interface GetVariantStoreArgs {
/**
* A name for the store.
*/
name: string;
}
export interface GetVariantStoreResult {
/**
* 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.VariantStoreStoreStatus;
/**
* 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::VariantStore Resource Type
*/
export declare function getVariantStoreOutput(args: GetVariantStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVariantStoreResult>;
export interface GetVariantStoreOutputArgs {
/**
* A name for the store.
*/
name: pulumi.Input<string>;
}