Setting up Command Line Interface
This doc explains how to set up the command line interface for following services:
Setting up AWS Command Line and Dynamo-db
To set up the AWS Command Line Interface and Dynamo-db, follow these steps.
- Download and install AWS CLI.
- From the installed location, to configure AWS for general purpose, provide the Access Key ID, Secret Access Key, Region, and Output Format.
For example,
$ aws configure AWS Access Key ID [None] : <aws-access-key> AWS Secret Access Key [None] : <aws-secret-key> Default region name [one] : us-west-2 Default output format [None] :
The configuration details are stored in the
config & credentialsfile in the USERS directory. - Download and install dynamo-db.
- From the installed location, to launch dynamo-db, execute the following command, -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb.
- After executing the mentioned command, you should be able to access dynamo-db from the AWS Command Line Interface.
For example, aws dynamodb list-tables and aws dynamodb scan --table-name example-table-name.
Setting Up Azure Command Line
To set up the Azure Command Line Interface, follow these steps.
- Download and install Azure CLI.
- After successful installation, sign in to the Azure portal by using the following command:
C:\>az login -u <username> -p <password>
In this topic