aws.dsql.Cluster
Explore with Pulumi AI
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:
- Deletion
Protection boolEnabled - Whether deletion protection is enabled in this cluster.
- Kms
Encryption stringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - Multi
Region ClusterProperties Multi Region Properties - Multi-region properties of the DSQL Cluster.
- Dictionary<string, string>
- Set of tags to be associated with the AWS DSQL Cluster resource.
- Timeouts
Cluster
Timeouts
- Deletion
Protection boolEnabled - Whether deletion protection is enabled in this cluster.
- Kms
Encryption stringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - Multi
Region ClusterProperties Multi Region Properties Args - Multi-region properties of the DSQL Cluster.
- map[string]string
- Set of tags to be associated with the AWS DSQL Cluster resource.
- Timeouts
Cluster
Timeouts Args
- deletion
Protection BooleanEnabled - Whether deletion protection is enabled in this cluster.
- kms
Encryption StringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi
Region ClusterProperties Multi Region Properties - Multi-region properties of the DSQL Cluster.
- Map<String,String>
- Set of tags to be associated with the AWS DSQL Cluster resource.
- timeouts
Cluster
Timeouts
- deletion
Protection booleanEnabled - Whether deletion protection is enabled in this cluster.
- kms
Encryption stringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi
Region ClusterProperties Multi Region Properties - Multi-region properties of the DSQL Cluster.
- {[key: string]: string}
- Set of tags to be associated with the AWS DSQL Cluster resource.
- timeouts
Cluster
Timeouts
- deletion_
protection_ boolenabled - Whether deletion protection is enabled in this cluster.
- kms_
encryption_ strkey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi_
region_ Clusterproperties Multi Region Properties Args - Multi-region properties of the DSQL Cluster.
- Mapping[str, str]
- Set of tags to be associated with the AWS DSQL Cluster resource.
- timeouts
Cluster
Timeouts Args
- deletion
Protection BooleanEnabled - Whether deletion protection is enabled in this cluster.
- kms
Encryption StringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi
Region Property MapProperties - Multi-region properties of the DSQL Cluster.
- 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.
- Encryption
Details List<ClusterEncryption Detail> - Encryption configuration details for the DSQL Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identifier string
- Cluster Identifier.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vpc
Endpoint stringService Name - The DSQL Cluster's VPC endpoint service name.
- Arn string
- ARN of the Cluster.
- Encryption
Details []ClusterEncryption Detail - Encryption configuration details for the DSQL Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identifier string
- Cluster Identifier.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Vpc
Endpoint stringService Name - The DSQL Cluster's VPC endpoint service name.
- arn String
- ARN of the Cluster.
- encryption
Details List<ClusterEncryption Detail> - Encryption configuration details for the DSQL Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- identifier String
- Cluster Identifier.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Endpoint StringService Name - The DSQL Cluster's VPC endpoint service name.
- arn string
- ARN of the Cluster.
- encryption
Details ClusterEncryption Detail[] - Encryption configuration details for the DSQL Cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- identifier string
- Cluster Identifier.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Endpoint stringService Name - The DSQL Cluster's VPC endpoint service name.
- arn str
- ARN of the Cluster.
- encryption_
details Sequence[ClusterEncryption Detail] - Encryption configuration details for the DSQL Cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- identifier str
- Cluster Identifier.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc_
endpoint_ strservice_ name - The DSQL Cluster's VPC endpoint service name.
- arn String
- ARN of the Cluster.
- encryption
Details 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.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - vpc
Endpoint StringService Name - 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.
- Arn string
- ARN of the Cluster.
- Deletion
Protection boolEnabled - Whether deletion protection is enabled in this cluster.
- Encryption
Details List<ClusterEncryption Detail> - Encryption configuration details for the DSQL Cluster.
- Identifier string
- Cluster Identifier.
- Kms
Encryption stringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - Multi
Region ClusterProperties Multi Region Properties - Multi-region properties of the DSQL Cluster.
- Dictionary<string, string>
- Set of tags to be associated with the AWS DSQL Cluster resource.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Timeouts
Cluster
Timeouts - Vpc
Endpoint stringService Name - The DSQL Cluster's VPC endpoint service name.
- Arn string
- ARN of the Cluster.
- Deletion
Protection boolEnabled - Whether deletion protection is enabled in this cluster.
- Encryption
Details []ClusterEncryption Detail Args - Encryption configuration details for the DSQL Cluster.
- Identifier string
- Cluster Identifier.
- Kms
Encryption stringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - Multi
Region ClusterProperties Multi Region Properties Args - Multi-region properties of the DSQL Cluster.
- map[string]string
- Set of tags to be associated with the AWS DSQL Cluster resource.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Timeouts
Cluster
Timeouts Args - Vpc
Endpoint stringService Name - The DSQL Cluster's VPC endpoint service name.
- arn String
- ARN of the Cluster.
- deletion
Protection BooleanEnabled - Whether deletion protection is enabled in this cluster.
- encryption
Details List<ClusterEncryption Detail> - Encryption configuration details for the DSQL Cluster.
- identifier String
- Cluster Identifier.
- kms
Encryption StringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi
Region ClusterProperties Multi Region Properties - Multi-region properties of the DSQL Cluster.
- Map<String,String>
- Set of tags to be associated with the AWS DSQL Cluster resource.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Cluster
Timeouts - vpc
Endpoint StringService Name - The DSQL Cluster's VPC endpoint service name.
- arn string
- ARN of the Cluster.
- deletion
Protection booleanEnabled - Whether deletion protection is enabled in this cluster.
- encryption
Details ClusterEncryption Detail[] - Encryption configuration details for the DSQL Cluster.
- identifier string
- Cluster Identifier.
- kms
Encryption stringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi
Region ClusterProperties Multi Region Properties - Multi-region properties of the DSQL Cluster.
- {[key: string]: string}
- Set of tags to be associated with the AWS DSQL Cluster resource.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Cluster
Timeouts - vpc
Endpoint stringService Name - The DSQL Cluster's VPC endpoint service name.
- arn str
- ARN of the Cluster.
- deletion_
protection_ boolenabled - Whether deletion protection is enabled in this cluster.
- encryption_
details Sequence[ClusterEncryption Detail Args] - Encryption configuration details for the DSQL Cluster.
- identifier str
- Cluster Identifier.
- kms_
encryption_ strkey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi_
region_ Clusterproperties Multi Region Properties Args - Multi-region properties of the DSQL Cluster.
- Mapping[str, str]
- Set of tags to be associated with the AWS DSQL Cluster resource.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Cluster
Timeouts Args - vpc_
endpoint_ strservice_ name - The DSQL Cluster's VPC endpoint service name.
- arn String
- ARN of the Cluster.
- deletion
Protection BooleanEnabled - Whether deletion protection is enabled in this cluster.
- encryption
Details List<Property Map> - Encryption configuration details for the DSQL Cluster.
- identifier String
- Cluster Identifier.
- kms
Encryption StringKey - The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or
"AWS_OWNED_KMS_KEY"
. - multi
Region Property MapProperties - Multi-region properties of the DSQL Cluster.
- Map<String>
- Set of tags to be associated with the AWS DSQL Cluster resource.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts Property Map
- vpc
Endpoint StringService Name - The DSQL Cluster's VPC endpoint service name.
Supporting Types
ClusterEncryptionDetail, ClusterEncryptionDetailArgs
- Encryption
Status string - The status of encryption for the DSQL Cluster.
- Encryption
Type string - The type of encryption that protects the data on the DSQL Cluster.
- Encryption
Status string - The status of encryption for the DSQL Cluster.
- Encryption
Type string - The type of encryption that protects the data on the DSQL Cluster.
- encryption
Status String - The status of encryption for the DSQL Cluster.
- encryption
Type String - The type of encryption that protects the data on the DSQL Cluster.
- encryption
Status string - The status of encryption for the DSQL Cluster.
- encryption
Type 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.
- encryption
Status String - The status of encryption for the DSQL Cluster.
- encryption
Type 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.
- Witness
Region 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.
- Witness
Region 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.
- witness
Region 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.
- witness
Region 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.
- witness
Region 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.