import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::NeptuneGraph::GraphSnapshot */ export declare function getGraphSnapshot(args: GetGraphSnapshotArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetGraphSnapshotArgs { /** * The ARN of the graph snapshot. */ arn: string; } export interface GetGraphSnapshotResult { /** * The ARN of the graph snapshot. */ readonly arn?: string; /** * The unique identifier of the graph snapshot. */ readonly id?: string; /** * The ID of the KMS key used to encrypt and decrypt the snapshot. */ readonly kmsKeyIdentifier?: string; /** * The time when the snapshot was created. */ readonly snapshotCreateTime?: string; /** * The current status of the graph snapshot. */ readonly status?: enums.neptunegraph.GraphSnapshotStatus; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::NeptuneGraph::GraphSnapshot */ export declare function getGraphSnapshotOutput(args: GetGraphSnapshotOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetGraphSnapshotOutputArgs { /** * The ARN of the graph snapshot. */ arn: pulumi.Input; }