82 个版本 (38 个稳定版)
新 1.39.0 | 2024年8月16日 |
---|---|
1.36.0 | 2024年7月22日 |
1.18.0 | 2024年3月26日 |
1.9.0 | 2023年12月21日 |
0.0.0 |
|
#2646 in 网络编程
每月522次下载
535KB
8K SLoC
aws-sdk-elasticinference
Elastic Inference 公共API。
2023年2月15日:从2023年4月15日起,AWS将不再为Amazon Elastic Inference(EI)新 onboard 客户,并将协助现有客户将工作负载迁移到提供更好价格和性能的选项。2023年4月15日后,新客户将无法在Amazon SageMaker、Amazon ECS或Amazon EC2中使用Amazon EI加速器启动实例。但是,在过去30天内至少使用过一次Amazon EI的客户被视为现有客户,并将能够继续使用该服务。
入门指南
许多服务和操作都有示例,请查看GitHub 中的示例文件夹。
SDK为每个AWS服务提供了一个crate。您必须在Rust项目中添加Tokio作为依赖项来执行异步代码。要将aws-sdk-elasticinference
添加到项目中,请将以下内容添加到您的Cargo.toml
文件中
[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-elasticinference = "1.39.0"
tokio = { version = "1", features = ["full"] }
然后,在代码中,可以使用以下方式创建客户端
use aws_sdk_elasticinference as elasticinference;
#[::tokio::main]
async fn main() -> Result<(), elasticinference::Error> {
let config = aws_config::load_from_env().await;
let client = aws_sdk_elasticinference::Client::new(&config);
// ... make some calls with the client
Ok(())
}
有关可执行调用及其输入和输出的信息,请参阅客户端文档。
使用SDK
在SDK发布之前,我们将向开发者指南中添加有关使用SDK的信息。您可以通过创建一个issue并描述您想做什么来提出为指南添加额外部分的建议。
获取帮助
- GitHub 讨论区 - 用于想法、RFC和一般问题
- GitHub issues - 用于错误报告与功能请求
- 生成的文档(最新版本)
- 使用示例
许可证
本项目遵循Apache-2.0许可证。
依赖项
~8-20MB
~283K SLoC