import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Neptune::GlobalCluster */ export declare function getGlobalCluster(args: GetGlobalClusterArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetGlobalClusterArgs { /** * The cluster identifier of the global database cluster. */ globalClusterIdentifier: string; } export interface GetGlobalClusterResult { /** * Whether deletion protection is enabled. */ readonly deletionProtection?: boolean; /** * The version number of the database engine. */ readonly engineVersion?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::Neptune::GlobalCluster */ export declare function getGlobalClusterOutput(args: GetGlobalClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetGlobalClusterOutputArgs { /** * The cluster identifier of the global database cluster. */ globalClusterIdentifier: pulumi.Input; }