フィルターのクリア

How can I access AWS DynomoDB from Matlab

5 ビュー (過去 30 日間)
Georgios Pipelidis
Georgios Pipelidis 2018 年 12 月 10 日
回答済み: Yuval Zukerman 2019 年 8 月 30 日
Is there a way to access DynamoDB database immediately from Matlab?
  1 件のコメント
Helper
Helper 2018 年 12 月 12 日
There is no specific DynamoDB interface in MATLAB or any of our toolboxes. So, if you would like to interact with DynamoDB from MATLAB, we basically need to look at which external interfaces both offer and whether there is any overlap. MATLAB's external interfaces are documented here:
You may access the same page locally by typing the following at the MATLAB prompt:
web([docroot, '/matlab/calling-external-functions.html'])
And, also important here:
You may access the same page locally by typing the following at the MATLAB prompt:
web([docroot, '/matlab/calling-web-services.html'])
DynamoDB has the following SDKs:
As well as the low-level API:
Giving the following possibilities:
1. You should be able to use MATLAB's Interface to Java to work with the Java SDK provided by Amazon.
2. Similarly on Windows you may be able to work with the .NET SDK and MATLAB's interface to .NET.
3. The low-level API should be accessible through MATLAB's web interfaces, I am not entirely sure whether you can use higher level functions like "webread"/"webwrite" here or whether you would really need the lower level HTTP Interface; this really depends on the exact HTTP requests which you may need to build.
Unfortunately, we do not immediately have any examples available for any of these options.

サインインしてコメントする。

回答 (1 件)

Yuval Zukerman
Yuval Zukerman 2019 年 8 月 30 日
In case you are looking for an answer to the same question, a MATLAB interface for AWS DynamoDB is now available to download from Github.

カテゴリ

Help Center および File ExchangeInstallation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by