interface RdsDbInstanceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpsWorks.CfnStack.RdsDbInstanceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#CfnStack_RdsDbInstanceProperty |
Java | software.amazon.awscdk.services.opsworks.CfnStack.RdsDbInstanceProperty |
Python | aws_cdk.aws_opsworks.CfnStack.RdsDbInstanceProperty |
TypeScript | aws-cdk-lib » aws_opsworks » CfnStack » RdsDbInstanceProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opsworks as opsworks } from 'aws-cdk-lib';
const rdsDbInstanceProperty: opsworks.CfnStack.RdsDbInstanceProperty = {
dbPassword: 'dbPassword',
dbUser: 'dbUser',
rdsDbInstanceArn: 'rdsDbInstanceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | OpsWorks Stacks returns *****FILTERED***** instead of the actual value. |
| db | string | The master user name. |
| rds | string | The instance's ARN. |
dbPassword
Type:
string
OpsWorks Stacks returns *****FILTERED***** instead of the actual value.
dbUser
Type:
string
The master user name.
rdsDbInstanceArn
Type:
string
The instance's ARN.

.NET
Go
Java
Python
TypeScript