This release is a pre-release and may not be stable for production use.
Amazon Aurora DSQL Construct Library
---The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
Amazon Aurora DSQL is a serverless, distributed relational database service optimized for transactional workloads. Aurora DSQL offers virtually unlimited scale and doesn't require you to manage infrastructure. The active-active highly available architecture provides 99.99% single-Region and 99.999% multi-Region availability.
The @aws-cdk/aws-dsql-alpha package contains primitives for setting up Aurora DSQL clusters.
import aws_cdk.aws_dsql_alpha as dsql
Creating an Aurora DSQL Cluster
To create an Aurora DSQL cluster, define a Cluster:
cluster = dsql.Cluster(self, "Cluster",
cluster_name="my-dsql-cluster",
deletion_protection=True
)
Granting Connect Access
You can grant IAM principals the ability to connect to the cluster:
role = iam.Role(self, "DBRole", assumed_by=iam.AccountPrincipal(self.account))
cluster = dsql.Cluster(self, "Cluster")
# Use one of the following statements to grant the role the necessary permissions
cluster.grant_connect(role) # Grant the role dsql:DbConnect
cluster.grant_connect_admin(role) # Grant the role dsql:DbConnectAdmin
cluster.grant(role, "dsql:DbConnect")
Release files for aws-cdk.aws-dsql-alpha 2.271.0a0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aws_cdk_aws_dsql_alpha-2.271.0a0.tar.gz | 52.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aws_cdk_aws_dsql_alpha-2.271.0a0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 103.2 kB
Release files / aws_cdk_aws_dsql_alpha-2.271.0a0.tar.gz
| Download URL | aws_cdk_aws_dsql_alpha-2.271.0a0.tar.gz |
|---|---|
| Size | 52.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bb801fe3bc6908ee708f68a31eaf702320291149d2857ad3f3a6e713f2b64f82
|
|
BLAKE2b-256 checksum How to use checksums |
3a9484e6057ba7904116b1ef4dddf223d4d9b21d0912cd8a0a93bc0029f73cf1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.15
|
Release files / aws_cdk_aws_dsql_alpha-2.271.0a0-py3-none-any.whl
| Download URL | aws_cdk_aws_dsql_alpha-2.271.0a0-py3-none-any.whl |
|---|---|
| Size | 50.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
814994d3d7b6a947c6495e7c476f231744dce6f99952617ea912377370088524
|
|
BLAKE2b-256 checksum How to use checksums |
5f95c447d734f5a86a8eb8dab6b13d0cb341cc1ba599b58df87fb73b053998ad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.15
|