RDS is an AWS service that enables you to manage relational databases in the cloud.
The choice of which method is best is yours.
launch the
command and group by engine name to see a list of available database types.
Unfortunately, no way exists to find available instances with PowerShell.
Instead, you’re free to go to theAmazon RDS Instance Types pageto review your options.
It’s now time to create it.
To create a new RDS instance with PowerShell, use theNew-RDSDBInstancecmdlet.
This single cmdlet enables you to pass all of the parameters you oughta create an instance.
When theNew-RDSDBInstancecommand runs, it returns control to the PowerShell console before the instance is created.
To monitor the creation process, you’ve got the option to monitor theDBInstanceStatusproperty returned byGet-RDSDBInstance.
In the following example, PowerShell checks for the status ofavailableevery 30 seconds.
As soon as the instance enters this state, it releases control.