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 crash-reporting rspec code-formatter ruby-gem
Last synced: about 10 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 (almost 15 years ago)
- Default Branch: version-3
- Last Pushed: 2026-06-12T19:42:34.000Z (3 days ago)
- Last Synced: 2026-06-13T04:05:23.319Z (3 days ago)
- Topics: aws, aws-sdk, cloud, ruby
- Language: Ruby
- Homepage: https://aws.amazon.com/sdk-for-ruby/
- Size: 666 MB
- Stars: 3,659
- Watchers: 131
- Forks: 1,235
- Open Issues: 26
- 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: 536
- Last ynced at: 2026-03-02T20:07:16.924Z
- 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,847
Total Committers: 261
Avg Commits per committer: 30.065
Development Distribution Score (DDS): 0.592
Commits in past year: 351
Committers in past year: 17
Avg Commits per committer in past year: 20.647
Development Distribution Score (DDS) in past year: 0.308
| 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 | 597 |
| 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 | 90 |
| dependabot[bot] | 4****] | 47 |
| Trevor Rowe | t****e@a****m | 43 |
| Richard Wang | 4****4 | 38 |
| 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 |
| Zachery Moneypenny | z****y@a****o | 6 |
| Peter Mounce | p****e@j****m | 6 |
| Yuki Kurihara | c****i@g****m | 6 |
| Ryan O'Keeffe | o****d@g****m | 5 |
| Manuel Pata | p****a@a****e | 5 |
| Chan | 5****o | 4 |
| Enis Konuk | e****s@c****m | 4 |
| and 231 more... | ||
Committer domains:
- amazon.com: 12
- acquia.com: 2
- cookpad.com: 2
- fastmail.fm: 2
- rightscale.com: 2
- darcybrown.com: 1
- planningcenter.com: 1
- balveda.com: 1
- y7mail.com: 1
- ogan.net: 1
- kohlvanwijngaarden.nl: 1
- terminus.com: 1
- grandrounds.com: 1
- meraki.com: 1
- takeyu-web.com: 1
- bbc.co.uk: 1
- subledger.com: 1
- every-pay.com: 1
- captaintrain.com: 1
- therealreal.com: 1
- nleger.com: 1
- lumoslabs.com: 1
- mdsol.com: 1
- ama.ab.ca: 1
- malauzai.com: 1
- fastmail.net: 1
- thoughtworks.com: 1
- mac.com: 1
- ktheory.com: 1
- shopify.com: 1
- oriontransfer.co.nz: 1
- adorable.io: 1
- just-eat.com: 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
- logicworks.net: 1
- knjko.org: 1
- kumukan.com: 1
- jaredbeck.com: 1
- scream.com: 1
- kitchen.io: 1
- techno-geeks.org: 1
- joao-carlos.com: 1
- joelvanhorn.com: 1
- suse.com: 1
- julik.nl: 1
- wanko.cc: 1
- redhat.com: 1
- gaurishsharma.com: 1
- mcquistin.co.uk: 1
- ianneubert.com: 1
- jamesls.com: 1
- goyman.com: 1
- frezbo.com: 1
- olivierlacan.com: 1
- redbubble.com: 1
- lincoln.hk: 1
- marckohlbrugge.com: 1
- 123mail.org: 1
- snark.net: 1
- dogbiscuit.org: 1
- bloomfire.com: 1
- ministrycentered.com: 1
- intelimetrica.com: 1
- ownlocal.com: 1
- eposnow.com: 1
- expedia.com: 1
- wendtswelt.de: 1
- fastmail.com: 1
- morphogenic.net: 1
- itkq.jp: 1
- neighborland.com: 1
- gitter.im: 1
- brennetot.com: 1
- galacticcode.com: 1
- schilling.io: 1
- rachelevans.org: 1
- rin-raeuber.com: 1
- o2.pl: 1
- samhuri.net: 1
- scopestar.com: 1
- utilum.com: 1
- vaillant.im: 1
- pillpack.com: 1
- pancakes.email: 1
- clerc.io: 1
- gsa.gov: 1
Issue and Pull Request metadata
Last synced: 20 days ago
Total issues: 204
Total pull requests: 563
Average time to close issues: 3 months
Average time to close pull requests: 9 days
Total issue authors: 186
Total pull request authors: 58
Average comments per issue: 5.55
Average comments per pull request: 1.24
Merged pull request: 444
Bot issues: 0
Bot pull requests: 62
Past year issues: 24
Past year pull requests: 108
Past year average time to close issues: 5 days
Past year average time to close pull requests: 5 days
Past year issue authors: 24
Past year pull request authors: 19
Past year average comments per issue: 5.21
Past year average comments per pull request: 0.84
Past year merged pull request: 73
Past year bot issues: 0
Past year bot pull requests: 21
Top Issue Authors
- bkuhlmann (4)
- HoneyryderChuck (3)
- mullermp (3)
- adamdebono (2)
- thomaswitt (2)
- yokonao (2)
- andrykonchin (2)
- ivanphdz (2)
- mdomsch-seczetta (2)
- jcoetzee (2)
- wjordan (2)
- rittneje (2)
- normelton (2)
- fcheung (2)
- u-kai (1)
Top Pull Request Authors
- mullermp (163)
- alextwoods (121)
- jterapin (82)
- dependabot[bot] (62)
- richardwang1124 (39)
- zendesk-duncanboynton (4)
- Schwad (4)
- Earlopain (4)
- sichanyoo (4)
- kazuyainoue0124 (4)
- byroot (4)
- victorboissiere (4)
- nekketsuuu (3)
- ducks (3)
- ksss (3)
Top Issue Labels
- bug (80)
- feature-request (42)
- needs-triage (37)
- guidance (33)
- service-api (20)
- response-requested (18)
- investigating (15)
- documentation (14)
- p3 (13)
- potential-regression (10)
- p2 (8)
- closed-for-staleness (7)
- closing-soon (7)
- wontfix (7)
- third-party (6)
- in-progress (6)
- queued (4)
- no-autoclose (4)
- needs-major-version (3)
- dependencies (3)
- blocked (2)
- s3 (2)
- announcement (1)
- resource (1)
- duplicate (1)
- help wanted (1)
Top Pull Request Labels
- dependencies (62)
- github_actions (39)
- pr/do-not-merge (7)
- duplicate (2)
- investigating (2)
- response-requested (1)
- pr/work-in-progress (1)
- closing-soon (1)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 1,802,396,089 total
- Total docker downloads: 213,678,616
- Total dependent packages: 76 (may contain duplicates)
- Total dependent repositories: 11,609 (may contain duplicates)
- Total versions: 4,608
- Total maintainers: 1
ubuntu-20.04: ruby-aws-sigv4
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses: apache-2.0
- Latest release: 1.1.0-2 (published 4 months ago)
- Last Synced: 2026-03-13T13:25:21.850Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.068%
- Average: 0.086%
- Stargazers count: 0.276%
gem.coop: 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.141.0 (published 13 days ago)
- Last Synced: 2026-06-14T11:35:53.557Z (2 days ago)
- Versions: 142
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 75,629,601 Total
- Docker Downloads: 54,494,541
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.131%
- Downloads: 0.393%
- Maintainers (1)
gem.coop: aws-sdk-cloudwatchrum
Official AWS Ruby gem for CloudWatch RUM. 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-cloudwatchrum/
- Licenses: Apache-2.0
- Latest release: 1.59.0 (published 19 days ago)
- Last Synced: 2026-06-14T13:11:51.319Z (1 day ago)
- Versions: 60
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 27,605,820 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.278%
- Downloads: 0.833%
- 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.45.0 (published 12 days ago)
- Last Synced: 2026-06-14T17:01:19.744Z (1 day ago)
- Versions: 46
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 17,285,674 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-medicalimaging
Official AWS Ruby gem for AWS Health Imaging. 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-medicalimaging/
- Licenses: Apache-2.0
- Latest release: 1.49.0 (published 20 days ago)
- Last Synced: 2026-06-14T13:59:16.102Z (1 day ago)
- Versions: 50
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,972,016 Total
- Docker Downloads: 151,516
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.417%
- Downloads: 1.25%
- 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.101.0 (published 13 days ago)
- Last Synced: 2026-06-11T08:01:00.833Z (5 days ago)
- Versions: 112
- Dependent Packages: 4
- Dependent Repositories: 1,352
- Downloads: 91,541,313 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-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.171.0 (published 13 days ago)
- Last Synced: 2026-06-14T19:34:13.494Z (1 day ago)
- Versions: 183
- Dependent Packages: 2
- Dependent Repositories: 1,335
- Downloads: 90,285,399 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-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.88.0 (published 24 days ago)
- Last Synced: 2026-06-14T13:01:58.753Z (1 day ago)
- Versions: 89
- Dependent Packages: 1
- Dependent Repositories: 866
- Downloads: 57,680,386 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-gluedatabrew
Official AWS Ruby gem for AWS Glue DataBrew. 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-gluedatabrew/
- Licenses: Apache-2.0
- Latest release: 1.71.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:23:22.252Z (8 days ago)
- Versions: 72
- Dependent Packages: 1
- Dependent Repositories: 377
- Downloads: 39,767,660 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.67%
- Docker downloads count: 1.481%
- Dependent repos count: 1.685%
- Average: 2.025%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-lookoutforvision
[DEPRECATED] Official AWS Ruby gem for Amazon Lookout for Vision. 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-lookoutforvision/
- Licenses: Apache-2.0
- Latest release: 1.57.0 (published 8 months ago)
- Last Synced: 2026-06-07T20:22:36.544Z (8 days ago)
- Versions: 58
- Dependent Packages: 1
- Dependent Repositories: 372
- Downloads: 38,997,993 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.664%
- Docker downloads count: 1.481%
- Dependent repos count: 1.696%
- Average: 2.026%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-customerprofiles
Official AWS Ruby gem for Amazon Connect Customer Profiles (Customer Profiles). 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-customerprofiles/
- Licenses: Apache-2.0
- Latest release: 1.90.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:22:15.738Z (8 days ago)
- Versions: 91
- Dependent Packages: 1
- Dependent Repositories: 371
- Downloads: 39,984,456 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.665%
- Docker downloads count: 1.481%
- Dependent repos count: 1.701%
- Average: 2.027%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.60.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:23:17.878Z (8 days ago)
- Versions: 61
- Dependent Packages: 1
- Dependent Repositories: 369
- Downloads: 39,624,808 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.671%
- Docker downloads count: 1.481%
- Dependent repos count: 1.703%
- Average: 2.028%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-amplifybackend
Official AWS Ruby gem for AmplifyBackend. 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-amplifybackend/
- Licenses: Apache-2.0
- Latest release: 1.65.0 (published 11 days ago)
- Last Synced: 2026-06-07T20:22:59.073Z (8 days ago)
- Versions: 66
- Dependent Packages: 1
- Dependent Repositories: 372
- Downloads: 38,855,709 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.687%
- Docker downloads count: 1.481%
- Dependent repos count: 1.696%
- Average: 2.03%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-connectcontactlens
Official AWS Ruby gem for Amazon Connect Contact Lens. 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-connectcontactlens/
- Licenses: Apache-2.0
- Latest release: 1.59.0 (published 17 days ago)
- Last Synced: 2026-06-07T20:23:09.397Z (8 days ago)
- Versions: 60
- Dependent Packages: 1
- Dependent Repositories: 372
- Downloads: 38,669,958 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.692%
- Docker downloads count: 1.481%
- Dependent repos count: 1.696%
- Average: 2.031%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-wellarchitected
Official AWS Ruby gem for AWS Well-Architected Tool (Well-Architected). 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-wellarchitected/
- Licenses: Apache-2.0
- Latest release: 1.70.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:23:08.805Z (8 days ago)
- Versions: 71
- Dependent Packages: 1
- Dependent Repositories: 365
- Downloads: 39,412,576 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.677%
- Docker downloads count: 1.481%
- Dependent repos count: 1.715%
- Average: 2.031%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-braket
Official AWS Ruby gem for Braket. 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-braket/
- Licenses: Apache-2.0
- Latest release: 1.73.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.913Z (18 days ago)
- Versions: 74
- Dependent Packages: 1
- Dependent Repositories: 417
- Downloads: 42,463,166 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.349%
- Stargazers count: 0.387%
- Downloads: 0.623%
- Docker downloads count: 1.48%
- Dependent repos count: 1.629%
- Average: 2.036%
- Dependent packages count: 7.746%
- Maintainers (1)
rubygems.org: aws-sdk-lookoutequipment
Official AWS Ruby gem for Amazon Lookout for Equipment (LookoutEquipment). 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-lookoutequipment/
- Licenses: Apache-2.0
- Latest release: 1.66.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:37.446Z (18 days ago)
- Versions: 67
- Dependent Packages: 1
- Dependent Repositories: 301
- Downloads: 36,854,309 Total
- Docker Downloads: 2,871,135
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.725%
- Docker downloads count: 1.5%
- Dependent repos count: 1.837%
- Average: 2.063%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-finspacedata
Official AWS Ruby gem for FinSpace Public API (FinSpace 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-finspacedata/
- Licenses: Apache-2.0
- Latest release: 1.68.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:25:34.782Z (18 days ago)
- Versions: 69
- Dependent Packages: 1
- Dependent Repositories: 288
- Downloads: 36,057,040 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.742%
- Docker downloads count: 1.5%
- Dependent repos count: 1.868%
- Average: 2.071%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-ssmincidents
Official AWS Ruby gem for AWS Systems Manager Incident Manager (SSM Incidents). 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-ssmincidents/
- Licenses: Apache-2.0
- Latest release: 1.68.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:25:35.491Z (18 days ago)
- Versions: 69
- Dependent Packages: 1
- Dependent Repositories: 285
- Downloads: 35,984,757 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.742%
- Docker downloads count: 1.5%
- Dependent repos count: 1.878%
- Average: 2.073%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-proton
Official AWS Ruby gem for AWS Proton. 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-proton/
- Licenses: Apache-2.0
- Latest release: 1.71.0 (published 17 days ago)
- Last Synced: 2026-06-07T20:23:42.850Z (8 days ago)
- Versions: 72
- Dependent Packages: 1
- Dependent Repositories: 271
- Downloads: 34,080,882 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.778%
- Docker downloads count: 1.5%
- Dependent repos count: 1.906%
- Average: 2.083%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-chimesdkmessaging
Official AWS Ruby gem for Amazon Chime SDK Messaging. 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-chimesdkmessaging/
- Licenses: Apache-2.0
- Latest release: 1.66.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:23:14.371Z (8 days ago)
- Versions: 67
- Dependent Packages: 1
- Dependent Repositories: 255
- Downloads: 32,748,533 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.81%
- Docker downloads count: 1.5%
- Dependent repos count: 1.957%
- Average: 2.097%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-route53recoverycontrolconfig
Official AWS Ruby gem for AWS Route53 Recovery Control Config. 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-route53recoverycontrolconfig/
- Licenses: Apache-2.0
- Latest release: 1.59.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.791Z (18 days ago)
- Versions: 60
- Dependent Packages: 1
- Dependent Repositories: 254
- Downloads: 31,510,691 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.829%
- Docker downloads count: 1.5%
- Dependent repos count: 1.963%
- Average: 2.101%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-chimesdkidentity
Official AWS Ruby gem for Amazon Chime SDK Identity. 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-chimesdkidentity/
- Licenses: Apache-2.0
- Latest release: 1.59.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:38.817Z (8 days ago)
- Versions: 60
- Dependent Packages: 1
- Dependent Repositories: 255
- Downloads: 31,395,447 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.837%
- Docker downloads count: 1.5%
- Dependent repos count: 1.957%
- Average: 2.101%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-finspace
Official AWS Ruby gem for FinSpace User Environment Management service (finspace). 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-finspace/
- Licenses: Apache-2.0
- Latest release: 1.69.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:22:25.190Z (8 days ago)
- Versions: 69
- Dependent Packages: 1
- Dependent Repositories: 288
- Downloads: 35,272,747 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.35%
- Stargazers count: 0.386%
- Downloads: 0.767%
- Docker downloads count: 1.499%
- Dependent repos count: 1.868%
- Average: 2.103%
- Dependent packages count: 7.746%
- Maintainers (1)
rubygems.org: aws-sdk-connectwisdomservice
Official AWS Ruby gem for Amazon Connect Wisdom 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-connectwisdomservice/
- Licenses: Apache-2.0
- Latest release: 1.64.0 (published 12 days ago)
- Last Synced: 2026-06-07T20:22:59.034Z (8 days ago)
- Versions: 65
- Dependent Packages: 1
- Dependent Repositories: 234
- Downloads: 30,923,633 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.842%
- Docker downloads count: 1.5%
- Dependent repos count: 2.051%
- Average: 2.118%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.59.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:23:17.865Z (8 days ago)
- Versions: 60
- Dependent Packages: 1
- Dependent Repositories: 240
- Downloads: 30,188,262 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.864%
- Docker downloads count: 1.5%
- Dependent repos count: 2.039%
- Average: 2.12%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-panorama
Official AWS Ruby gem for AWS Panorama (Panorama). 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-panorama/
- Licenses: Apache-2.0
- Latest release: 1.58.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:23:40.629Z (8 days ago)
- Versions: 59
- Dependent Packages: 1
- Dependent Repositories: 223
- Downloads: 30,102,182 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.862%
- Docker downloads count: 1.5%
- Dependent repos count: 2.086%
- Average: 2.127%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-chimesdkmeetings
Official AWS Ruby gem for Amazon Chime SDK Meetings. 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-chimesdkmeetings/
- Licenses: Apache-2.0
- Latest release: 1.67.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.445Z (18 days ago)
- Versions: 68
- Dependent Packages: 2
- Dependent Repositories: 215
- Downloads: 30,831,246 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.847%
- Docker downloads count: 1.5%
- Dependent repos count: 2.111%
- Average: 2.129%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-workspacesweb
Official AWS Ruby gem for Amazon WorkSpaces Web. 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-workspacesweb/
- Licenses: Apache-2.0
- Latest release: 1.65.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:22:56.356Z (8 days ago)
- Versions: 66
- Dependent Packages: 1
- Dependent Repositories: 206
- Downloads: 28,128,365 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.908%
- Docker downloads count: 1.5%
- Dependent repos count: 2.139%
- Average: 2.144%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.55.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:22:23.240Z (8 days ago)
- Versions: 56
- Dependent Packages: 1
- Dependent Repositories: 207
- Downloads: 27,885,429 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.924%
- Docker downloads count: 1.5%
- Dependent repos count: 2.133%
- Average: 2.145%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.59.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:37.292Z (18 days ago)
- Versions: 59
- Dependent Packages: 1
- Dependent Repositories: 204
- Downloads: 27,577,524 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.921%
- Docker downloads count: 1.5%
- Average: 2.148%
- Dependent repos count: 2.151%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-recyclebin
Official AWS Ruby gem for Amazon Recycle Bin. 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-recyclebin/
- Licenses: Apache-2.0
- Latest release: 1.56.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:23:14.375Z (8 days ago)
- Versions: 56
- Dependent Packages: 1
- Dependent Repositories: 206
- Downloads: 27,286,357 Total
- Docker Downloads: 2,871,112
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 0.938%
- Docker downloads count: 1.5%
- Dependent repos count: 2.139%
- Average: 2.149%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-keyspaces
Official AWS Ruby gem for Amazon Keyspaces. 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-keyspaces/
- Licenses: Apache-2.0
- Latest release: 1.59.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:25:35.336Z (18 days ago)
- Versions: 60
- Dependent Packages: 1
- Dependent Repositories: 149
- Downloads: 24,784,395 Total
- Docker Downloads: 2,833,310
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.016%
- Docker downloads count: 1.538%
- Average: 2.209%
- Dependent repos count: 2.383%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.58.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:23:01.808Z (8 days ago)
- Versions: 59
- Dependent Packages: 1
- Dependent Repositories: 119
- Downloads: 24,151,701 Total
- Docker Downloads: 2,833,310
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.052%
- Docker downloads count: 1.538%
- Average: 2.253%
- Dependent repos count: 2.614%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-billingconductor
Official AWS Ruby gem for AWSBillingConductor. 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-billingconductor/
- Licenses: Apache-2.0
- Latest release: 1.59.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.427Z (18 days ago)
- Versions: 60
- Dependent Packages: 1
- Dependent Repositories: 140
- Downloads: 24,308,569 Total
- Docker Downloads: 2,833,310
-
Rankings:
- Forks count: 0.261%
- Stargazers count: 0.541%
- Downloads: 1.03%
- Docker downloads count: 1.538%
- Average: 2.262%
- Dependent repos count: 2.457%
- Dependent packages count: 7.747%
- Maintainers (1)
rubygems.org: aws-sdk-connectcampaignservice
Official AWS Ruby gem for AmazonConnectCampaignService. 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-connectcampaignservice/
- Licenses: Apache-2.0
- Latest release: 1.50.0 (published 12 days ago)
- Last Synced: 2026-06-07T20:23:08.405Z (8 days ago)
- Versions: 51
- Dependent Packages: 1
- Dependent Repositories: 88
- Downloads: 23,572,583 Total
- Docker Downloads: 2,833,101
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.063%
- Docker downloads count: 1.541%
- Average: 2.308%
- Dependent repos count: 2.932%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-licensemanagerusersubscriptions
Official AWS Ruby gem for AWS License Manager User Subscriptions. 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-licensemanagerusersubscriptions/
- Licenses: Apache-2.0
- Latest release: 1.52.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:23:20.498Z (8 days ago)
- Versions: 53
- Dependent Packages: 1
- Dependent Repositories: 67
- Downloads: 22,162,314 Total
- Docker Downloads: 2,833,101
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.138%
- Docker downloads count: 1.541%
- Average: 2.373%
- Dependent repos count: 3.243%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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 about 1 year ago)
- Last Synced: 2026-06-07T20:22:50.349Z (8 days ago)
- Versions: 34
- Dependent Packages: 1
- Dependent Repositories: 66
- Downloads: 19,495,528 Total
- Docker Downloads: 2,833,101
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.134%
- Docker downloads count: 1.541%
- Average: 2.375%
- Dependent repos count: 3.261%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-backupstorage
[DEPRECATED] Official AWS Ruby gem for AWS Backup Storage. 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-backupstorage/
- Licenses: Apache-2.0
- Latest release: 1.16.0 (published about 2 years ago)
- Last Synced: 2026-06-07T20:22:39.267Z (8 days ago)
- Versions: 17
- Dependent Packages: 1
- Dependent Repositories: 66
- Downloads: 15,284,406 Total
- Docker Downloads: 2,833,101
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.163%
- Docker downloads count: 1.541%
- Average: 2.38%
- Dependent repos count: 3.261%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-migrationhuborchestrator
Official AWS Ruby gem for AWS Migration Hub Orchestrator. 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-migrationhuborchestrator/
- Licenses: Apache-2.0
- Latest release: 1.47.0 (published 25 days ago)
- Last Synced: 2026-06-07T20:23:04.857Z (8 days ago)
- Versions: 48
- Dependent Packages: 1
- Dependent Repositories: 54
- Downloads: 20,748,399 Total
- Docker Downloads: 2,833,028
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.256%
- Docker downloads count: 1.541%
- Average: 2.44%
- Dependent repos count: 3.53%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-chimesdkvoice
Official AWS Ruby gem for Amazon Chime SDK Voice. 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-chimesdkvoice/
- Licenses: Apache-2.0
- Latest release: 1.58.0 (published 11 days ago)
- Last Synced: 2026-06-07T20:22:15.104Z (8 days ago)
- Versions: 59
- Dependent Packages: 1
- Dependent Repositories: 52
- Downloads: 19,358,222 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.379%
- Docker downloads count: 1.549%
- Average: 2.471%
- Dependent repos count: 3.585%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-iotroborunner
[DEPRECATED] Official AWS Ruby gem for AWS IoT RoboRunner. 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-iotroborunner/
- Licenses: Apache-2.0
- Latest release: 1.12.0 (published over 2 years ago)
- Last Synced: 2026-06-07T20:22:59.081Z (8 days ago)
- Versions: 13
- Dependent Packages: 1
- Dependent Repositories: 52
- Downloads: 11,277,743 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.4%
- Docker downloads count: 1.549%
- Average: 2.475%
- Dependent repos count: 3.585%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-securitylake
Official AWS Ruby gem for Amazon Security Lake. 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-securitylake/
- Licenses: Apache-2.0
- Latest release: 1.56.0 (published 12 days ago)
- Last Synced: 2026-06-07T20:22:38.834Z (8 days ago)
- Versions: 57
- Dependent Packages: 1
- Dependent Repositories: 52
- Downloads: 18,997,875 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.418%
- Docker downloads count: 1.549%
- Average: 2.478%
- Dependent repos count: 3.585%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.61.0 (published 11 days ago)
- Last Synced: 2026-06-07T20:23:37.723Z (8 days ago)
- Versions: 62
- Dependent Packages: 1
- Dependent Repositories: 52
- Downloads: 19,005,930 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.421%
- Docker downloads count: 1.549%
- Average: 2.478%
- Dependent repos count: 3.585%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.48.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:13.607Z (8 days ago)
- Versions: 49
- Dependent Packages: 1
- Dependent Repositories: 52
- Downloads: 18,943,651 Total
- Docker Downloads: 2,832,928
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.422%
- Docker downloads count: 1.549%
- Average: 2.478%
- Dependent repos count: 3.585%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-sagemakermetrics
Official AWS Ruby gem for Amazon SageMaker Metrics Service (SageMaker Metrics). 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-sagemakermetrics/
- Licenses: Apache-2.0
- Latest release: 1.48.0 (published 25 days ago)
- Last Synced: 2026-06-07T20:22:50.340Z (8 days ago)
- Versions: 49
- Dependent Packages: 1
- Dependent Repositories: 24
- Downloads: 18,565,287 Total
- Docker Downloads: 2,832,893
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.465%
- Docker downloads count: 1.558%
- Average: 2.714%
- Dependent repos count: 4.947%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-cleanrooms
Official AWS Ruby gem for AWS Clean Rooms 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-cleanrooms/
- Licenses: Apache-2.0
- Latest release: 1.74.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:23:42.482Z (8 days ago)
- Versions: 75
- Dependent Packages: 1
- Dependent Repositories: 23
- Downloads: 17,741,283 Total
- Docker Downloads: 2,816,061
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.542%
- Docker downloads count: 1.559%
- Average: 2.743%
- Dependent repos count: 5.039%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.46.0 (published 25 days ago)
- Last Synced: 2026-06-07T20:23:01.776Z (8 days ago)
- Versions: 47
- Dependent Packages: 1
- Dependent Repositories: 23
- Downloads: 17,671,785 Total
- Docker Downloads: 2,816,061
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.545%
- Docker downloads count: 1.559%
- Average: 2.743%
- Dependent repos count: 5.039%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: aws-sdk-ivsrealtime
Official AWS Ruby gem for Amazon Interactive Video Service RealTime (ivsrealtime). 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-ivsrealtime/
- Licenses: Apache-2.0
- Latest release: 1.65.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:19.368Z (8 days ago)
- Versions: 66
- Dependent Packages: 1
- Dependent Repositories: 21
- Downloads: 15,849,819 Total
- Docker Downloads: 2,781,115
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 1.772%
- Docker downloads count: 1.91%
- Average: 2.872%
- Dependent repos count: 5.236%
- Dependent packages count: 7.748%
- Maintainers (1)
rubygems.org: 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.80.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.650Z (18 days ago)
- Versions: 81
- Dependent Packages: 4
- Dependent Repositories: 1
- Downloads: 18,007,540 Total
- Docker Downloads: 76,799
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Docker downloads count: 1.878%
- Downloads: 4.092%
- Dependent packages count: 5.265%
- Average: 5.586%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-medicalimaging
Official AWS Ruby gem for AWS Health Imaging. 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-medicalimaging/
- Licenses: Apache-2.0
- Latest release: 1.49.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:31.592Z (8 days ago)
- Versions: 50
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 12,854,425 Total
- Docker Downloads: 151,516
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Docker downloads count: 1.834%
- Downloads: 2.893%
- Average: 5.793%
- Dependent packages count: 7.748%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-managedblockchainquery
Official AWS Ruby gem for Amazon Managed Blockchain Query. 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-managedblockchainquery/
- Licenses: Apache-2.0
- Latest release: 1.45.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:53.832Z (8 days ago)
- Versions: 46
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 12,745,431 Total
- Docker Downloads: 151,516
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Docker downloads count: 1.834%
- Downloads: 3.01%
- Average: 5.812%
- Dependent packages count: 7.748%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: 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.67.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:22:46.863Z (8 days ago)
- Versions: 68
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 13,893,778 Total
- Docker Downloads: 2,778,806
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 2.488%
- Docker downloads count: 3.346%
- Average: 5.977%
- Dependent packages count: 7.748%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-codegurusecurity
Official AWS Ruby gem for Amazon CodeGuru Security. 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-codegurusecurity/
- Licenses: Apache-2.0
- Latest release: 1.46.0 (published 17 days ago)
- Last Synced: 2026-06-07T20:22:22.782Z (8 days ago)
- Versions: 47
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 13,510,818 Total
- Docker Downloads: 2,778,806
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 2.542%
- Docker downloads count: 3.346%
- Average: 5.986%
- Dependent packages count: 7.748%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-appfabric
Official AWS Ruby gem for AppFabric. 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-appfabric/
- Licenses: Apache-2.0
- Latest release: 1.43.0 (published 12 days ago)
- Last Synced: 2026-06-07T20:23:41.748Z (8 days ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 13,385,277 Total
- Docker Downloads: 2,777,640
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 2.658%
- Docker downloads count: 3.346%
- Average: 6.005%
- Dependent packages count: 7.748%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-launchwizard
Official AWS Ruby gem for AWS Launch Wizard. 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-launchwizard/
- Licenses: Apache-2.0
- Latest release: 1.39.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:22:46.444Z (8 days ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 9,496,475 Total
- Docker Downloads: 76,799
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Downloads: 6.823%
- Average: 7.37%
- Dependent packages count: 7.748%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-trustedadvisor
Official AWS Ruby gem for TrustedAdvisor Public 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-trustedadvisor/
- Licenses: Apache-2.0
- Latest release: 1.40.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:23:35.249Z (8 days ago)
- Versions: 41
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 9,350,456 Total
- Docker Downloads: 76,799
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Dependent packages count: 7.748%
- Average: 7.947%
- Downloads: 9.707%
- Dependent repos count: 21.714%
- Maintainers (1)
rubygems.org: aws-sdk-cloudfrontkeyvaluestore
Official AWS Ruby gem for Amazon CloudFront KeyValueStore. 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-cloudfrontkeyvaluestore/
- Licenses: Apache-2.0
- Latest release: 1.38.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:22:15.730Z (8 days ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 9,653,898 Total
- Docker Downloads: 76,799
-
Rankings:
- Forks count: 0.186%
- Stargazers count: 0.381%
- Dependent packages count: 7.748%
- Average: 8.399%
- Downloads: 11.966%
- Dependent repos count: 21.714%
- Maintainers (1)
gem.coop: aws-sdk-rtbfabric
Official AWS Ruby gem for RTBFabric. 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-rtbfabric/
- Licenses: Apache-2.0
- Latest release: 1.14.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:22:26.000Z (8 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,002,117 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.189%
- Stargazers count: 0.391%
- Average: 9.283%
- Downloads: 45.835%
- Maintainers (1)
rubygems.org: aws-sdk-sfn
This gem is deprecated, please use `aws-sdk-states` instead. This gem is part of the AWS SDK for Ruby.
- Homepage: http://github.com/aws/aws-sdk-ruby
- Documentation: http://www.rubydoc.info/gems/aws-sdk-sfn/
- Licenses: Apache-2.0
- Latest release: 1.0.0.rc4 (published about 9 years ago)
- Last Synced: 2026-06-07T20:22:24.278Z (8 days ago)
- Versions: 3
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 13,332 Total
-
Rankings:
- Stargazers count: 0.356%
- Forks count: 0.357%
- Dependent packages count: 7.713%
- Average: 18.82%
- Downloads: 38.897%
- Dependent repos count: 46.779%
- Maintainers (1)
rubygems.org: aws-sdk-emrserverlesswebservice
Official AWS Ruby gem for EMR Serverless Web Service. This gem is part of the AWS SDK for Ruby.
- Homepage: https://github.com/aws/aws-sdk-ruby
- Status: removed
- Documentation: http://www.rubydoc.info/gems/aws-sdk-emrserverlesswebservice/
- Licenses: Apache-2.0
- Latest release: 1.0.0 (published about 4 years ago)
- Last Synced: 2026-06-07T20:22:33.993Z (8 days ago)
- Versions: 1
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 0
-
Rankings:
- Forks count: 0.154%
- Stargazers count: 0.289%
- Dependent packages count: 7.779%
- Dependent repos count: 23.763%
- Average: 26.367%
- Downloads: 99.851%
- Maintainers (1)
rubygems.org: aws-sdk-artifact
Official AWS Ruby gem for AWS Artifact. 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-artifact/
- Licenses: Apache-2.0
- Latest release: 1.38.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:35.948Z (18 days ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7,487,849 Total
-
Rankings:
- Forks count: 0.213%
- Stargazers count: 0.386%
- Dependent packages count: 15.706%
- Average: 32.869%
- Dependent repos count: 48.724%
- Downloads: 99.318%
- Maintainers (1)
rubygems.org: aws-sdk-b2bi
Official AWS Ruby gem for AWS B2B Data Interchange (AWS B2BI). 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-b2bi/
- Licenses: Apache-2.0
- Latest release: 1.49.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:42.322Z (8 days ago)
- Versions: 50
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,650,748 Total
- Docker Downloads: 76,799
-
Rankings:
- Forks count: 0.185%
- Stargazers count: 0.38%
- Dependent packages count: 15.777%
- Average: 32.94%
- Dependent repos count: 48.976%
- Downloads: 99.382%
- Maintainers (1)
rubygems.org: aws-sdk-bcmdataexports
Official AWS Ruby gem for AWS Billing and Cost Management Data Exports. 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-bcmdataexports/
- Licenses: Apache-2.0
- Latest release: 1.39.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:57.666Z (8 days ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,575,009 Total
- Docker Downloads: 76,799
-
Rankings:
- Forks count: 0.185%
- Stargazers count: 0.379%
- Dependent packages count: 15.776%
- Average: 32.941%
- Dependent repos count: 48.976%
- Downloads: 99.391%
- Maintainers (1)
rubygems.org: 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.77.0 (published 25 days ago)
- Last Synced: 2026-06-07T20:22:42.823Z (8 days ago)
- Versions: 78
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 9,460,420 Total
- Docker Downloads: 76,799
-
Rankings:
- Stargazers count: 0.38%
- Forks count: 0.395%
- Dependent packages count: 15.779%
- Average: 32.983%
- Dependent repos count: 48.975%
- Downloads: 99.386%
- Maintainers (1)
rubygems.org: aws-sdk-qbusiness
Official AWS Ruby gem for QBusiness. 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-qbusiness/
- Licenses: Apache-2.0
- Latest release: 1.60.0 (published 17 days ago)
- Last Synced: 2026-06-07T20:22:45.122Z (8 days ago)
- Versions: 61
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,589,241 Total
- Docker Downloads: 76,799
-
Rankings:
- Stargazers count: 0.38%
- Forks count: 0.395%
- Dependent packages count: 15.779%
- Average: 32.983%
- Dependent repos count: 48.975%
- Downloads: 99.386%
- Maintainers (1)
gem.coop: aws-sdk-partnercentralaccount
Official AWS Ruby gem for Partner Central Account 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-partnercentralaccount/
- Licenses: Apache-2.0
- Latest release: 1.10.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:37.458Z (8 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 760,388 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.305%
- Downloads: 99.916%
- Maintainers (1)
gem.coop: aws-sdk-route53globalresolver
Official AWS Ruby gem for Amazon Route 53 Global Resolver. 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-route53globalresolver/
- Licenses: Apache-2.0
- Latest release: 1.10.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:38.358Z (8 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 758,833 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.307%
- Downloads: 99.921%
- Maintainers (1)
rubygems.org: aws-sdk-signerdata
Official AWS Ruby gem for AWS Signer Data Plane. 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-signerdata/
- Licenses: Apache-2.0
- Latest release: 1.4.0 (published 11 days ago)
- Last Synced: 2026-06-07T20:22:23.781Z (8 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 338,563 Total
-
Rankings:
- Dependent packages count: 14.051%
- Dependent repos count: 43.036%
- Average: 49.922%
- Downloads: 92.678%
- Maintainers (1)
rubygems.org: aws-sdk-wickr
Official AWS Ruby gem for AWS Wickr Admin 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-wickr/
- Licenses: Apache-2.0
- Latest release: 1.10.0 (published 11 days ago)
- Last Synced: 2026-06-07T20:22:46.493Z (8 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 684,922 Total
-
Rankings:
- Dependent packages count: 14.148%
- Dependent repos count: 43.334%
- Average: 50.043%
- Downloads: 92.647%
- Maintainers (1)
rubygems.org: aws-sdk-mwaaserverless
Official AWS Ruby gem for AmazonMWAAServerless. 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-mwaaserverless/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 11 days ago)
- Last Synced: 2026-06-07T20:22:19.361Z (8 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 884,898 Total
-
Rankings:
- Dependent packages count: 14.185%
- Dependent repos count: 43.447%
- Average: 50.079%
- Downloads: 92.604%
- Maintainers (1)
rubygems.org: aws-sdk-workspacesinstances
Official AWS Ruby gem for Amazon Workspaces Instances. 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-workspacesinstances/
- Licenses: Apache-2.0
- Latest release: 1.17.0 (published 17 days ago)
- Last Synced: 2026-06-07T20:22:37.390Z (8 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,739,636 Total
-
Rankings:
- Dependent packages count: 14.364%
- Dependent repos count: 43.999%
- Average: 50.368%
- Downloads: 92.741%
- Maintainers (1)
rubygems.org: aws-sdk-aiops
Official AWS Ruby gem for AWS AI Ops. 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-aiops/
- Licenses: Apache-2.0
- Latest release: 1.18.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:17.532Z (8 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,776,640 Total
-
Rankings:
- Dependent packages count: 14.369%
- Dependent repos count: 44.014%
- Average: 50.384%
- Downloads: 92.769%
- Maintainers (1)
rubygems.org: aws-sdk-evs
Official AWS Ruby gem for Amazon Elastic VMware Service (EVS). 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-evs/
- Licenses: Apache-2.0
- Latest release: 1.21.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:43.917Z (8 days ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,890,828 Total
-
Rankings:
- Dependent packages count: 14.384%
- Dependent repos count: 44.06%
- Average: 50.406%
- Downloads: 92.772%
- Maintainers (1)
rubygems.org: aws-sdk-gameliftstreams
Official AWS Ruby gem for Amazon GameLift Streams. 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-gameliftstreams/
- Licenses: Apache-2.0
- Latest release: 1.29.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:23:40.454Z (8 days ago)
- Versions: 30
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,920,156 Total
-
Rankings:
- Dependent packages count: 14.477%
- Dependent repos count: 44.345%
- Average: 50.523%
- Downloads: 92.748%
- Maintainers (1)
rubygems.org: 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.32.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:19.356Z (8 days ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,547,424 Total
-
Rankings:
- Dependent packages count: 14.575%
- Dependent repos count: 44.641%
- Average: 50.664%
- Downloads: 92.776%
- Maintainers (1)
rubygems.org: aws-sdk-securityir
Official AWS Ruby gem for Security Incident Response. 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-securityir/
- Licenses: Apache-2.0
- Latest release: 1.25.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:22:32.053Z (8 days ago)
- Versions: 26
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,538,105 Total
-
Rankings:
- Dependent packages count: 14.576%
- Dependent repos count: 44.645%
- Average: 50.67%
- Downloads: 92.791%
- Maintainers (1)
rubygems.org: 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.34.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:22:40.021Z (8 days ago)
- Versions: 35
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,662,354 Total
-
Rankings:
- Dependent packages count: 14.592%
- Dependent repos count: 44.695%
- Average: 50.689%
- Downloads: 92.78%
- Maintainers (1)
rubygems.org: aws-sdk-billing
Official AWS Ruby gem for AWS Billing. 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-billing/
- Licenses: Apache-2.0
- Latest release: 1.27.0 (published 20 days ago)
- Last Synced: 2026-06-07T20:22:46.132Z (8 days ago)
- Versions: 28
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,668,246 Total
-
Rankings:
- Dependent packages count: 14.592%
- Dependent repos count: 44.695%
- Average: 50.69%
- Downloads: 92.784%
- Maintainers (1)
rubygems.org: aws-sdk-geoplaces
Official AWS Ruby gem for Amazon Location Service Places 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-geoplaces/
- Licenses: Apache-2.0
- Latest release: 1.25.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:45.711Z (8 days ago)
- Versions: 26
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,886,361 Total
-
Rankings:
- Dependent packages count: 14.605%
- Dependent repos count: 44.736%
- Average: 50.698%
- Downloads: 92.753%
- Maintainers (1)
rubygems.org: aws-sdk-marketplacereporting
Official AWS Ruby gem for AWS Marketplace Reporting 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-marketplacereporting/
- Licenses: Apache-2.0
- Latest release: 1.23.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.660Z (18 days ago)
- Versions: 24
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,885,179 Total
-
Rankings:
- Dependent packages count: 14.634%
- Dependent repos count: 44.824%
- Average: 50.747%
- Downloads: 92.784%
- Maintainers (1)
rubygems.org: aws-sdk-applicationsignals
Official AWS Ruby gem for Amazon CloudWatch Application Signals. 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-applicationsignals/
- Licenses: Apache-2.0
- Latest release: 1.44.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:45.709Z (8 days ago)
- Versions: 45
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,225,456 Total
-
Rankings:
- Dependent packages count: 14.755%
- Dependent repos count: 45.197%
- Average: 50.909%
- Downloads: 92.774%
- Maintainers (1)
rubygems.org: 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.45.0 (published 17 days ago)
- Last Synced: 2026-06-07T20:22:42.801Z (8 days ago)
- Versions: 46
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,594,901 Total
-
Rankings:
- Dependent packages count: 14.778%
- Dependent repos count: 45.263%
- Average: 50.939%
- Downloads: 92.775%
- Maintainers (1)
rubygems.org: aws-sdk-controlcatalog
Official AWS Ruby gem for AWS Control 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-controlcatalog/
- Licenses: Apache-2.0
- Latest release: 1.44.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:37.248Z (18 days ago)
- Versions: 45
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7,015,041 Total
-
Rankings:
- Dependent packages count: 14.689%
- Dependent repos count: 45.566%
- Average: 52.199%
- Downloads: 96.342%
- Maintainers (1)
rubygems.org: aws-sdk-timestreaminfluxdb
Official AWS Ruby gem for Timestream InfluxDB. 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-timestreaminfluxdb/
- Licenses: Apache-2.0
- Latest release: 1.43.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:22:24.193Z (8 days ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7,392,339 Total
-
Rankings:
- Dependent packages count: 15.346%
- Dependent repos count: 47.606%
- Average: 53.737%
- Downloads: 98.26%
- Maintainers (1)
rubygems.org: aws-sdk-chatbot
Official AWS Ruby gem for AWS Chatbot. 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-chatbot/
- Licenses: Apache-2.0
- Latest release: 1.41.0 (published 18 days ago)
- Last Synced: 2026-06-07T20:22:42.318Z (8 days ago)
- Versions: 42
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7,610,687 Total
-
Rankings:
- Dependent packages count: 15.703%
- Dependent repos count: 48.711%
- Average: 54.577%
- Downloads: 99.317%
- Maintainers (1)
rubygems.org: 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.42.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:25:35.156Z (18 days ago)
- Versions: 43
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 7,914,607 Total
-
Rankings:
- Dependent packages count: 15.746%
- Dependent repos count: 48.845%
- Average: 54.641%
- Downloads: 99.332%
- Maintainers (1)
rubygems.org: 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.37.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:36.648Z (18 days ago)
- Versions: 38
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,146,570 Total
- Docker Downloads: 46,266
-
Rankings:
- Dependent packages count: 15.771%
- Dependent repos count: 48.924%
- Average: 54.684%
- Downloads: 99.357%
- Maintainers (1)
rubygems.org: 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.51.0 (published 18 days ago)
- Last Synced: 2026-05-28T20:23:37.571Z (18 days ago)
- Versions: 52
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,306,174 Total
- Docker Downloads: 46,266
-
Rankings:
- Dependent packages count: 15.778%
- Dependent repos count: 48.949%
- Average: 54.692%
- Downloads: 99.349%
- Maintainers (1)
rubygems.org: aws-sdk-marketplacedeployment
Official AWS Ruby gem for AWS Marketplace Deployment 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-marketplacedeployment/
- Licenses: Apache-2.0
- Latest release: 1.36.0 (published 19 days ago)
- Last Synced: 2026-06-07T20:23:40.828Z (8 days ago)
- Versions: 37
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,514,407 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent packages count: 15.777%
- Dependent repos count: 48.971%
- Average: 54.712%
- Downloads: 99.388%
- Maintainers (1)
rubygems.org: aws-sdk-repostspace
Official AWS Ruby gem for AWS re:Post Private. 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-repostspace/
- Licenses: Apache-2.0
- Latest release: 1.38.0 (published 24 days ago)
- Last Synced: 2026-06-07T20:22:22.772Z (8 days ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,533,131 Total
- Docker Downloads: 76,799
-
Rankings:
- Dependent packages count: 15.776%
- Dependent repos count: 48.976%
- Average: 54.714%
- Downloads: 99.391%
- Maintainers (1)
ubuntu-23.10: ruby-aws-sdk-s3
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 1.123.1-1 (published 4 months ago)
- Last Synced: 2026-03-13T19:23:07.975Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
debian-12: ruby-aws-sdk-cloudformation
- Homepage: https://github.com/aws/aws-sdk-ruby
- Documentation: https://packages.debian.org/bookworm/ruby-aws-sdk-cloudformation
- Licenses:
- Latest release: 1.41.0-2 (published 4 months ago)
- Last Synced: 2026-03-13T15:46:47.778Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-22.04: ruby-aws-partitions
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 1.354.0-2 (published 4 months ago)
- Last Synced: 2026-03-13T13:38:08.623Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
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 4 months ago)
- Last Synced: 2026-03-13T08:29:35.078Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-aws-sdk-s3
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 1.143.0-1 (published 4 months ago)
- Last Synced: 2026-03-06T15:57:31.139Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-aws-eventstream
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 1.3.0-1 (published 4 months ago)
- Last Synced: 2026-03-06T15:57:32.790Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-aws-sdk-kms
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 1.24.0-3 (published 4 months ago)
- Last Synced: 2026-03-06T15:57:35.322Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-aws-sdk-core
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 3.191.2-1 (published 4 months ago)
- Last Synced: 2026-03-06T15:57:35.034Z (3 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 100%
ubuntu-24.04: ruby-aws-sdk-cloudformation
- Homepage: https://github.com/aws/aws-sdk-ruby
- Licenses:
- Latest release: 1.41.0-2 (published 4 months ago)
- Last Synced: 2026-03-06T15:57:34.733Z (3 months 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: 35.20097087881117