The CDK Construct Library for AWS::Redshift
Project description
Amazon Redshift Construct Library
---All classes with the
Cfnprefix in this module (CFN Resources) are always stable and safe to use.
Starting a Redshift Cluster Database
To set up a Redshift cluster, define a Cluster. It will be launched in a VPC.
You can specify a VPC, otherwise one will be created. The nodes are always launched in private subnets and are encrypted by default.
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
import aws_cdk.aws_redshift as redshift
cluster = redshift.Cluster(self, "Redshift",
master_user=Login(
master_username="admin"
),
vpc=vpc
)
By default, the master password will be generated and stored in AWS Secrets Manager.
A default database named default_db will be created in the cluster. To change the name of this database set the defaultDatabaseName attribute in the constructor properties.
Connecting
To control who can access the cluster, use the .connections attribute. Redshift Clusters have
a default port, so you don't need to specify the port:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
cluster.connections.allow_from_any_ipv4("Open to the world")
The endpoint to access your database cluster will be available as the .clusterEndpoint attribute:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
cluster.cluster_endpoint.socket_address
Rotating credentials
When the master password is generated and stored in AWS Secrets Manager, it can be rotated automatically:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
cluster.add_rotation_single_user()
The multi user rotation scheme is also available:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
cluster.add_rotation_multi_user("MyUser",
secret=my_imported_secret
)
This module is part of the AWS Cloud Development Kit project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws-cdk.aws-redshift-1.61.0.tar.gz.
File metadata
- Download URL: aws-cdk.aws-redshift-1.61.0.tar.gz
- Upload date:
- Size: 88.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fc68617ebe3e0ece608a2f52aa43975ac191e70ef041633ced7c76e6c9e7061
|
|
| MD5 |
1285a21f83a3fb1870e6d04c08610342
|
|
| BLAKE2b-256 |
c3df7575038a320e41f5937b58f65f7bc9c7e6d7c217d9b5a50c984c22f22e34
|
File details
Details for the file aws_cdk.aws_redshift-1.61.0-py3-none-any.whl.
File metadata
- Download URL: aws_cdk.aws_redshift-1.61.0-py3-none-any.whl
- Upload date:
- Size: 86.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00b50ff8cc9a34e62253a73ac38578d47279d320cfb0ec5c9a92a6f614ee822c
|
|
| MD5 |
4480c6d5c750e4f981faf8e4641876b9
|
|
| BLAKE2b-256 |
5959b5f01a2ada0b1a95971548f74a9ea148d6f6ee0dbb1d67b0c720ef714636
|