@Stability(value=Experimental)
See: Description
| Interface | Description |
|---|---|
| CfnCluster.LoggingPropertiesProperty | |
| CfnClusterParameterGroup.ParameterProperty | |
| CfnClusterParameterGroupProps |
Properties for defining a `AWS::Redshift::ClusterParameterGroup`.
|
| CfnClusterProps |
Properties for defining a `AWS::Redshift::Cluster`.
|
| CfnClusterSecurityGroupIngressProps |
Properties for defining a `AWS::Redshift::ClusterSecurityGroupIngress`.
|
| CfnClusterSecurityGroupProps |
Properties for defining a `AWS::Redshift::ClusterSecurityGroup`.
|
| CfnClusterSubnetGroupProps |
Properties for defining a `AWS::Redshift::ClusterSubnetGroup`.
|
| ClusterAttributes |
(experimental) Properties that describe an existing cluster instance.
|
| ClusterParameterGroupProps |
(experimental) Properties for a parameter group.
|
| ClusterProps |
(experimental) Properties for a new database cluster.
|
| ClusterSubnetGroupProps |
(experimental) Properties for creating a ClusterSubnetGroup.
|
| DatabaseSecretProps |
(experimental) Construction properties for a DatabaseSecret.
|
| ICluster |
(experimental) Create a Redshift Cluster with a given number of nodes.
|
| IClusterParameterGroup |
(experimental) A parameter group.
|
| IClusterSubnetGroup |
(experimental) Interface for a cluster subnet group.
|
| Login |
(experimental) Username and password combination.
|
| RotationMultiUserOptions |
(experimental) Options to add the multi user rotation.
|
| Enum | Description |
|---|---|
| ClusterType |
(experimental) What cluster type to use.
|
| NodeType |
(experimental) Possible Node Types to use in the cluster used for defining
ClusterProps.nodeType. |
---
All classes with the
Cfnprefix in this module (CFN Resources) are always stable and safe to use.
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 software.amazon.awscdk.services.redshift.*;
Cluster cluster = new Cluster(this, "Redshift", new ClusterProps()
.masterUser(new Login()
.masterUsername("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.
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.allowFromAnyIpv4("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.clusterEndpoint.getSocketAddress();
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.addRotationSingleUser();
The multi user rotation scheme is also available:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
cluster.addRotationMultiUser("MyUser", Map.of(
"secret", myImportedSecret));
This module is part of the AWS Cloud Development Kit project.
Copyright © 2020. All rights reserved.