-
Notifications
You must be signed in to change notification settings - Fork 3
22._SimpleDB
Ahmad Abdo edited this page Jun 26, 2017
·
1 revision
$ awsm listSimpleDBDomains --help
NAME:
awsm listSimpleDBDomains - List SimpleDB Domains
USAGE:
awsm listSimpleDBDomains [arguments...]
ARGUMENTS:
[search] - The keyword to search for
awsm listSimpleDBDomains
This will list all SimpleDB Domains, the output should look similar to this:
$ awsm listSimpleDBDomains
+------+-----------+
| NAME | REGION |
+------+-----------+
| awsm | us-east-1 |
+------+-----------+
$ 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
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!
$ 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)
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!