AWS Fundamentals Logo
AWS Fundamentals
AWS::RDS::DBShardGroup

RDS DBShardGroup

Creates a new DB shard group for Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group. Valid for: Aurora DB clusters only

Properties

7 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
DBClusterIdentifier
string
RequiredCreate-only
MaxACU
number
Required
ComputeRedundancy
integer
DBShardGroupIdentifier
string
Create-only
MinACU
number
Write-only
PubliclyAccessible
boolean
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
DBShardGroupResourceIdstring-
Endpointstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::RDS::DBShardGroup

Resources:
  MyResource:
    Type: AWS::RDS::DBShardGroup
    Properties:
      DBClusterIdentifier: "my-dbclusteridentifier"
      MaxACU: 1
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

rds:AddTagsToResourcerds:CreateDBShardGrouprds:DescribeDBClustersrds:DescribeDBShardGroupsrds:ListTagsForResource

read

rds:DescribeDBShardGroupsrds:ListTagsForResource

update

rds:AddTagsToResourcerds:DescribeDBShardGroupsrds:DescribeDBClustersrds:RemoveTagsFromResourcerds:ModifyDBShardGrouprds:ListTagsForResource

delete

rds:DeleteDBShardGrouprds:DescribeDBClustersrds:DescribeDbShardGroups

list

rds:DescribeDBShardGroupsrds:ListTagsForResource

Get the RDS Cheat Sheet

Everything you need to know about RDS on one page. HD quality, print-friendly.

Download Free Infographic

Quick Facts

ServiceRDS
Properties9
Required2
TaggingSupported
Primary IDDBShardGroupIdentifier

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DBClusterIdentifierDBShardGroupIdentifierPubliclyAccessible

External Links