interface DatabaseSecretProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Redshift.Alpha.DatabaseSecretProps |
![]() | github.com/aws/aws-cdk-go/awscdkredshiftalpha/v2#DatabaseSecretProps |
![]() | software.amazon.awscdk.services.redshift.alpha.DatabaseSecretProps |
![]() | aws_cdk.aws_redshift_alpha.DatabaseSecretProps |
![]() | @aws-cdk/aws-redshift-alpha ยป DatabaseSecretProps |
Construction properties for a DatabaseSecret.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as redshift_alpha from '@aws-cdk/aws-redshift-alpha';
import { aws_kms as kms } from 'aws-cdk-lib';
declare const key: kms.Key;
const databaseSecretProps: redshift_alpha.DatabaseSecretProps = {
username: 'username',
// the properties below are optional
encryptionKey: key,
excludeCharacters: 'excludeCharacters',
};
Properties
Name | Type | Description |
---|---|---|
username | string | The username. |
encryption | IKey | The KMS key to use to encrypt the secret. |
exclude | string | Characters to not include in the generated password. |
username
Type:
string
The username.
encryptionKey?
Type:
IKey
(optional, default: default master key)
The KMS key to use to encrypt the secret.
excludeCharacters?
Type:
string
(optional, default: '"@/\\ '')
Characters to not include in the generated password.