I am attempting to create an AWS RDS database. Any engine would be OK.
rdsClient = new Amazon.RDS.AmazonRDSClient(<aws_credentials>, <some_region>);
try
{
rdsClient.CreateDBInstance(new CreateDBInstanceRequest(identifier, allocatedStorage, instanceSize, engine, username, password));
MessageBox.Show(String.Format("{0} was succesfully created!", identifier));
}
catch (AmazonRDSException ex)
{
MessageBox.Show(ex.Message);
}
So I am loading my credentials into an RDS Client and attempting to create a database. This works fine except I cannot specify a database version. Is there any alternative way of creating a database or specifying a version?