AWS SDK for C++

码农软件 · 软件分类 · 常用工具包 · 2019-08-16 06:57:54

软件介绍

AWS SDK for C++ 是现代化 C++ 接口,有着轻量级的依赖。AWS SDK for C++ 是全功能的,包含低级和高级接口 ,但是有着尽量少的依赖,尽量与平台无关。当前支持 Windows,Linux 和移动平台。

这个 SDK 主要是为游戏开发者设计。

特性

  • 支持 Standard Template Library (STL).

  • 定制内存管理支持

  • 使用和支持 C++ 11 特性

  • 使用 CMake 构建,可以用原生编译器工具链构建

  • 轻量级依赖

  • 异常安全

  • 扩展,可配置日志记录

  • 默认证书供应商

  • 通过 Amazon Cognito Identity 进行认证管理

  • 通过 TransferClient 提供高级 Amazon S3 接口

  • 使用原生 OS APIs 来加密,支持 HTTP

代码示例:

Aws::DynamoDB::DynamoDBClient dynamoDbClient;
PutItemRequest putItemRequest;
putItemRequest.WithTableName("TestTableName");
AttributeValue hashKeyAttribute;
hashKeyAttribute.SetS("SampleHashKeyValue");
putItemRequest.AddItem("HashKey", hashKeyAttribute);
AttributeValue valueAttribute;
valueAttribute.SetS("SampleValue");
putItemRequest.AddItem("Value", valueAttribute);
auto putItemOutcome = dynamoDbClient.PutItem(putItemRequest);
if(putItemOutcome.IsSuccess())
{
    std::cout << "PutItem Success Using IOPS " << putItemOutcome.GetResult().GetConsumedCapacity();
}
else
{
    std::cout << "PutItem failed with error " << putItemOutcome.GetError().GetMessage();

本文地址:https://www.codercto.com/soft/d/12464.html

Computational Geometry

Computational Geometry

Mark de Berg、Otfried Cheong、Marc van Kreveld、Mark Overmars / Springer / 2008-4-16 / USD 49.95

This well-accepted introduction to computational geometry is a textbook for high-level undergraduate and low-level graduate courses. The focus is on algorithms and hence the book is well suited for st......一起来看看 《Computational Geometry》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

MD5 加密
MD5 加密

MD5 加密工具