https://github.com/awslabs/aws-sdk-rust
AWS SDK for the Rust Programming Language
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 67 committers (1.5%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.3%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
AWS SDK for the Rust Programming Language
Basic Info
- Host: GitHub
- Owner: awslabs
- License: apache-2.0
- Language: Rust
- Default Branch: main
- Homepage: https://awslabs.github.io/aws-sdk-rust/
- Size: 2.33 GB
Statistics
- Stars: 3,209
- Watchers: 45
- Forks: 267
- Open Issues: 145
- Releases: 510
Topics
Metadata Files
README.md
The AWS SDK for Rust

This repo contains the AWS SDK for Rust and its public roadmap.
The SDK is code generated from Smithy models that represent each AWS service. The code used to generate the SDK can be found in smithy-rs.
Getting Started with the SDK
Examples are available for many services and operations, check out the examples folder.
For a step-by-step guide including several advanced use cases, check out the Developer Guide.
The SDK provides one crate per AWS service. You must add Tokio as a dependency within your Rust project to execute asynchronous code.
- Create a new Rust project:
cargo new sdk-example Add dependencies to DynamoDB and Tokio to your Cargo.toml file:
toml [dependencies] aws-config = { version= "1.8.6", features = ["behavior-version-latest"] } aws-sdk-dynamodb = "1.92.0" tokio = { version = "1", features = ["full"] }Provide your AWS credentials with the default credential provider chain, which currently looks in:
- Environment variables:
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY, andAWS_REGION - The default credentials files located in
~/.aws/configand~/.aws/credentials(location can vary per platform) - Web Identity Token credentials from the environment or container (including EKS)
- ECS Container Credentials (IAM roles for tasks)
- EC2 Instance Metadata Service (IAM Roles attached to instance)
- Environment variables:
Make a request using DynamoDB
```rust use awssdkdynamodb::{Client, Error};
[tokio::main]
async fn main() -> Result<(), Error> { let sharedconfig = awsconfig::loadfromenv().await; let client = Client::new(&sharedconfig); let req = client.listtables().limit(10); let resp = req.send().await?; println!("Current DynamoDB tables: {:?}", resp.table_names); Ok(()) } ```
Prerequisites
In order to use the SDK, you must already have Rust and Cargo installed. If you don't, these instructions describe how to install Rust and Cargo.
Using the SDK
Detailed usage instructions are available in the Developer Guide. Suggestions for additional sections or improvements for the guide are welcome. Please open an issue describing what you are trying to do.
Getting Help
- Developer Guide
- GitHub discussions - For ideas, RFCs & general questions
- GitHub issues For bug reports & feature requests
- Generated Docs (latest version)
- Usage examples
Feedback and Contributing
Feedback
The SDK uses GitHub Issues to track feature requests and issues with the SDK. In addition, we use GitHub Projects to provide users with a high level view of our roadmap and the features we're actively working on.
You can provide feedback or report a bug by submitting a GitHub issue. This is the preferred mechanism to give feedback so that other users can engage in the conversation, +1 issues, etc. Issues you open will be evaluated for our roadmap.
Contributing
If you are interested in contributing to the SDK, please take a look at CONTRIBUTING
Supported Rust Versions (MSRV)
The SDK currently requires a minimum of Rust 1.86.0, and is not guaranteed to build on compiler versions earlier than that. We keep the minimum compiler version two releases behind the latest stable release where possible (so if the latest stable were 1.55, we would support 1.53). Increases in minimum required Rust version will be called out in the Release Notes for new releases of the SDK.
Additional Resources
- Design docs - Design documentation for the SDK lives in the design folder of smithy-rs.
- Runtime / Handwritten code: The Rust Runtime code that underpins the SDK can be accessed here and here. This code is copied into this repo as part of code generation.
- Code Examples
- API reference documentation (rustdoc)
Security
See CONTRIBUTING for more information.
License
This project is licensed under the Apache-2.0 License.
Owner
- Name: Amazon Web Services - Labs
- Login: awslabs
- Kind: organization
- Location: Seattle, WA
- Website: http://amazon.com/aws/
- Repositories: 914
- Profile: https://github.com/awslabs
AWS Labs
Committers
Last synced: 5 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| AWS SDK Rust Bot | a****y@a****m | 1,137 |
| John DiSanti | j****i@a****m | 294 |
| Russell Cohen | r****h@a****m | 179 |
| Zelda Hessler | z****r@a****m | 123 |
| ysaito1001 | g****2@g****m | 91 |
| vishaalt | 7****t | 87 |
| david-perez | d@v****v | 83 |
| Luca Palmieri | 2****r | 52 |
| 82marbag | 6****g | 32 |
| Harry Barber | 1****r | 28 |
| Matteo Bigoi | 1****v | 17 |
| Julian Antonielli | j****i@g****m | 16 |
| Landon James | l****j@a****m | 12 |
| Aaron Todd | a****d | 11 |
| Burak | u****e@g****m | 9 |
| Joseph Klix | j****l@a****m | 7 |
| Guy Margalit | g****m@g****m | 7 |
| Doug | d****h@a****m | 6 |
| Thomas Cameron | 6****n | 5 |
| Weihang Lo | w****o | 4 |
| Eduardo de Moura Rodrigues | 1****r | 3 |
| Fahad Zubair | f****r@g****m | 2 |
| Henrik Sjööh | h****k@g****m | 2 |
| Josh Triplett | j****h@j****g | 2 |
| Nugine | n****e@f****m | 2 |
| Kevin Park | k****7@g****m | 2 |
| Alberto Pose | a****e@g****m | 2 |
| Jon Gjengset | j****e@a****m | 2 |
| Fahad Zubair | f****b@a****m | 1 |
| alonlud | a****n@s****m | 1 |
| and 37 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 5 months ago
All Time
- Total issues: 435
- Total pull requests: 181
- Average time to close issues: 5 months
- Average time to close pull requests: 4 days
- Total issue authors: 294
- Total pull request authors: 20
- Average comments per issue: 3.8
- Average comments per pull request: 0.24
- Merged pull requests: 131
- Bot issues: 0
- Bot pull requests: 11
Past Year
- Issues: 89
- Pull requests: 65
- Average time to close issues: 11 days
- Average time to close pull requests: about 24 hours
- Issue authors: 75
- Pull request authors: 6
- Average comments per issue: 1.69
- Average comments per pull request: 0.17
- Merged pull requests: 41
- Bot issues: 0
- Bot pull requests: 10
Top Authors
Issue Authors
- rcoh (21)
- jdisanti (16)
- lcmgh (10)
- ysaito1001 (6)
- trevorstr (6)
- aajtodd (6)
- Velfi (5)
- benesch (4)
- ctron (4)
- joshtriplett (4)
- Veetaha (4)
- declanvk (4)
- MathieuDuponchelle (4)
- mattklein123 (4)
- simbleau (3)
Pull Request Authors
- ysaito1001 (53)
- rcoh (31)
- Velfi (21)
- landonxjames (21)
- aajtodd (13)
- dependabot[bot] (11)
- jdisanti (11)
- exoego (2)
- Ten0 (2)
- ashishdhingra (2)
- orf (2)
- vannsoklay (2)
- Pr0methean (2)
- kellertk (2)
- jmklix (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 100
-
Total downloads:
- cargo 58,731,092 total
- Total docker downloads: 172,433,978
-
Total dependent packages: 66
(may contain duplicates) -
Total dependent repositories: 621
(may contain duplicates) - Total versions: 11,950
- Total maintainers: 1
crates.io: aws-sdk-sqs
AWS SDK for Amazon Simple Queue Service
- Documentation: https://docs.rs/aws-sdk-sqs/
- License: Apache-2.0
-
Latest release: 1.82.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-lambda
AWS SDK for AWS Lambda
- Documentation: https://docs.rs/aws-sdk-lambda/
- License: Apache-2.0
-
Latest release: 1.96.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-secretsmanager
AWS SDK for AWS Secrets Manager
- Documentation: https://docs.rs/aws-sdk-secretsmanager/
- License: Apache-2.0
-
Latest release: 1.87.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-ebs
AWS SDK for Amazon Elastic Block Store
- Documentation: https://docs.rs/aws-sdk-ebs/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-rds
AWS SDK for Amazon Relational Database Service
- Documentation: https://docs.rs/aws-sdk-rds/
- License: Apache-2.0
-
Latest release: 1.105.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-sns
AWS SDK for Amazon Simple Notification Service
- Documentation: https://docs.rs/aws-sdk-sns/
- License: Apache-2.0
-
Latest release: 1.81.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-transcribestreaming
AWS SDK for Amazon Transcribe Streaming Service
- Documentation: https://docs.rs/aws-sdk-transcribestreaming/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-eks
AWS SDK for Amazon Elastic Kubernetes Service
- Documentation: https://docs.rs/aws-sdk-eks/
- License: Apache-2.0
-
Latest release: 1.106.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-ssooidc
AWS SDK for AWS SSO OIDC
- Documentation: https://docs.rs/aws-sdk-ssooidc/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-kinesis
AWS SDK for Amazon Kinesis
- Documentation: https://docs.rs/aws-sdk-kinesis/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-sfn
AWS SDK for AWS Step Functions
- Documentation: https://docs.rs/aws-sdk-sfn/
- License: Apache-2.0
-
Latest release: 1.87.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-firehose
AWS SDK for Amazon Kinesis Firehose
- Documentation: https://docs.rs/aws-sdk-firehose/
- License: Apache-2.0
-
Latest release: 1.91.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-account
AWS SDK for AWS Account
- Documentation: https://docs.rs/aws-sdk-account/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-acm
AWS SDK for AWS Certificate Manager
- Documentation: https://docs.rs/aws-sdk-acm/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-organizations
AWS SDK for AWS Organizations
- Documentation: https://docs.rs/aws-sdk-organizations/
- License: Apache-2.0
-
Latest release: 1.92.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-imagebuilder
AWS SDK for EC2 Image Builder
- Documentation: https://docs.rs/aws-sdk-imagebuilder/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-quicksight
AWS SDK for Amazon QuickSight
- Documentation: https://docs.rs/aws-sdk-quicksight/
- License: Apache-2.0
-
Latest release: 1.104.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-ec2instanceconnect
AWS SDK for AWS EC2 Instance Connect
- Documentation: https://docs.rs/aws-sdk-ec2instanceconnect/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-resourcegroupstagging
AWS SDK for AWS Resource Groups Tagging API
- Documentation: https://docs.rs/aws-sdk-resourcegroupstagging/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-appsync
AWS SDK for AWS AppSync
- Documentation: https://docs.rs/aws-sdk-appsync/
- License: Apache-2.0
-
Latest release: 1.96.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workmailmessageflow
AWS SDK for Amazon WorkMail Message Flow
- Documentation: https://docs.rs/aws-sdk-workmailmessageflow/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-lightsail
AWS SDK for Amazon Lightsail
- Documentation: https://docs.rs/aws-sdk-lightsail/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-forecast
AWS SDK for Amazon Forecast Service
- Documentation: https://docs.rs/aws-sdk-forecast/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-codestarconnections
AWS SDK for AWS CodeStar connections
- Documentation: https://docs.rs/aws-sdk-codestarconnections/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-fms
AWS SDK for Firewall Management Service
- Documentation: https://docs.rs/aws-sdk-fms/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-appmesh
AWS SDK for AWS App Mesh
- Documentation: https://docs.rs/aws-sdk-appmesh/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-marketplacecatalog
AWS SDK for AWS Marketplace Catalog Service
- Documentation: https://docs.rs/aws-sdk-marketplacecatalog/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-lookoutvision
AWS SDK for Amazon Lookout for Vision
- Documentation: https://docs.rs/aws-sdk-lookoutvision/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-mwaa
AWS SDK for AmazonMWAA
- Documentation: https://docs.rs/aws-sdk-mwaa/
- License: Apache-2.0
-
Latest release: 1.89.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-appstream
AWS SDK for Amazon AppStream
- Documentation: https://docs.rs/aws-sdk-appstream/
- License: Apache-2.0
-
Latest release: 1.89.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-codepipeline
AWS SDK for AWS CodePipeline
- Documentation: https://docs.rs/aws-sdk-codepipeline/
- License: Apache-2.0
-
Latest release: 1.93.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-applicationinsights
AWS SDK for Amazon CloudWatch Application Insights
- Documentation: https://docs.rs/aws-sdk-applicationinsights/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workmail
AWS SDK for Amazon WorkMail
- Documentation: https://docs.rs/aws-sdk-workmail/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-fis
AWS SDK for AWS Fault Injection Simulator
- Documentation: https://docs.rs/aws-sdk-fis/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-accessanalyzer
AWS SDK for Access Analyzer
- Documentation: https://docs.rs/aws-sdk-accessanalyzer/
- License: Apache-2.0
-
Latest release: 1.90.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-applicationcostprofiler
AWS SDK for AWS Application Cost Profiler
- Documentation: https://docs.rs/aws-sdk-applicationcostprofiler/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-servicediscovery
AWS SDK for AWS Cloud Map
- Documentation: https://docs.rs/aws-sdk-servicediscovery/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-route53recoveryreadiness
AWS SDK for AWS Route53 Recovery Readiness
- Documentation: https://docs.rs/aws-sdk-route53recoveryreadiness/
- License: Apache-2.0
-
Latest release: 1.78.0
published 7 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-servicecatalog
AWS SDK for AWS Service Catalog
- Documentation: https://docs.rs/aws-sdk-servicecatalog/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-mq
AWS SDK for AmazonMQ
- Documentation: https://docs.rs/aws-sdk-mq/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-wellarchitected
AWS SDK for AWS Well-Architected Tool
- Documentation: https://docs.rs/aws-sdk-wellarchitected/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-codestar
AWS SDK for AWS CodeStar
- Documentation: https://docs.rs/aws-sdk-codestar/
- License: Apache-2.0
-
Latest release: 1.39.0
published over 1 year ago
Rankings
Maintainers (1)
crates.io: aws-sdk-inspector
AWS SDK for Amazon Inspector
- Documentation: https://docs.rs/aws-sdk-inspector/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-snowball
AWS SDK for Amazon Import/Export Snowball
- Documentation: https://docs.rs/aws-sdk-snowball/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-finspacedata
AWS SDK for FinSpace Public API
- Documentation: https://docs.rs/aws-sdk-finspacedata/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-migrationhubconfig
AWS SDK for AWS Migration Hub Config
- Documentation: https://docs.rs/aws-sdk-migrationhubconfig/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-synthetics
AWS SDK for Synthetics
- Documentation: https://docs.rs/aws-sdk-synthetics/
- License: Apache-2.0
-
Latest release: 1.91.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-applicationdiscovery
AWS SDK for AWS Application Discovery Service
- Documentation: https://docs.rs/aws-sdk-applicationdiscovery/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workspaces
AWS SDK for Amazon WorkSpaces
- Documentation: https://docs.rs/aws-sdk-workspaces/
- License: Apache-2.0
-
Latest release: 1.98.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-pi
AWS SDK for AWS Performance Insights
- Documentation: https://docs.rs/aws-sdk-pi/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-sagemaker
AWS SDK for Amazon SageMaker Service
- Documentation: https://docs.rs/aws-sdk-sagemaker/
- License: Apache-2.0
-
Latest release: 1.155.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workdocs
AWS SDK for Amazon WorkDocs
- Documentation: https://docs.rs/aws-sdk-workdocs/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-appintegrations
AWS SDK for Amazon AppIntegrations Service
- Documentation: https://docs.rs/aws-sdk-appintegrations/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-servicecatalogappregistry
AWS SDK for AWS Service Catalog App Registry
- Documentation: https://docs.rs/aws-sdk-servicecatalogappregistry/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-forecastquery
AWS SDK for Amazon Forecast Query Service
- Documentation: https://docs.rs/aws-sdk-forecastquery/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-iotdeviceadvisor
AWS SDK for AWS IoT Core Device Advisor
- Documentation: https://docs.rs/aws-sdk-iotdeviceadvisor/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-elastictranscoder
AWS SDK for Amazon Elastic Transcoder
- Documentation: https://docs.rs/aws-sdk-elastictranscoder/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-dlm
AWS SDK for Amazon Data Lifecycle Manager
- Documentation: https://docs.rs/aws-sdk-dlm/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-kinesisvideomedia
AWS SDK for Amazon Kinesis Video Streams Media
- Documentation: https://docs.rs/aws-sdk-kinesisvideomedia/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-lexruntime
AWS SDK for Amazon Lex Runtime Service
- Documentation: https://docs.rs/aws-sdk-lexruntime/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-kinesisanalytics
AWS SDK for Amazon Kinesis Analytics
- Documentation: https://docs.rs/aws-sdk-kinesisanalytics/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-frauddetector
AWS SDK for Amazon Fraud Detector
- Documentation: https://docs.rs/aws-sdk-frauddetector/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-iot1clickprojects
AWS SDK for AWS IoT 1-Click Projects Service
- Documentation: https://docs.rs/aws-sdk-iot1clickprojects/
- License: Apache-2.0
-
Latest release: 1.53.0
published about 1 year ago
Rankings
Maintainers (1)
crates.io: aws-sdk-kafkaconnect
AWS SDK for Managed Streaming for Kafka Connect
- Documentation: https://docs.rs/aws-sdk-kafkaconnect/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-route53recoverycontrolconfig
AWS SDK for AWS Route53 Recovery Control Config
- Documentation: https://docs.rs/aws-sdk-route53recoverycontrolconfig/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-panorama
AWS SDK for AWS Panorama
- Documentation: https://docs.rs/aws-sdk-panorama/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workspacesweb
AWS SDK for Amazon WorkSpaces Web
- Documentation: https://docs.rs/aws-sdk-workspacesweb/
- License: Apache-2.0
-
Latest release: 1.89.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-migrationhubrefactorspaces
AWS SDK for AWS Migration Hub Refactor Spaces
- Documentation: https://docs.rs/aws-sdk-migrationhubrefactorspaces/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-rum
AWS SDK for CloudWatch RUM
- Documentation: https://docs.rs/aws-sdk-rum/
- License: Apache-2.0
-
Latest release: 1.85.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-resiliencehub
AWS SDK for AWS Resilience Hub
- Documentation: https://docs.rs/aws-sdk-resiliencehub/
- License: Apache-2.0
-
Latest release: 1.87.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-chimesdkmeetings
AWS SDK for Amazon Chime SDK Meetings
- Documentation: https://docs.rs/aws-sdk-chimesdkmeetings/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-keyspaces
AWS SDK for Amazon Keyspaces
- Documentation: https://docs.rs/aws-sdk-keyspaces/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-m2
AWS SDK for AWSMainframeModernization
- Documentation: https://docs.rs/aws-sdk-m2/
- License: Apache-2.0
-
Latest release: 1.87.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-licensemanagerusersubscriptions
AWS SDK for AWS License Manager User Subscriptions
- Documentation: https://docs.rs/aws-sdk-licensemanagerusersubscriptions/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-oam
AWS SDK for CloudWatch Observability Access Manager
- Documentation: https://docs.rs/aws-sdk-oam/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-securitylake
AWS SDK for Amazon Security Lake
- Documentation: https://docs.rs/aws-sdk-securitylake/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-connectcampaignsv2
AWS SDK for AmazonConnectCampaignServiceV2
- Documentation: https://docs.rs/aws-sdk-connectcampaignsv2/
- License: Apache-2.0
-
Latest release: 1.35.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-billing
AWS SDK for AWS Billing
- Documentation: https://docs.rs/aws-sdk-billing/
- License: Apache-2.0
-
Latest release: 1.36.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-resourceexplorer2
AWS SDK for AWS Resource Explorer
- Documentation: https://docs.rs/aws-sdk-resourceexplorer2/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-licensemanagerlinuxsubscriptions
AWS SDK for AWS License Manager Linux Subscriptions
- Documentation: https://docs.rs/aws-sdk-licensemanagerlinuxsubscriptions/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-codegurusecurity
AWS SDK for Amazon CodeGuru Security
- Documentation: https://docs.rs/aws-sdk-codegurusecurity/
- License: Apache-2.0
-
Latest release: 1.83.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-entityresolution
AWS SDK for AWS EntityResolution
- Documentation: https://docs.rs/aws-sdk-entityresolution/
- License: Apache-2.0
-
Latest release: 1.91.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-osis
AWS SDK for Amazon OpenSearch Ingestion
- Documentation: https://docs.rs/aws-sdk-osis/
- License: Apache-2.0
-
Latest release: 1.86.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-neptunedata
AWS SDK for Amazon NeptuneData
- Documentation: https://docs.rs/aws-sdk-neptunedata/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-arczonalshift
AWS SDK for AWS ARC - Zonal Shift
- Documentation: https://docs.rs/aws-sdk-arczonalshift/
- License: Apache-2.0
-
Latest release: 1.87.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-tnb
AWS SDK for AWS Telco Network Builder
- Documentation: https://docs.rs/aws-sdk-tnb/
- License: Apache-2.0
-
Latest release: 1.84.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-bedrockagent
AWS SDK for Agents for Amazon Bedrock
- Documentation: https://docs.rs/aws-sdk-bedrockagent/
- License: Apache-2.0
-
Latest release: 1.113.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-repostspace
AWS SDK for AWS re:Post Private
- Documentation: https://docs.rs/aws-sdk-repostspace/
- License: Apache-2.0
-
Latest release: 1.82.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workspacesinstances
AWS SDK for Amazon Workspaces Instances
- Documentation: https://docs.rs/aws-sdk-workspacesinstances/
- License: Apache-2.0
-
Latest release: 1.10.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-securityir
AWS SDK for Security Incident Response
- Documentation: https://docs.rs/aws-sdk-securityir/
- License: Apache-2.0
-
Latest release: 1.36.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-notificationscontacts
AWS SDK for AWS User Notifications Contacts
- Documentation: https://docs.rs/aws-sdk-notificationscontacts/
- License: Apache-2.0
-
Latest release: 1.34.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-partnercentralselling
AWS SDK for Partner Central Selling API
- Documentation: https://docs.rs/aws-sdk-partnercentralselling/
- License: Apache-2.0
-
Latest release: 1.37.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-pcaconnectorscep
AWS SDK for Private CA Connector for SCEP
- Documentation: https://docs.rs/aws-sdk-pcaconnectorscep/
- License: Apache-2.0
-
Latest release: 1.53.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-applicationsignals
AWS SDK for Amazon CloudWatch Application Signals
- Documentation: https://docs.rs/aws-sdk-applicationsignals/
- License: Apache-2.0
-
Latest release: 1.59.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-paymentcryptographydata
AWS SDK for Payment Cryptography Data Plane
- Documentation: https://docs.rs/aws-sdk-paymentcryptographydata/
- License: Apache-2.0
-
Latest release: 1.88.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-paymentcryptography
AWS SDK for Payment Cryptography Control Plane
- Documentation: https://docs.rs/aws-sdk-paymentcryptography/
- License: Apache-2.0
-
Latest release: 1.89.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-supplychain
AWS SDK for AWS Supply Chain
- Documentation: https://docs.rs/aws-sdk-supplychain/
- License: Apache-2.0
-
Latest release: 1.78.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-workspacesthinclient
AWS SDK for Amazon WorkSpaces Thin Client
- Documentation: https://docs.rs/aws-sdk-workspacesthinclient/
- License: Apache-2.0
-
Latest release: 1.89.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-cloudfrontkeyvaluestore
AWS SDK for Amazon CloudFront KeyValueStore
- Documentation: https://docs.rs/aws-sdk-cloudfrontkeyvaluestore/
- License: Apache-2.0
-
Latest release: 1.82.0
published 6 months ago
Rankings
Maintainers (1)
crates.io: aws-sdk-inspectorscan
AWS SDK for Inspector Scan
- Documentation: https://docs.rs/aws-sdk-inspectorscan/
- License: Apache-2.0
-
Latest release: 1.77.0
published 7 months ago
Rankings
Maintainers (1)
Dependencies
- actions/checkout v3 composite
- dtolnay/rust-toolchain master composite
- actions/checkout v3 composite
- aws-actions/configure-aws-credentials v4 composite
- dtolnay/rust-toolchain master composite
- Swatinem/rust-cache b894d59a8d236e2979b247b80dac8d053ab340dd composite
- actions/checkout v3 composite
- dtolnay/rust-toolchain master composite
- re-actors/alls-green 05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe composite
- aws-actions/closed-issue-message v1 composite
- aws-github-ops/handle-stale-discussions v1 composite
- aws-actions/stale-issue-cleanup v3 composite
- aws-smithy-runtime 1.1.2 development
- fake 2.5.0 development
- once_cell 1.15.0 development
- rand 0.8.5 development
- wiremock 0.5.15 development
- actix-web 4
- actix-web-prom 0.6.0
- aws-config 1.1.2
- aws-sdk-cloudwatchlogs 1.11.0
- aws-sdk-rdsdata 1.10.0
- aws-sdk-ses 1.10.0
- aws-smithy-runtime 1.1.2
- aws-smithy-types 1.1.2
- chrono 0.4.22
- color-eyre 0.6.2
- config 0.13.2
- derive_more 0.99.17
- futures 0.3.24
- http 0.2.8
- mail-builder 0.2.5
- reqwest 0.11.12
- sdk-examples-test-utils 0.1.0
- secrecy 0.8.0
- serde 1
- serde_json 1.0.86
- thiserror 1.0.37
- tokio 1
- tracing 0.1.37
- tracing-actix-web 0.7.3
- tracing-bunyan-formatter 0.3.4
- tracing-log 0.1.3
- tracing-subscriber 0.3
- uuid 1.2.1
- xlsxwriter 0.6.0
- aws-config 1.1.2 development
- aws-sdk-s3 1.12.0 development
- aws-sdk-sqs 1.10.0 development
- fastrand 1.8.0 development
- clap ~4.4
- futures 0.3.25
- tokio 1.20.1
- tracing 0.1.37
- tracing-subscriber 0.3.15
- assert_cmd 2.0 development
- predicates 3.0.3 development
- anyhow 1.0.70
- aws-config 1.1.2
- aws-sdk-s3 1.12.0
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- bytes 1.4.0
- clap ~4.4
- futures-util 0.3.21
- http 0.2.8
- http-body 0.4.5
- md-5 0.10.1
- pin-project 1.0.12
- rand 0.8.5
- sdk-examples-test-utils 0.1.0
- serde 1
- serde_json 1
- thiserror 1.0
- tokio 1.20.1
- tokio-stream 0.1.8
- tracing 0.1.37
- tracing-subscriber 0.3.5
- uuid 1.3.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- fastrand 2.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1
- aws-config 1.1.2 development
- aws-credential-types 1.1.2 development
- tokio 1.23.1 development
- aws-credential-types 1.1.2
- aws-http 0.60.2
- aws-runtime 1.1.2
- aws-smithy-async 1.1.2
- aws-smithy-http 0.60.2
- aws-smithy-json 0.60.2
- aws-smithy-runtime 1.1.2
- aws-smithy-runtime-api 1.1.2
- aws-smithy-types 1.1.2
- aws-types 1.1.2
- bytes 1.0.0
- http 0.2.9
- once_cell 1.16
- regex-lite 0.1.5
- tracing 0.1