1. Packages
  2. AWS
  3. API Docs
  4. dsql
  5. Cluster
AWS v6.83.0 published on Monday, Jun 16, 2025 by Pulumi

aws.dsql.Cluster

Explore with Pulumi AI

aws logo
AWS v6.83.0 published on Monday, Jun 16, 2025 by Pulumi

    Resource for managing an Amazon Aurora DSQL Cluster.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.dsql.Cluster("example", {
        deletionProtectionEnabled: true,
        tags: {
            Name: "TestCluster",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.dsql.Cluster("example",
        deletion_protection_enabled=True,
        tags={
            "Name": "TestCluster",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/dsql"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := dsql.NewCluster(ctx, "example", &dsql.ClusterArgs{
    			DeletionProtectionEnabled: pulumi.Bool(true),
    			Tags: pulumi.StringMap{
    				"Name": pulumi.String("TestCluster"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Dsql.Cluster("example", new()
        {
            DeletionProtectionEnabled = true,
            Tags = 
            {
                { "Name", "TestCluster" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.dsql.Cluster;
    import com.pulumi.aws.dsql.ClusterArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Cluster("example", ClusterArgs.builder()
                .deletionProtectionEnabled(true)
                .tags(Map.of("Name", "TestCluster"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:dsql:Cluster
        properties:
          deletionProtectionEnabled: true
          tags:
            Name: TestCluster
    

    Create Cluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Cluster(name: string, args?: ClusterArgs, opts?: CustomResourceOptions);
    @overload
    def Cluster(resource_name: str,
                args: Optional[ClusterArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Cluster(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                deletion_protection_enabled: Optional[bool] = None,
                kms_encryption_key: Optional[str] = None,
                multi_region_properties: Optional[ClusterMultiRegionPropertiesArgs] = None,
                tags: Optional[Mapping[str, str]] = None,
                timeouts: Optional[ClusterTimeoutsArgs] = None)
    func NewCluster(ctx *Context, name string, args *ClusterArgs, opts ...ResourceOption) (*Cluster, error)
    public Cluster(string name, ClusterArgs? args = null, CustomResourceOptions? opts = null)
    public Cluster(String name, ClusterArgs args)
    public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
    
    type: aws:dsql:Cluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var exampleclusterResourceResourceFromDsqlcluster = new Aws.Dsql.Cluster("exampleclusterResourceResourceFromDsqlcluster", new()
    {
        DeletionProtectionEnabled = false,
        KmsEncryptionKey = "string",
        MultiRegionProperties = new Aws.Dsql.Inputs.ClusterMultiRegionPropertiesArgs
        {
            Clusters = new[]
            {
                "string",
            },
            WitnessRegion = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.Dsql.Inputs.ClusterTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := dsql.NewCluster(ctx, "exampleclusterResourceResourceFromDsqlcluster", &dsql.ClusterArgs{
    	DeletionProtectionEnabled: pulumi.Bool(false),
    	KmsEncryptionKey:          pulumi.String("string"),
    	MultiRegionProperties: &dsql.ClusterMultiRegionPropertiesArgs{
    		Clusters: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		WitnessRegion: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &dsql.ClusterTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var exampleclusterResourceResourceFromDsqlcluster = new com.pulumi.aws.dsql.Cluster("exampleclusterResourceResourceFromDsqlcluster", com.pulumi.aws.dsql.ClusterArgs.builder()
        .deletionProtectionEnabled(false)
        .kmsEncryptionKey("string")
        .multiRegionProperties(ClusterMultiRegionPropertiesArgs.builder()
            .clusters("string")
            .witnessRegion("string")
            .build())
        .tags(Map.of("string", "string"))
        .timeouts(ClusterTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    examplecluster_resource_resource_from_dsqlcluster = aws.dsql.Cluster("exampleclusterResourceResourceFromDsqlcluster",
        deletion_protection_enabled=False,
        kms_encryption_key="string",
        multi_region_properties={
            "clusters": ["string"],
            "witness_region": "string",
        },
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const exampleclusterResourceResourceFromDsqlcluster = new aws.dsql.Cluster("exampleclusterResourceResourceFromDsqlcluster", {
        deletionProtectionEnabled: false,
        kmsEncryptionKey: "string",
        multiRegionProperties: {
            clusters: ["string"],
            witnessRegion: "string",
        },
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:dsql:Cluster
    properties:
        deletionProtectionEnabled: false
        kmsEncryptionKey: string
        multiRegionProperties:
            clusters:
                - string
            witnessRegion: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    Cluster Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Cluster resource accepts the following input properties:

    DeletionProtectionEnabled bool
    Whether deletion protection is enabled in this cluster.
    KmsEncryptionKey string
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    MultiRegionProperties ClusterMultiRegionProperties
    Multi-region properties of the DSQL Cluster.
    Tags Dictionary<string, string>
    Set of tags to be associated with the AWS DSQL Cluster resource.
    Timeouts ClusterTimeouts
    DeletionProtectionEnabled bool
    Whether deletion protection is enabled in this cluster.
    KmsEncryptionKey string
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    MultiRegionProperties ClusterMultiRegionPropertiesArgs
    Multi-region properties of the DSQL Cluster.
    Tags map[string]string
    Set of tags to be associated with the AWS DSQL Cluster resource.
    Timeouts ClusterTimeoutsArgs
    deletionProtectionEnabled Boolean
    Whether deletion protection is enabled in this cluster.
    kmsEncryptionKey String
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multiRegionProperties ClusterMultiRegionProperties
    Multi-region properties of the DSQL Cluster.
    tags Map<String,String>
    Set of tags to be associated with the AWS DSQL Cluster resource.
    timeouts ClusterTimeouts
    deletionProtectionEnabled boolean
    Whether deletion protection is enabled in this cluster.
    kmsEncryptionKey string
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multiRegionProperties ClusterMultiRegionProperties
    Multi-region properties of the DSQL Cluster.
    tags {[key: string]: string}
    Set of tags to be associated with the AWS DSQL Cluster resource.
    timeouts ClusterTimeouts
    deletion_protection_enabled bool
    Whether deletion protection is enabled in this cluster.
    kms_encryption_key str
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multi_region_properties ClusterMultiRegionPropertiesArgs
    Multi-region properties of the DSQL Cluster.
    tags Mapping[str, str]
    Set of tags to be associated with the AWS DSQL Cluster resource.
    timeouts ClusterTimeoutsArgs
    deletionProtectionEnabled Boolean
    Whether deletion protection is enabled in this cluster.
    kmsEncryptionKey String
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multiRegionProperties Property Map
    Multi-region properties of the DSQL Cluster.
    tags Map<String>
    Set of tags to be associated with the AWS DSQL Cluster resource.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:

    Arn string
    ARN of the Cluster.
    EncryptionDetails List<ClusterEncryptionDetail>
    Encryption configuration details for the DSQL Cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    Identifier string
    Cluster Identifier.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VpcEndpointServiceName string
    The DSQL Cluster's VPC endpoint service name.
    Arn string
    ARN of the Cluster.
    EncryptionDetails []ClusterEncryptionDetail
    Encryption configuration details for the DSQL Cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    Identifier string
    Cluster Identifier.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    VpcEndpointServiceName string
    The DSQL Cluster's VPC endpoint service name.
    arn String
    ARN of the Cluster.
    encryptionDetails List<ClusterEncryptionDetail>
    Encryption configuration details for the DSQL Cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    identifier String
    Cluster Identifier.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpcEndpointServiceName String
    The DSQL Cluster's VPC endpoint service name.
    arn string
    ARN of the Cluster.
    encryptionDetails ClusterEncryptionDetail[]
    Encryption configuration details for the DSQL Cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    identifier string
    Cluster Identifier.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpcEndpointServiceName string
    The DSQL Cluster's VPC endpoint service name.
    arn str
    ARN of the Cluster.
    encryption_details Sequence[ClusterEncryptionDetail]
    Encryption configuration details for the DSQL Cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    identifier str
    Cluster Identifier.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpc_endpoint_service_name str
    The DSQL Cluster's VPC endpoint service name.
    arn String
    ARN of the Cluster.
    encryptionDetails List<Property Map>
    Encryption configuration details for the DSQL Cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    identifier String
    Cluster Identifier.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    vpcEndpointServiceName String
    The DSQL Cluster's VPC endpoint service name.

    Look up Existing Cluster Resource

    Get an existing Cluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ClusterState, opts?: CustomResourceOptions): Cluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            deletion_protection_enabled: Optional[bool] = None,
            encryption_details: Optional[Sequence[ClusterEncryptionDetailArgs]] = None,
            identifier: Optional[str] = None,
            kms_encryption_key: Optional[str] = None,
            multi_region_properties: Optional[ClusterMultiRegionPropertiesArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[ClusterTimeoutsArgs] = None,
            vpc_endpoint_service_name: Optional[str] = None) -> Cluster
    func GetCluster(ctx *Context, name string, id IDInput, state *ClusterState, opts ...ResourceOption) (*Cluster, error)
    public static Cluster Get(string name, Input<string> id, ClusterState? state, CustomResourceOptions? opts = null)
    public static Cluster get(String name, Output<String> id, ClusterState state, CustomResourceOptions options)
    resources:  _:    type: aws:dsql:Cluster    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN of the Cluster.
    DeletionProtectionEnabled bool
    Whether deletion protection is enabled in this cluster.
    EncryptionDetails List<ClusterEncryptionDetail>
    Encryption configuration details for the DSQL Cluster.
    Identifier string
    Cluster Identifier.
    KmsEncryptionKey string
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    MultiRegionProperties ClusterMultiRegionProperties
    Multi-region properties of the DSQL Cluster.
    Tags Dictionary<string, string>
    Set of tags to be associated with the AWS DSQL Cluster resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ClusterTimeouts
    VpcEndpointServiceName string
    The DSQL Cluster's VPC endpoint service name.
    Arn string
    ARN of the Cluster.
    DeletionProtectionEnabled bool
    Whether deletion protection is enabled in this cluster.
    EncryptionDetails []ClusterEncryptionDetailArgs
    Encryption configuration details for the DSQL Cluster.
    Identifier string
    Cluster Identifier.
    KmsEncryptionKey string
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    MultiRegionProperties ClusterMultiRegionPropertiesArgs
    Multi-region properties of the DSQL Cluster.
    Tags map[string]string
    Set of tags to be associated with the AWS DSQL Cluster resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ClusterTimeoutsArgs
    VpcEndpointServiceName string
    The DSQL Cluster's VPC endpoint service name.
    arn String
    ARN of the Cluster.
    deletionProtectionEnabled Boolean
    Whether deletion protection is enabled in this cluster.
    encryptionDetails List<ClusterEncryptionDetail>
    Encryption configuration details for the DSQL Cluster.
    identifier String
    Cluster Identifier.
    kmsEncryptionKey String
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multiRegionProperties ClusterMultiRegionProperties
    Multi-region properties of the DSQL Cluster.
    tags Map<String,String>
    Set of tags to be associated with the AWS DSQL Cluster resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ClusterTimeouts
    vpcEndpointServiceName String
    The DSQL Cluster's VPC endpoint service name.
    arn string
    ARN of the Cluster.
    deletionProtectionEnabled boolean
    Whether deletion protection is enabled in this cluster.
    encryptionDetails ClusterEncryptionDetail[]
    Encryption configuration details for the DSQL Cluster.
    identifier string
    Cluster Identifier.
    kmsEncryptionKey string
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multiRegionProperties ClusterMultiRegionProperties
    Multi-region properties of the DSQL Cluster.
    tags {[key: string]: string}
    Set of tags to be associated with the AWS DSQL Cluster resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ClusterTimeouts
    vpcEndpointServiceName string
    The DSQL Cluster's VPC endpoint service name.
    arn str
    ARN of the Cluster.
    deletion_protection_enabled bool
    Whether deletion protection is enabled in this cluster.
    encryption_details Sequence[ClusterEncryptionDetailArgs]
    Encryption configuration details for the DSQL Cluster.
    identifier str
    Cluster Identifier.
    kms_encryption_key str
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multi_region_properties ClusterMultiRegionPropertiesArgs
    Multi-region properties of the DSQL Cluster.
    tags Mapping[str, str]
    Set of tags to be associated with the AWS DSQL Cluster resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ClusterTimeoutsArgs
    vpc_endpoint_service_name str
    The DSQL Cluster's VPC endpoint service name.
    arn String
    ARN of the Cluster.
    deletionProtectionEnabled Boolean
    Whether deletion protection is enabled in this cluster.
    encryptionDetails List<Property Map>
    Encryption configuration details for the DSQL Cluster.
    identifier String
    Cluster Identifier.
    kmsEncryptionKey String
    The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or "AWS_OWNED_KMS_KEY".
    multiRegionProperties Property Map
    Multi-region properties of the DSQL Cluster.
    tags Map<String>
    Set of tags to be associated with the AWS DSQL Cluster resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map
    vpcEndpointServiceName String
    The DSQL Cluster's VPC endpoint service name.

    Supporting Types

    ClusterEncryptionDetail, ClusterEncryptionDetailArgs

    EncryptionStatus string
    The status of encryption for the DSQL Cluster.
    EncryptionType string
    The type of encryption that protects the data on the DSQL Cluster.
    EncryptionStatus string
    The status of encryption for the DSQL Cluster.
    EncryptionType string
    The type of encryption that protects the data on the DSQL Cluster.
    encryptionStatus String
    The status of encryption for the DSQL Cluster.
    encryptionType String
    The type of encryption that protects the data on the DSQL Cluster.
    encryptionStatus string
    The status of encryption for the DSQL Cluster.
    encryptionType string
    The type of encryption that protects the data on the DSQL Cluster.
    encryption_status str
    The status of encryption for the DSQL Cluster.
    encryption_type str
    The type of encryption that protects the data on the DSQL Cluster.
    encryptionStatus String
    The status of encryption for the DSQL Cluster.
    encryptionType String
    The type of encryption that protects the data on the DSQL Cluster.

    ClusterMultiRegionProperties, ClusterMultiRegionPropertiesArgs

    Clusters List<string>
    List of DSQL Cluster ARNs peered to this cluster.
    WitnessRegion string
    Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the resource.
    Clusters []string
    List of DSQL Cluster ARNs peered to this cluster.
    WitnessRegion string
    Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the resource.
    clusters List<String>
    List of DSQL Cluster ARNs peered to this cluster.
    witnessRegion String
    Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the resource.
    clusters string[]
    List of DSQL Cluster ARNs peered to this cluster.
    witnessRegion string
    Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the resource.
    clusters Sequence[str]
    List of DSQL Cluster ARNs peered to this cluster.
    witness_region str
    Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the resource.
    clusters List<String>
    List of DSQL Cluster ARNs peered to this cluster.
    witnessRegion String
    Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the resource.

    ClusterTimeouts, ClusterTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import DSQL Cluster using the identifier. For example:

    $ pulumi import aws:dsql/cluster:Cluster example abcde1f234ghijklmnop5qr6st
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.83.0 published on Monday, Jun 16, 2025 by Pulumi