Kaholo Plugin for running scripts and queries on AWS DynamoDB servers.
- Access Key (Vault) Required if not in method - The default access key to use when connecting to the DynamoDB server. Can be in this format
accessKeyId=myAccessKey
. - Secret Key (Vault) Required if not in method - The default secret access key to use when connecting to the DynamoDB server. Can be in this format
secretAccessKey=mySecretAccessKey
. - Region (Autocomplete) Required - The region used to make the request on AWS. Can be in this format
Region=myRegion
.
This method creates a table in DynamoDB. You can see more about creating tables here.
-
Access Key (Vault) Required if not in method - The default access key to use when connecting to the DynamoDB server.
-
Secret Key (Vault) Required if not in method - The default secret access key to use when connecting to the DynamoDB server.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Text) Required - The name of the table to be created on the DynamoDB database.
-
Table Schema (Text) Required - The table schema to give parameters in a standard manner defined by DynamoDB to perform operation. Should be in this format
[{‘AttributeName’:‘Season’,‘AttributeType’:‘Season’,‘KeyType’:‘Hash’,}]
This method deletes a table in DynamoDB. You can see more about deleting tables here.
-
Access Key (Vault) Required if not in method - The default access key to use when connecting to the DynamoDB server.
-
Secret Key (Vault) Required if not in method - The default secret access key to use when connecting to the DynamoDB server.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Text) Required - The name of the table to be deleted on the DynamoDB database.
This method updates a table in DynamoDB. You can see more about updating tables here.
-
Access Key (Vault) Required if not in method - The default access key to use when connecting to the DynamoDB server.
-
Secret Key (Vault) Required if not in method - The default secret access key to use when connecting to the DynamoDB server.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Text) Required - The name of the table to be updated on the DynamoDB database.
-
Update Params (String) Required - The parameters of the table to be updated.
This method lists all tables in DynamoDB. You can see more about listing tables here.
- Access Key (Vault) Required if not in method - The default access key to use when connecting to the DynamoDB server.
- Limit (String) Required - Sets the limit of outputs to return.
This method describes a specified table in DynamoDB. You can see more about describing tables here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to be described on the DynamoDB database.
This method creates a back up for an existing table in DynamoDB. You can see more about creating back ups here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to be backed up on the DynamoDB database.
-
Back Up Name (String) Required - The name of the back up to be created in DynamoDB.
This method deletes an existing back up in DynamoDB. You can see more about deleting back ups here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Back Up Name (String) Required - The name of back up to delete in DynamoDB.
This method creates an item in an existing table in DynamoDB using the AWS management console. You can learn more about working with items here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to put the item on.
-
Item Data To Put On (String) Required - The item data to put on an existing table in DynamoDB.
This method puts multiple items on an existing table at once. You can learn more about working with items here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to put multiple items on.
-
Items (String) Required - Data having more then one item to put on an existing table in DynamoDB. Enter the items in JSON format separated by ','.
This method is used to read an item from an existing table in DynamoDB. You can learn more about working with items here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to get the item from.
-
Key (Text) Required - The Key is a map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.
-
Projection Expression (Text) Required - Projection Expression is used to identify one or more attributes to retrieve from the table.
This method is used to read multiple items on an existing table in DynamoDB. You can learn more about working with items here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to get multiple items from.
-
Key (Text) Required - The Key is a map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.
-
Projection Expression (Text) Required - Projection Expression is used to identify one or more attributes to retrieve from the table.
This method is used to update an item on an existing table in DynamoDB. You can learn more about working with items here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to update the item from.
-
Key (Text) Required - The Key is a map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.
-
Expression Attribute Values (String) Required - The values of expression attribute. Can be in this format
{‘:t’:{‘S’:‘Season’},‘:y’:{‘N’,‘2015’}}
-
Expression Attribute Names (String) Required - Names of expression attribute. Can be in this format
{‘#AT’:‘AlbumTitle’,‘#y’:‘Year’}
-
Set Expression (String) Required - This parameter is used to set the expression. Can be in this format
‘‘ #Y = :y, #AT = :t”
This method is used to delete an item on an existing table in connected DynamoDB. You can learn more about working with items here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Text) Required - The name of the table to delete the item from.
-
Key (Autocomplete) Required - The Key is a map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve.
This method is used to query in DynamoDB. You can learn more about working with queries here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to do query operations on.
-
- Expression Attribute Values (String) Required - The values of expression attribute.
Can be in this format
{‘:t’:{‘S’:‘Season’},‘:y’:{‘N’,‘2015’}}
- Expression Attribute Values (String) Required - The values of expression attribute.
Can be in this format
-
Projection Expression (Text) Required - Projection Expression is used to identify one or more attributes to retrieve from the table.
This method is used to scan a table in DynamoDB. You can learn more about working with scans here.
-
Region (Autocomplete) Required - The region used to make the request on AWS.
-
Table Name (Autocomplete) Required - The name of the table to be scanned.
-
Projection Expression (Text) Required - Projection Expression is used to identify one or more attributes to retrieve from the table.