interface RotationMultiUserOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Redshift.RotationMultiUserOptions |
![]() | software.amazon.awscdk.services.redshift.RotationMultiUserOptions |
![]() | aws_cdk.aws_redshift.RotationMultiUserOptions |
![]() | @aws-cdk/aws-redshift » RotationMultiUserOptions |
Options to add the multi user rotation.
Example
const user = new User(this, 'User', {
cluster: cluster,
databaseName: 'databaseName',
});
cluster.addRotationMultiUser('MultiUserRotation', {
secret: user.secret,
});
Properties
Name | Type | Description |
---|---|---|
secret | ISecret | The secret to rotate. |
automatically | Duration | Specifies the number of days after the previous rotation before Secrets Manager triggers the next automatic rotation. |
secret
Type:
ISecret
The secret to rotate.
It must be a JSON string with the following format:
{
"engine": <required: database engine>,
"host": <required: instance host name>,
"username": <required: username>,
"password": <required: password>,
"dbname": <optional: database name>,
"port": <optional: if not specified, default port will be used>,
"masterarn": <required: the arn of the master secret which will be used to create users/change passwords>
}
automaticallyAfter?
Type:
Duration
(optional, default: Duration.days(30))
Specifies the number of days after the previous rotation before Secrets Manager triggers the next automatic rotation.