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)

77 lines (76 loc) 2.19 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::DSQL::Cluster */ export declare function getCluster(args: GetClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetClusterResult>; export interface GetClusterArgs { /** * The ID of the created cluster. */ identifier: string; } export interface GetClusterResult { /** * The time of when the cluster was created in ISO-8601 format. */ readonly creationTime?: string; /** * Whether deletion protection is enabled in this cluster. */ readonly deletionProtectionEnabled?: boolean; /** * The encryption configuration details for the cluster. */ readonly encryptionDetails?: outputs.dsql.EncryptionDetailsProperties; /** * The DSQL cluster endpoint. */ readonly endpoint?: string; /** * The ID of the created cluster. */ readonly identifier?: string; /** * The Multi-region properties associated to this cluster. */ readonly multiRegionProperties?: outputs.dsql.MultiRegionPropertiesProperties; /** * The IAM policy applied to the cluster resource. */ readonly policyDocument?: string; /** * The version number of the cluster's resource based policy */ readonly policyVersion?: string; /** * The Amazon Resource Name (ARN) for the cluster. */ readonly resourceArn?: string; /** * The status of the cluster. */ readonly status?: string; /** * A map of key and value pairs this cluster is tagged with. */ readonly tags?: outputs.Tag[]; /** * The DSQL cluster VPC endpoint. */ readonly vpcEndpoint?: string; /** * The VPC endpoint service name. */ readonly vpcEndpointServiceName?: string; } /** * Resource Type definition for AWS::DSQL::Cluster */ export declare function getClusterOutput(args: GetClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClusterResult>; export interface GetClusterOutputArgs { /** * The ID of the created cluster. */ identifier: pulumi.Input<string>; }