How to Interact with AWS (Amazon Web Services) cloud from your local machine. More specifically using python IDE to handle easily. Here I have explained how to connect local machine to create, access your DynamoDB
table
What is DynamoDB ?
DynamoDB works and managed by NoSQL. Using DynamoDB we can
create table and retrieve the data from table any amount of data. As it doesn’t depend on server, hardware so dependency system/server hardware so, more reliable.
This post basically how to interact or set up access from
your local system to AWS account to create, manage, and get table information from AWS in very simple way like without installing any additional things. Here I have shown for windows operating system.
Pre-requisites:-
Step 1:
Step 2: Copy and save at secret folder it is user identity which identifies the user uniquely.
Now we have done for credential part, now few essential thing we need to done at AWS console side.
Step 3:
Now to program AWS console from your laptop we need to configure few thing which are explained as below:-
As far as we hit the enter it will give prompt to put access key, secret key, region name & output format.
Step 4:
Till this steps our machine has ready to interact with AWS.
Now we need to deal with programming part here we will us python as programming language to perform read , write and related operation.
Here I am creating table a table name ‘testuser’ into dynamodb
database which has few attributes like first name and last name of some
students. Both attributes are string type. Please the below code
Output:
So, We have integrated our machine with AWS and we can create and manage table from our laptop. Please me know if any query at any step i would be happy to help......Thanks for Reading...