I wrote a CloudFormation template which creates a Postgres instance and restores data from a previously backed up DB instance snapshot.
I want to enable the user which is going to work with this template the option of selecting the rds instance snapshots from a drop-down menu.
RDS instance snapshots are not in the list of AWS Specific Parameter Types, so there's no way to have an automatic dropdown.
You can however list the possible values in the template as AllowedValues
, but this will obviously not update automatically.