aws.rds.ShardGroup
Explore with Pulumi AI
Resource for managing an Amazon Aurora Limitless Database DB shard group
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.rds.Cluster("example", {
clusterIdentifier: "example-limitless-cluster",
engine: aws.rds.EngineType.AuroraPostgresql,
engineVersion: "16.6-limitless",
engineMode: "",
storageType: "aurora-iopt1",
clusterScalabilityType: "limitless",
masterUsername: "foo",
masterPassword: "must_be_eight_characters",
performanceInsightsEnabled: true,
performanceInsightsRetentionPeriod: 31,
enabledCloudwatchLogsExports: ["postgresql"],
monitoringInterval: 5,
monitoringRoleArn: exampleAwsIamRole.arn,
});
const exampleShardGroup = new aws.rds.ShardGroup("example", {
dbShardGroupIdentifier: "example-shard-group",
dbClusterIdentifier: example.id,
maxAcu: 1200,
});
import pulumi
import pulumi_aws as aws
example = aws.rds.Cluster("example",
cluster_identifier="example-limitless-cluster",
engine=aws.rds.EngineType.AURORA_POSTGRESQL,
engine_version="16.6-limitless",
engine_mode="",
storage_type="aurora-iopt1",
cluster_scalability_type="limitless",
master_username="foo",
master_password="must_be_eight_characters",
performance_insights_enabled=True,
performance_insights_retention_period=31,
enabled_cloudwatch_logs_exports=["postgresql"],
monitoring_interval=5,
monitoring_role_arn=example_aws_iam_role["arn"])
example_shard_group = aws.rds.ShardGroup("example",
db_shard_group_identifier="example-shard-group",
db_cluster_identifier=example.id,
max_acu=1200)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/rds"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := rds.NewCluster(ctx, "example", &rds.ClusterArgs{
ClusterIdentifier: pulumi.String("example-limitless-cluster"),
Engine: pulumi.String(rds.EngineTypeAuroraPostgresql),
EngineVersion: pulumi.String("16.6-limitless"),
EngineMode: pulumi.String(""),
StorageType: pulumi.String("aurora-iopt1"),
ClusterScalabilityType: pulumi.String("limitless"),
MasterUsername: pulumi.String("foo"),
MasterPassword: pulumi.String("must_be_eight_characters"),
PerformanceInsightsEnabled: pulumi.Bool(true),
PerformanceInsightsRetentionPeriod: pulumi.Int(31),
EnabledCloudwatchLogsExports: pulumi.StringArray{
pulumi.String("postgresql"),
},
MonitoringInterval: pulumi.Int(5),
MonitoringRoleArn: pulumi.Any(exampleAwsIamRole.Arn),
})
if err != nil {
return err
}
_, err = rds.NewShardGroup(ctx, "example", &rds.ShardGroupArgs{
DbShardGroupIdentifier: pulumi.String("example-shard-group"),
DbClusterIdentifier: example.ID(),
MaxAcu: pulumi.Float64(1200),
})
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.Rds.Cluster("example", new()
{
ClusterIdentifier = "example-limitless-cluster",
Engine = Aws.Rds.EngineType.AuroraPostgresql,
EngineVersion = "16.6-limitless",
EngineMode = "",
StorageType = "aurora-iopt1",
ClusterScalabilityType = "limitless",
MasterUsername = "foo",
MasterPassword = "must_be_eight_characters",
PerformanceInsightsEnabled = true,
PerformanceInsightsRetentionPeriod = 31,
EnabledCloudwatchLogsExports = new[]
{
"postgresql",
},
MonitoringInterval = 5,
MonitoringRoleArn = exampleAwsIamRole.Arn,
});
var exampleShardGroup = new Aws.Rds.ShardGroup("example", new()
{
DbShardGroupIdentifier = "example-shard-group",
DbClusterIdentifier = example.Id,
MaxAcu = 1200,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.rds.Cluster;
import com.pulumi.aws.rds.ClusterArgs;
import com.pulumi.aws.rds.ShardGroup;
import com.pulumi.aws.rds.ShardGroupArgs;
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()
.clusterIdentifier("example-limitless-cluster")
.engine("aurora-postgresql")
.engineVersion("16.6-limitless")
.engineMode("")
.storageType("aurora-iopt1")
.clusterScalabilityType("limitless")
.masterUsername("foo")
.masterPassword("must_be_eight_characters")
.performanceInsightsEnabled(true)
.performanceInsightsRetentionPeriod(31)
.enabledCloudwatchLogsExports("postgresql")
.monitoringInterval(5)
.monitoringRoleArn(exampleAwsIamRole.arn())
.build());
var exampleShardGroup = new ShardGroup("exampleShardGroup", ShardGroupArgs.builder()
.dbShardGroupIdentifier("example-shard-group")
.dbClusterIdentifier(example.id())
.maxAcu(1200)
.build());
}
}
resources:
example:
type: aws:rds:Cluster
properties:
clusterIdentifier: example-limitless-cluster
engine: aurora-postgresql
engineVersion: 16.6-limitless
engineMode: ""
storageType: aurora-iopt1
clusterScalabilityType: limitless
masterUsername: foo
masterPassword: must_be_eight_characters
performanceInsightsEnabled: true
performanceInsightsRetentionPeriod: 31
enabledCloudwatchLogsExports:
- postgresql
monitoringInterval: 5
monitoringRoleArn: ${exampleAwsIamRole.arn}
exampleShardGroup:
type: aws:rds:ShardGroup
name: example
properties:
dbShardGroupIdentifier: example-shard-group
dbClusterIdentifier: ${example.id}
maxAcu: 1200
Create ShardGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ShardGroup(name: string, args: ShardGroupArgs, opts?: CustomResourceOptions);
@overload
def ShardGroup(resource_name: str,
args: ShardGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ShardGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
db_cluster_identifier: Optional[str] = None,
db_shard_group_identifier: Optional[str] = None,
max_acu: Optional[float] = None,
compute_redundancy: Optional[int] = None,
min_acu: Optional[float] = None,
publicly_accessible: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[ShardGroupTimeoutsArgs] = None)
func NewShardGroup(ctx *Context, name string, args ShardGroupArgs, opts ...ResourceOption) (*ShardGroup, error)
public ShardGroup(string name, ShardGroupArgs args, CustomResourceOptions? opts = null)
public ShardGroup(String name, ShardGroupArgs args)
public ShardGroup(String name, ShardGroupArgs args, CustomResourceOptions options)
type: aws:rds:ShardGroup
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 ShardGroupArgs
- 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 ShardGroupArgs
- 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 ShardGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ShardGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ShardGroupArgs
- 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 shardGroupResource = new Aws.Rds.ShardGroup("shardGroupResource", new()
{
DbClusterIdentifier = "string",
DbShardGroupIdentifier = "string",
MaxAcu = 0,
ComputeRedundancy = 0,
MinAcu = 0,
PubliclyAccessible = false,
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Rds.Inputs.ShardGroupTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := rds.NewShardGroup(ctx, "shardGroupResource", &rds.ShardGroupArgs{
DbClusterIdentifier: pulumi.String("string"),
DbShardGroupIdentifier: pulumi.String("string"),
MaxAcu: pulumi.Float64(0),
ComputeRedundancy: pulumi.Int(0),
MinAcu: pulumi.Float64(0),
PubliclyAccessible: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &rds.ShardGroupTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var shardGroupResource = new ShardGroup("shardGroupResource", ShardGroupArgs.builder()
.dbClusterIdentifier("string")
.dbShardGroupIdentifier("string")
.maxAcu(0)
.computeRedundancy(0)
.minAcu(0)
.publiclyAccessible(false)
.tags(Map.of("string", "string"))
.timeouts(ShardGroupTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
shard_group_resource = aws.rds.ShardGroup("shardGroupResource",
db_cluster_identifier="string",
db_shard_group_identifier="string",
max_acu=0,
compute_redundancy=0,
min_acu=0,
publicly_accessible=False,
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const shardGroupResource = new aws.rds.ShardGroup("shardGroupResource", {
dbClusterIdentifier: "string",
dbShardGroupIdentifier: "string",
maxAcu: 0,
computeRedundancy: 0,
minAcu: 0,
publiclyAccessible: false,
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:rds:ShardGroup
properties:
computeRedundancy: 0
dbClusterIdentifier: string
dbShardGroupIdentifier: string
maxAcu: 0
minAcu: 0
publiclyAccessible: false
tags:
string: string
timeouts:
create: string
delete: string
update: string
ShardGroup 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 ShardGroup resource accepts the following input properties:
- Db
Cluster stringIdentifier - The name of the primary DB cluster for the DB shard group.
- Db
Shard stringGroup Identifier - The name of the DB shard group.
- Max
Acu double - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- Compute
Redundancy int - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- Min
Acu double - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- Publicly
Accessible bool - Indicates whether the DB shard group is publicly accessible.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Shard
Group Timeouts
- Db
Cluster stringIdentifier - The name of the primary DB cluster for the DB shard group.
- Db
Shard stringGroup Identifier - The name of the DB shard group.
- Max
Acu float64 - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- Compute
Redundancy int - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- Min
Acu float64 - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- Publicly
Accessible bool - Indicates whether the DB shard group is publicly accessible.
- map[string]string
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Shard
Group Timeouts Args
- db
Cluster StringIdentifier - The name of the primary DB cluster for the DB shard group.
- db
Shard StringGroup Identifier - The name of the DB shard group.
- max
Acu Double - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- compute
Redundancy Integer - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- min
Acu Double - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly
Accessible Boolean - Indicates whether the DB shard group is publicly accessible.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Shard
Group Timeouts
- db
Cluster stringIdentifier - The name of the primary DB cluster for the DB shard group.
- db
Shard stringGroup Identifier - The name of the DB shard group.
- max
Acu number - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- compute
Redundancy number - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- min
Acu number - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly
Accessible boolean - Indicates whether the DB shard group is publicly accessible.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Shard
Group Timeouts
- db_
cluster_ stridentifier - The name of the primary DB cluster for the DB shard group.
- db_
shard_ strgroup_ identifier - The name of the DB shard group.
- max_
acu float - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- compute_
redundancy int - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- min_
acu float - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly_
accessible bool - Indicates whether the DB shard group is publicly accessible.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Shard
Group Timeouts Args
- db
Cluster StringIdentifier - The name of the primary DB cluster for the DB shard group.
- db
Shard StringGroup Identifier - The name of the DB shard group.
- max
Acu Number - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- compute
Redundancy Number - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- min
Acu Number - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly
Accessible Boolean - Indicates whether the DB shard group is publicly accessible.
- Map<String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the ShardGroup resource produces the following output properties:
- Arn string
- ARN of the shard group.
- Db
Shard stringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- Endpoint string
- The connection endpoint for the DB shard group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- ARN of the shard group.
- Db
Shard stringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- Endpoint string
- The connection endpoint for the DB shard group.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the shard group.
- db
Shard StringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint String
- The connection endpoint for the DB shard group.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- ARN of the shard group.
- db
Shard stringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint string
- The connection endpoint for the DB shard group.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- ARN of the shard group.
- db_
shard_ strgroup_ resource_ id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint str
- The connection endpoint for the DB shard group.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the shard group.
- db
Shard StringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint String
- The connection endpoint for the DB shard group.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing ShardGroup Resource
Get an existing ShardGroup 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?: ShardGroupState, opts?: CustomResourceOptions): ShardGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
compute_redundancy: Optional[int] = None,
db_cluster_identifier: Optional[str] = None,
db_shard_group_identifier: Optional[str] = None,
db_shard_group_resource_id: Optional[str] = None,
endpoint: Optional[str] = None,
max_acu: Optional[float] = None,
min_acu: Optional[float] = None,
publicly_accessible: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[ShardGroupTimeoutsArgs] = None) -> ShardGroup
func GetShardGroup(ctx *Context, name string, id IDInput, state *ShardGroupState, opts ...ResourceOption) (*ShardGroup, error)
public static ShardGroup Get(string name, Input<string> id, ShardGroupState? state, CustomResourceOptions? opts = null)
public static ShardGroup get(String name, Output<String> id, ShardGroupState state, CustomResourceOptions options)
resources: _: type: aws:rds:ShardGroup 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 shard group.
- Compute
Redundancy int - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- Db
Cluster stringIdentifier - The name of the primary DB cluster for the DB shard group.
- Db
Shard stringGroup Identifier - The name of the DB shard group.
- Db
Shard stringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- Endpoint string
- The connection endpoint for the DB shard group.
- Max
Acu double - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- Min
Acu double - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- Publicly
Accessible bool - Indicates whether the DB shard group is publicly accessible.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Timeouts
Shard
Group Timeouts
- Arn string
- ARN of the shard group.
- Compute
Redundancy int - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- Db
Cluster stringIdentifier - The name of the primary DB cluster for the DB shard group.
- Db
Shard stringGroup Identifier - The name of the DB shard group.
- Db
Shard stringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- Endpoint string
- The connection endpoint for the DB shard group.
- Max
Acu float64 - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- Min
Acu float64 - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- Publicly
Accessible bool - Indicates whether the DB shard group is publicly accessible.
- map[string]string
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Timeouts
Shard
Group Timeouts Args
- arn String
- ARN of the shard group.
- compute
Redundancy Integer - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- db
Cluster StringIdentifier - The name of the primary DB cluster for the DB shard group.
- db
Shard StringGroup Identifier - The name of the DB shard group.
- db
Shard StringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint String
- The connection endpoint for the DB shard group.
- max
Acu Double - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- min
Acu Double - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly
Accessible Boolean - Indicates whether the DB shard group is publicly accessible.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Shard
Group Timeouts
- arn string
- ARN of the shard group.
- compute
Redundancy number - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- db
Cluster stringIdentifier - The name of the primary DB cluster for the DB shard group.
- db
Shard stringGroup Identifier - The name of the DB shard group.
- db
Shard stringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint string
- The connection endpoint for the DB shard group.
- max
Acu number - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- min
Acu number - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly
Accessible boolean - Indicates whether the DB shard group is publicly accessible.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Shard
Group Timeouts
- arn str
- ARN of the shard group.
- compute_
redundancy int - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- db_
cluster_ stridentifier - The name of the primary DB cluster for the DB shard group.
- db_
shard_ strgroup_ identifier - The name of the DB shard group.
- db_
shard_ strgroup_ resource_ id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint str
- The connection endpoint for the DB shard group.
- max_
acu float - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- min_
acu float - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly_
accessible bool - Indicates whether the DB shard group is publicly accessible.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts
Shard
Group Timeouts Args
- arn String
- ARN of the shard group.
- compute
Redundancy Number - Specifies whether to create standby DB shard groups for the DB shard group. Valid values are:
- db
Cluster StringIdentifier - The name of the primary DB cluster for the DB shard group.
- db
Shard StringGroup Identifier - The name of the DB shard group.
- db
Shard StringGroup Resource Id - The AWS Region-unique, immutable identifier for the DB shard group.
- endpoint String
- The connection endpoint for the DB shard group.
- max
Acu Number - The maximum capacity of the DB shard group in Aurora capacity units (ACUs).
- min
Acu Number - The minimum capacity of the DB shard group in Aurora capacity units (ACUs).
- publicly
Accessible Boolean - Indicates whether the DB shard group is publicly accessible.
- Map<String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - timeouts Property Map
Supporting Types
ShardGroupTimeouts, ShardGroupTimeoutsArgs
- 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 shard group using the db_shard_group_identifier
. For example:
$ pulumi import aws:rds/shardGroup:ShardGroup example example-shard-group
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.