UNPKG

@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)

50 lines (49 loc) 1.5 kB
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<GetGraphSnapshotResult>; 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<GetGraphSnapshotResult>; export interface GetGraphSnapshotOutputArgs { /** * The ARN of the graph snapshot. */ arn: pulumi.Input<string>; }