| Interface | Description |
|---|---|
| BackupProps |
(experimental) Backup configuration for DocumentDB databases.
|
| CfnDBClusterParameterGroupProps |
Properties for defining a `AWS::DocDB::DBClusterParameterGroup`.
|
| CfnDBClusterProps |
Properties for defining a `AWS::DocDB::DBCluster`.
|
| CfnDBInstanceProps |
Properties for defining a `AWS::DocDB::DBInstance`.
|
| CfnDBSubnetGroupProps |
Properties for defining a `AWS::DocDB::DBSubnetGroup`.
|
| ClusterParameterGroupProps |
(experimental) Properties for a cluster parameter group.
|
| DatabaseClusterAttributes |
(experimental) Properties that describe an existing cluster instance.
|
| DatabaseClusterProps |
(experimental) Properties for a new database cluster.
|
| DatabaseInstanceAttributes |
(experimental) Properties that describe an existing instance.
|
| DatabaseInstanceProps |
(experimental) Construction properties for a DatabaseInstanceNew.
|
| DatabaseSecretProps |
(experimental) Construction properties for a DatabaseSecret.
|
| IClusterParameterGroup |
(experimental) A parameter group.
|
| IClusterParameterGroup.Jsii$Default |
Internal default implementation for
IClusterParameterGroup. |
| IDatabaseCluster |
(experimental) Create a clustered database with a given number of instances.
|
| IDatabaseCluster.Jsii$Default |
Internal default implementation for
IDatabaseCluster. |
| IDatabaseInstance |
(experimental) A database instance.
|
| IDatabaseInstance.Jsii$Default |
Internal default implementation for
IDatabaseInstance. |
| InstanceProps |
(experimental) Instance properties for database instances.
|
| Login |
(experimental) Login credentials for a database cluster.
|
| RotationMultiUserOptions |
(experimental) Options to add the multi user rotation.
|
---
All classes with the
Cfnprefix 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.
To set up a clustered DocumentDB database, define a DatabaseCluster. You must
always launch a database in a VPC. Use the vpcSubnets attribute to control whether
your instances will be launched privately or publicly:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
Object cluster = DatabaseCluster.Builder.create(this, "Database")
.masterUser(Map.of(
"username", "myuser"))
.instanceProps(Map.of(
"instanceType", ec2.InstanceType.of(ec2.InstanceClass.getR5(), ec2.InstanceSize.getLARGE()),
"vpcSubnets", Map.of(
"subnetType", ec2.SubnetType.getPUBLIC()),
"vpc", vpc))
.build();
By default, the master password will be generated and stored in AWS Secrets Manager with auto-generated description.
Your cluster will be empty by default.
To control who can access the cluster, use the .connections attribute. DocumentDB databases have a default port, so
you don't need to specify the port:
// Example automatically generated. See https://github.com/aws/jsii/issues/826
cluster.connections.allowDefaultPortFromAnyIpv4("Open to the world");
The endpoints to access your database cluster will be available as the .clusterEndpoint and .clusterReadEndpoint
attributes:
// Example automatically generated. See https://github.com/aws/jsii/issues/826 Object writeAddress = 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();
example of setting up master password rotation for a cluster
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));
It's also possible to create user credentials together with the cluster and add rotation:
// Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
Object myUserSecret = DatabaseSecret.Builder.create(this, "MyUserSecret")
.username("myuser")
.masterSecret(cluster.getSecret())
.build();
Object myUserSecretAttached = myUserSecret.attach(cluster);// Adds DB connections information in the secret
cluster.addRotationMultiUser("MyUser", Map.of(// Add rotation using the multi user scheme
"secret", myUserSecretAttached));
Note: This user must be created manually in the database using the master credentials. The rotation will start as soon as this user exists.
See also @aws-cdk/aws-secretsmanager for credentials rotation of existing clusters.
Copyright © 2021. All rights reserved.