The CDK Construct Library for AWS::Redshift
Project description
Amazon Redshift Construct Library
---All classes with the
Cfn
prefix in this module (CFN Resources) are always stable and safe to use.
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.
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.
By default, the cluster will not be publicly accessible.
Depending on your use case, you can make the cluster publicly accessible with the publiclyAccessible
property.
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
Hashes for aws-cdk.aws-redshift-1.111.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa00d1522f94c63e2ea68b273190572b115f17ae76be9298b6f053a6e026c42a |
|
MD5 | fd3b6532d820f8adbb45c845438f5169 |
|
BLAKE2b-256 | c8f8fdd7f871842172cb7919277069dfa1ff995184d6ccea28e0206c63d85e42 |
Hashes for aws_cdk.aws_redshift-1.111.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dae46df6d8417362c33e6c0e62a975d5146931a1033d2398fb362267dff1ab52 |
|
MD5 | 4974aa7890f343b99deccbb9582e37eb |
|
BLAKE2b-256 | 27be62149ef274fe36e9ee0dcde661ce91c3fc5c9f2a45f63f1db882312cf66b |