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)

37 lines (36 loc) 1.21 kB
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<GetGlobalClusterResult>; 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<GetGlobalClusterResult>; export interface GetGlobalClusterOutputArgs { /** * The cluster identifier of the global database cluster. */ globalClusterIdentifier: pulumi.Input<string>; }