Search code examples
amazon-web-servicescmdrds

Rds command line interface API on AWS


I want to run rds in command line mode but i am not able to run it as it is showing me the error !

CMD :

rds-describe-reserved-db-instances-offerings --db-instance-class db.m1.xlarge --duration 3 --marker true --product-description mysql

please help me , I am not able to understand the correct command ..


Solution

  • Try using a space between "rds" and "describe" instead of a dash. So the whole command looks like this (I left out the "marker" - I'm not quite sure how that's meant to be used.)

    Entire command:

    aws rds describe-reserved-db-instances-offerings --db-instance-class db.m1.xlarge --duration 3 --product-description mysql
    

    I'm using the cli version 1.2.12.

    At this point, some valid options for --product-description seem to be:

    mysql                             
    oracle-ee
    oracle-se
    oracle-se1
    postgres                    
    sqlserver-ee
    sqlserver-se
    sqlserver-web