import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values.
 */
export declare function getKeyValueStore(args: GetKeyValueStoreArgs, opts?: pulumi.InvokeOptions): Promise<GetKeyValueStoreResult>;
export interface GetKeyValueStoreArgs {
    /**
     * The name of the key value store.
     */
    name: string;
}
export interface GetKeyValueStoreResult {
    /**
     * The Amazon Resource Name (ARN) of the key value store.
     */
    readonly arn?: string;
    /**
     * A comment to describe the Key Value Store. Omitting ``Comment`` from the template during updates will clear the existing comment (set to empty string). To preserve an existing comment, you must explicitly include it in the template.
     */
    readonly comment?: string;
    /**
     * The unique Id for the key value store.
     */
    readonly id?: string;
    /**
     * The current status of the key value store. For more information, see [Key value store statuses](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/kvs-with-functions-create.html#key-value-store-status) in the *.*
     */
    readonly status?: string;
    /**
     * A complex type that contains zero or more ``Tag`` elements.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values.
 */
export declare function getKeyValueStoreOutput(args: GetKeyValueStoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKeyValueStoreResult>;
export interface GetKeyValueStoreOutputArgs {
    /**
     * The name of the key value store.
     */
    name: pulumi.Input<string>;
}
