https://github.com/aws/aws-sdk-ruby
The official AWS SDK for Ruby
https://github.com/aws/aws-sdk-ruby
Keywords
aws aws-sdk cloud ruby
Keywords from Contributors
activerecord activejob mvc rubygems rack rubocop rspec crash-reporting ruby-gem multithreading
Last synced: about 18 hours ago
JSON representation
Repository metadata
The official AWS SDK for Ruby
- Host: GitHub
- URL: https://github.com/aws/aws-sdk-ruby
- Owner: aws
- License: apache-2.0
- Created: 2011-07-14T22:21:47.000Z (over 14 years ago)
- Default Branch: version-3
- Last Pushed: 2026-02-27T20:40:06.000Z (4 days ago)
- Last Synced: 2026-03-02T07:09:04.873Z (1 day ago)
- Topics: aws, aws-sdk, cloud, ruby
- Language: Ruby
- Homepage: https://aws.amazon.com/sdk-for-ruby/
- Size: 641 MB
- Stars: 3,643
- Watchers: 130
- Forks: 1,232
- Open Issues: 24
- Releases: 1,000
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Notice: NOTICE.txt
README.md
AWS SDK for Ruby - Version 3
Links of Interest
Installation
The AWS SDK for Ruby is available from RubyGems. With V3 modularization, you
should pick the specific AWS service gems to install.
gem 'aws-sdk-s3', '~> 1'
gem 'aws-sdk-ec2', '~> 1'
Alternatively, the aws-sdk gem contains every available AWS service gem. This
gem is very large; it is recommended to use it only as a quick way to migrate
from V2 or if you depend on many AWS services.
gem 'aws-sdk', '~> 3'
Please use a pessimistic version constraint on the major version when
depending on service gems.
Configuration
You will need to configure credentials and a region, either in
configuration files
or environment variables, to make API calls. It is recommended that you
provide these via your environment. This makes it easier to rotate credentials
and it keeps your secrets out of source control.
The SDK searches the following locations for credentials:
ENV['AWS_ACCESS_KEY_ID']andENV['AWS_SECRET_ACCESS_KEY']- The shared credentials ini file at
~/.aws/credentials. The location used can be changed with theAWS_CREDENTIALS_FILEENV variable.- Credential options supported in this file are:
- Static Credentials (
aws_access_key_id,aws_secret_access_key,aws_session_token) - Assume Role Web Identity Credentials (
web_identity_token_file,role_arn,source_profile) - Assume Role Credentials (
role_arn,source_profile) - Process Credentials (
credential_process) - SSO Credentials (
sso_session,sso_account_id,sso_role_name,sso_region)
- Static Credentials (
- Unless
ENV['AWS_SDK_CONFIG_OPT_OUT']is set, the shared configuration ini file at~/.aws/configwill also be parsed for credentials.
- Credential options supported in this file are:
- From an instance profile when running on EC2 or from the ECS credential provider when running in an ECS container with that feature enabled.
Shared configuration is loaded only a single time, and credentials are provided statically at client creation time. Shared credentials do not refresh.
The SDK searches the following locations for a region:
ENV['AWS_REGION']ENV['AMAZON_REGION']ENV['AWS_DEFAULT_REGION']- Unless
ENV['AWS_SDK_CONFIG_OPT_OUT']is set, the shared configuration files (~/.aws/credentialsand~/.aws/config) will also be checked for a region selection.
The region is used to construct an SSL endpoint. If you need to connect to a non-standard endpoint, you may specify the :endpoint option.
Configuration Options
You can also configure default credentials and the region via the Aws.config
hash. The Aws.config hash takes precedence over environment variables.
require 'aws-sdk-core'
Aws.config.update(
region: 'us-west-2',
credentials: Aws::Credentials.new('akid', 'secret')
)
Valid region and credentials options are:
:region- A string likeus-west-2. See this page for a list of supported regions by service.:credentials- An instance of one of the following classes:
You may also pass configuration options directly to Client and Resource
constructors. These options take precedence over the environment and
Aws.config defaults. A :profile Client option can also be used to choose a
specific profile defined in your configuration file.
# using a credentials object
ec2 = Aws::EC2::Client.new(region: 'us-west-2', credentials: credentials)
# using a profile name
ec2 = Aws::EC2::Client.new(profile: 'my_profile')
Please take care to never commit credentials to source control. We strongly
recommended loading credentials from an external source.
require 'aws-sdk'
require 'json'
creds = JSON.load(File.read('secrets.json'))
Aws.config[:credentials] = Aws::Credentials.new(
creds['AccessKeyId'],
creds['SecretAccessKey']
)
For more information on how to configure credentials, see the developer guide
for configuring AWS SDK for Ruby.
API Clients
Construct a service client to make API calls. Each client provides a 1-to-1
mapping of methods to API operations. Refer to the
API documentation
for a complete list of available methods.
# list buckets in Amazon S3
s3 = Aws::S3::Client.new
resp = s3.list_buckets
resp.buckets.map(&:name)
#=> ["bucket-1", "bucket-2", ...]
API methods accept a hash of additional request parameters and return
structured response data.
# list the first two objects in a bucket
resp = s3.list_objects(bucket: 'aws-sdk', max_keys: 2)
resp.contents.each do |object|
puts "#{object.key} => #{object.etag}"
end
Paging Responses
Many AWS operations limit the number of results returned with each response.
To make it easy to get the next page of results, every AWS response object
is enumerable:
# yields one response object per API call made, this will enumerate
# EVERY object in the named bucket
s3.list_objects(bucket:'aws-sdk').each do |response|
puts response.contents.map(&:key)
end
If you prefer to control paging yourself, response objects have helper methods
that control paging:
# make a request that returns a truncated response
resp = s3.list_objects(bucket: 'aws-sdk')
resp.last_page? #=> false
resp.next_page? #=> true
resp = resp.next_page # send a request for the next response page
resp = resp.next_page until resp.last_page?
Waiters
Waiters are utility methods that poll for a particular state. To invoke a
waiter, call #wait_until on a client:
begin
ec2.wait_until(:instance_running, instance_ids:['i-12345678'])
puts "instance running"
rescue Aws::Waiters::Errors::WaiterFailed => error
puts "failed waiting for instance running: #{error.message}"
end
Waiters have sensible default polling intervals and maximum attempts. You can
configure these per call to #wait_until. You can also register callbacks
that are triggered before each polling attempt and before waiting.
See the API documentation for more examples and for a list of supported
waiters per service.
Resource Interfaces
Resource interfaces are object oriented classes that represent actual
resources in AWS. Resource interfaces built on top of API clients and provide
additional functionality.
Only a few services implement a resource interface. They are defined by hand
in JSON and have limitations. Please use the Client API instead.
s3 = Aws::S3::Resource.new
# reference an existing bucket by name
bucket = s3.bucket('aws-sdk')
# enumerate every object in a bucket
bucket.objects.each do |obj|
puts "#{obj.key} => #{obj.etag}"
end
# batch operations, delete objects in batches of 1k
bucket.objects(prefix: '/tmp-files/').delete
# single object operations
obj = bucket.object('hello')
obj.put(body:'Hello World!')
obj.etag
obj.delete
REPL - AWS Interactive Console
The aws-sdk gem ships with a REPL that provides a simple way to test
the Ruby SDK. You can access the REPL by running aws-v3.rb from the command line.
$ aws-v3.rb
[1] pry(Aws)> ec2.describe_instances.reservations.first.instances.first
[Aws::EC2::Client 200 0.216615 0 retries] describe_instances()
<struct
instance_id="i-1234567",
image_id="ami-7654321",
state=<struct code=16, name="running">,
...>
You can enable HTTP wire logging by setting the verbose flag:
$ aws-v3.rb -v
In the REPL, every service class has a helper that returns a new client object.
Simply downcase the service module name for the helper:
s3=>#<Aws::S3::Client>ec2=>#<Aws::EC2::Client>- etc
Functionality requiring AWS Common Runtime (CRT)
The AWS SDK for Ruby has optional functionality that requires the
AWS Common Runtime (CRT)
bindings to be included as a dependency with your application. This functionality includes:
- CRC-32c support for S3 Additional Checksums
AWS CRT bindings are in developer preview and are available in the
the aws-crt gem. You can install them by adding the aws-crt gem to your Gemfile.
Getting Help
Please use any of these resources for getting help:
- Ask a question on Github Discussions.
- Ask a question on StackOverflow and tag it with
aws-sdk-ruby. - Open a support ticket with AWS Support.
Maintenance and support for SDK major versions
For information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide:
Opening Issues
If you encounter a bug or have a feature request, we would like to hear about
it. Search the existing issues and try to make sure your problem doesn’t already
exist before opening a new issue.
The GitHub issues are intended for bug reports and feature requests. For help
and questions with using aws-sdk-ruby please make use of the resources listed
in the Getting Help section.
Versioning
This project uses semantic versioning. You can safely
express a dependency on a major version and expect all minor and patch versions
to be backwards compatible.
A CHANGELOG can be found at each gem's root path (i.e. aws-sdk-s3 can be found
at gems/aws-sdk-s3/CHANGELOG.md). The CHANGELOG is also accessible via the
RubyGems.org page under "LINKS" section.
Supported Services
| Service Name | Service Module | gem_name | API Version |
|---|---|---|---|
| AWS ARC - Zonal Shift | Aws::ARCZonalShift | aws-sdk-arczonalshift | 2022-10-30 |
| AWS Account | Aws::Account | aws-sdk-account | 2021-02-01 |
| AWS Amplify | Aws::Amplify | aws-sdk-amplify | 2017-07-25 |
| AWS Amplify UI Builder | Aws::AmplifyUIBuilder | aws-sdk-amplifyuibuilder | 2021-08-11 |
| AWS App Mesh | Aws::AppMesh | aws-sdk-appmesh | 2019-01-25 |
| AWS App Runner | Aws::AppRunner | aws-sdk-apprunner | 2020-05-15 |
| AWS AppConfig Data | Aws::AppConfigData | aws-sdk-appconfigdata | 2021-11-11 |
| AWS AppSync | Aws::AppSync | aws-sdk-appsync | 2017-07-25 |
| AWS Application Cost Profiler | Aws::ApplicationCostProfiler | aws-sdk-applicationcostprofiler | 2020-09-10 |
| AWS Application Discovery Service | Aws::ApplicationDiscoveryService | aws-sdk-applicationdiscoveryservice | 2015-11-01 |
| AWS Artifact | Aws::Artifact | aws-sdk-artifact | 2018-05-10 |
| AWS Audit Manager | Aws::AuditManager | aws-sdk-auditmanager | 2017-07-25 |
| AWS Auto Scaling Plans | Aws::AutoScalingPlans | aws-sdk-autoscalingplans | 2018-01-06 |
| AWS B2B Data Interchange | Aws::B2bi | aws-sdk-b2bi | 2022-06-23 |
| AWS Backup | Aws::Backup | aws-sdk-backup | 2018-11-15 |
| AWS Backup Gateway | Aws::BackupGateway | aws-sdk-backupgateway | 2021-01-01 |
| AWS Backup Search | Aws::BackupSearch | aws-sdk-backupsearch | 2018-05-10 |
| AWS Batch | Aws::Batch | aws-sdk-batch | 2016-08-10 |
| AWS Billing | Aws::Billing | aws-sdk-billing | 2023-09-07 |
| AWS Billing and Cost Management Data Exports | Aws::BCMDataExports | aws-sdk-bcmdataexports | 2023-11-26 |
| AWS Billing and Cost Management Pricing Calculator | Aws::BCMPricingCalculator | aws-sdk-bcmpricingcalculator | 2024-06-19 |
| AWS Budgets | Aws::Budgets | aws-sdk-budgets | 2016-10-20 |
| AWS Certificate Manager | Aws::ACM | aws-sdk-acm | 2015-12-08 |
| AWS Certificate Manager Private Certificate Authority | Aws::ACMPCA | aws-sdk-acmpca | 2017-08-22 |
| AWS Chatbot | Aws::Chatbot | aws-sdk-chatbot | 2017-10-11 |
| AWS Clean Rooms ML | Aws::CleanRoomsML | aws-sdk-cleanroomsml | 2023-09-06 |
| AWS Clean Rooms Service | Aws::CleanRooms | aws-sdk-cleanrooms | 2022-02-17 |
| AWS Cloud Control API | Aws::CloudControlApi | aws-sdk-cloudcontrolapi | 2021-09-30 |
| AWS Cloud Map | Aws::ServiceDiscovery | aws-sdk-servicediscovery | 2017-03-14 |
| AWS Cloud9 | Aws::Cloud9 | aws-sdk-cloud9 | 2017-09-23 |
| AWS CloudFormation | Aws::CloudFormation | aws-sdk-cloudformation | 2010-05-15 |
| AWS CloudHSM V2 | Aws::CloudHSMV2 | aws-sdk-cloudhsmv2 | 2017-04-28 |
| AWS CloudTrail | Aws::CloudTrail | aws-sdk-cloudtrail | 2013-11-01 |
| AWS CloudTrail Data Service | Aws::CloudTrailData | aws-sdk-cloudtraildata | 2021-08-11 |
| AWS CodeBuild | Aws::CodeBuild | aws-sdk-codebuild | 2016-10-06 |
| AWS CodeCommit | Aws::CodeCommit | aws-sdk-codecommit | 2015-04-13 |
| AWS CodeConnections | Aws::CodeConnections | aws-sdk-codeconnections | 2023-12-01 |
| AWS CodeDeploy | Aws::CodeDeploy | aws-sdk-codedeploy | 2014-10-06 |
| AWS CodePipeline | Aws::CodePipeline | aws-sdk-codepipeline | 2015-07-09 |
| AWS CodeStar Notifications | Aws::CodeStarNotifications | aws-sdk-codestarnotifications | 2019-10-15 |
| AWS CodeStar connections | Aws::CodeStarconnections | aws-sdk-codestarconnections | 2019-12-01 |
| AWS Comprehend Medical | Aws::ComprehendMedical | aws-sdk-comprehendmedical | 2018-10-30 |
| AWS Compute Optimizer | Aws::ComputeOptimizer | aws-sdk-computeoptimizer | 2019-11-01 |
| AWS Config | Aws::ConfigService | aws-sdk-configservice | 2014-11-12 |
| AWS Control Catalog | Aws::ControlCatalog | aws-sdk-controlcatalog | 2018-05-10 |
| AWS Control Tower | Aws::ControlTower | aws-sdk-controltower | 2018-05-10 |
| AWS Cost Explorer Service | Aws::CostExplorer | aws-sdk-costexplorer | 2017-10-25 |
| AWS Cost and Usage Report Service | Aws::CostandUsageReportService | aws-sdk-costandusagereportservice | 2017-01-06 |
| AWS Data Exchange | Aws::DataExchange | aws-sdk-dataexchange | 2017-07-25 |
| AWS Data Pipeline | Aws::DataPipeline | aws-sdk-datapipeline | 2012-10-29 |
| AWS DataSync | Aws::DataSync | aws-sdk-datasync | 2018-11-09 |
| AWS Database Migration Service | Aws::DatabaseMigrationService | aws-sdk-databasemigrationservice | 2016-01-01 |
| AWS Device Farm | Aws::DeviceFarm | aws-sdk-devicefarm | 2015-06-23 |
| AWS Direct Connect | Aws::DirectConnect | aws-sdk-directconnect | 2012-10-25 |
| AWS Directory Service | Aws::DirectoryService | aws-sdk-directoryservice | 2015-04-16 |
| AWS Directory Service Data | Aws::DirectoryServiceData | aws-sdk-directoryservicedata | 2023-05-31 |
| AWS EC2 Instance Connect | Aws::EC2InstanceConnect | aws-sdk-ec2instanceconnect | 2018-04-02 |
| AWS Elastic Beanstalk | Aws::ElasticBeanstalk | aws-sdk-elasticbeanstalk | 2010-12-01 |
| AWS Elemental MediaConvert | Aws::MediaConvert | aws-sdk-mediaconvert | 2017-08-29 |
| AWS Elemental MediaLive | Aws::MediaLive | aws-sdk-medialive | 2017-10-14 |
| AWS Elemental MediaPackage | Aws::MediaPackage | aws-sdk-mediapackage | 2017-10-12 |
| AWS Elemental MediaPackage VOD | Aws::MediaPackageVod | aws-sdk-mediapackagevod | 2018-11-07 |
| AWS Elemental MediaPackage v2 | Aws::MediaPackageV2 | aws-sdk-mediapackagev2 | 2022-12-25 |
| AWS Elemental MediaStore | Aws::MediaStore | aws-sdk-mediastore | 2017-09-01 |
| AWS Elemental MediaStore Data Plane | Aws::MediaStoreData | aws-sdk-mediastoredata | 2017-09-01 |
| AWS End User Messaging Social | Aws::SocialMessaging | aws-sdk-socialmessaging | 2024-01-01 |
| AWS EntityResolution | Aws::EntityResolution | aws-sdk-entityresolution | 2018-05-10 |
| AWS Fault Injection Simulator | Aws::FIS | aws-sdk-fis | 2020-12-01 |
| AWS Free Tier | Aws::FreeTier | aws-sdk-freetier | 2023-09-07 |
| AWS Global Accelerator | Aws::GlobalAccelerator | aws-sdk-globalaccelerator | 2018-08-08 |
| AWS Glue | Aws::Glue | aws-sdk-glue | 2017-03-31 |
| AWS Glue DataBrew | Aws::GlueDataBrew | aws-sdk-gluedatabrew | 2017-07-25 |
| AWS Greengrass | Aws::Greengrass | aws-sdk-greengrass | 2017-06-07 |
| AWS Ground Station | Aws::GroundStation | aws-sdk-groundstation | 2019-05-23 |
| AWS Health APIs and Notifications | Aws::Health | aws-sdk-health | 2016-08-04 |
| AWS Health Imaging | Aws::MedicalImaging | aws-sdk-medicalimaging | 2023-07-19 |
| AWS Identity and Access Management | Aws::IAM | aws-sdk-iam | 2010-05-08 |
| AWS Import/Export | Aws::ImportExport | aws-sdk-importexport | 2010-06-01 |
| AWS Invoicing | Aws::Invoicing | aws-sdk-invoicing | 2024-12-01 |
| AWS IoT | Aws::IoT | aws-sdk-iot | 2015-05-28 |
| AWS IoT Analytics | Aws::IoTAnalytics | aws-sdk-iotanalytics | 2017-11-27 |
| AWS IoT Core Device Advisor | Aws::IoTDeviceAdvisor | aws-sdk-iotdeviceadvisor | 2020-09-18 |
| AWS IoT Data Plane | Aws::IoTDataPlane | aws-sdk-iotdataplane | 2015-05-28 |
| AWS IoT Events | Aws::IoTEvents | aws-sdk-iotevents | 2018-07-27 |
| AWS IoT Events Data | Aws::IoTEventsData | aws-sdk-ioteventsdata | 2018-10-23 |
| AWS IoT Fleet Hub | Aws::IoTFleetHub | aws-sdk-iotfleethub | 2020-11-03 |
| AWS IoT FleetWise | Aws::IoTFleetWise | aws-sdk-iotfleetwise | 2021-06-17 |
| AWS IoT Greengrass V2 | Aws::GreengrassV2 | aws-sdk-greengrassv2 | 2020-11-30 |
| AWS IoT Jobs Data Plane | Aws::IoTJobsDataPlane | aws-sdk-iotjobsdataplane | 2017-09-29 |
| AWS IoT Secure Tunneling | Aws::IoTSecureTunneling | aws-sdk-iotsecuretunneling | 2018-10-05 |
| AWS IoT SiteWise | Aws::IoTSiteWise | aws-sdk-iotsitewise | 2019-12-02 |
| AWS IoT Things Graph | Aws::IoTThingsGraph | aws-sdk-iotthingsgraph | 2018-09-06 |
| AWS IoT TwinMaker | Aws::IoTTwinMaker | aws-sdk-iottwinmaker | 2021-11-29 |
| AWS IoT Wireless | Aws::IoTWireless | aws-sdk-iotwireless | 2020-11-22 |
| AWS Key Management Service | Aws::KMS | aws-sdk-kms | 2014-11-01 |
| AWS Lake Formation | Aws::LakeFormation | aws-sdk-lakeformation | 2017-03-31 |
| AWS Lambda | Aws::Lambda | aws-sdk-lambda | 2015-03-31 |
| AWS Launch Wizard | Aws::LaunchWizard | aws-sdk-launchwizard | 2018-05-10 |
| AWS License Manager | Aws::LicenseManager | aws-sdk-licensemanager | 2018-08-01 |
| AWS License Manager Linux Subscriptions | Aws::LicenseManagerLinuxSubscriptions | aws-sdk-licensemanagerlinuxsubscriptions | 2018-05-10 |
| AWS License Manager User Subscriptions | Aws::LicenseManagerUserSubscriptions | aws-sdk-licensemanagerusersubscriptions | 2018-05-10 |
| AWS Mainframe Modernization Application Testing | Aws::AppTest | aws-sdk-apptest | 2022-12-06 |
| AWS Marketplace Agreement Service | Aws::MarketplaceAgreement | aws-sdk-marketplaceagreement | 2020-03-01 |
| AWS Marketplace Catalog Service | Aws::MarketplaceCatalog | aws-sdk-marketplacecatalog | 2018-09-17 |
| AWS Marketplace Commerce Analytics | Aws::MarketplaceCommerceAnalytics | aws-sdk-marketplacecommerceanalytics | 2015-07-01 |
| AWS Marketplace Deployment Service | Aws::MarketplaceDeployment | aws-sdk-marketplacedeployment | 2023-01-25 |
| AWS Marketplace Entitlement Service | Aws::MarketplaceEntitlementService | aws-sdk-marketplaceentitlementservice | 2017-01-11 |
| AWS Marketplace Reporting Service | Aws::MarketplaceReporting | aws-sdk-marketplacereporting | 2018-05-10 |
| AWS MediaConnect | Aws::MediaConnect | aws-sdk-mediaconnect | 2018-11-14 |
| AWS MediaTailor | Aws::MediaTailor | aws-sdk-mediatailor | 2018-04-23 |
| AWS Migration Hub | Aws::MigrationHub | aws-sdk-migrationhub | 2017-05-31 |
| AWS Migration Hub Config | Aws::MigrationHubConfig | aws-sdk-migrationhubconfig | 2019-06-30 |
| AWS Migration Hub Orchestrator | Aws::MigrationHubOrchestrator | aws-sdk-migrationhuborchestrator | 2021-08-28 |
| AWS Migration Hub Refactor Spaces | Aws::MigrationHubRefactorSpaces | aws-sdk-migrationhubrefactorspaces | 2021-10-26 |
| AWS Network Firewall | Aws::NetworkFirewall | aws-sdk-networkfirewall | 2020-11-12 |
| AWS Network Manager | Aws::NetworkManager | aws-sdk-networkmanager | 2019-07-05 |
| AWS OpsWorks | Aws::OpsWorks | aws-sdk-opsworks | 2013-02-18 |
| AWS OpsWorks CM | Aws::OpsWorksCM | aws-sdk-opsworkscm | 2016-11-01 |
| AWS Organizations | Aws::Organizations | aws-sdk-organizations | 2016-11-28 |
| AWS Outposts | Aws::Outposts | aws-sdk-outposts | 2019-12-03 |
| AWS Panorama | Aws::Panorama | aws-sdk-panorama | 2019-07-24 |
| AWS Parallel Computing Service | Aws::PCS | aws-sdk-pcs | 2023-02-10 |
| AWS Performance Insights | Aws::PI | aws-sdk-pi | 2018-02-27 |
| AWS Price List Service | Aws::Pricing | aws-sdk-pricing | 2017-10-15 |
| AWS Private 5G | Aws::PrivateNetworks | aws-sdk-privatenetworks | 2021-12-03 |
| AWS Proton | Aws::Proton | aws-sdk-proton | 2020-07-20 |
| AWS RDS DataService | Aws::RDSDataService | aws-sdk-rdsdataservice | 2018-08-01 |
| AWS Resilience Hub | Aws::ResilienceHub | aws-sdk-resiliencehub | 2020-04-30 |
| AWS Resource Access Manager | Aws::RAM | aws-sdk-ram | 2018-01-04 |
| AWS Resource Explorer | Aws::ResourceExplorer2 | aws-sdk-resourceexplorer2 | 2022-07-28 |
| AWS Resource Groups | Aws::ResourceGroups | aws-sdk-resourcegroups | 2017-11-27 |
| AWS Resource Groups Tagging API | Aws::ResourceGroupsTaggingAPI | aws-sdk-resourcegroupstaggingapi | 2017-01-26 |
| AWS RoboMaker | Aws::RoboMaker | aws-sdk-robomaker | 2018-06-29 |
| AWS Route53 Recovery Control Config | Aws::Route53RecoveryControlConfig | aws-sdk-route53recoverycontrolconfig | 2020-11-02 |
| AWS Route53 Recovery Readiness | Aws::Route53RecoveryReadiness | aws-sdk-route53recoveryreadiness | 2019-12-02 |
| AWS S3 Control | Aws::S3Control | aws-sdk-s3control | 2018-08-20 |
| AWS SSO Identity Store | Aws::IdentityStore | aws-sdk-identitystore | 2020-06-15 |
| AWS SSO OIDC | Aws::SSOOIDC | aws-sdk-core | 2019-06-10 |
| AWS Savings Plans | Aws::SavingsPlans | aws-sdk-savingsplans | 2019-06-28 |
| AWS Secrets Manager | Aws::SecretsManager | aws-sdk-secretsmanager | 2017-10-17 |
| AWS Security Token Service | Aws::STS | aws-sdk-core | 2011-06-15 |
| AWS SecurityHub | Aws::SecurityHub | aws-sdk-securityhub | 2018-10-26 |
| AWS Server Migration Service | Aws::SMS | aws-sdk-sms | 2016-10-24 |
| AWS Service Catalog | Aws::ServiceCatalog | aws-sdk-servicecatalog | 2015-12-10 |
| AWS Service Catalog App Registry | Aws::AppRegistry | aws-sdk-appregistry | 2020-06-24 |
| AWS Shield | Aws::Shield | aws-sdk-shield | 2016-06-02 |
| AWS Signer | Aws::Signer | aws-sdk-signer | 2017-08-25 |
| AWS SimSpace Weaver | Aws::SimSpaceWeaver | aws-sdk-simspaceweaver | 2022-10-28 |
| AWS Single Sign-On | Aws::SSO | aws-sdk-core | 2019-06-10 |
| AWS Single Sign-On Admin | Aws::SSOAdmin | aws-sdk-ssoadmin | 2020-07-20 |
| AWS Snow Device Management | Aws::SnowDeviceManagement | aws-sdk-snowdevicemanagement | 2021-08-04 |
| AWS Step Functions | Aws::States | aws-sdk-states | 2016-11-23 |
| AWS Storage Gateway | Aws::StorageGateway | aws-sdk-storagegateway | 2013-06-30 |
| AWS Supply Chain | Aws::SupplyChain | aws-sdk-supplychain | 2024-01-01 |
| AWS Support | Aws::Support | aws-sdk-support | 2013-04-15 |
| AWS Support App | Aws::SupportApp | aws-sdk-supportapp | 2021-08-20 |
| AWS Systems Manager Incident Manager | Aws::SSMIncidents | aws-sdk-ssmincidents | 2018-05-10 |
| AWS Systems Manager Incident Manager Contacts | Aws::SSMContacts | aws-sdk-ssmcontacts | 2021-05-03 |
| AWS Systems Manager QuickSetup | Aws::SSMQuickSetup | aws-sdk-ssmquicksetup | 2018-05-10 |
| AWS Systems Manager for SAP | Aws::SsmSap | aws-sdk-ssmsap | 2018-05-10 |
| AWS Telco Network Builder | Aws::Tnb | aws-sdk-tnb | 2008-10-21 |
| AWS Transfer Family | Aws::Transfer | aws-sdk-transfer | 2018-11-05 |
| AWS User Notifications | Aws::Notifications | aws-sdk-notifications | 2018-05-10 |
| AWS User Notifications Contacts | Aws::NotificationsContacts | aws-sdk-notificationscontacts | 2018-05-10 |
| AWS WAF | Aws::WAF | aws-sdk-waf | 2015-08-24 |
| AWS WAF Regional | Aws::WAFRegional | aws-sdk-wafregional | 2016-11-28 |
| AWS WAFV2 | Aws::WAFV2 | aws-sdk-wafv2 | 2019-07-29 |
| AWS Well-Architected Tool | Aws::WellArchitected | aws-sdk-wellarchitected | 2020-03-31 |
| AWS X-Ray | Aws::XRay | aws-sdk-xray | 2016-04-12 |
| AWS re:Post Private | Aws::Repostspace | aws-sdk-repostspace | 2022-05-13 |
| AWSBillingConductor | Aws::BillingConductor | aws-sdk-billingconductor | 2021-07-30 |
| AWSDeadlineCloud | Aws::Deadline | aws-sdk-deadline | 2023-10-12 |
| AWSKendraFrontendService | Aws::Kendra | aws-sdk-kendra | 2019-02-03 |
| AWSMainframeModernization | Aws::MainframeModernization | aws-sdk-mainframemodernization | 2021-04-28 |
| AWSMarketplace Metering | Aws::MarketplaceMetering | aws-sdk-marketplacemetering | 2016-01-14 |
| AWSServerlessApplicationRepository | Aws::ServerlessApplicationRepository | aws-sdk-serverlessapplicationrepository | 2017-09-08 |
| Access Analyzer | Aws::AccessAnalyzer | aws-sdk-accessanalyzer | 2019-11-01 |
| Agents for Amazon Bedrock | Aws::BedrockAgent | aws-sdk-bedrockagent | 2023-06-05 |
| Agents for Amazon Bedrock Runtime | Aws::BedrockAgentRuntime | aws-sdk-bedrockagentruntime | 2023-07-26 |
| Amazon API Gateway | Aws::APIGateway | aws-sdk-apigateway | 2015-07-09 |
| Amazon AppConfig | Aws::AppConfig | aws-sdk-appconfig | 2019-10-09 |
| Amazon AppIntegrations Service | Aws::AppIntegrationsService | aws-sdk-appintegrationsservice | 2020-07-29 |
| Amazon AppStream | Aws::AppStream | aws-sdk-appstream | 2016-12-01 |
| Amazon Appflow | Aws::Appflow | aws-sdk-appflow | 2020-08-23 |
| Amazon Athena | Aws::Athena | aws-sdk-athena | 2017-05-18 |
| Amazon Augmented AI Runtime | Aws::AugmentedAIRuntime | aws-sdk-augmentedairuntime | 2019-11-07 |
| Amazon Aurora DSQL | Aws::DSQL | aws-sdk-dsql | 2018-05-10 |
| Amazon Bedrock | Aws::Bedrock | aws-sdk-bedrock | 2023-04-20 |
| Amazon Bedrock Runtime | Aws::BedrockRuntime | aws-sdk-bedrockruntime | 2023-09-30 |
| Amazon Chime | Aws::Chime | aws-sdk-chime | 2018-05-01 |
| Amazon Chime SDK Identity | Aws::ChimeSDKIdentity | aws-sdk-chimesdkidentity | 2021-04-20 |
| Amazon Chime SDK Media Pipelines | Aws::ChimeSDKMediaPipelines | aws-sdk-chimesdkmediapipelines | 2021-07-15 |
| Amazon Chime SDK Meetings | Aws::ChimeSDKMeetings | aws-sdk-chimesdkmeetings | 2021-07-15 |
| Amazon Chime SDK Messaging | Aws::ChimeSDKMessaging | aws-sdk-chimesdkmessaging | 2021-05-15 |
| Amazon Chime SDK Voice | Aws::ChimeSDKVoice | aws-sdk-chimesdkvoice | 2022-08-03 |
| Amazon CloudDirectory | Aws::CloudDirectory | aws-sdk-clouddirectory | 2017-01-11 |
| Amazon CloudFront | Aws::CloudFront | aws-sdk-cloudfront | 2020-05-31 |
| Amazon CloudFront KeyValueStore | Aws::CloudFrontKeyValueStore | aws-sdk-cloudfrontkeyvaluestore | 2022-07-26 |
| Amazon CloudHSM | Aws::CloudHSM | aws-sdk-cloudhsm | 2014-05-30 |
| Amazon CloudSearch | Aws::CloudSearch | aws-sdk-cloudsearch | 2013-01-01 |
| Amazon CloudSearch Domain | Aws::CloudSearchDomain | aws-sdk-cloudsearchdomain | 2013-01-01 |
| Amazon CloudWatch | Aws::CloudWatch | aws-sdk-cloudwatch | 2010-08-01 |
| Amazon CloudWatch Application Insights | Aws::ApplicationInsights | aws-sdk-applicationinsights | 2018-11-25 |
| Amazon CloudWatch Application Signals | Aws::ApplicationSignals | aws-sdk-applicationsignals | 2024-04-15 |
| Amazon CloudWatch Events | Aws::CloudWatchEvents | aws-sdk-cloudwatchevents | 2015-10-07 |
| Amazon CloudWatch Evidently | Aws::CloudWatchEvidently | aws-sdk-cloudwatchevidently | 2021-02-01 |
| Amazon CloudWatch Internet Monitor | Aws::InternetMonitor | aws-sdk-internetmonitor | 2021-06-03 |
| Amazon CloudWatch Logs | Aws::CloudWatchLogs | aws-sdk-cloudwatchlogs | 2014-03-28 |
| Amazon CloudWatch Network Monitor | Aws::NetworkMonitor | aws-sdk-networkmonitor | 2023-08-01 |
| Amazon CodeCatalyst | Aws::CodeCatalyst | aws-sdk-codecatalyst | 2022-09-28 |
| Amazon CodeGuru Profiler | Aws::CodeGuruProfiler | aws-sdk-codeguruprofiler | 2019-07-18 |
| Amazon CodeGuru Reviewer | Aws::CodeGuruReviewer | aws-sdk-codegurureviewer | 2019-09-19 |
| Amazon CodeGuru Security | Aws::CodeGuruSecurity | aws-sdk-codegurusecurity | 2018-05-10 |
| Amazon Cognito Identity | Aws::CognitoIdentity | aws-sdk-cognitoidentity | 2014-06-30 |
| Amazon Cognito Identity Provider | Aws::CognitoIdentityProvider | aws-sdk-cognitoidentityprovider | 2016-04-18 |
| Amazon Cognito Sync | Aws::CognitoSync | aws-sdk-cognitosync | 2014-06-30 |
| Amazon Comprehend | Aws::Comprehend | aws-sdk-comprehend | 2017-11-27 |
| Amazon Connect Cases | Aws::ConnectCases | aws-sdk-connectcases | 2022-10-03 |
| Amazon Connect Contact Lens | Aws::ConnectContactLens | aws-sdk-connectcontactlens | 2020-08-21 |
| Amazon Connect Customer Profiles | Aws::CustomerProfiles | aws-sdk-customerprofiles | 2020-08-15 |
| Amazon Connect Participant Service | Aws::ConnectParticipant | aws-sdk-connectparticipant | 2018-09-07 |
| Amazon Connect Service | Aws::Connect | aws-sdk-connect | 2017-08-08 |
| Amazon Connect Wisdom Service | Aws::ConnectWisdomService | aws-sdk-connectwisdomservice | 2020-10-19 |
| Amazon Data Lifecycle Manager | Aws::DLM | aws-sdk-dlm | 2018-01-12 |
| Amazon DataZone | Aws::DataZone | aws-sdk-datazone | 2018-05-10 |
| Amazon Detective | Aws::Detective | aws-sdk-detective | 2018-10-26 |
| Amazon DevOps Guru | Aws::DevOpsGuru | aws-sdk-devopsguru | 2020-12-01 |
| Amazon DocumentDB Elastic Clusters | Aws::DocDBElastic | aws-sdk-docdbelastic | 2022-11-28 |
| Amazon DocumentDB with MongoDB compatibility | Aws::DocDB | aws-sdk-docdb | 2014-10-31 |
| Amazon DynamoDB | Aws::DynamoDB | aws-sdk-dynamodb | 2012-08-10 |
| Amazon DynamoDB Accelerator (DAX) | Aws::DAX | aws-sdk-dax | 2017-04-19 |
| Amazon DynamoDB Streams | Aws::DynamoDBStreams | aws-sdk-dynamodbstreams | 2012-08-10 |
| Amazon EC2 Container Service | Aws::ECS | aws-sdk-ecs | 2014-11-13 |
| Amazon EKS Auth | Aws::EKSAuth | aws-sdk-eksauth | 2023-11-26 |
| Amazon EMR | Aws::EMR | aws-sdk-emr | 2009-03-31 |
| Amazon EMR Containers | Aws::EMRContainers | aws-sdk-emrcontainers | 2020-10-01 |
| Amazon ElastiCache | Aws::ElastiCache | aws-sdk-elasticache | 2015-02-02 |
| Amazon Elastic Block Store | Aws::EBS | aws-sdk-ebs | 2019-11-02 |
| Amazon Elastic Compute Cloud | Aws::EC2 | aws-sdk-ec2 | 2016-11-15 |
| Amazon Elastic Container Registry | Aws::ECR | aws-sdk-ecr | 2015-09-21 |
| Amazon Elastic Container Registry Public | Aws::ECRPublic | aws-sdk-ecrpublic | 2020-10-30 |
| Amazon Elastic File System | Aws::EFS | aws-sdk-efs | 2015-02-01 |
| Amazon Elastic Kubernetes Service | Aws::EKS | aws-sdk-eks | 2017-11-01 |
| Amazon Elastic Transcoder | Aws::ElasticTranscoder | aws-sdk-elastictranscoder | 2012-09-25 |
| Amazon Elasticsearch Service | Aws::ElasticsearchService | aws-sdk-elasticsearchservice | 2015-01-01 |
| Amazon EventBridge | Aws::EventBridge | aws-sdk-eventbridge | 2015-10-07 |
| Amazon EventBridge Pipes | Aws::Pipes | aws-sdk-pipes | 2015-10-07 |
| Amazon EventBridge Scheduler | Aws::Scheduler | aws-sdk-scheduler | 2021-06-30 |
| Amazon FSx | Aws::FSx | aws-sdk-fsx | 2018-03-01 |
| Amazon Forecast Query Service | Aws::ForecastQueryService | aws-sdk-forecastqueryservice | 2018-06-26 |
| Amazon Forecast Service | Aws::ForecastService | aws-sdk-forecastservice | 2018-06-26 |
| Amazon Fraud Detector | Aws::FraudDetector | aws-sdk-frauddetector | 2019-11-15 |
| Amazon GameLift | Aws::GameLift | aws-sdk-gamelift | 2015-10-01 |
| Amazon GameLift Streams | Aws::GameLiftStreams | aws-sdk-gameliftstreams | 2018-05-10 |
| Amazon Glacier | Aws::Glacier | aws-sdk-glacier | 2012-06-01 |
| Amazon GuardDuty | Aws::GuardDuty | aws-sdk-guardduty | 2017-11-28 |
| Amazon HealthLake | Aws::HealthLake | aws-sdk-healthlake | 2017-07-01 |
| Amazon Import/Export Snowball | Aws::Snowball | aws-sdk-snowball | 2016-06-30 |
| Amazon Inspector | Aws::Inspector | aws-sdk-inspector | 2016-02-16 |
| Amazon Interactive Video Service | Aws::IVS | aws-sdk-ivs | 2020-07-14 |
| Amazon Interactive Video Service Chat | Aws::Ivschat | aws-sdk-ivschat | 2020-07-14 |
| Amazon Interactive Video Service RealTime | Aws::IVSRealTime | aws-sdk-ivsrealtime | 2020-07-14 |
| Amazon Kendra Intelligent Ranking | Aws::KendraRanking | aws-sdk-kendraranking | 2022-10-19 |
| Amazon Keyspaces | Aws::Keyspaces | aws-sdk-keyspaces | 2022-02-10 |
| Amazon Kinesis | Aws::Kinesis | aws-sdk-kinesis | 2013-12-02 |
| Amazon Kinesis Analytics | Aws::KinesisAnalytics | aws-sdk-kinesisanalytics | 2015-08-14 |
| Amazon Kinesis Analytics | Aws::KinesisAnalyticsV2 | aws-sdk-kinesisanalyticsv2 | 2018-05-23 |
| Amazon Kinesis Firehose | Aws::Firehose | aws-sdk-firehose | 2015-08-04 |
| Amazon Kinesis Video Signaling Channels | Aws::KinesisVideoSignalingChannels | aws-sdk-kinesisvideosignalingchannels | 2019-12-04 |
| Amazon Kinesis Video Streams | Aws::KinesisVideo | aws-sdk-kinesisvideo | 2017-09-30 |
| Amazon Kinesis Video Streams Archived Media | Aws::KinesisVideoArchivedMedia | aws-sdk-kinesisvideoarchivedmedia | 2017-09-30 |
| Amazon Kinesis Video Streams Media | Aws::KinesisVideoMedia | aws-sdk-kinesisvideomedia | 2017-09-30 |
| Amazon Kinesis Video WebRTC Storage | Aws::KinesisVideoWebRTCStorage | aws-sdk-kinesisvideowebrtcstorage | 2018-05-10 |
| Amazon Lex Model Building Service | Aws::LexModelBuildingService | aws-sdk-lexmodelbuildingservice | 2017-04-19 |
| Amazon Lex Model Building V2 | Aws::LexModelsV2 | aws-sdk-lexmodelsv2 | 2020-08-07 |
| Amazon Lex Runtime Service | Aws::Lex | aws-sdk-lex | 2016-11-28 |
| Amazon Lex Runtime V2 | Aws::LexRuntimeV2 | aws-sdk-lexruntimev2 | 2020-08-07 |
| Amazon Lightsail | Aws::Lightsail | aws-sdk-lightsail | 2016-11-28 |
| Amazon Location Service | Aws::LocationService | aws-sdk-locationservice | 2020-11-19 |
| Amazon Location Service Maps V2 | Aws::GeoMaps | aws-sdk-geomaps | 2020-11-19 |
| Amazon Location Service Places V2 | Aws::GeoPlaces | aws-sdk-geoplaces | 2020-11-19 |
| Amazon Location Service Routes V2 | Aws::GeoRoutes | aws-sdk-georoutes | 2020-11-19 |
| Amazon Lookout for Equipment | Aws::LookoutEquipment | aws-sdk-lookoutequipment | 2020-12-15 |
| Amazon Lookout for Metrics | Aws::LookoutMetrics | aws-sdk-lookoutmetrics | 2017-07-25 |
| Amazon Lookout for Vision | Aws::LookoutforVision | aws-sdk-lookoutforvision | 2020-11-20 |
| Amazon Machine Learning | Aws::MachineLearning | aws-sdk-machinelearning | 2014-12-12 |
| Amazon Macie 2 | Aws::Macie2 | aws-sdk-macie2 | 2020-01-01 |
| Amazon Managed Blockchain | Aws::ManagedBlockchain | aws-sdk-managedblockchain | 2018-09-24 |
| Amazon Managed Blockchain Query | Aws::ManagedBlockchainQuery | aws-sdk-managedblockchainquery | 2023-05-04 |
| Amazon Managed Grafana | Aws::ManagedGrafana | aws-sdk-managedgrafana | 2020-08-18 |
| Amazon Mechanical Turk | Aws::MTurk | aws-sdk-mturk | 2017-01-17 |
| Amazon MemoryDB | Aws::MemoryDB | aws-sdk-memorydb | 2021-01-01 |
| Amazon Neptune | Aws::Neptune | aws-sdk-neptune | 2014-10-31 |
| Amazon Neptune Graph | Aws::NeptuneGraph | aws-sdk-neptunegraph | 2023-11-29 |
| Amazon NeptuneData | Aws::Neptunedata | aws-sdk-neptunedata | 2023-08-01 |
| Amazon Omics | Aws::Omics | aws-sdk-omics | 2022-11-28 |
| Amazon OpenSearch Ingestion | Aws::OSIS | aws-sdk-osis | 2022-01-01 |
| Amazon OpenSearch Service | Aws::OpenSearchService | aws-sdk-opensearchservice | 2021-01-01 |
| Amazon Personalize | Aws::Personalize | aws-sdk-personalize | 2018-05-22 |
| Amazon Personalize Events | Aws::PersonalizeEvents | aws-sdk-personalizeevents | 2018-03-22 |
| Amazon Personalize Runtime | Aws::PersonalizeRuntime | aws-sdk-personalizeruntime | 2018-05-22 |
| Amazon Pinpoint | Aws::Pinpoint | aws-sdk-pinpoint | 2016-12-01 |
| Amazon Pinpoint Email Service | Aws::PinpointEmail | aws-sdk-pinpointemail | 2018-07-26 |
| Amazon Pinpoint SMS Voice V2 | Aws::PinpointSMSVoiceV2 | aws-sdk-pinpointsmsvoicev2 | 2022-03-31 |
| Amazon Pinpoint SMS and Voice Service | Aws::PinpointSMSVoice | aws-sdk-pinpointsmsvoice | 2018-09-05 |
| Amazon Polly | Aws::Polly | aws-sdk-polly | 2016-06-10 |
| Amazon Prometheus Service | Aws::PrometheusService | aws-sdk-prometheusservice | 2020-08-01 |
| Amazon Q Connect | Aws::QConnect | aws-sdk-qconnect | 2020-10-19 |
| Amazon QLDB | Aws::QLDB | aws-sdk-qldb | 2019-01-02 |
| Amazon QLDB Session | Aws::QLDBSession | aws-sdk-qldbsession | 2019-07-11 |
| Amazon QuickSight | Aws::QuickSight | aws-sdk-quicksight | 2018-04-01 |
| Amazon Recycle Bin | Aws::RecycleBin | aws-sdk-recyclebin | 2021-06-15 |
| Amazon Redshift | Aws::Redshift | aws-sdk-redshift | 2012-12-01 |
| Amazon Rekognition | Aws::Rekognition | aws-sdk-rekognition | 2016-06-27 |
| Amazon Relational Database Service | Aws::RDS | aws-sdk-rds | 2014-10-31 |
| Amazon Route 53 | Aws::Route53 | aws-sdk-route53 | 2013-04-01 |
| Amazon Route 53 Domains | Aws::Route53Domains | aws-sdk-route53domains | 2014-05-15 |
| Amazon Route 53 Resolver | Aws::Route53Resolver | aws-sdk-route53resolver | 2018-04-01 |
| Amazon S3 Tables | Aws::S3Tables | aws-sdk-s3tables | 2018-05-10 |
| Amazon S3 on Outposts | Aws::S3Outposts | aws-sdk-s3outposts | 2017-07-25 |
| Amazon SageMaker Feature Store Runtime | Aws::SageMakerFeatureStoreRuntime | aws-sdk-sagemakerfeaturestoreruntime | 2020-07-01 |
| Amazon SageMaker Metrics Service | Aws::SageMakerMetrics | aws-sdk-sagemakermetrics | 2022-09-30 |
| Amazon SageMaker Runtime | Aws::SageMakerRuntime | aws-sdk-sagemakerruntime | 2017-05-13 |
| Amazon SageMaker Service | Aws::SageMaker | aws-sdk-sagemaker | 2017-07-24 |
| Amazon SageMaker geospatial capabilities | Aws::SageMakerGeospatial | aws-sdk-sagemakergeospatial | 2020-05-27 |
| Amazon Sagemaker Edge Manager | Aws::SagemakerEdgeManager | aws-sdk-sagemakeredgemanager | 2020-09-23 |
| Amazon Security Lake | Aws::SecurityLake | aws-sdk-securitylake | 2018-05-10 |
| Amazon Simple Email Service | Aws::SES | aws-sdk-ses | 2010-12-01 |
| Amazon Simple Email Service | Aws::SESV2 | aws-sdk-sesv2 | 2019-09-27 |
| Amazon Simple Notification Service | Aws::SNS | aws-sdk-sns | 2010-03-31 |
| Amazon Simple Queue Service | Aws::SQS | aws-sdk-sqs | 2012-11-05 |
| Amazon Simple Storage Service | Aws::S3 | aws-sdk-s3 | 2006-03-01 |
| Amazon Simple Systems Manager (SSM) | Aws::SSM | aws-sdk-ssm | 2014-11-06 |
| Amazon Simple Workflow Service | Aws::SWF | aws-sdk-swf | 2012-01-25 |
| Amazon SimpleDB | Aws::SimpleDB | aws-sdk-simpledb | 2009-04-15 |
| Amazon Textract | Aws::Textract | aws-sdk-textract | 2018-06-27 |
| Amazon Timestream Query | Aws::TimestreamQuery | aws-sdk-timestreamquery | 2018-11-01 |
| Amazon Timestream Write | Aws::TimestreamWrite | aws-sdk-timestreamwrite | 2018-11-01 |
| Amazon Transcribe Service | Aws::TranscribeService | aws-sdk-transcribeservice | 2017-10-26 |
| Amazon Transcribe Streaming Service | Aws::TranscribeStreamingService | aws-sdk-transcribestreamingservice | 2017-10-26 |
| Amazon Translate | Aws::Translate | aws-sdk-translate | 2017-07-01 |
| Amazon VPC Lattice | Aws::VPCLattice | aws-sdk-vpclattice | 2022-11-30 |
| Amazon Verified Permissions | Aws::VerifiedPermissions | aws-sdk-verifiedpermissions | 2021-12-01 |
| Amazon Voice ID | Aws::VoiceID | aws-sdk-voiceid | 2021-09-27 |
| Amazon WorkDocs | Aws::WorkDocs | aws-sdk-workdocs | 2016-05-01 |
| Amazon WorkMail | Aws::WorkMail | aws-sdk-workmail | 2017-10-01 |
| Amazon WorkMail Message Flow | Aws::WorkMailMessageFlow | aws-sdk-workmailmessageflow | 2019-05-01 |
| Amazon WorkSpaces | Aws::WorkSpaces | aws-sdk-workspaces | 2015-04-08 |
| Amazon WorkSpaces Thin Client | Aws::WorkSpacesThinClient | aws-sdk-workspacesthinclient | 2023-08-22 |
| Amazon WorkSpaces Web | Aws::WorkSpacesWeb | aws-sdk-workspacesweb | 2020-07-08 |
| AmazonApiGatewayManagementApi | Aws::ApiGatewayManagementApi | aws-sdk-apigatewaymanagementapi | 2018-11-29 |
| AmazonApiGatewayV2 | Aws::ApiGatewayV2 | aws-sdk-apigatewayv2 | 2018-11-29 |
| AmazonConnectCampaignService | Aws::ConnectCampaignService | aws-sdk-connectcampaignservice | 2021-01-30 |
| AmazonConnectCampaignServiceV2 | Aws::ConnectCampaignsV2 | aws-sdk-connectcampaignsv2 | 2024-04-23 |
| AmazonMQ | Aws::MQ | aws-sdk-mq | 2017-11-27 |
| AmazonMWAA | Aws::MWAA | aws-sdk-mwaa | 2020-07-01 |
| AmplifyBackend | Aws::AmplifyBackend | aws-sdk-amplifybackend | 2020-08-11 |
| AppFabric | Aws::AppFabric | aws-sdk-appfabric | 2023-05-19 |
| Application Auto Scaling | Aws::ApplicationAutoScaling | aws-sdk-applicationautoscaling | 2016-02-06 |
| Application Migration Service | Aws::Mgn | aws-sdk-mgn | 2020-02-26 |
| Auto Scaling | Aws::AutoScaling | aws-sdk-autoscaling | 2011-01-01 |
| Braket | Aws::Braket | aws-sdk-braket | 2019-09-01 |
| CloudWatch Observability Access Manager | Aws::OAM | aws-sdk-oam | 2022-06-10 |
| CloudWatch Observability Admin Service | Aws::ObservabilityAdmin | aws-sdk-observabilityadmin | 2018-05-10 |
| CloudWatch RUM | Aws::CloudWatchRUM | aws-sdk-cloudwatchrum | 2018-05-10 |
| CodeArtifact | Aws::CodeArtifact | aws-sdk-codeartifact | 2018-09-22 |
| Cost Optimization Hub | Aws::CostOptimizationHub | aws-sdk-costoptimizationhub | 2022-07-26 |
| Data Automation for Amazon Bedrock | Aws::BedrockDataAutomation | aws-sdk-bedrockdataautomation | 2023-07-26 |
| EC2 Image Builder | Aws::Imagebuilder | aws-sdk-imagebuilder | 2019-12-02 |
| EMR Serverless | Aws::EMRServerless | aws-sdk-emrserverless | 2021-07-13 |
| Elastic Disaster Recovery Service | Aws::Drs | aws-sdk-drs | 2020-02-26 |
| Elastic Load Balancing | Aws::ElasticLoadBalancing | aws-sdk-elasticloadbalancing | 2012-06-01 |
| Elastic Load Balancing | Aws::ElasticLoadBalancingV2 | aws-sdk-elasticloadbalancingv2 | 2015-12-01 |
| FinSpace Public API | Aws::FinSpaceData | aws-sdk-finspacedata | 2020-07-13 |
| FinSpace User Environment Management service | Aws::Finspace | aws-sdk-finspace | 2021-03-12 |
| Firewall Management Service | Aws::FMS | aws-sdk-fms | 2018-01-01 |
| IAM Roles Anywhere | Aws::RolesAnywhere | aws-sdk-rolesanywhere | 2018-05-10 |
| Inspector Scan | Aws::InspectorScan | aws-sdk-inspectorscan | 2023-08-08 |
| Inspector2 | Aws::Inspector2 | aws-sdk-inspector2 | 2020-06-08 |
| MailManager | Aws::MailManager | aws-sdk-mailmanager | 2023-10-17 |
| Managed Streaming for Kafka | Aws::Kafka | aws-sdk-kafka | 2018-11-14 |
| Managed Streaming for Kafka Connect | Aws::KafkaConnect | aws-sdk-kafkaconnect | 2021-09-14 |
| Managed integrations for AWS IoT Device Management | Aws::IoTManagedIntegrations | aws-sdk-iotmanagedintegrations | 2025-03-03 |
| Migration Hub Strategy Recommendations | Aws::MigrationHubStrategyRecommendations | aws-sdk-migrationhubstrategyrecommendations | 2020-02-19 |
| Network Flow Monitor | Aws::NetworkFlowMonitor | aws-sdk-networkflowmonitor | 2023-04-19 |
| OpenSearch Service Serverless | Aws::OpenSearchServerless | aws-sdk-opensearchserverless | 2021-11-01 |
| Partner Central Selling API | Aws::PartnerCentralSelling | aws-sdk-partnercentralselling | 2022-07-26 |
| Payment Cryptography Control Plane | Aws::PaymentCryptography | aws-sdk-paymentcryptography | 2021-09-14 |
| Payment Cryptography Data Plane | Aws::PaymentCryptographyData | aws-sdk-paymentcryptographydata | 2022-02-03 |
| PcaConnectorAd | Aws::PcaConnectorAd | aws-sdk-pcaconnectorad | 2018-05-10 |
| Private CA Connector for SCEP | Aws::PcaConnectorScep | aws-sdk-pcaconnectorscep | 2018-05-10 |
| QApps | Aws::QApps | aws-sdk-qapps | 2023-11-27 |
| QBusiness | Aws::QBusiness | aws-sdk-qbusiness | 2023-11-27 |
| Redshift Data API Service | Aws::RedshiftDataAPIService | aws-sdk-redshiftdataapiservice | 2019-12-20 |
| Redshift Serverless | Aws::RedshiftServerless | aws-sdk-redshiftserverless | 2021-04-21 |
| Route 53 Profiles | Aws::Route53Profiles | aws-sdk-route53profiles | 2018-05-10 |
| Route53 Recovery Cluster | Aws::Route53RecoveryCluster | aws-sdk-route53recoverycluster | 2019-12-02 |
| Runtime for Amazon Bedrock Data Automation | Aws::BedrockDataAutomationRuntime | aws-sdk-bedrockdataautomationruntime | 2024-06-13 |
| Schemas | Aws::Schemas | aws-sdk-schemas | 2019-12-02 |
| Security Incident Response | Aws::SecurityIR | aws-sdk-securityir | 2018-05-10 |
| Service Quotas | Aws::ServiceQuotas | aws-sdk-servicequotas | 2019-06-24 |
| Synthetics | Aws::Synthetics | aws-sdk-synthetics | 2017-10-11 |
| Tax Settings | Aws::TaxSettings | aws-sdk-taxsettings | 2018-05-10 |
| Timestream InfluxDB | Aws::TimestreamInfluxDB | aws-sdk-timestreaminfluxdb | 2023-01-27 |
| TrustedAdvisor Public API | Aws::TrustedAdvisor | aws-sdk-trustedadvisor | 2022-09-15 |
License
This library is distributed under the
Apache License, version 2.0
copyright 2013. amazon web services, inc. all rights reserved.
licensed under the apache license, version 2.0 (the "license");
you may not use this file except in compliance with the license.
you may obtain a copy of the license at
http://www.apache.org/licenses/license-2.0
unless required by applicable law or agreed to in writing, software
distributed under the license is distributed on an "as is" basis,
without warranties or conditions of any kind, either express or implied.
see the license for the specific language governing permissions and
limitations under the license.
Owner metadata
- Name: Amazon Web Services
- Login: aws
- Email: open-source-github@amazon.com
- Kind: organization
- Description:
- Website: https://amazon.com/aws
- Location: United States of America
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/2232217?v=4
- Repositories: 527
- Last ynced at: 2026-02-19T03:45:35.554Z
- Profile URL: https://github.com/aws
GitHub Events
Total
- Delete event: 85
- Pull request event: 208
- Fork event: 25
- Discussion event: 1
- Issues event: 107
- Watch event: 88
- Issue comment event: 495
- Push event: 605
- Pull request review event: 367
- Pull request review comment event: 373
- Create event: 91
- Commit comment event: 3
Last Year
- Delete event: 59
- Pull request event: 142
- Fork event: 13
- Discussion event: 1
- Issues event: 71
- Watch event: 48
- Issue comment event: 339
- Push event: 425
- Pull request review event: 233
- Pull request review comment event: 251
- Create event: 69
- Commit comment event: 3
Committers metadata
Last synced: 2 days ago
Total Commits: 7,747
Total Committers: 256
Avg Commits per committer: 30.262
Development Distribution Score (DDS): 0.586
Commits in past year: 370
Committers in past year: 15
Avg Commits per committer in past year: 24.667
Development Distribution Score (DDS) in past year: 0.335
| Name | Commits | |
|---|---|---|
| Trevor Rowe | t****e@g****m | 3205 |
| AWS SDK for Ruby | a****s@a****m | 1530 |
| Alex Wood | a****5@g****m | 620 |
| AWS SDK For Ruby | g****n@a****m | 528 |
| Matt Muller | 5****p | 374 |
| cjyclaire | c****y@a****m | 340 |
| Alex Woods | a****o@a****m | 310 |
| Alex Wood | a****d@a****m | 108 |
| Loren Segal | l****l@a****m | 98 |
| Juli Tera | 5****n | 79 |
| Trevor Rowe | t****e@a****m | 43 |
| dependabot[bot] | 4****] | 41 |
| Richard Wang | 4****4 | 33 |
| Yash Sharma | y****m@a****m | 24 |
| Ajwinder Singh | a****a@g****m | 21 |
| Robert Crews | r****s@m****m | 17 |
| Fonsan | f****n@g****m | 13 |
| Janko Marohnić | j****c@g****m | 11 |
| Aaron Suggs | a****n@k****m | 10 |
| Dan Siwiec | d****c@g****m | 9 |
| Jean byroot Boussier | j****b@s****m | 9 |
| Samuel Williams | s****s@o****z | 7 |
| Chase Coalwell | c****a@a****m | 7 |
| Yuki Kurihara | c****i@g****m | 6 |
| Peter Mounce | p****e@j****m | 6 |
| Zachery Moneypenny | z****y@a****o | 6 |
| Manuel Pata | p****a@a****e | 5 |
| Ryan O'Keeffe | o****d@g****m | 5 |
| Enis Konuk | e****s@c****m | 4 |
| Joe Feeney | j****e@g****o | 4 |
| and 226 more... | ||
Committer domains:
- amazon.com: 12
- acquia.com: 2
- rightscale.com: 2
- cookpad.com: 2
- fastmail.fm: 2
- kohlvanwijngaarden.nl: 1
- logicworks.net: 1
- darcybrown.com: 1
- planningcenter.com: 1
- balveda.com: 1
- y7mail.com: 1
- ogan.net: 1
- terminus.com: 1
- redhat.com: 1
- meraki.com: 1
- takeyu-web.com: 1
- bbc.co.uk: 1
- subledger.com: 1
- every-pay.com: 1
- captaintrain.com: 1
- grandrounds.com: 1
- therealreal.com: 1
- nleger.com: 1
- lumoslabs.com: 1
- mdsol.com: 1
- ama.ab.ca: 1
- malauzai.com: 1
- mac.com: 1
- ktheory.com: 1
- shopify.com: 1
- oriontransfer.co.nz: 1
- just-eat.com: 1
- adorable.io: 1
- alface.de: 1
- cloudvlab.com: 1
- glasswaves.co: 1
- collispuro.net: 1
- mikekrisher.com: 1
- sportngin.com: 1
- zencoder.com: 1
- apple.com: 1
- ginkgotree.com: 1
- dio.jp: 1
- billgathen.com: 1
- mindera.com: 1
- hefner.pro: 1
- ribbon.co: 1
- progress.com: 1
- adamdebono.com: 1
- grare.com: 1
- morphogenic.net: 1
- vaillant.im: 1
- gitter.im: 1
- wanko.cc: 1
- julik.nl: 1
- suse.com: 1
- joelvanhorn.com: 1
- techno-geeks.org: 1
- kitchen.io: 1
- scream.com: 1
- jaredbeck.com: 1
- kumukan.com: 1
- jamesls.com: 1
- ianneubert.com: 1
- mcquistin.co.uk: 1
- gaurishsharma.com: 1
- redbubble.com: 1
- olivierlacan.com: 1
- frezbo.com: 1
- goyman.com: 1
- gsa.gov: 1
- dogbiscuit.org: 1
- snark.net: 1
- 123mail.org: 1
- joao-carlos.com: 1
- marckohlbrugge.com: 1
- fastmail.net: 1
- thoughtworks.com: 1
- bloomfire.com: 1
- ministrycentered.com: 1
- intelimetrica.com: 1
- ownlocal.com: 1
- expedia.com: 1
- eposnow.com: 1
- wendtswelt.de: 1
- fastmail.com: 1
- schilling.io: 1
- galacticcode.com: 1
- brennetot.com: 1
- neighborland.com: 1
- itkq.jp: 1
- scopestar.com: 1
- samhuri.net: 1
- o2.pl: 1
- rin-raeuber.com: 1
- rachelevans.org: 1
- utilum.com: 1
- knjko.org: 1
- clerc.io: 1
- pancakes.email: 1
- pillpack.com: 1
- lincoln.hk: 1
Issue and Pull Request metadata
Last synced: about 18 hours ago
Total issues: 200
Total pull requests: 536
Average time to close issues: 3 months
Average time to close pull requests: 9 days
Total issue authors: 184
Total pull request authors: 53
Average comments per issue: 5.55
Average comments per pull request: 1.26
Merged pull request: 420
Bot issues: 0
Bot pull requests: 56
Past year issues: 32
Past year pull requests: 142
Past year average time to close issues: 20 days
Past year average time to close pull requests: 4 days
Past year issue authors: 32
Past year pull request authors: 17
Past year average comments per issue: 5.0
Past year average comments per pull request: 0.98
Past year merged pull request: 102
Past year bot issues: 0
Past year bot pull requests: 33
Top Issue Authors
- bkuhlmann (4)
- mullermp (3)
- rittneje (2)
- yokonao (2)
- thomaswitt (2)
- fcheung (2)
- normelton (2)
- andrykonchin (2)
- jcoetzee (2)
- wjordan (2)
- HoneyryderChuck (2)
- mdomsch-seczetta (2)
- ivanphdz (2)
- limjinsun (1)
- stefansedich (1)
Top Pull Request Authors
- mullermp (162)
- alextwoods (121)
- jterapin (76)
- dependabot[bot] (56)
- richardwang1124 (34)
- zendesk-duncanboynton (4)
- victorboissiere (4)
- byroot (4)
- Schwad (4)
- kazuyainoue0124 (4)
- Earlopain (4)
- ksss (3)
- ducks (3)
- nekketsuuu (3)
- D-system (2)
Top Issue Labels
- bug (78)
- feature-request (42)
- needs-triage (37)
- guidance (33)
- service-api (20)
- response-requested (17)
- investigating (15)
- documentation (14)
- p3 (13)
- potential-regression (10)
- p2 (8)
- wontfix (7)
- closing-soon (7)
- closed-for-staleness (7)
- in-progress (6)
- third-party (5)
- queued (4)
- no-autoclose (4)
- dependencies (3)
- needs-major-version (3)
- s3 (2)
- blocked (2)
- duplicate (1)
- resource (1)
- help wanted (1)
- announcement (1)
Top Pull Request Labels
- dependencies (56)
- github_actions (33)
- pr/do-not-merge (7)
- duplicate (2)
- investigating (2)
- closing-soon (1)
- response-requested (1)
- pr/work-in-progress (1)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 7,080,051,276 total
- Total docker downloads: 4,062,242,706
- Total dependent packages: 243 (may contain duplicates)
- Total dependent repositories: 44,665 (may contain duplicates)
- Total versions: 8,344
- Total maintainers: 1
gem.coop: aws-sigv4
Amazon Web Services Signature Version 4 signing library. Generates sigv4 signature for HTTP requests.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sigv4/
- Licenses: Apache-2.0
- Latest release: 1.12.1 (published 9 months ago)
- Last Synced: 2026-03-02T01:01:45.904Z (1 day ago)
- Versions: 32
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,441,452,509 Total
- Docker Downloads: 1,937,707,614
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Downloads: 0.001%
- Average: 0.007%
- Docker downloads count: 0.028%
- Maintainers (1)
gem.coop: aws-sdk-lambda
Official AWS Ruby gem for AWS Lambda. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-lambda/
- Licenses: Apache-2.0
- Latest release: 1.175.0 (published about 1 month ago)
- Last Synced: 2026-03-01T21:33:10.185Z (1 day ago)
- Versions: 192
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 150,909,782 Total
- Docker Downloads: 62,717,000
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.057%
- Downloads: 0.172%
- Maintainers (1)
gem.coop: aws-sdk-codecommit
Official AWS Ruby gem for AWS CodeCommit (CodeCommit). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-codecommit/
- Licenses: Apache-2.0
- Latest release: 1.96.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:02:54.648Z (1 day ago)
- Versions: 109
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 107,709,265 Total
- Docker Downloads: 62,771,418
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.079%
- Downloads: 0.238%
- Maintainers (1)
gem.coop: aws-sdk-applicationautoscaling
Official AWS Ruby gem for Application Auto Scaling. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-applicationautoscaling/
- Licenses: Apache-2.0
- Latest release: 1.118.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:58.332Z (1 day ago)
- Versions: 131
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 88,791,340 Total
- Docker Downloads: 62,597,157
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.099%
- Downloads: 0.297%
- Maintainers (1)
gem.coop: aws-sdk-workspaces
Official AWS Ruby gem for Amazon WorkSpaces. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-workspaces/
- Licenses: Apache-2.0
- Latest release: 1.153.0 (published 26 days ago)
- Last Synced: 2026-03-02T00:02:23.914Z (1 day ago)
- Versions: 164
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 86,896,191 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.101%
- Downloads: 0.304%
- Maintainers (1)
gem.coop: aws-sdk-directconnect
Official AWS Ruby gem for AWS Direct Connect. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-directconnect/
- Licenses: Apache-2.0
- Latest release: 1.105.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:01:48.006Z (1 day ago)
- Versions: 120
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 85,351,921 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.105%
- Downloads: 0.315%
- Maintainers (1)
gem.coop: aws-sdk-lex
Official AWS Ruby gem for Amazon Lex Runtime Service. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-lex/
- Licenses: Apache-2.0
- Latest release: 1.90.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:02:21.769Z (1 day ago)
- Versions: 101
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 84,419,845 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.109%
- Downloads: 0.328%
- Maintainers (1)
gem.coop: aws-sdk-lexmodelbuildingservice
Official AWS Ruby gem for Amazon Lex Model Building Service. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-lexmodelbuildingservice/
- Licenses: Apache-2.0
- Latest release: 1.101.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:38.122Z (1 day ago)
- Versions: 112
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 84,158,291 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.11%
- Downloads: 0.33%
- Maintainers (1)
gem.coop: aws-sdk-eks
Official AWS Ruby gem for Amazon Elastic Kubernetes Service (Amazon EKS). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-eks/
- Licenses: Apache-2.0
- Latest release: 1.160.0 (published 20 days ago)
- Last Synced: 2026-03-01T20:32:06.026Z (1 day ago)
- Versions: 161
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 82,816,496 Total
- Docker Downloads: 54,617,941
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.118%
- Downloads: 0.353%
- Maintainers (1)
gem.coop: aws-sdk-lambdapreview
Official AWS Ruby gem for AWS Lambda. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-lambdapreview/
- Licenses: Apache-2.0
- Latest release: 1.50.0 (published over 1 year ago)
- Last Synced: 2026-03-02T00:31:29.267Z (1 day ago)
- Versions: 64
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 78,002,071 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.123%
- Downloads: 0.37%
- Maintainers (1)
gem.coop: aws-sdk-kinesis
Official AWS Ruby gem for Amazon Kinesis (Kinesis). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-kinesis/
- Licenses: Apache-2.0
- Latest release: 1.97.0 (published 28 days ago)
- Last Synced: 2026-03-01T23:32:08.004Z (1 day ago)
- Versions: 111
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 202,441,598 Total
- Docker Downloads: 70,814,435
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Downloads: 0.127%
- Average: 0.128%
- Docker downloads count: 0.386%
- Maintainers (1)
gem.coop: aws-sigv2
Amazon Web Services Signature Version 2 signing library. Generates sigv2 signature for HTTP requests.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sigv2/
- Licenses: Apache-2.0
- Latest release: 1.3.1 (published 9 months ago)
- Last Synced: 2026-03-02T01:01:52.434Z (1 day ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 73,635,544 Total
- Docker Downloads: 62,479,831
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.13%
- Downloads: 0.391%
- Maintainers (1)
gem.coop: aws-sdk-iam
Official AWS Ruby gem for AWS Identity and Access Management (IAM). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-iam/
- Licenses: Apache-2.0
- Latest release: 1.140.0 (published about 2 months ago)
- Last Synced: 2026-03-02T01:30:51.888Z (1 day ago)
- Versions: 155
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 139,476,608 Total
- Docker Downloads: 80,967,052
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.14%
- Downloads: 0.176%
- Docker downloads count: 0.383%
- Maintainers (1)
gem.coop: aws-sdk-worklink
[DEPRECATED] Official AWS Ruby gem for Amazon WorkLink (WorkLink). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-worklink/
- Licenses: Apache-2.0
- Latest release: 1.55.0 (published over 1 year ago)
- Last Synced: 2026-03-01T20:31:29.315Z (1 day ago)
- Versions: 56
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 58,186,733 Total
- Docker Downloads: 3,893,260
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.154%
- Downloads: 0.461%
- Maintainers (1)
gem.coop: aws-sdk-ioteventsdata
Official AWS Ruby gem for AWS IoT Events Data. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-ioteventsdata/
- Licenses: Apache-2.0
- Latest release: 1.71.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:32:35.764Z (1 day ago)
- Versions: 72
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 57,480,647 Total
- Docker Downloads: 2,889,666
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.157%
- Downloads: 0.471%
- Maintainers (1)
gem.coop: aws-sdk-autoscaling
Official AWS Ruby gem for Auto Scaling. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-autoscaling/
- Licenses: Apache-2.0
- Latest release: 1.154.0 (published about 1 month ago)
- Last Synced: 2026-03-01T22:32:02.329Z (1 day ago)
- Versions: 167
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 105,091,328 Total
- Docker Downloads: 62,746,069
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.159%
- Downloads: 0.244%
- Docker downloads count: 0.391%
- Maintainers (1)
gem.coop: aws-sdk-resourcegroups
Official AWS Ruby gem for AWS Resource Groups (Resource Groups). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-resourcegroups/
- Licenses: Apache-2.0
- Latest release: 1.94.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:02:44.847Z (1 day ago)
- Versions: 96
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 80,910,718 Total
- Docker Downloads: 235,747,489
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.16%
- Docker downloads count: 0.278%
- Downloads: 0.362%
- Maintainers (1)
gem.coop: aws-sdk-elasticloadbalancingv2
Official AWS Ruby gem for Elastic Load Balancing (Elastic Load Balancing v2). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-elasticloadbalancingv2/
- Licenses: Apache-2.0
- Latest release: 1.148.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:34:10.580Z (1 day ago)
- Versions: 162
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 99,205,672 Total
- Docker Downloads: 62,717,000
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.162%
- Downloads: 0.256%
- Docker downloads count: 0.392%
- Maintainers (1)
gem.coop: aws-sdk-apigateway
Official AWS Ruby gem for Amazon API Gateway. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-apigateway/
- Licenses: Apache-2.0
- Latest release: 1.131.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:31:01.564Z (1 day ago)
- Versions: 143
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 92,758,833 Total
- Docker Downloads: 62,717,000
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.167%
- Downloads: 0.275%
- Docker downloads count: 0.392%
- Maintainers (1)
gem.coop: aws-sdk-networkmanager
Official AWS Ruby gem for AWS Network Manager (NetworkManager). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-networkmanager/
- Licenses: Apache-2.0
- Latest release: 1.77.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:33:11.491Z (1 day ago)
- Versions: 78
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 51,843,307 Total
- Docker Downloads: 53,364,567
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.169%
- Downloads: 0.506%
- Maintainers (1)
gem.coop: aws-sdk-rds
Official AWS Ruby gem for Amazon Relational Database Service (Amazon RDS). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-rds/
- Licenses: Apache-2.0
- Latest release: 1.308.0 (published 14 days ago)
- Last Synced: 2026-03-01T20:31:29.866Z (1 day ago)
- Versions: 328
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 113,448,566 Total
- Docker Downloads: 69,180,672
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.169%
- Downloads: 0.506%
- Maintainers (1)
gem.coop: aws-sdk-detective
Official AWS Ruby gem for Amazon Detective. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-detective/
- Licenses: Apache-2.0
- Latest release: 1.79.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:02:09.931Z (1 day ago)
- Versions: 80
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 49,828,761 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.174%
- Downloads: 0.522%
- Maintainers (1)
gem.coop: aws-sdk-schemas
Official AWS Ruby gem for Schemas. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-schemas/
- Licenses: Apache-2.0
- Latest release: 1.65.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:32:38.628Z (1 day ago)
- Versions: 66
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 48,679,502 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.178%
- Downloads: 0.534%
- Maintainers (1)
gem.coop: aws-sdk-mwaa
Official AWS Ruby gem for AmazonMWAA. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-mwaa/
- Licenses: Apache-2.0
- Latest release: 1.70.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:03:30.673Z (1 day ago)
- Versions: 71
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 38,045,413 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.219%
- Downloads: 0.657%
- Maintainers (1)
gem.coop: aws-sdk-lexmodelsv2
Official AWS Ruby gem for Amazon Lex Model Building V2 (Lex Models V2). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-lexmodelsv2/
- Licenses: Apache-2.0
- Latest release: 1.87.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:03:48.099Z (1 day ago)
- Versions: 89
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 37,983,803 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.22%
- Downloads: 0.659%
- Maintainers (1)
gem.coop: aws-sdk-pinpoint
Official AWS Ruby gem for Amazon Pinpoint. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-pinpoint/
- Licenses: Apache-2.0
- Latest release: 1.119.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:32:06.886Z (1 day ago)
- Versions: 132
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 90,246,842 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.222%
- Downloads: 0.287%
- Docker downloads count: 0.602%
- Maintainers (1)
gem.coop: aws-sdk-cloudsearch
Official AWS Ruby gem for Amazon CloudSearch. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-cloudsearch/
- Licenses: Apache-2.0
- Latest release: 1.86.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:32:19.690Z (1 day ago)
- Versions: 99
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 84,954,379 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.231%
- Downloads: 0.322%
- Docker downloads count: 0.602%
- Maintainers (1)
gem.coop: aws-sdk-glacier
Official AWS Ruby gem for Amazon Glacier. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-glacier/
- Licenses: Apache-2.0
- Latest release: 1.90.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:32:16.806Z (1 day ago)
- Versions: 103
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 84,265,521 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.233%
- Downloads: 0.33%
- Docker downloads count: 0.602%
- Maintainers (1)
gem.coop: aws-sdk-cloudsearchdomain
Official AWS Ruby gem for Amazon CloudSearch Domain. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-cloudsearchdomain/
- Licenses: Apache-2.0
- Latest release: 1.69.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:31:47.528Z (1 day ago)
- Versions: 84
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 83,500,406 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.235%
- Downloads: 0.339%
- Docker downloads count: 0.602%
- Maintainers (1)
gem.coop: aws-sdk-appsync
Official AWS Ruby gem for AWS AppSync (AWSAppSync). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-appsync/
- Licenses: Apache-2.0
- Latest release: 1.119.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:02:28.493Z (1 day ago)
- Versions: 120
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 82,828,068 Total
- Docker Downloads: 11,066,916
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.242%
- Downloads: 0.349%
- Docker downloads count: 0.617%
- Maintainers (1)
gem.coop: aws-sdk-mediastore
Official AWS Ruby gem for AWS Elemental MediaStore (MediaStore). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-mediastore/
- Licenses: Apache-2.0
- Latest release: 1.84.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:32:15.296Z (1 day ago)
- Versions: 85
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 80,919,062 Total
- Docker Downloads: 11,066,916
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.245%
- Downloads: 0.364%
- Docker downloads count: 0.617%
- Maintainers (1)
gem.coop: aws-sdk-neptune
Official AWS Ruby gem for Amazon Neptune. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-neptune/
- Licenses: Apache-2.0
- Latest release: 1.100.0 (published 6 days ago)
- Last Synced: 2026-03-01T23:31:04.409Z (1 day ago)
- Versions: 101
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 76,607,311 Total
- Docker Downloads: 3,893,686
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.267%
- Downloads: 0.381%
- Docker downloads count: 0.687%
- Maintainers (1)
gem.coop: aws-sdk-migrationhubstrategyrecommendations
Official AWS Ruby gem for Migration Hub Strategy Recommendations. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-migrationhubstrategyrecommendations/
- Licenses: Apache-2.0
- Latest release: 1.50.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:02:14.020Z (1 day ago)
- Versions: 51
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26,194,133 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.276%
- Downloads: 0.827%
- Maintainers (1)
gem.coop: aws-sdk-amplifyuibuilder
Official AWS Ruby gem for AWS Amplify UI Builder. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-amplifyuibuilder/
- Licenses: Apache-2.0
- Latest release: 1.54.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:34:00.133Z (1 day ago)
- Versions: 54
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26,076,805 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.276%
- Downloads: 0.829%
- Maintainers (1)
gem.coop: aws-sdk-comprehendmedical
Official AWS Ruby gem for AWS Comprehend Medical (ComprehendMedical). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-comprehendmedical/
- Licenses: Apache-2.0
- Latest release: 1.80.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:31:25.807Z (1 day ago)
- Versions: 80
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 66,766,515 Total
- Docker Downloads: 3,893,545
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.278%
- Downloads: 0.428%
- Docker downloads count: 0.686%
- Maintainers (1)
gem.coop: aws-sdk-personalize
Official AWS Ruby gem for Amazon Personalize. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-personalize/
- Licenses: Apache-2.0
- Latest release: 1.95.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:32.846Z (1 day ago)
- Versions: 96
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 59,257,035 Total
- Docker Downloads: 2,889,666
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.293%
- Downloads: 0.463%
- Docker downloads count: 0.708%
- Maintainers (1)
gem.coop: aws-sdk-rolesanywhere
Official AWS Ruby gem for IAM Roles Anywhere. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-rolesanywhere/
- Licenses: Apache-2.0
- Latest release: 1.48.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:34:14.087Z (1 day ago)
- Versions: 49
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 21,155,284 Total
- Docker Downloads: 2,833,101
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.306%
- Downloads: 0.918%
- Maintainers (1)
gem.coop: aws-sdk-opensearchserverless
Official AWS Ruby gem for OpenSearch Service Serverless. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-opensearchserverless/
- Licenses: Apache-2.0
- Latest release: 1.54.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:02:13.235Z (1 day ago)
- Versions: 55
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 17,397,435 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.34%
- Downloads: 1.021%
- Maintainers (1)
gem.coop: aws-sdk-sagemakeredgemanager
Official AWS Ruby gem for Amazon Sagemaker Edge Manager. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-sagemakeredgemanager/
- Licenses: Apache-2.0
- Latest release: 1.55.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:03:48.964Z (1 day ago)
- Versions: 56
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 37,881,347 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.343%
- Downloads: 0.66%
- Docker downloads count: 0.712%
- Maintainers (1)
gem.coop: aws-sdk-cloudtraildata
Official AWS Ruby gem for AWS CloudTrail Data Service. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-cloudtraildata/
- Licenses: Apache-2.0
- Latest release: 1.40.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:02:45.508Z (1 day ago)
- Versions: 41
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,623,940 Total
- Docker Downloads: 2,816,061
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.357%
- Downloads: 1.071%
- Maintainers (1)
gem.coop: aws-sdk-ssmcontacts
Official AWS Ruby gem for AWS Systems Manager Incident Manager Contacts (SSM Contacts). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-ssmcontacts/
- Licenses: Apache-2.0
- Latest release: 1.58.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:03:39.775Z (1 day ago)
- Versions: 59
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,508,114 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.359%
- Downloads: 0.715%
- Docker downloads count: 0.721%
- Maintainers (1)
gem.coop: aws-sdk-bedrockruntime
Official AWS Ruby gem for Amazon Bedrock Runtime. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-bedrockruntime/
- Licenses: Apache-2.0
- Latest release: 1.73.0 (published 27 days ago)
- Last Synced: 2026-03-01T20:02:23.278Z (1 day ago)
- Versions: 74
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,191,648 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.37%
- Downloads: 1.11%
- Maintainers (1)
gem.coop: aws-sdk-kafkaconnect
Official AWS Ruby gem for Managed Streaming for Kafka Connect (Kafka Connect). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-kafkaconnect/
- Licenses: Apache-2.0
- Latest release: 1.54.0 (published 20 days ago)
- Last Synced: 2026-03-01T20:02:51.131Z (1 day ago)
- Versions: 55
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 28,484,838 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.38%
- Docker downloads count: 0.721%
- Downloads: 0.798%
- Maintainers (1)
rubygems.org: aws-sdk-dynamodb
Official AWS Ruby gem for Amazon DynamoDB (DynamoDB). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-dynamodb/
- Licenses: Apache-2.0
- Latest release: 1.163.0 (published 8 days ago)
- Last Synced: 2026-03-02T00:02:32.554Z (1 day ago)
- Versions: 180
- Dependent Packages: 77
- Dependent Repositories: 3,473
- Downloads: 189,455,376 Total
- Docker Downloads: 64,614,718
-
Rankings:
- Downloads: 0.132%
- Forks count: 0.213%
- Dependent packages count: 0.392%
- Average: 0.392%
- Stargazers count: 0.409%
- Dependent repos count: 0.532%
- Docker downloads count: 0.675%
- Maintainers (1)
rubygems.org: aws-sdk-ssm
Official AWS Ruby gem for Amazon Simple Systems Manager (SSM) (Amazon SSM). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-ssm/
- Licenses: Apache-2.0
- Latest release: 1.211.0 (published 11 days ago)
- Last Synced: 2026-03-01T20:31:31.261Z (1 day ago)
- Versions: 226
- Dependent Packages: 73
- Dependent Repositories: 3,066
- Downloads: 252,066,408 Total
- Docker Downloads: 64,004,218
-
Rankings:
- Downloads: 0.09%
- Forks count: 0.213%
- Average: 0.394%
- Dependent packages count: 0.404%
- Stargazers count: 0.409%
- Dependent repos count: 0.563%
- Docker downloads count: 0.685%
- Maintainers (1)
gem.coop: aws-sdk-pinpointsmsvoicev2
Official AWS Ruby gem for Amazon Pinpoint SMS Voice V2. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-pinpointsmsvoicev2/
- Licenses: Apache-2.0
- Latest release: 1.52.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:32:09.460Z (1 day ago)
- Versions: 53
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 22,422,156 Total
- Docker Downloads: 2,833,310
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.406%
- Docker downloads count: 0.732%
- Downloads: 0.894%
- Maintainers (1)
gem.coop: aws-sdk-privatenetworks
[DEPRECATED] Official AWS Ruby gem for AWS Private 5G. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-privatenetworks/
- Licenses: Apache-2.0
- Latest release: 1.33.0 (published 10 months ago)
- Last Synced: 2026-03-01T20:03:28.068Z (1 day ago)
- Versions: 34
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 18,615,097 Total
- Docker Downloads: 2,833,101
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.421%
- Docker downloads count: 0.734%
- Downloads: 0.951%
- Maintainers (1)
gem.coop: aws-sdk-connectcases
Official AWS Ruby gem for Amazon Connect Cases (ConnectCases). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-connectcases/
- Licenses: Apache-2.0
- Latest release: 1.62.0 (published 8 days ago)
- Last Synced: 2026-03-01T20:02:39.137Z (1 day ago)
- Versions: 63
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 19,208,952 Total
- Docker Downloads: 2,833,028
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.426%
- Docker downloads count: 0.737%
- Downloads: 0.966%
- Maintainers (1)
gem.coop: aws-sdk-ssmsap
Official AWS Ruby gem for AWS Systems Manager for SAP (SsmSap). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-ssmsap/
- Licenses: Apache-2.0
- Latest release: 1.50.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:51.089Z (1 day ago)
- Versions: 51
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 17,645,580 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.437%
- Docker downloads count: 0.738%
- Downloads: 1.009%
- Maintainers (1)
gem.coop: aws-sdk-simspaceweaver
Official AWS Ruby gem for AWS SimSpace Weaver. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-simspaceweaver/
- Licenses: Apache-2.0
- Latest release: 1.44.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:32:46.961Z (1 day ago)
- Versions: 45
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 17,340,676 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.441%
- Docker downloads count: 0.738%
- Downloads: 1.025%
- Maintainers (1)
gem.coop: aws-sdk-kendraranking
Official AWS Ruby gem for Amazon Kendra Intelligent Ranking (Kendra Ranking). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-kendraranking/
- Licenses: Apache-2.0
- Latest release: 1.42.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:02:51.729Z (1 day ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 16,133,492 Total
- Docker Downloads: 2,816,061
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.45%
- Docker downloads count: 0.742%
- Downloads: 1.059%
- Maintainers (1)
gem.coop: aws-sdk-verifiedpermissions
Official AWS Ruby gem for Amazon Verified Permissions. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-verifiedpermissions/
- Licenses: Apache-2.0
- Latest release: 1.61.0 (published about 1 month ago)
- Last Synced: 2026-03-01T22:03:52.348Z (1 day ago)
- Versions: 62
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,418,472 Total
- Docker Downloads: 2,778,806
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.484%
- Docker downloads count: 0.745%
- Downloads: 1.191%
- Maintainers (1)
rubygems.org: aws-sdk-route53
Official AWS Ruby gem for Amazon Route 53 (Route 53). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-route53/
- Licenses: Apache-2.0
- Latest release: 1.131.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:02:19.779Z (1 day ago)
- Versions: 148
- Dependent Packages: 26
- Dependent Repositories: 2,883
- Downloads: 126,804,351 Total
- Docker Downloads: 62,717,000
-
Rankings:
- Downloads: 0.18%
- Forks count: 0.213%
- Stargazers count: 0.409%
- Average: 0.494%
- Dependent repos count: 0.586%
- Docker downloads count: 0.686%
- Dependent packages count: 0.891%
- Maintainers (1)
gem.coop: aws-sdk-bedrockagent
Official AWS Ruby gem for Agents for Amazon Bedrock. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-bedrockagent/
- Licenses: Apache-2.0
- Latest release: 1.72.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:03:16.113Z (1 day ago)
- Versions: 73
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 8,113,308 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.5%
- Downloads: 1.499%
- Maintainers (1)
gem.coop: aws-sdk-costoptimizationhub
Official AWS Ruby gem for Cost Optimization Hub. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-costoptimizationhub/
- Licenses: Apache-2.0
- Latest release: 1.40.0 (published about 2 months ago)
- Last Synced: 2026-03-02T01:02:28.434Z (1 day ago)
- Versions: 41
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,593,129 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.512%
- Downloads: 1.536%
- Maintainers (1)
gem.coop: aws-sdk-cleanroomsml
Official AWS Ruby gem for AWS Clean Rooms ML. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-cleanroomsml/
- Licenses: Apache-2.0
- Latest release: 1.42.0 (published about 2 months ago)
- Last Synced: 2026-03-02T01:01:36.045Z (1 day ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,585,692 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.512%
- Downloads: 1.537%
- Maintainers (1)
gem.coop: aws-sdk-eksauth
Official AWS Ruby gem for Amazon EKS Auth. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-eksauth/
- Licenses: Apache-2.0
- Latest release: 1.31.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:01:54.327Z (1 day ago)
- Versions: 32
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,564,001 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.513%
- Downloads: 1.54%
- Maintainers (1)
gem.coop: aws-sdk-marketplaceagreement
Official AWS Ruby gem for AWS Marketplace Agreement Service (Agreement Service). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-marketplaceagreement/
- Licenses: Apache-2.0
- Latest release: 1.32.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:32:27.612Z (1 day ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,523,712 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.516%
- Downloads: 1.548%
- Maintainers (1)
gem.coop: aws-sdk-neptunegraph
Official AWS Ruby gem for Amazon Neptune Graph (Neptune Graph). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-neptunegraph/
- Licenses: Apache-2.0
- Latest release: 1.46.0 (published 26 days ago)
- Last Synced: 2026-03-02T00:02:40.323Z (1 day ago)
- Versions: 47
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,446,056 Total
- Docker Downloads: 46,266
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.521%
- Downloads: 1.562%
- Maintainers (1)
gem.coop: aws-sdk-networkmonitor
Official AWS Ruby gem for Amazon CloudWatch Network Monitor. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-networkmonitor/
- Licenses: Apache-2.0
- Latest release: 1.32.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:31:38.380Z (1 day ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,294,051 Total
- Docker Downloads: 46,266
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.526%
- Downloads: 1.578%
- Maintainers (1)
gem.coop: aws-sdk-supplychain
Official AWS Ruby gem for AWS Supply Chain. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-supplychain/
- Licenses: Apache-2.0
- Latest release: 1.37.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:33:05.909Z (1 day ago)
- Versions: 38
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,068,097 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.534%
- Downloads: 1.603%
- Maintainers (1)
gem.coop: aws-sdk-deadline
Official AWS Ruby gem for AWSDeadlineCloud. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-deadline/
- Licenses: Apache-2.0
- Latest release: 1.45.0 (published 25 days ago)
- Last Synced: 2026-03-02T00:31:47.480Z (1 day ago)
- Versions: 46
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,265,403 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.569%
- Downloads: 1.708%
- Maintainers (1)
gem.coop: aws-sdk-mailmanager
Official AWS Ruby gem for MailManager. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-mailmanager/
- Licenses: Apache-2.0
- Latest release: 1.39.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:02:24.397Z (1 day ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,667,592 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.598%
- Downloads: 1.793%
- Maintainers (1)
gem.coop: aws-sdk-qapps
Official AWS Ruby gem for QApps. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-qapps/
- Licenses: Apache-2.0
- Latest release: 1.29.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:23.063Z (1 day ago)
- Versions: 30
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,031,152 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.637%
- Downloads: 1.911%
- Maintainers (1)
gem.coop: aws-sdk-georoutes
Official AWS Ruby gem for Amazon Location Service Routes V2. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-georoutes/
- Licenses: Apache-2.0
- Latest release: 1.18.0 (published about 2 months ago)
- Last Synced: 2026-03-02T01:02:27.726Z (1 day ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,046,721 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.726%
- Downloads: 2.177%
- Maintainers (1)
gem.coop: aws-sdk-partnercentralselling
Official AWS Ruby gem for Partner Central Selling API. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-partnercentralselling/
- Licenses: Apache-2.0
- Latest release: 1.27.0 (published 7 days ago)
- Last Synced: 2026-03-01T21:33:19.559Z (1 day ago)
- Versions: 28
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,910,161 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.74%
- Downloads: 2.221%
- Maintainers (1)
gem.coop: aws-sdk-connectcampaignsv2
Official AWS Ruby gem for AmazonConnectCampaignServiceV2. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-connectcampaignsv2/
- Licenses: Apache-2.0
- Latest release: 1.22.0 (published 22 days ago)
- Last Synced: 2026-03-01T21:03:21.041Z (1 day ago)
- Versions: 23
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,928,388 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.741%
- Downloads: 2.222%
- Maintainers (1)
gem.coop: aws-sdk-bcmpricingcalculator
Official AWS Ruby gem for AWS Billing and Cost Management Pricing Calculator. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-bcmpricingcalculator/
- Licenses: Apache-2.0
- Latest release: 1.24.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:19.799Z (1 day ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,897,131 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.742%
- Downloads: 2.227%
- Maintainers (1)
gem.coop: aws-sdk-invoicing
Official AWS Ruby gem for AWS Invoicing. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-invoicing/
- Licenses: Apache-2.0
- Latest release: 1.20.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:35.727Z (1 day ago)
- Versions: 21
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,799,323 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.755%
- Downloads: 2.266%
- Maintainers (1)
gem.coop: aws-sdk-s3tables
Official AWS Ruby gem for Amazon S3 Tables. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-s3tables/
- Licenses: Apache-2.0
- Latest release: 1.26.0 (published 20 days ago)
- Last Synced: 2026-03-02T01:02:27.730Z (1 day ago)
- Versions: 27
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,798,822 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.756%
- Downloads: 2.268%
- Maintainers (1)
rubygems.org: aws-sdk-elasticache
Official AWS Ruby gem for Amazon ElastiCache. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-elasticache/
- Licenses: Apache-2.0
- Latest release: 1.139.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:31:32.766Z (1 day ago)
- Versions: 151
- Dependent Packages: 8
- Dependent Repositories: 2,820
- Downloads: 92,320,790 Total
- Docker Downloads: 62,717,000
-
Rankings:
- Forks count: 0.187%
- Downloads: 0.235%
- Dependent repos count: 0.598%
- Stargazers count: 0.6%
- Docker downloads count: 0.686%
- Average: 0.757%
- Dependent packages count: 2.237%
- Maintainers (1)
gem.coop: aws-sdk-backupsearch
Official AWS Ruby gem for AWS Backup Search. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-backupsearch/
- Licenses: Apache-2.0
- Latest release: 1.18.0 (published about 2 months ago)
- Last Synced: 2026-03-02T01:02:54.709Z (1 day ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,568,017 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.779%
- Downloads: 2.337%
- Maintainers (1)
rubygems.org: aws-sdk-acm
Official AWS Ruby gem for AWS Certificate Manager (ACM). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-acm/
- Licenses: Apache-2.0
- Latest release: 1.100.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:33:18.809Z (1 day ago)
- Versions: 113
- Dependent Packages: 9
- Dependent Repositories: 1,357
- Downloads: 89,907,820 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.244%
- Stargazers count: 0.409%
- Average: 0.788%
- Dependent repos count: 0.839%
- Docker downloads count: 1.143%
- Dependent packages count: 1.881%
- Maintainers (1)
gem.coop: aws-sdk-iotmanagedintegrations
Official AWS Ruby gem for Managed integrations for AWS IoT Device Management. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-iotmanagedintegrations/
- Licenses: Apache-2.0
- Latest release: 1.18.0 (published 25 days ago)
- Last Synced: 2026-03-01T20:31:33.623Z (1 day ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,236,636 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.96%
- Downloads: 2.879%
- Maintainers (1)
rubygems.org: aws-sdk-xray
Official AWS Ruby gem for AWS X-Ray. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-xray/
- Licenses: Apache-2.0
- Latest release: 1.96.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:02:48.688Z (1 day ago)
- Versions: 107
- Dependent Packages: 4
- Dependent Repositories: 1,352
- Downloads: 89,211,034 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.249%
- Stargazers count: 0.409%
- Dependent repos count: 0.841%
- Average: 1.023%
- Docker downloads count: 1.143%
- Dependent packages count: 3.283%
- Maintainers (1)
rubygems.org: aws-sdk-servicecatalog
Official AWS Ruby gem for AWS Service Catalog. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-servicecatalog/
- Licenses: Apache-2.0
- Latest release: 1.126.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:31:37.209Z (1 day ago)
- Versions: 140
- Dependent Packages: 3
- Dependent Repositories: 2,587
- Downloads: 87,788,940 Total
- Docker Downloads: 69,057,369
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.254%
- Stargazers count: 0.409%
- Dependent repos count: 0.629%
- Docker downloads count: 0.696%
- Average: 1.037%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-shield
Official AWS Ruby gem for AWS Shield. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-shield/
- Licenses: Apache-2.0
- Latest release: 1.93.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:32:04.990Z (1 day ago)
- Versions: 105
- Dependent Packages: 3
- Dependent Repositories: 2,583
- Downloads: 85,989,876 Total
- Docker Downloads: 62,593,891
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.269%
- Stargazers count: 0.409%
- Dependent repos count: 0.631%
- Docker downloads count: 0.696%
- Average: 1.04%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-elastictranscoder
[DEPRECATED] Official AWS Ruby gem for Amazon Elastic Transcoder. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-elastictranscoder/
- Licenses: Apache-2.0
- Latest release: 1.80.0 (published 2 months ago)
- Last Synced: 2026-03-01T21:01:56.103Z (1 day ago)
- Versions: 93
- Dependent Packages: 4
- Dependent Repositories: 1,342
- Downloads: 84,434,941 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Forks count: 0.187%
- Downloads: 0.285%
- Stargazers count: 0.599%
- Dependent repos count: 0.845%
- Average: 1.057%
- Docker downloads count: 1.143%
- Dependent packages count: 3.283%
- Maintainers (1)
rubygems.org: aws-sdk-resourcegroups
Official AWS Ruby gem for AWS Resource Groups (Resource Groups). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-resourcegroups/
- Licenses: Apache-2.0
- Latest release: 1.94.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:01:57.156Z (1 day ago)
- Versions: 96
- Dependent Packages: 3
- Dependent Repositories: 1,299
- Downloads: 80,910,718 Total
- Docker Downloads: 235,747,489
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.317%
- Stargazers count: 0.409%
- Docker downloads count: 0.505%
- Dependent repos count: 0.885%
- Average: 1.058%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-securityhub
Official AWS Ruby gem for AWS SecurityHub. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-securityhub/
- Licenses: Apache-2.0
- Latest release: 1.152.0 (published 5 days ago)
- Last Synced: 2026-03-01T21:03:18.181Z (1 day ago)
- Versions: 150
- Dependent Packages: 3
- Dependent Repositories: 2,378
- Downloads: 72,347,890 Total
- Docker Downloads: 54,617,650
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.365%
- Stargazers count: 0.409%
- Dependent repos count: 0.646%
- Docker downloads count: 0.725%
- Average: 1.063%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-transfer
Official AWS Ruby gem for AWS Transfer Family (AWS Transfer). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-transfer/
- Licenses: Apache-2.0
- Latest release: 1.133.0 (published 22 days ago)
- Last Synced: 2026-03-01T22:03:28.912Z (1 day ago)
- Versions: 134
- Dependent Packages: 3
- Dependent Repositories: 2,158
- Downloads: 73,389,609 Total
- Docker Downloads: 54,494,541
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.363%
- Stargazers count: 0.409%
- Dependent repos count: 0.673%
- Docker downloads count: 0.727%
- Average: 1.068%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sigv2
Amazon Web Services Signature Version 2 signing library. Generates sigv2 signature for HTTP requests.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sigv2/
- Licenses: Apache-2.0
- Latest release: 1.3.1 (published 9 months ago)
- Last Synced: 2026-03-02T00:02:43.870Z (1 day ago)
- Versions: 7
- Dependent Packages: 3
- Dependent Repositories: 1,986
- Downloads: 73,635,544 Total
- Docker Downloads: 62,479,831
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.348%
- Stargazers count: 0.409%
- Dependent repos count: 0.696%
- Docker downloads count: 0.762%
- Average: 1.075%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-cognitosync
Official AWS Ruby gem for Amazon Cognito Sync. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-cognitosync/
- Licenses: Apache-2.0
- Latest release: 1.79.0 (published about 2 months ago)
- Last Synced: 2026-03-01T22:31:37.405Z (1 day ago)
- Versions: 92
- Dependent Packages: 3
- Dependent Repositories: 1,337
- Downloads: 82,951,610 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.303%
- Stargazers count: 0.409%
- Dependent repos count: 0.852%
- Docker downloads count: 1.143%
- Average: 1.157%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-mediaconvert
Official AWS Ruby gem for AWS Elemental MediaConvert (MediaConvert). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-mediaconvert/
- Licenses: Apache-2.0
- Latest release: 1.179.0 (published about 1 month ago)
- Last Synced: 2026-03-01T20:31:29.744Z (1 day ago)
- Versions: 180
- Dependent Packages: 3
- Dependent Repositories: 1,300
- Downloads: 89,378,207 Total
- Docker Downloads: 11,066,916
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.263%
- Stargazers count: 0.409%
- Dependent repos count: 0.884%
- Average: 1.161%
- Docker downloads count: 1.176%
- Dependent packages count: 4.021%
- Maintainers (1)
rubygems.org: aws-sdk-iot
Official AWS Ruby gem for AWS IoT. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-iot/
- Licenses: Apache-2.0
- Latest release: 1.163.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:31:31.634Z (1 day ago)
- Versions: 175
- Dependent Packages: 2
- Dependent Repositories: 1,335
- Downloads: 87,988,937 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.251%
- Stargazers count: 0.409%
- Dependent repos count: 0.858%
- Docker downloads count: 1.143%
- Average: 1.352%
- Dependent packages count: 5.237%
- Maintainers (1)
rubygems.org: aws-sdk-timestreamwrite
Official AWS Ruby gem for Amazon Timestream Write (Timestream Write). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-timestreamwrite/
- Licenses: Apache-2.0
- Latest release: 1.60.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:01:45.877Z (1 day ago)
- Versions: 61
- Dependent Packages: 3
- Dependent Repositories: 395
- Downloads: 39,160,751 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.183%
- Stargazers count: 0.381%
- Downloads: 0.66%
- Average: 1.383%
- Docker downloads count: 1.429%
- Dependent repos count: 1.662%
- Dependent packages count: 3.985%
- Maintainers (1)
rubygems.org: aws-sdk-appstream
Official AWS Ruby gem for Amazon AppStream. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-appstream/
- Licenses: Apache-2.0
- Latest release: 1.128.0 (published 11 days ago)
- Last Synced: 2026-03-01T20:31:36.849Z (1 day ago)
- Versions: 141
- Dependent Packages: 2
- Dependent Repositories: 1,335
- Downloads: 85,096,012 Total
- Docker Downloads: 11,992,939
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.276%
- Stargazers count: 0.576%
- Dependent repos count: 0.858%
- Docker downloads count: 1.143%
- Average: 1.384%
- Dependent packages count: 5.237%
- Maintainers (1)
gem.coop: aws-sdk-odb
Official AWS Ruby gem for odb. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-odb/
- Licenses: Apache-2.0
- Latest release: 1.15.0 (published 4 days ago)
- Last Synced: 2026-03-02T00:32:17.041Z (1 day ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,134,522 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.526%
- Downloads: 4.579%
- Maintainers (1)
rubygems.org: aws-sdk-mediastoredata
Official AWS Ruby gem for AWS Elemental MediaStore Data Plane (MediaStore Data). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-mediastoredata/
- Licenses: Apache-2.0
- Latest release: 1.81.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:32:09.693Z (1 day ago)
- Versions: 82
- Dependent Packages: 1
- Dependent Repositories: 1,297
- Downloads: 79,858,592 Total
- Docker Downloads: 11,066,916
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.324%
- Stargazers count: 0.409%
- Dependent repos count: 0.888%
- Docker downloads count: 1.176%
- Average: 1.786%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-macie
[DEPRECATED] Official AWS Ruby gem for Amazon Macie. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-macie/
- Licenses: Apache-2.0
- Latest release: 1.48.0 (published over 2 years ago)
- Last Synced: 2026-03-01T22:03:28.897Z (1 day ago)
- Versions: 49
- Dependent Packages: 1
- Dependent Repositories: 1,198
- Downloads: 64,532,456 Total
- Docker Downloads: 3,847,420
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.362%
- Stargazers count: 0.409%
- Dependent repos count: 0.933%
- Docker downloads count: 1.396%
- Average: 1.836%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-pinpointemail
Official AWS Ruby gem for Amazon Pinpoint Email Service (Pinpoint Email). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-pinpointemail/
- Licenses: Apache-2.0
- Latest release: 1.78.0 (published about 2 months ago)
- Last Synced: 2026-03-01T23:03:25.557Z (1 day ago)
- Versions: 79
- Dependent Packages: 1
- Dependent Repositories: 1,114
- Downloads: 67,140,497 Total
- Docker Downloads: 3,893,545
-
Rankings:
- Forks count: 0.213%
- Downloads: 0.39%
- Stargazers count: 0.409%
- Dependent repos count: 0.97%
- Docker downloads count: 1.4%
- Average: 1.847%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-iotthingsgraph
Official AWS Ruby gem for AWS IoT Things Graph. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-iotthingsgraph/
- Licenses: Apache-2.0
- Latest release: 1.67.0 (published about 2 months ago)
- Last Synced: 2026-03-02T01:02:35.629Z (1 day ago)
- Versions: 68
- Dependent Packages: 1
- Dependent Repositories: 968
- Downloads: 57,011,081 Total
- Docker Downloads: 2,889,666
-
Rankings:
- Forks count: 0.213%
- Stargazers count: 0.389%
- Downloads: 0.456%
- Dependent repos count: 1.043%
- Docker downloads count: 1.455%
- Average: 1.877%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-textract
Official AWS Ruby gem for Amazon Textract. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-textract/
- Licenses: Apache-2.0
- Latest release: 1.89.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:31:38.535Z (1 day ago)
- Versions: 90
- Dependent Packages: 1
- Dependent Repositories: 1,045
- Downloads: 65,660,023 Total
- Docker Downloads: 3,893,260
-
Rankings:
- Forks count: 0.201%
- Downloads: 0.414%
- Stargazers count: 0.588%
- Dependent repos count: 1.006%
- Docker downloads count: 1.407%
- Average: 1.887%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-lakeformation
Official AWS Ruby gem for AWS Lake Formation. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-lakeformation/
- Licenses: Apache-2.0
- Latest release: 1.86.0 (published 22 days ago)
- Last Synced: 2026-03-01T21:33:10.115Z (1 day ago)
- Versions: 87
- Dependent Packages: 2
- Dependent Repositories: 887
- Downloads: 54,677,886 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Forks count: 0.213%
- Stargazers count: 0.409%
- Downloads: 0.477%
- Dependent repos count: 1.107%
- Docker downloads count: 1.461%
- Average: 1.895%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-forecastservice
Official AWS Ruby gem for Amazon Forecast Service. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-forecastservice/
- Licenses: Apache-2.0
- Latest release: 1.83.0 (published about 2 months ago)
- Last Synced: 2026-03-02T00:03:29.448Z (1 day ago)
- Versions: 84
- Dependent Packages: 1
- Dependent Repositories: 866
- Downloads: 55,730,959 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Forks count: 0.213%
- Stargazers count: 0.409%
- Downloads: 0.468%
- Dependent repos count: 1.123%
- Docker downloads count: 1.461%
- Average: 1.896%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-workmailmessageflow
Official AWS Ruby gem for Amazon WorkMail Message Flow. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-workmailmessageflow/
- Licenses: Apache-2.0
- Latest release: 1.64.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:32.242Z (1 day ago)
- Versions: 65
- Dependent Packages: 1
- Dependent Repositories: 840
- Downloads: 52,091,630 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Forks count: 0.213%
- Stargazers count: 0.409%
- Downloads: 0.492%
- Dependent repos count: 1.142%
- Docker downloads count: 1.461%
- Average: 1.904%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-codestarconnections
Official AWS Ruby gem for AWS CodeStar connections. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-codestarconnections/
- Licenses: Apache-2.0
- Latest release: 1.71.0 (published about 2 months ago)
- Last Synced: 2026-03-01T20:02:42.117Z (1 day ago)
- Versions: 72
- Dependent Packages: 1
- Dependent Repositories: 728
- Downloads: 48,293,352 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Forks count: 0.183%
- Stargazers count: 0.381%
- Downloads: 0.54%
- Dependent repos count: 1.288%
- Docker downloads count: 1.411%
- Average: 1.91%
- Dependent packages count: 7.654%
- Maintainers (1)
rubygems.org: aws-sdk-codegurureviewer
Official AWS Ruby gem for Amazon CodeGuru Reviewer (CodeGuruReviewer). This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-codegurureviewer/
- Licenses: Apache-2.0
- Latest release: 1.77.0 (published about 2 months ago)
- Last Synced: 2026-03-01T21:02:06.044Z (1 day ago)
- Versions: 78
- Dependent Packages: 1
- Dependent Repositories: 736
- Downloads: 49,632,971 Total
- Docker Downloads: 2,877,675
-
Rankings:
- Forks count: 0.187%
- Downloads: 0.52%
- Stargazers count: 0.6%
- Dependent repos count: 1.257%
- Docker downloads count: 1.461%
- Average: 1.955%
- Dependent packages count: 7.703%
- Maintainers (1)
rubygems.org: aws-sdk-bedrockagentcorecontrol
Official AWS Ruby gem for Amazon Bedrock AgentCore Control. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-bedrockagentcorecontrol/
- Licenses: Apache-2.0
- Latest release: 1.24.0 (published 26 days ago)
- Last Synced: 2026-02-11T13:18:59.069Z (20 days ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 943,249 Total
-
Rankings:
- Dependent packages count: 14.341%
- Dependent repos count: 43.928%
- Average: 50.341%
- Downloads: 92.755%
- Maintainers (1)
debian-11: ruby-aws-sdk-kms
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: https://packages.debian.org/bullseye/ruby-aws-sdk-kms
- Licenses:
- Latest release: 1.24.0-3 (published 20 days ago)
- Last Synced: 2026-02-13T08:18:42.422Z (18 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
Dependencies
- actions/checkout v4 composite
- aws-actions/configure-aws-credentials v4 composite
- ruby/setup-ruby v1 composite
- thollander/actions-comment-pull-request main composite
- trilom/file-changes-action v1 composite
- actions/checkout v4 composite
- ruby/setup-ruby v1 composite
- aws-actions/closed-issue-message v1 composite
- actions/checkout v4 composite
- actions/dependency-review-action v3 composite
- aws-github-ops/handle-stale-discussions v1 composite
- aws-actions/stale-issue-cleanup v6 composite
- addressable >= 0 development
- benchmark >= 0 development
- cucumber >= 0 development
- kramdown >= 0 development
- memory_profiler >= 0 development
- multipart-post >= 0 development
- mustache >= 0 development
- pry >= 0 development
- rdiscount >= 0 development
- rspec >= 0 development
- rubocop = 1.28.0 development
- webmock >= 0 development
- yard >= 0.9.26 development
- yard-sitemap ~> 1.0 development
- http-2 >= 0
- jmespath >= 0
- json >= 0
- libxml-ruby >= 0
- nokogiri >= 1.6.8.1
- oga >= 0
- oj >= 0
- ox >= 0
- rake >= 0
- rexml >= 0
- kramdown >= 0
- mustache >= 0
- aws-sdk-resources ~> 3
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
- aws-sdk-core ~> 3, >= 3.188.0
- aws-sigv4 ~> 1.1
Score: 36.886325122983656