Skip to content

22._SimpleDB

Ahmad Abdo edited this page Jun 26, 2017 · 1 revision

SimpleDB

listSimpleDBDomains


Usage

$ awsm listSimpleDBDomains --help
NAME:
   awsm listSimpleDBDomains - List SimpleDB Domains

USAGE:
   awsm listSimpleDBDomains [arguments...]

ARGUMENTS:
   [search] - The keyword to search for

Example Output

awsm listSimpleDBDomains

This will list all SimpleDB Domains, the output should look similar to this:

$ awsm listSimpleDBDomains
+------+-----------+
| NAME |  REGION   |
+------+-----------+
| awsm | us-east-1 |
+------+-----------+



createSimpleDBDomain


Usage

$ awsm createSimpleDBDomain --help
Incorrect Usage.

NAME:
   awsm createSimpleDBDomain - Create a SimpleDB Domain

USAGE:
   awsm createSimpleDBDomain [arguments...]

ARGUMENTS:
   domain - The domain of the db
   region - The region of the db

Example Output

awsm createSimpleDBDomain example-domain us-east-1

This will create a new SimpleDB Domain named example-domain in us-east-1, the output should look similar to this:

$ awsm createSimpleDBDomain example-domain us-east-1

△  Creating SimpleDB Domain [example-domain] in [us-east-1]...                                         

✓  Done!                                      



deleteSimpleDBDomains


Usage

$ awsm deleteSimpleDBDomains --help
Incorrect Usage.

NAME:
   awsm deleteSimpleDBDomains - Delete SimpleDB Domains

USAGE:
   awsm deleteSimpleDBDomains [arguments...]

ARGUMENTS:
   search - The search term for simpleDB domain to delete
   [region] - The region of the DBs (optional)

Example Output

awsm deleteSimpleDBDomains example-domain

This will delete all SimpleDB Domains matching the term example-domain, the output should look similar to this:

$ awsm deleteSimpleDBDomains example-domain
+----------------+-----------+
|      NAME      |  REGION   |
+----------------+-----------+
| example-domain | us-east-1 |
+----------------+-----------+

▶  Are you sure you want to delete these SimpleDB Domains?                                             
◀  y

△  Deleted SimpleDB Domain [example-domain] in [us-east-1]!                                            

✓  Done!