{"id":13463294,"url":"https://github.com/aws/aws-sdk-ruby","last_synced_at":"2025-05-12T22:24:53.801Z","repository":{"id":37412999,"uuid":"2050163","full_name":"aws/aws-sdk-ruby","owner":"aws","description":"The official AWS SDK for Ruby","archived":false,"fork":false,"pushed_at":"2025-05-12T19:21:31.000Z","size":532883,"stargazers_count":3613,"open_issues_count":30,"forks_count":1221,"subscribers_count":137,"default_branch":"version-3","last_synced_at":"2025-05-12T19:48:50.093Z","etag":null,"topics":["aws","aws-sdk","cloud","ruby"],"latest_commit_sha":null,"homepage":"https://aws.amazon.com/sdk-for-ruby/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aws.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2011-07-14T22:21:47.000Z","updated_at":"2025-05-12T19:21:43.000Z","dependencies_parsed_at":"2023-12-20T10:59:16.169Z","dependency_job_id":"0c55ab38-ba11-41a6-b7f1-945dc7b75e02","html_url":"https://github.com/aws/aws-sdk-ruby","commit_stats":{"total_commits":7272,"total_committers":250,"mean_commits":29.088,"dds":0.5592684268426842,"last_synced_commit":"83033a13a8b523e92d254c6745bc1d66a9ca0873"},"previous_names":[],"tags_count":1209,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aws","download_url":"https://codeload.github.com/aws/aws-sdk-ruby/tar.gz/refs/heads/version-3","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253826966,"owners_count":21970444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-sdk","cloud","ruby"],"created_at":"2024-07-31T13:00:50.055Z","updated_at":"2025-05-12T22:24:48.771Z","avatar_url":"https://github.com/aws.png","language":"Ruby","readme":"# AWS SDK for Ruby - Version 3\n\n[![Gem Version](https://badge.fury.io/rb/aws-sdk-core.svg)](https://badge.fury.io/rb/aws-sdk-core)\n[![Build Status](https://github.com/aws/aws-sdk-ruby/workflows/CI/badge.svg)](https://github.com/aws/aws-sdk-ruby/actions)\n[![Github forks](https://img.shields.io/github/forks/aws/aws-sdk-ruby.svg)](https://github.com/aws/aws-sdk-ruby/network)\n[![Github stars](https://img.shields.io/github/stars/aws/aws-sdk-ruby.svg)](https://github.com/aws/aws-sdk-ruby/stargazers)\n\n## Links of Interest\n\n* [API Documentation](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/index.html)\n* [Developer Guide](https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/welcome.html)\n* [V3 Upgrading Guide](https://github.com/aws/aws-sdk-ruby/blob/version-3/V3_UPGRADING_GUIDE.md)\n* [AWS Developer Blog](https://aws.amazon.com/blogs/developer/category/programing-language/ruby/)\n* [Github Discussions](https://github.com/aws/aws-sdk-ruby/discussions)\n\n## Installation\n\nThe AWS SDK for Ruby is available from RubyGems. With V3 modularization, you\nshould pick the specific AWS service gems to install.\n\n```ruby\ngem 'aws-sdk-s3', '~\u003e 1'\ngem 'aws-sdk-ec2', '~\u003e 1'\n```\n\nAlternatively, the `aws-sdk` gem contains every available AWS service gem. This\ngem is very large; it is recommended to use it only as a quick way to migrate\nfrom V2 or if you depend on many AWS services.\n\n```ruby\ngem 'aws-sdk', '~\u003e 3'\n```\n\n**Please use a pessimistic version constraint on the major version when\ndepending on service gems.**\n\n## Configuration\n\nYou will need to configure credentials and a region, either in \n[configuration files](https://docs.aws.amazon.com/sdkref/latest/guide/file-location.html)\nor environment variables, to make API calls. It is recommended that you\nprovide these via your environment. This makes it easier to rotate credentials\nand it keeps your secrets out of source control. \n\nThe SDK searches the following locations for credentials:\n\n* `ENV['AWS_ACCESS_KEY_ID']` and `ENV['AWS_SECRET_ACCESS_KEY']`\n* The shared credentials ini file at `~/.aws/credentials`.  The location used can be changed with the `AWS_CREDENTIALS_FILE` ENV variable.\n  * Credential options supported in this file are:\n    * Static Credentials (`aws_access_key_id`, `aws_secret_access_key`, `aws_session_token`)\n    * Assume Role Web Identity Credentials (`web_identity_token_file`, `role_arn`, `source_profile`)\n    * Assume Role Credentials (`role_arn`, `source_profile`)\n    * Process Credentials (`credential_process`)\n    * SSO Credentials (`sso_session`, `sso_account_id`, `sso_role_name`, `sso_region`)\n  * Unless `ENV['AWS_SDK_CONFIG_OPT_OUT']` is set, the shared configuration ini file at `~/.aws/config` will also be parsed for credentials.\n* From an instance profile when running on EC2 or from the ECS credential provider when running in an ECS container with that feature enabled.\n\n**Shared configuration is loaded only a single time, and credentials are provided statically at client creation time. Shared credentials do not refresh.**\n\nThe SDK searches the following locations for a region:\n\n* `ENV['AWS_REGION']`\n* `ENV['AMAZON_REGION']`\n* `ENV['AWS_DEFAULT_REGION']`\n* Unless `ENV['AWS_SDK_CONFIG_OPT_OUT']` is set, the shared configuration files (`~/.aws/credentials` and `~/.aws/config`) will also be checked for a region selection.\n\n**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.\n\n### Configuration Options\n\nYou can also configure default credentials and the region via the `Aws.config`\nhash. The `Aws.config` hash takes precedence over environment variables.\n\n```ruby\nrequire 'aws-sdk-core'\n\nAws.config.update(\n  region: 'us-west-2',\n  credentials: Aws::Credentials.new('akid', 'secret')\n)\n```\n\nValid region and credentials options are:\n\n* `:region` - A string like `us-west-2`. See [this page](https://docs.aws.amazon.com/general/latest/gr/aws-service-information.html) for a list of supported regions by service.\n* `:credentials` - An instance of one of the following classes:\n  * [`Aws::Credentials`](http://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Credentials.html)\n  * [`Aws::AssumeRoleWebIdentityCredentials`](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AssumeRoleWebIdentityCredentials.html)\n  * [`Aws::AssumeRoleCredentials`](http://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AssumeRoleCredentials.html)\n  * [`Aws::SharedCredentials`](http://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SharedCredentials.html)\n  * [`Aws::ProcessCredentials`](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ProcessCredentials.html)\n  * [`Aws::InstanceProfileCredentials`](http://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/InstanceProfileCredentials.html)\n  * [`Aws::ECSCredentials`](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECSCredentials.html)\n  * [`Aws::CognitoIdentityCredentials`](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/CognitoIdentityCredentials.html)\n\nYou may also pass configuration options directly to Client and Resource\nconstructors. These options take precedence over the environment and\n`Aws.config` defaults. A `:profile` Client option can also be used to choose a\nspecific profile defined in your configuration file.\n\n```ruby\n# using a credentials object\nec2 = Aws::EC2::Client.new(region: 'us-west-2', credentials: credentials)\n\n# using a profile name\nec2 = Aws::EC2::Client.new(profile: 'my_profile')\n```\n\nPlease take care to **never commit credentials to source control**. We strongly\nrecommended loading credentials from an external source.\n\n```ruby\nrequire 'aws-sdk'\nrequire 'json'\n\ncreds = JSON.load(File.read('secrets.json'))\nAws.config[:credentials] = Aws::Credentials.new(\n  creds['AccessKeyId'],\n  creds['SecretAccessKey']\n)\n```\n\nFor more information on how to configure credentials, see the developer guide\nfor [configuring AWS SDK for Ruby](https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html).\n\n## API Clients\n\nConstruct a service client to make API calls. Each client provides a 1-to-1\nmapping of methods to API operations. Refer to the\n[API documentation](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/index.html)\nfor a complete list of available methods.\n\n```ruby\n# list buckets in Amazon S3\ns3 = Aws::S3::Client.new\nresp = s3.list_buckets\nresp.buckets.map(\u0026:name)\n#=\u003e [\"bucket-1\", \"bucket-2\", ...]\n```\n\nAPI methods accept a hash of additional request parameters and return\nstructured response data.\n\n```ruby\n# list the first two objects in a bucket\nresp = s3.list_objects(bucket: 'aws-sdk', max_keys: 2)\nresp.contents.each do |object|\n  puts \"#{object.key} =\u003e #{object.etag}\"\nend\n```\n\n### Paging Responses\n\nMany AWS operations limit the number of results returned with each response.\nTo make it easy to get the next page of results, every AWS response object\nis enumerable:\n\n```ruby\n# yields one response object per API call made, this will enumerate\n# EVERY object in the named bucket\ns3.list_objects(bucket:'aws-sdk').each do |response|\n  puts response.contents.map(\u0026:key)\nend\n```\n\nIf you prefer to control paging yourself, response objects have helper methods\nthat control paging:\n\n```ruby\n# make a request that returns a truncated response\nresp = s3.list_objects(bucket: 'aws-sdk')\n\nresp.last_page? #=\u003e false\nresp.next_page? #=\u003e true\nresp = resp.next_page # send a request for the next response page\nresp = resp.next_page until resp.last_page?\n```\n\n### Waiters\n\nWaiters are utility methods that poll for a particular state. To invoke a\nwaiter, call `#wait_until` on a client:\n\n```ruby\nbegin\n  ec2.wait_until(:instance_running, instance_ids:['i-12345678'])\n  puts \"instance running\"\nrescue Aws::Waiters::Errors::WaiterFailed =\u003e error\n  puts \"failed waiting for instance running: #{error.message}\"\nend\n```\n\nWaiters have sensible default polling intervals and maximum attempts. You can\nconfigure these per call to `#wait_until`. You can also register callbacks\nthat are triggered before each polling attempt and before waiting.\nSee the API documentation for more examples and for a list of supported\nwaiters per service.\n\n## Resource Interfaces\n\nResource interfaces are object oriented classes that represent actual\nresources in AWS. Resource interfaces built on top of API clients and provide\nadditional functionality.\n\n**Only a few services implement a resource interface. They are defined by hand\nin JSON and have limitations. Please use the Client API instead.**\n\n```ruby\ns3 = Aws::S3::Resource.new\n\n# reference an existing bucket by name\nbucket = s3.bucket('aws-sdk')\n\n# enumerate every object in a bucket\nbucket.objects.each do |obj|\n  puts \"#{obj.key} =\u003e #{obj.etag}\"\nend\n\n# batch operations, delete objects in batches of 1k\nbucket.objects(prefix: '/tmp-files/').delete\n\n# single object operations\nobj = bucket.object('hello')\nobj.put(body:'Hello World!')\nobj.etag\nobj.delete\n```\n\n## REPL - AWS Interactive Console\n\nThe `aws-sdk` gem ships with a REPL that provides a simple way to test\nthe Ruby SDK. You can access the REPL by running `aws-v3.rb` from the command line.\n\n```ruby\n$ aws-v3.rb\n[1] pry(Aws)\u003e ec2.describe_instances.reservations.first.instances.first\n[Aws::EC2::Client 200 0.216615 0 retries] describe_instances()\n\u003cstruct\n instance_id=\"i-1234567\",\n image_id=\"ami-7654321\",\n state=\u003cstruct  code=16, name=\"running\"\u003e,\n ...\u003e\n```\n\nYou can enable HTTP wire logging by setting the verbose flag:\n\n```\n$ aws-v3.rb -v\n```\n\nIn the REPL, every service class has a helper that returns a new client object.\nSimply downcase the service module name for the helper:\n\n* `s3` =\u003e `#\u003cAws::S3::Client\u003e`\n* `ec2` =\u003e `#\u003cAws::EC2::Client\u003e`\n* etc\n\n## Functionality requiring AWS Common Runtime (CRT)\n\nThe AWS SDK for Ruby has optional functionality that requires the \n[AWS Common Runtime (CRT)](https://docs.aws.amazon.com/sdkref/latest/guide/common-runtime.html) \nbindings to be included as a dependency with your application. This functionality includes:\n* CRC-32c support for [S3 Additional Checksums](https://aws.amazon.com/blogs/aws/new-additional-checksum-algorithms-for-amazon-s3/)\n\nAWS CRT bindings are in developer preview and are available in the\nthe [aws-crt](https://rubygems.org/gems/aws-crt/) gem.  You can install them by adding the `aws-crt` gem to your Gemfile.\n\n## Getting Help\n\nPlease use any of these resources for getting help:\n\n* Ask a question on [Github Discussions](https://github.com/aws/aws-sdk-ruby/discussions).\n* Ask a question on StackOverflow and [tag it](http://stackoverflow.com/questions/tagged/aws-sdk-ruby) with `aws-sdk-ruby`.\n* Open a support ticket with [AWS Support](https://console.aws.amazon.com/support/home).\n\n## Maintenance and support for SDK major versions\n\nFor 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](https://docs.aws.amazon.com/credref/latest/refdocs/overview.html):\n\n* [AWS SDKs and Tools Maintenance Policy](https://docs.aws.amazon.com/credref/latest/refdocs/maint-policy.html)\n* [AWS SDKs and Tools Version Support Matrix](https://docs.aws.amazon.com/credref/latest/refdocs/version-support-matrix.html)\n\n## Opening Issues\n\nIf you encounter a bug or have a feature request, we would like to hear about\nit. Search the existing issues and try to make sure your problem doesn’t already\nexist before opening a new issue.\n\nThe GitHub issues are intended for bug reports and feature requests. For help\nand questions with using `aws-sdk-ruby` please make use of the resources listed\nin the Getting Help section.\n\n## Versioning\n\nThis project uses [semantic versioning](http://semver.org/). You can safely\nexpress a dependency on a major version and expect all minor and patch versions\nto be backwards compatible.\n\nA CHANGELOG can be found at each gem's root path (i.e. `aws-sdk-s3` can be found\nat `gems/aws-sdk-s3/CHANGELOG.md`). The CHANGELOG is also accessible via the\nRubyGems.org page under \"LINKS\" section.\n\n## Supported Services\n\n| Service Name                                          | Service Module                           | gem_name                                    | API Version |\n| ----------------------------------------------------- | ---------------------------------------- | ------------------------------------------- | ----------- |\n| AWS ARC - Zonal Shift                                 | Aws::ARCZonalShift                       | aws-sdk-arczonalshift                       | 2022-10-30  |\n| AWS Account                                           | Aws::Account                             | aws-sdk-account                             | 2021-02-01  |\n| AWS Amplify                                           | Aws::Amplify                             | aws-sdk-amplify                             | 2017-07-25  |\n| AWS Amplify UI Builder                                | Aws::AmplifyUIBuilder                    | aws-sdk-amplifyuibuilder                    | 2021-08-11  |\n| AWS App Mesh                                          | Aws::AppMesh                             | aws-sdk-appmesh                             | 2019-01-25  |\n| AWS App Runner                                        | Aws::AppRunner                           | aws-sdk-apprunner                           | 2020-05-15  |\n| AWS AppConfig Data                                    | Aws::AppConfigData                       | aws-sdk-appconfigdata                       | 2021-11-11  |\n| AWS AppSync                                           | Aws::AppSync                             | aws-sdk-appsync                             | 2017-07-25  |\n| AWS Application Cost Profiler                         | Aws::ApplicationCostProfiler             | aws-sdk-applicationcostprofiler             | 2020-09-10  |\n| AWS Application Discovery Service                     | Aws::ApplicationDiscoveryService         | aws-sdk-applicationdiscoveryservice         | 2015-11-01  |\n| AWS Artifact                                          | Aws::Artifact                            | aws-sdk-artifact                            | 2018-05-10  |\n| AWS Audit Manager                                     | Aws::AuditManager                        | aws-sdk-auditmanager                        | 2017-07-25  |\n| AWS Auto Scaling Plans                                | Aws::AutoScalingPlans                    | aws-sdk-autoscalingplans                    | 2018-01-06  |\n| AWS B2B Data Interchange                              | Aws::B2bi                                | aws-sdk-b2bi                                | 2022-06-23  |\n| AWS Backup                                            | Aws::Backup                              | aws-sdk-backup                              | 2018-11-15  |\n| AWS Backup Gateway                                    | Aws::BackupGateway                       | aws-sdk-backupgateway                       | 2021-01-01  |\n| AWS Backup Search                                     | Aws::BackupSearch                        | aws-sdk-backupsearch                        | 2018-05-10  |\n| AWS Batch                                             | Aws::Batch                               | aws-sdk-batch                               | 2016-08-10  |\n| AWS Billing                                           | Aws::Billing                             | aws-sdk-billing                             | 2023-09-07  |\n| AWS Billing and Cost Management Data Exports          | Aws::BCMDataExports                      | aws-sdk-bcmdataexports                      | 2023-11-26  |\n| AWS Billing and Cost Management Pricing Calculator    | Aws::BCMPricingCalculator                | aws-sdk-bcmpricingcalculator                | 2024-06-19  |\n| AWS Budgets                                           | Aws::Budgets                             | aws-sdk-budgets                             | 2016-10-20  |\n| AWS Certificate Manager                               | Aws::ACM                                 | aws-sdk-acm                                 | 2015-12-08  |\n| AWS Certificate Manager Private Certificate Authority | Aws::ACMPCA                              | aws-sdk-acmpca                              | 2017-08-22  |\n| AWS Chatbot                                           | Aws::Chatbot                             | aws-sdk-chatbot                             | 2017-10-11  |\n| AWS Clean Rooms ML                                    | Aws::CleanRoomsML                        | aws-sdk-cleanroomsml                        | 2023-09-06  |\n| AWS Clean Rooms Service                               | Aws::CleanRooms                          | aws-sdk-cleanrooms                          | 2022-02-17  |\n| AWS Cloud Control API                                 | Aws::CloudControlApi                     | aws-sdk-cloudcontrolapi                     | 2021-09-30  |\n| AWS Cloud Map                                         | Aws::ServiceDiscovery                    | aws-sdk-servicediscovery                    | 2017-03-14  |\n| AWS Cloud9                                            | Aws::Cloud9                              | aws-sdk-cloud9                              | 2017-09-23  |\n| AWS CloudFormation                                    | Aws::CloudFormation                      | aws-sdk-cloudformation                      | 2010-05-15  |\n| AWS CloudHSM V2                                       | Aws::CloudHSMV2                          | aws-sdk-cloudhsmv2                          | 2017-04-28  |\n| AWS CloudTrail                                        | Aws::CloudTrail                          | aws-sdk-cloudtrail                          | 2013-11-01  |\n| AWS CloudTrail Data Service                           | Aws::CloudTrailData                      | aws-sdk-cloudtraildata                      | 2021-08-11  |\n| AWS CodeBuild                                         | Aws::CodeBuild                           | aws-sdk-codebuild                           | 2016-10-06  |\n| AWS CodeCommit                                        | Aws::CodeCommit                          | aws-sdk-codecommit                          | 2015-04-13  |\n| AWS CodeConnections                                   | Aws::CodeConnections                     | aws-sdk-codeconnections                     | 2023-12-01  |\n| AWS CodeDeploy                                        | Aws::CodeDeploy                          | aws-sdk-codedeploy                          | 2014-10-06  |\n| AWS CodePipeline                                      | Aws::CodePipeline                        | aws-sdk-codepipeline                        | 2015-07-09  |\n| AWS CodeStar Notifications                            | Aws::CodeStarNotifications               | aws-sdk-codestarnotifications               | 2019-10-15  |\n| AWS CodeStar connections                              | Aws::CodeStarconnections                 | aws-sdk-codestarconnections                 | 2019-12-01  |\n| AWS Comprehend Medical                                | Aws::ComprehendMedical                   | aws-sdk-comprehendmedical                   | 2018-10-30  |\n| AWS Compute Optimizer                                 | Aws::ComputeOptimizer                    | aws-sdk-computeoptimizer                    | 2019-11-01  |\n| AWS Config                                            | Aws::ConfigService                       | aws-sdk-configservice                       | 2014-11-12  |\n| AWS Control Catalog                                   | Aws::ControlCatalog                      | aws-sdk-controlcatalog                      | 2018-05-10  |\n| AWS Control Tower                                     | Aws::ControlTower                        | aws-sdk-controltower                        | 2018-05-10  |\n| AWS Cost Explorer Service                             | Aws::CostExplorer                        | aws-sdk-costexplorer                        | 2017-10-25  |\n| AWS Cost and Usage Report Service                     | Aws::CostandUsageReportService           | aws-sdk-costandusagereportservice           | 2017-01-06  |\n| AWS Data Exchange                                     | Aws::DataExchange                        | aws-sdk-dataexchange                        | 2017-07-25  |\n| AWS Data Pipeline                                     | Aws::DataPipeline                        | aws-sdk-datapipeline                        | 2012-10-29  |\n| AWS DataSync                                          | Aws::DataSync                            | aws-sdk-datasync                            | 2018-11-09  |\n| AWS Database Migration Service                        | Aws::DatabaseMigrationService            | aws-sdk-databasemigrationservice            | 2016-01-01  |\n| AWS Device Farm                                       | Aws::DeviceFarm                          | aws-sdk-devicefarm                          | 2015-06-23  |\n| AWS Direct Connect                                    | Aws::DirectConnect                       | aws-sdk-directconnect                       | 2012-10-25  |\n| AWS Directory Service                                 | Aws::DirectoryService                    | aws-sdk-directoryservice                    | 2015-04-16  |\n| AWS Directory Service Data                            | Aws::DirectoryServiceData                | aws-sdk-directoryservicedata                | 2023-05-31  |\n| AWS EC2 Instance Connect                              | Aws::EC2InstanceConnect                  | aws-sdk-ec2instanceconnect                  | 2018-04-02  |\n| AWS Elastic Beanstalk                                 | Aws::ElasticBeanstalk                    | aws-sdk-elasticbeanstalk                    | 2010-12-01  |\n| AWS Elemental MediaConvert                            | Aws::MediaConvert                        | aws-sdk-mediaconvert                        | 2017-08-29  |\n| AWS Elemental MediaLive                               | Aws::MediaLive                           | aws-sdk-medialive                           | 2017-10-14  |\n| AWS Elemental MediaPackage                            | Aws::MediaPackage                        | aws-sdk-mediapackage                        | 2017-10-12  |\n| AWS Elemental MediaPackage VOD                        | Aws::MediaPackageVod                     | aws-sdk-mediapackagevod                     | 2018-11-07  |\n| AWS Elemental MediaPackage v2                         | Aws::MediaPackageV2                      | aws-sdk-mediapackagev2                      | 2022-12-25  |\n| AWS Elemental MediaStore                              | Aws::MediaStore                          | aws-sdk-mediastore                          | 2017-09-01  |\n| AWS Elemental MediaStore Data Plane                   | Aws::MediaStoreData                      | aws-sdk-mediastoredata                      | 2017-09-01  |\n| AWS End User Messaging Social                         | Aws::SocialMessaging                     | aws-sdk-socialmessaging                     | 2024-01-01  |\n| AWS EntityResolution                                  | Aws::EntityResolution                    | aws-sdk-entityresolution                    | 2018-05-10  |\n| AWS Fault Injection Simulator                         | Aws::FIS                                 | aws-sdk-fis                                 | 2020-12-01  |\n| AWS Free Tier                                         | Aws::FreeTier                            | aws-sdk-freetier                            | 2023-09-07  |\n| AWS Global Accelerator                                | Aws::GlobalAccelerator                   | aws-sdk-globalaccelerator                   | 2018-08-08  |\n| AWS Glue                                              | Aws::Glue                                | aws-sdk-glue                                | 2017-03-31  |\n| AWS Glue DataBrew                                     | Aws::GlueDataBrew                        | aws-sdk-gluedatabrew                        | 2017-07-25  |\n| AWS Greengrass                                        | Aws::Greengrass                          | aws-sdk-greengrass                          | 2017-06-07  |\n| AWS Ground Station                                    | Aws::GroundStation                       | aws-sdk-groundstation                       | 2019-05-23  |\n| AWS Health APIs and Notifications                     | Aws::Health                              | aws-sdk-health                              | 2016-08-04  |\n| AWS Health Imaging                                    | Aws::MedicalImaging                      | aws-sdk-medicalimaging                      | 2023-07-19  |\n| AWS Identity and Access Management                    | Aws::IAM                                 | aws-sdk-iam                                 | 2010-05-08  |\n| AWS Import/Export                                     | Aws::ImportExport                        | aws-sdk-importexport                        | 2010-06-01  |\n| AWS Invoicing                                         | Aws::Invoicing                           | aws-sdk-invoicing                           | 2024-12-01  |\n| AWS IoT                                               | Aws::IoT                                 | aws-sdk-iot                                 | 2015-05-28  |\n| AWS IoT Analytics                                     | Aws::IoTAnalytics                        | aws-sdk-iotanalytics                        | 2017-11-27  |\n| AWS IoT Core Device Advisor                           | Aws::IoTDeviceAdvisor                    | aws-sdk-iotdeviceadvisor                    | 2020-09-18  |\n| AWS IoT Data Plane                                    | Aws::IoTDataPlane                        | aws-sdk-iotdataplane                        | 2015-05-28  |\n| AWS IoT Events                                        | Aws::IoTEvents                           | aws-sdk-iotevents                           | 2018-07-27  |\n| AWS IoT Events Data                                   | Aws::IoTEventsData                       | aws-sdk-ioteventsdata                       | 2018-10-23  |\n| AWS IoT Fleet Hub                                     | Aws::IoTFleetHub                         | aws-sdk-iotfleethub                         | 2020-11-03  |\n| AWS IoT FleetWise                                     | Aws::IoTFleetWise                        | aws-sdk-iotfleetwise                        | 2021-06-17  |\n| AWS IoT Greengrass V2                                 | Aws::GreengrassV2                        | aws-sdk-greengrassv2                        | 2020-11-30  |\n| AWS IoT Jobs Data Plane                               | Aws::IoTJobsDataPlane                    | aws-sdk-iotjobsdataplane                    | 2017-09-29  |\n| AWS IoT Secure Tunneling                              | Aws::IoTSecureTunneling                  | aws-sdk-iotsecuretunneling                  | 2018-10-05  |\n| AWS IoT SiteWise                                      | Aws::IoTSiteWise                         | aws-sdk-iotsitewise                         | 2019-12-02  |\n| AWS IoT Things Graph                                  | Aws::IoTThingsGraph                      | aws-sdk-iotthingsgraph                      | 2018-09-06  |\n| AWS IoT TwinMaker                                     | Aws::IoTTwinMaker                        | aws-sdk-iottwinmaker                        | 2021-11-29  |\n| AWS IoT Wireless                                      | Aws::IoTWireless                         | aws-sdk-iotwireless                         | 2020-11-22  |\n| AWS Key Management Service                            | Aws::KMS                                 | aws-sdk-kms                                 | 2014-11-01  |\n| AWS Lake Formation                                    | Aws::LakeFormation                       | aws-sdk-lakeformation                       | 2017-03-31  |\n| AWS Lambda                                            | Aws::Lambda                              | aws-sdk-lambda                              | 2015-03-31  |\n| AWS Launch Wizard                                     | Aws::LaunchWizard                        | aws-sdk-launchwizard                        | 2018-05-10  |\n| AWS License Manager                                   | Aws::LicenseManager                      | aws-sdk-licensemanager                      | 2018-08-01  |\n| AWS License Manager Linux Subscriptions               | Aws::LicenseManagerLinuxSubscriptions    | aws-sdk-licensemanagerlinuxsubscriptions    | 2018-05-10  |\n| AWS License Manager User Subscriptions                | Aws::LicenseManagerUserSubscriptions     | aws-sdk-licensemanagerusersubscriptions     | 2018-05-10  |\n| AWS Mainframe Modernization Application Testing       | Aws::AppTest                             | aws-sdk-apptest                             | 2022-12-06  |\n| AWS Marketplace Agreement Service                     | Aws::MarketplaceAgreement                | aws-sdk-marketplaceagreement                | 2020-03-01  |\n| AWS Marketplace Catalog Service                       | Aws::MarketplaceCatalog                  | aws-sdk-marketplacecatalog                  | 2018-09-17  |\n| AWS Marketplace Commerce Analytics                    | Aws::MarketplaceCommerceAnalytics        | aws-sdk-marketplacecommerceanalytics        | 2015-07-01  |\n| AWS Marketplace Deployment Service                    | Aws::MarketplaceDeployment               | aws-sdk-marketplacedeployment               | 2023-01-25  |\n| AWS Marketplace Entitlement Service                   | Aws::MarketplaceEntitlementService       | aws-sdk-marketplaceentitlementservice       | 2017-01-11  |\n| AWS Marketplace Reporting Service                     | Aws::MarketplaceReporting                | aws-sdk-marketplacereporting                | 2018-05-10  |\n| AWS MediaConnect                                      | Aws::MediaConnect                        | aws-sdk-mediaconnect                        | 2018-11-14  |\n| AWS MediaTailor                                       | Aws::MediaTailor                         | aws-sdk-mediatailor                         | 2018-04-23  |\n| AWS Migration Hub                                     | Aws::MigrationHub                        | aws-sdk-migrationhub                        | 2017-05-31  |\n| AWS Migration Hub Config                              | Aws::MigrationHubConfig                  | aws-sdk-migrationhubconfig                  | 2019-06-30  |\n| AWS Migration Hub Orchestrator                        | Aws::MigrationHubOrchestrator            | aws-sdk-migrationhuborchestrator            | 2021-08-28  |\n| AWS Migration Hub Refactor Spaces                     | Aws::MigrationHubRefactorSpaces          | aws-sdk-migrationhubrefactorspaces          | 2021-10-26  |\n| AWS Network Firewall                                  | Aws::NetworkFirewall                     | aws-sdk-networkfirewall                     | 2020-11-12  |\n| AWS Network Manager                                   | Aws::NetworkManager                      | aws-sdk-networkmanager                      | 2019-07-05  |\n| AWS OpsWorks                                          | Aws::OpsWorks                            | aws-sdk-opsworks                            | 2013-02-18  |\n| AWS OpsWorks CM                                       | Aws::OpsWorksCM                          | aws-sdk-opsworkscm                          | 2016-11-01  |\n| AWS Organizations                                     | Aws::Organizations                       | aws-sdk-organizations                       | 2016-11-28  |\n| AWS Outposts                                          | Aws::Outposts                            | aws-sdk-outposts                            | 2019-12-03  |\n| AWS Panorama                                          | Aws::Panorama                            | aws-sdk-panorama                            | 2019-07-24  |\n| AWS Parallel Computing Service                        | Aws::PCS                                 | aws-sdk-pcs                                 | 2023-02-10  |\n| AWS Performance Insights                              | Aws::PI                                  | aws-sdk-pi                                  | 2018-02-27  |\n| AWS Price List Service                                | Aws::Pricing                             | aws-sdk-pricing                             | 2017-10-15  |\n| AWS Private 5G                                        | Aws::PrivateNetworks                     | aws-sdk-privatenetworks                     | 2021-12-03  |\n| AWS Proton                                            | Aws::Proton                              | aws-sdk-proton                              | 2020-07-20  |\n| AWS RDS DataService                                   | Aws::RDSDataService                      | aws-sdk-rdsdataservice                      | 2018-08-01  |\n| AWS Resilience Hub                                    | Aws::ResilienceHub                       | aws-sdk-resiliencehub                       | 2020-04-30  |\n| AWS Resource Access Manager                           | Aws::RAM                                 | aws-sdk-ram                                 | 2018-01-04  |\n| AWS Resource Explorer                                 | Aws::ResourceExplorer2                   | aws-sdk-resourceexplorer2                   | 2022-07-28  |\n| AWS Resource Groups                                   | Aws::ResourceGroups                      | aws-sdk-resourcegroups                      | 2017-11-27  |\n| AWS Resource Groups Tagging API                       | Aws::ResourceGroupsTaggingAPI            | aws-sdk-resourcegroupstaggingapi            | 2017-01-26  |\n| AWS RoboMaker                                         | Aws::RoboMaker                           | aws-sdk-robomaker                           | 2018-06-29  |\n| AWS Route53 Recovery Control Config                   | Aws::Route53RecoveryControlConfig        | aws-sdk-route53recoverycontrolconfig        | 2020-11-02  |\n| AWS Route53 Recovery Readiness                        | Aws::Route53RecoveryReadiness            | aws-sdk-route53recoveryreadiness            | 2019-12-02  |\n| AWS S3 Control                                        | Aws::S3Control                           | aws-sdk-s3control                           | 2018-08-20  |\n| AWS SSO Identity Store                                | Aws::IdentityStore                       | aws-sdk-identitystore                       | 2020-06-15  |\n| AWS SSO OIDC                                          | Aws::SSOOIDC                             | aws-sdk-core                                | 2019-06-10  |\n| AWS Savings Plans                                     | Aws::SavingsPlans                        | aws-sdk-savingsplans                        | 2019-06-28  |\n| AWS Secrets Manager                                   | Aws::SecretsManager                      | aws-sdk-secretsmanager                      | 2017-10-17  |\n| AWS Security Token Service                            | Aws::STS                                 | aws-sdk-core                                | 2011-06-15  |\n| AWS SecurityHub                                       | Aws::SecurityHub                         | aws-sdk-securityhub                         | 2018-10-26  |\n| AWS Server Migration Service                          | Aws::SMS                                 | aws-sdk-sms                                 | 2016-10-24  |\n| AWS Service Catalog                                   | Aws::ServiceCatalog                      | aws-sdk-servicecatalog                      | 2015-12-10  |\n| AWS Service Catalog App Registry                      | Aws::AppRegistry                         | aws-sdk-appregistry                         | 2020-06-24  |\n| AWS Shield                                            | Aws::Shield                              | aws-sdk-shield                              | 2016-06-02  |\n| AWS Signer                                            | Aws::Signer                              | aws-sdk-signer                              | 2017-08-25  |\n| AWS SimSpace Weaver                                   | Aws::SimSpaceWeaver                      | aws-sdk-simspaceweaver                      | 2022-10-28  |\n| AWS Single Sign-On                                    | Aws::SSO                                 | aws-sdk-core                                | 2019-06-10  |\n| AWS Single Sign-On Admin                              | Aws::SSOAdmin                            | aws-sdk-ssoadmin                            | 2020-07-20  |\n| AWS Snow Device Management                            | Aws::SnowDeviceManagement                | aws-sdk-snowdevicemanagement                | 2021-08-04  |\n| AWS Step Functions                                    | Aws::States                              | aws-sdk-states                              | 2016-11-23  |\n| AWS Storage Gateway                                   | Aws::StorageGateway                      | aws-sdk-storagegateway                      | 2013-06-30  |\n| AWS Supply Chain                                      | Aws::SupplyChain                         | aws-sdk-supplychain                         | 2024-01-01  |\n| AWS Support                                           | Aws::Support                             | aws-sdk-support                             | 2013-04-15  |\n| AWS Support App                                       | Aws::SupportApp                          | aws-sdk-supportapp                          | 2021-08-20  |\n| AWS Systems Manager Incident Manager                  | Aws::SSMIncidents                        | aws-sdk-ssmincidents                        | 2018-05-10  |\n| AWS Systems Manager Incident Manager Contacts         | Aws::SSMContacts                         | aws-sdk-ssmcontacts                         | 2021-05-03  |\n| AWS Systems Manager QuickSetup                        | Aws::SSMQuickSetup                       | aws-sdk-ssmquicksetup                       | 2018-05-10  |\n| AWS Systems Manager for SAP                           | Aws::SsmSap                              | aws-sdk-ssmsap                              | 2018-05-10  |\n| AWS Telco Network Builder                             | Aws::Tnb                                 | aws-sdk-tnb                                 | 2008-10-21  |\n| AWS Transfer Family                                   | Aws::Transfer                            | aws-sdk-transfer                            | 2018-11-05  |\n| AWS User Notifications                                | Aws::Notifications                       | aws-sdk-notifications                       | 2018-05-10  |\n| AWS User Notifications Contacts                       | Aws::NotificationsContacts               | aws-sdk-notificationscontacts               | 2018-05-10  |\n| AWS WAF                                               | Aws::WAF                                 | aws-sdk-waf                                 | 2015-08-24  |\n| AWS WAF Regional                                      | Aws::WAFRegional                         | aws-sdk-wafregional                         | 2016-11-28  |\n| AWS WAFV2                                             | Aws::WAFV2                               | aws-sdk-wafv2                               | 2019-07-29  |\n| AWS Well-Architected Tool                             | Aws::WellArchitected                     | aws-sdk-wellarchitected                     | 2020-03-31  |\n| AWS X-Ray                                             | Aws::XRay                                | aws-sdk-xray                                | 2016-04-12  |\n| AWS re:Post Private                                   | Aws::Repostspace                         | aws-sdk-repostspace                         | 2022-05-13  |\n| AWSBillingConductor                                   | Aws::BillingConductor                    | aws-sdk-billingconductor                    | 2021-07-30  |\n| AWSDeadlineCloud                                      | Aws::Deadline                            | aws-sdk-deadline                            | 2023-10-12  |\n| AWSKendraFrontendService                              | Aws::Kendra                              | aws-sdk-kendra                              | 2019-02-03  |\n| AWSMainframeModernization                             | Aws::MainframeModernization              | aws-sdk-mainframemodernization              | 2021-04-28  |\n| AWSMarketplace Metering                               | Aws::MarketplaceMetering                 | aws-sdk-marketplacemetering                 | 2016-01-14  |\n| AWSServerlessApplicationRepository                    | Aws::ServerlessApplicationRepository     | aws-sdk-serverlessapplicationrepository     | 2017-09-08  |\n| Access Analyzer                                       | Aws::AccessAnalyzer                      | aws-sdk-accessanalyzer                      | 2019-11-01  |\n| Agents for Amazon Bedrock                             | Aws::BedrockAgent                        | aws-sdk-bedrockagent                        | 2023-06-05  |\n| Agents for Amazon Bedrock Runtime                     | Aws::BedrockAgentRuntime                 | aws-sdk-bedrockagentruntime                 | 2023-07-26  |\n| Amazon API Gateway                                    | Aws::APIGateway                          | aws-sdk-apigateway                          | 2015-07-09  |\n| Amazon AppConfig                                      | Aws::AppConfig                           | aws-sdk-appconfig                           | 2019-10-09  |\n| Amazon AppIntegrations Service                        | Aws::AppIntegrationsService              | aws-sdk-appintegrationsservice              | 2020-07-29  |\n| Amazon AppStream                                      | Aws::AppStream                           | aws-sdk-appstream                           | 2016-12-01  |\n| Amazon Appflow                                        | Aws::Appflow                             | aws-sdk-appflow                             | 2020-08-23  |\n| Amazon Athena                                         | Aws::Athena                              | aws-sdk-athena                              | 2017-05-18  |\n| Amazon Augmented AI Runtime                           | Aws::AugmentedAIRuntime                  | aws-sdk-augmentedairuntime                  | 2019-11-07  |\n| Amazon Aurora DSQL                                    | Aws::DSQL                                | aws-sdk-dsql                                | 2018-05-10  |\n| Amazon Bedrock                                        | Aws::Bedrock                             | aws-sdk-bedrock                             | 2023-04-20  |\n| Amazon Bedrock Runtime                                | Aws::BedrockRuntime                      | aws-sdk-bedrockruntime                      | 2023-09-30  |\n| Amazon Chime                                          | Aws::Chime                               | aws-sdk-chime                               | 2018-05-01  |\n| Amazon Chime SDK Identity                             | Aws::ChimeSDKIdentity                    | aws-sdk-chimesdkidentity                    | 2021-04-20  |\n| Amazon Chime SDK Media Pipelines                      | Aws::ChimeSDKMediaPipelines              | aws-sdk-chimesdkmediapipelines              | 2021-07-15  |\n| Amazon Chime SDK Meetings                             | Aws::ChimeSDKMeetings                    | aws-sdk-chimesdkmeetings                    | 2021-07-15  |\n| Amazon Chime SDK Messaging                            | Aws::ChimeSDKMessaging                   | aws-sdk-chimesdkmessaging                   | 2021-05-15  |\n| Amazon Chime SDK Voice                                | Aws::ChimeSDKVoice                       | aws-sdk-chimesdkvoice                       | 2022-08-03  |\n| Amazon CloudDirectory                                 | Aws::CloudDirectory                      | aws-sdk-clouddirectory                      | 2017-01-11  |\n| Amazon CloudFront                                     | Aws::CloudFront                          | aws-sdk-cloudfront                          | 2020-05-31  |\n| Amazon CloudFront KeyValueStore                       | Aws::CloudFrontKeyValueStore             | aws-sdk-cloudfrontkeyvaluestore             | 2022-07-26  |\n| Amazon CloudHSM                                       | Aws::CloudHSM                            | aws-sdk-cloudhsm                            | 2014-05-30  |\n| Amazon CloudSearch                                    | Aws::CloudSearch                         | aws-sdk-cloudsearch                         | 2013-01-01  |\n| Amazon CloudSearch Domain                             | Aws::CloudSearchDomain                   | aws-sdk-cloudsearchdomain                   | 2013-01-01  |\n| Amazon CloudWatch                                     | Aws::CloudWatch                          | aws-sdk-cloudwatch                          | 2010-08-01  |\n| Amazon CloudWatch Application Insights                | Aws::ApplicationInsights                 | aws-sdk-applicationinsights                 | 2018-11-25  |\n| Amazon CloudWatch Application Signals                 | Aws::ApplicationSignals                  | aws-sdk-applicationsignals                  | 2024-04-15  |\n| Amazon CloudWatch Events                              | Aws::CloudWatchEvents                    | aws-sdk-cloudwatchevents                    | 2015-10-07  |\n| Amazon CloudWatch Evidently                           | Aws::CloudWatchEvidently                 | aws-sdk-cloudwatchevidently                 | 2021-02-01  |\n| Amazon CloudWatch Internet Monitor                    | Aws::InternetMonitor                     | aws-sdk-internetmonitor                     | 2021-06-03  |\n| Amazon CloudWatch Logs                                | Aws::CloudWatchLogs                      | aws-sdk-cloudwatchlogs                      | 2014-03-28  |\n| Amazon CloudWatch Network Monitor                     | Aws::NetworkMonitor                      | aws-sdk-networkmonitor                      | 2023-08-01  |\n| Amazon CodeCatalyst                                   | Aws::CodeCatalyst                        | aws-sdk-codecatalyst                        | 2022-09-28  |\n| Amazon CodeGuru Profiler                              | Aws::CodeGuruProfiler                    | aws-sdk-codeguruprofiler                    | 2019-07-18  |\n| Amazon CodeGuru Reviewer                              | Aws::CodeGuruReviewer                    | aws-sdk-codegurureviewer                    | 2019-09-19  |\n| Amazon CodeGuru Security                              | Aws::CodeGuruSecurity                    | aws-sdk-codegurusecurity                    | 2018-05-10  |\n| Amazon Cognito Identity                               | Aws::CognitoIdentity                     | aws-sdk-cognitoidentity                     | 2014-06-30  |\n| Amazon Cognito Identity Provider                      | Aws::CognitoIdentityProvider             | aws-sdk-cognitoidentityprovider             | 2016-04-18  |\n| Amazon Cognito Sync                                   | Aws::CognitoSync                         | aws-sdk-cognitosync                         | 2014-06-30  |\n| Amazon Comprehend                                     | Aws::Comprehend                          | aws-sdk-comprehend                          | 2017-11-27  |\n| Amazon Connect Cases                                  | Aws::ConnectCases                        | aws-sdk-connectcases                        | 2022-10-03  |\n| Amazon Connect Contact Lens                           | Aws::ConnectContactLens                  | aws-sdk-connectcontactlens                  | 2020-08-21  |\n| Amazon Connect Customer Profiles                      | Aws::CustomerProfiles                    | aws-sdk-customerprofiles                    | 2020-08-15  |\n| Amazon Connect Participant Service                    | Aws::ConnectParticipant                  | aws-sdk-connectparticipant                  | 2018-09-07  |\n| Amazon Connect Service                                | Aws::Connect                             | aws-sdk-connect                             | 2017-08-08  |\n| Amazon Connect Wisdom Service                         | Aws::ConnectWisdomService                | aws-sdk-connectwisdomservice                | 2020-10-19  |\n| Amazon Data Lifecycle Manager                         | Aws::DLM                                 | aws-sdk-dlm                                 | 2018-01-12  |\n| Amazon DataZone                                       | Aws::DataZone                            | aws-sdk-datazone                            | 2018-05-10  |\n| Amazon Detective                                      | Aws::Detective                           | aws-sdk-detective                           | 2018-10-26  |\n| Amazon DevOps Guru                                    | Aws::DevOpsGuru                          | aws-sdk-devopsguru                          | 2020-12-01  |\n| Amazon DocumentDB Elastic Clusters                    | Aws::DocDBElastic                        | aws-sdk-docdbelastic                        | 2022-11-28  |\n| Amazon DocumentDB with MongoDB compatibility          | Aws::DocDB                               | aws-sdk-docdb                               | 2014-10-31  |\n| Amazon DynamoDB                                       | Aws::DynamoDB                            | aws-sdk-dynamodb                            | 2012-08-10  |\n| Amazon DynamoDB Accelerator (DAX)                     | Aws::DAX                                 | aws-sdk-dax                                 | 2017-04-19  |\n| Amazon DynamoDB Streams                               | Aws::DynamoDBStreams                     | aws-sdk-dynamodbstreams                     | 2012-08-10  |\n| Amazon EC2 Container Service                          | Aws::ECS                                 | aws-sdk-ecs                                 | 2014-11-13  |\n| Amazon EKS Auth                                       | Aws::EKSAuth                             | aws-sdk-eksauth                             | 2023-11-26  |\n| Amazon EMR                                            | Aws::EMR                                 | aws-sdk-emr                                 | 2009-03-31  |\n| Amazon EMR Containers                                 | Aws::EMRContainers                       | aws-sdk-emrcontainers                       | 2020-10-01  |\n| Amazon ElastiCache                                    | Aws::ElastiCache                         | aws-sdk-elasticache                         | 2015-02-02  |\n| Amazon Elastic Block Store                            | Aws::EBS                                 | aws-sdk-ebs                                 | 2019-11-02  |\n| Amazon Elastic Compute Cloud                          | Aws::EC2                                 | aws-sdk-ec2                                 | 2016-11-15  |\n| Amazon Elastic Container Registry                     | Aws::ECR                                 | aws-sdk-ecr                                 | 2015-09-21  |\n| Amazon Elastic Container Registry Public              | Aws::ECRPublic                           | aws-sdk-ecrpublic                           | 2020-10-30  |\n| Amazon Elastic File System                            | Aws::EFS                                 | aws-sdk-efs                                 | 2015-02-01  |\n| Amazon Elastic Kubernetes Service                     | Aws::EKS                                 | aws-sdk-eks                                 | 2017-11-01  |\n| Amazon Elastic Transcoder                             | Aws::ElasticTranscoder                   | aws-sdk-elastictranscoder                   | 2012-09-25  |\n| Amazon Elasticsearch Service                          | Aws::ElasticsearchService                | aws-sdk-elasticsearchservice                | 2015-01-01  |\n| Amazon EventBridge                                    | Aws::EventBridge                         | aws-sdk-eventbridge                         | 2015-10-07  |\n| Amazon EventBridge Pipes                              | Aws::Pipes                               | aws-sdk-pipes                               | 2015-10-07  |\n| Amazon EventBridge Scheduler                          | Aws::Scheduler                           | aws-sdk-scheduler                           | 2021-06-30  |\n| Amazon FSx                                            | Aws::FSx                                 | aws-sdk-fsx                                 | 2018-03-01  |\n| Amazon Forecast Query Service                         | Aws::ForecastQueryService                | aws-sdk-forecastqueryservice                | 2018-06-26  |\n| Amazon Forecast Service                               | Aws::ForecastService                     | aws-sdk-forecastservice                     | 2018-06-26  |\n| Amazon Fraud Detector                                 | Aws::FraudDetector                       | aws-sdk-frauddetector                       | 2019-11-15  |\n| Amazon GameLift                                       | Aws::GameLift                            | aws-sdk-gamelift                            | 2015-10-01  |\n| Amazon GameLift Streams                               | Aws::GameLiftStreams                     | aws-sdk-gameliftstreams                     | 2018-05-10  |\n| Amazon Glacier                                        | Aws::Glacier                             | aws-sdk-glacier                             | 2012-06-01  |\n| Amazon GuardDuty                                      | Aws::GuardDuty                           | aws-sdk-guardduty                           | 2017-11-28  |\n| Amazon HealthLake                                     | Aws::HealthLake                          | aws-sdk-healthlake                          | 2017-07-01  |\n| Amazon Import/Export Snowball                         | Aws::Snowball                            | aws-sdk-snowball                            | 2016-06-30  |\n| Amazon Inspector                                      | Aws::Inspector                           | aws-sdk-inspector                           | 2016-02-16  |\n| Amazon Interactive Video Service                      | Aws::IVS                                 | aws-sdk-ivs                                 | 2020-07-14  |\n| Amazon Interactive Video Service Chat                 | Aws::Ivschat                             | aws-sdk-ivschat                             | 2020-07-14  |\n| Amazon Interactive Video Service RealTime             | Aws::IVSRealTime                         | aws-sdk-ivsrealtime                         | 2020-07-14  |\n| Amazon Kendra Intelligent Ranking                     | Aws::KendraRanking                       | aws-sdk-kendraranking                       | 2022-10-19  |\n| Amazon Keyspaces                                      | Aws::Keyspaces                           | aws-sdk-keyspaces                           | 2022-02-10  |\n| Amazon Kinesis                                        | Aws::Kinesis                             | aws-sdk-kinesis                             | 2013-12-02  |\n| Amazon Kinesis Analytics                              | Aws::KinesisAnalytics                    | aws-sdk-kinesisanalytics                    | 2015-08-14  |\n| Amazon Kinesis Analytics                              | Aws::KinesisAnalyticsV2                  | aws-sdk-kinesisanalyticsv2                  | 2018-05-23  |\n| Amazon Kinesis Firehose                               | Aws::Firehose                            | aws-sdk-firehose                            | 2015-08-04  |\n| Amazon Kinesis Video Signaling Channels               | Aws::KinesisVideoSignalingChannels       | aws-sdk-kinesisvideosignalingchannels       | 2019-12-04  |\n| Amazon Kinesis Video Streams                          | Aws::KinesisVideo                        | aws-sdk-kinesisvideo                        | 2017-09-30  |\n| Amazon Kinesis Video Streams Archived Media           | Aws::KinesisVideoArchivedMedia           | aws-sdk-kinesisvideoarchivedmedia           | 2017-09-30  |\n| Amazon Kinesis Video Streams Media                    | Aws::KinesisVideoMedia                   | aws-sdk-kinesisvideomedia                   | 2017-09-30  |\n| Amazon Kinesis Video WebRTC Storage                   | Aws::KinesisVideoWebRTCStorage           | aws-sdk-kinesisvideowebrtcstorage           | 2018-05-10  |\n| Amazon Lex Model Building Service                     | Aws::LexModelBuildingService             | aws-sdk-lexmodelbuildingservice             | 2017-04-19  |\n| Amazon Lex Model Building V2                          | Aws::LexModelsV2                         | aws-sdk-lexmodelsv2                         | 2020-08-07  |\n| Amazon Lex Runtime Service                            | Aws::Lex                                 | aws-sdk-lex                                 | 2016-11-28  |\n| Amazon Lex Runtime V2                                 | Aws::LexRuntimeV2                        | aws-sdk-lexruntimev2                        | 2020-08-07  |\n| Amazon Lightsail                                      | Aws::Lightsail                           | aws-sdk-lightsail                           | 2016-11-28  |\n| Amazon Location Service                               | Aws::LocationService                     | aws-sdk-locationservice                     | 2020-11-19  |\n| Amazon Location Service Maps V2                       | Aws::GeoMaps                             | aws-sdk-geomaps                             | 2020-11-19  |\n| Amazon Location Service Places V2                     | Aws::GeoPlaces                           | aws-sdk-geoplaces                           | 2020-11-19  |\n| Amazon Location Service Routes V2                     | Aws::GeoRoutes                           | aws-sdk-georoutes                           | 2020-11-19  |\n| Amazon Lookout for Equipment                          | Aws::LookoutEquipment                    | aws-sdk-lookoutequipment                    | 2020-12-15  |\n| Amazon Lookout for Metrics                            | Aws::LookoutMetrics                      | aws-sdk-lookoutmetrics                      | 2017-07-25  |\n| Amazon Lookout for Vision                             | Aws::LookoutforVision                    | aws-sdk-lookoutforvision                    | 2020-11-20  |\n| Amazon Machine Learning                               | Aws::MachineLearning                     | aws-sdk-machinelearning                     | 2014-12-12  |\n| Amazon Macie 2                                        | Aws::Macie2                              | aws-sdk-macie2                              | 2020-01-01  |\n| Amazon Managed Blockchain                             | Aws::ManagedBlockchain                   | aws-sdk-managedblockchain                   | 2018-09-24  |\n| Amazon Managed Blockchain Query                       | Aws::ManagedBlockchainQuery              | aws-sdk-managedblockchainquery              | 2023-05-04  |\n| Amazon Managed Grafana                                | Aws::ManagedGrafana                      | aws-sdk-managedgrafana                      | 2020-08-18  |\n| Amazon Mechanical Turk                                | Aws::MTurk                               | aws-sdk-mturk                               | 2017-01-17  |\n| Amazon MemoryDB                                       | Aws::MemoryDB                            | aws-sdk-memorydb                            | 2021-01-01  |\n| Amazon Neptune                                        | Aws::Neptune                             | aws-sdk-neptune                             | 2014-10-31  |\n| Amazon Neptune Graph                                  | Aws::NeptuneGraph                        | aws-sdk-neptunegraph                        | 2023-11-29  |\n| Amazon NeptuneData                                    | Aws::Neptunedata                         | aws-sdk-neptunedata                         | 2023-08-01  |\n| Amazon Omics                                          | Aws::Omics                               | aws-sdk-omics                               | 2022-11-28  |\n| Amazon OpenSearch Ingestion                           | Aws::OSIS                                | aws-sdk-osis                                | 2022-01-01  |\n| Amazon OpenSearch Service                             | Aws::OpenSearchService                   | aws-sdk-opensearchservice                   | 2021-01-01  |\n| Amazon Personalize                                    | Aws::Personalize                         | aws-sdk-personalize                         | 2018-05-22  |\n| Amazon Personalize Events                             | Aws::PersonalizeEvents                   | aws-sdk-personalizeevents                   | 2018-03-22  |\n| Amazon Personalize Runtime                            | Aws::PersonalizeRuntime                  | aws-sdk-personalizeruntime                  | 2018-05-22  |\n| Amazon Pinpoint                                       | Aws::Pinpoint                            | aws-sdk-pinpoint                            | 2016-12-01  |\n| Amazon Pinpoint Email Service                         | Aws::PinpointEmail                       | aws-sdk-pinpointemail                       | 2018-07-26  |\n| Amazon Pinpoint SMS Voice V2                          | Aws::PinpointSMSVoiceV2                  | aws-sdk-pinpointsmsvoicev2                  | 2022-03-31  |\n| Amazon Pinpoint SMS and Voice Service                 | Aws::PinpointSMSVoice                    | aws-sdk-pinpointsmsvoice                    | 2018-09-05  |\n| Amazon Polly                                          | Aws::Polly                               | aws-sdk-polly                               | 2016-06-10  |\n| Amazon Prometheus Service                             | Aws::PrometheusService                   | aws-sdk-prometheusservice                   | 2020-08-01  |\n| Amazon Q Connect                                      | Aws::QConnect                            | aws-sdk-qconnect                            | 2020-10-19  |\n| Amazon QLDB                                           | Aws::QLDB                                | aws-sdk-qldb                                | 2019-01-02  |\n| Amazon QLDB Session                                   | Aws::QLDBSession                         | aws-sdk-qldbsession                         | 2019-07-11  |\n| Amazon QuickSight                                     | Aws::QuickSight                          | aws-sdk-quicksight                          | 2018-04-01  |\n| Amazon Recycle Bin                                    | Aws::RecycleBin                          | aws-sdk-recyclebin                          | 2021-06-15  |\n| Amazon Redshift                                       | Aws::Redshift                            | aws-sdk-redshift                            | 2012-12-01  |\n| Amazon Rekognition                                    | Aws::Rekognition                         | aws-sdk-rekognition                         | 2016-06-27  |\n| Amazon Relational Database Service                    | Aws::RDS                                 | aws-sdk-rds                                 | 2014-10-31  |\n| Amazon Route 53                                       | Aws::Route53                             | aws-sdk-route53                             | 2013-04-01  |\n| Amazon Route 53 Domains                               | Aws::Route53Domains                      | aws-sdk-route53domains                      | 2014-05-15  |\n| Amazon Route 53 Resolver                              | Aws::Route53Resolver                     | aws-sdk-route53resolver                     | 2018-04-01  |\n| Amazon S3 Tables                                      | Aws::S3Tables                            | aws-sdk-s3tables                            | 2018-05-10  |\n| Amazon S3 on Outposts                                 | Aws::S3Outposts                          | aws-sdk-s3outposts                          | 2017-07-25  |\n| Amazon SageMaker Feature Store Runtime                | Aws::SageMakerFeatureStoreRuntime        | aws-sdk-sagemakerfeaturestoreruntime        | 2020-07-01  |\n| Amazon SageMaker Metrics Service                      | Aws::SageMakerMetrics                    | aws-sdk-sagemakermetrics                    | 2022-09-30  |\n| Amazon SageMaker Runtime                              | Aws::SageMakerRuntime                    | aws-sdk-sagemakerruntime                    | 2017-05-13  |\n| Amazon SageMaker Service                              | Aws::SageMaker                           | aws-sdk-sagemaker                           | 2017-07-24  |\n| Amazon SageMaker geospatial capabilities              | Aws::SageMakerGeospatial                 | aws-sdk-sagemakergeospatial                 | 2020-05-27  |\n| Amazon Sagemaker Edge Manager                         | Aws::SagemakerEdgeManager                | aws-sdk-sagemakeredgemanager                | 2020-09-23  |\n| Amazon Security Lake                                  | Aws::SecurityLake                        | aws-sdk-securitylake                        | 2018-05-10  |\n| Amazon Simple Email Service                           | Aws::SES                                 | aws-sdk-ses                                 | 2010-12-01  |\n| Amazon Simple Email Service                           | Aws::SESV2                               | aws-sdk-sesv2                               | 2019-09-27  |\n| Amazon Simple Notification Service                    | Aws::SNS                                 | aws-sdk-sns                                 | 2010-03-31  |\n| Amazon Simple Queue Service                           | Aws::SQS                                 | aws-sdk-sqs                                 | 2012-11-05  |\n| Amazon Simple Storage Service                         | Aws::S3                                  | aws-sdk-s3                                  | 2006-03-01  |\n| Amazon Simple Systems Manager (SSM)                   | Aws::SSM                                 | aws-sdk-ssm                                 | 2014-11-06  |\n| Amazon Simple Workflow Service                        | Aws::SWF                                 | aws-sdk-swf                                 | 2012-01-25  |\n| Amazon SimpleDB                                       | Aws::SimpleDB                            | aws-sdk-simpledb                            | 2009-04-15  |\n| Amazon Textract                                       | Aws::Textract                            | aws-sdk-textract                            | 2018-06-27  |\n| Amazon Timestream Query                               | Aws::TimestreamQuery                     | aws-sdk-timestreamquery                     | 2018-11-01  |\n| Amazon Timestream Write                               | Aws::TimestreamWrite                     | aws-sdk-timestreamwrite                     | 2018-11-01  |\n| Amazon Transcribe Service                             | Aws::TranscribeService                   | aws-sdk-transcribeservice                   | 2017-10-26  |\n| Amazon Transcribe Streaming Service                   | Aws::TranscribeStreamingService          | aws-sdk-transcribestreamingservice          | 2017-10-26  |\n| Amazon Translate                                      | Aws::Translate                           | aws-sdk-translate                           | 2017-07-01  |\n| Amazon VPC Lattice                                    | Aws::VPCLattice                          | aws-sdk-vpclattice                          | 2022-11-30  |\n| Amazon Verified Permissions                           | Aws::VerifiedPermissions                 | aws-sdk-verifiedpermissions                 | 2021-12-01  |\n| Amazon Voice ID                                       | Aws::VoiceID                             | aws-sdk-voiceid                             | 2021-09-27  |\n| Amazon WorkDocs                                       | Aws::WorkDocs                            | aws-sdk-workdocs                            | 2016-05-01  |\n| Amazon WorkMail                                       | Aws::WorkMail                            | aws-sdk-workmail                            | 2017-10-01  |\n| Amazon WorkMail Message Flow                          | Aws::WorkMailMessageFlow                 | aws-sdk-workmailmessageflow                 | 2019-05-01  |\n| Amazon WorkSpaces                                     | Aws::WorkSpaces                          | aws-sdk-workspaces                          | 2015-04-08  |\n| Amazon WorkSpaces Thin Client                         | Aws::WorkSpacesThinClient                | aws-sdk-workspacesthinclient                | 2023-08-22  |\n| Amazon WorkSpaces Web                                 | Aws::WorkSpacesWeb                       | aws-sdk-workspacesweb                       | 2020-07-08  |\n| AmazonApiGatewayManagementApi                         | Aws::ApiGatewayManagementApi             | aws-sdk-apigatewaymanagementapi             | 2018-11-29  |\n| AmazonApiGatewayV2                                    | Aws::ApiGatewayV2                        | aws-sdk-apigatewayv2                        | 2018-11-29  |\n| AmazonConnectCampaignService                          | Aws::ConnectCampaignService              | aws-sdk-connectcampaignservice              | 2021-01-30  |\n| AmazonConnectCampaignServiceV2                        | Aws::ConnectCampaignsV2                  | aws-sdk-connectcampaignsv2                  | 2024-04-23  |\n| AmazonMQ                                              | Aws::MQ                                  | aws-sdk-mq                                  | 2017-11-27  |\n| AmazonMWAA                                            | Aws::MWAA                                | aws-sdk-mwaa                                | 2020-07-01  |\n| AmplifyBackend                                        | Aws::AmplifyBackend                      | aws-sdk-amplifybackend                      | 2020-08-11  |\n| AppFabric                                             | Aws::AppFabric                           | aws-sdk-appfabric                           | 2023-05-19  |\n| Application Auto Scaling                              | Aws::ApplicationAutoScaling              | aws-sdk-applicationautoscaling              | 2016-02-06  |\n| Application Migration Service                         | Aws::Mgn                                 | aws-sdk-mgn                                 | 2020-02-26  |\n| Auto Scaling                                          | Aws::AutoScaling                         | aws-sdk-autoscaling                         | 2011-01-01  |\n| Braket                                                | Aws::Braket                              | aws-sdk-braket                              | 2019-09-01  |\n| CloudWatch Observability Access Manager               | Aws::OAM                                 | aws-sdk-oam                                 | 2022-06-10  |\n| CloudWatch Observability Admin Service                | Aws::ObservabilityAdmin                  | aws-sdk-observabilityadmin                  | 2018-05-10  |\n| CloudWatch RUM                                        | Aws::CloudWatchRUM                       | aws-sdk-cloudwatchrum                       | 2018-05-10  |\n| CodeArtifact                                          | Aws::CodeArtifact                        | aws-sdk-codeartifact                        | 2018-09-22  |\n| Cost Optimization Hub                                 | Aws::CostOptimizationHub                 | aws-sdk-costoptimizationhub                 | 2022-07-26  |\n| Data Automation for Amazon Bedrock                    | Aws::BedrockDataAutomation               | aws-sdk-bedrockdataautomation               | 2023-07-26  |\n| EC2 Image Builder                                     | Aws::Imagebuilder                        | aws-sdk-imagebuilder                        | 2019-12-02  |\n| EMR Serverless                                        | Aws::EMRServerless                       | aws-sdk-emrserverless                       | 2021-07-13  |\n| Elastic Disaster Recovery Service                     | Aws::Drs                                 | aws-sdk-drs                                 | 2020-02-26  |\n| Elastic Load Balancing                                | Aws::ElasticLoadBalancing                | aws-sdk-elasticloadbalancing                | 2012-06-01  |\n| Elastic Load Balancing                                | Aws::ElasticLoadBalancingV2              | aws-sdk-elasticloadbalancingv2              | 2015-12-01  |\n| FinSpace Public API                                   | Aws::FinSpaceData                        | aws-sdk-finspacedata                        | 2020-07-13  |\n| FinSpace User Environment Management service          | Aws::Finspace                            | aws-sdk-finspace                            | 2021-03-12  |\n| Firewall Management Service                           | Aws::FMS                                 | aws-sdk-fms                                 | 2018-01-01  |\n| IAM Roles Anywhere                                    | Aws::RolesAnywhere                       | aws-sdk-rolesanywhere                       | 2018-05-10  |\n| Inspector Scan                                        | Aws::InspectorScan                       | aws-sdk-inspectorscan                       | 2023-08-08  |\n| Inspector2                                            | Aws::Inspector2                          | aws-sdk-inspector2                          | 2020-06-08  |\n| MailManager                                           | Aws::MailManager                         | aws-sdk-mailmanager                         | 2023-10-17  |\n| Managed Streaming for Kafka                           | Aws::Kafka                               | aws-sdk-kafka                               | 2018-11-14  |\n| Managed Streaming for Kafka Connect                   | Aws::KafkaConnect                        | aws-sdk-kafkaconnect                        | 2021-09-14  |\n| Managed integrations for AWS IoT Device Management    | Aws::IoTManagedIntegrations              | aws-sdk-iotmanagedintegrations              | 2025-03-03  |\n| Migration Hub Strategy Recommendations                | Aws::MigrationHubStrategyRecommendations | aws-sdk-migrationhubstrategyrecommendations | 2020-02-19  |\n| Network Flow Monitor                                  | Aws::NetworkFlowMonitor                  | aws-sdk-networkflowmonitor                  | 2023-04-19  |\n| OpenSearch Service Serverless                         | Aws::OpenSearchServerless                | aws-sdk-opensearchserverless                | 2021-11-01  |\n| Partner Central Selling API                           | Aws::PartnerCentralSelling               | aws-sdk-partnercentralselling               | 2022-07-26  |\n| Payment Cryptography Control Plane                    | Aws::PaymentCryptography                 | aws-sdk-paymentcryptography                 | 2021-09-14  |\n| Payment Cryptography Data Plane                       | Aws::PaymentCryptographyData             | aws-sdk-paymentcryptographydata             | 2022-02-03  |\n| PcaConnectorAd                                        | Aws::PcaConnectorAd                      | aws-sdk-pcaconnectorad                      | 2018-05-10  |\n| Private CA Connector for SCEP                         | Aws::PcaConnectorScep                    | aws-sdk-pcaconnectorscep                    | 2018-05-10  |\n| QApps                                                 | Aws::QApps                               | aws-sdk-qapps                               | 2023-11-27  |\n| QBusiness                                             | Aws::QBusiness                           | aws-sdk-qbusiness                           | 2023-11-27  |\n| Redshift Data API Service                             | Aws::RedshiftDataAPIService              | aws-sdk-redshiftdataapiservice              | 2019-12-20  |\n| Redshift Serverless                                   | Aws::RedshiftServerless                  | aws-sdk-redshiftserverless                  | 2021-04-21  |\n| Route 53 Profiles                                     | Aws::Route53Profiles                     | aws-sdk-route53profiles                     | 2018-05-10  |\n| Route53 Recovery Cluster                              | Aws::Route53RecoveryCluster              | aws-sdk-route53recoverycluster              | 2019-12-02  |\n| Runtime for Amazon Bedrock Data Automation            | Aws::BedrockDataAutomationRuntime        | aws-sdk-bedrockdataautomationruntime        | 2024-06-13  |\n| Schemas                                               | Aws::Schemas                             | aws-sdk-schemas                             | 2019-12-02  |\n| Security Incident Response                            | Aws::SecurityIR                          | aws-sdk-securityir                          | 2018-05-10  |\n| Service Quotas                                        | Aws::ServiceQuotas                       | aws-sdk-servicequotas                       | 2019-06-24  |\n| Synthetics                                            | Aws::Synthetics                          | aws-sdk-synthetics                          | 2017-10-11  |\n| Tax Settings                                          | Aws::TaxSettings                         | aws-sdk-taxsettings                         | 2018-05-10  |\n| Timestream InfluxDB                                   | Aws::TimestreamInfluxDB                  | aws-sdk-timestreaminfluxdb                  | 2023-01-27  |\n| TrustedAdvisor Public API                             | Aws::TrustedAdvisor                      | aws-sdk-trustedadvisor                      | 2022-09-15  |\n\n## License\n\nThis library is distributed under the\n[Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n```no-highlight\ncopyright 2013. amazon web services, inc. all rights reserved.\n\nlicensed under the apache license, version 2.0 (the \"license\");\nyou may not use this file except in compliance with the license.\nyou may obtain a copy of the license at\n\n    http://www.apache.org/licenses/license-2.0\n\nunless required by applicable law or agreed to in writing, software\ndistributed under the license is distributed on an \"as is\" basis,\nwithout warranties or conditions of any kind, either express or implied.\nsee the license for the specific language governing permissions and\nlimitations under the license.\n```\n","funding_links":[],"categories":["Provision, Deploy \u0026 Host","Ruby","Cloud Services","SDKs and Samples","Cloud","Machine Learning Libraries"],"sub_categories":["Amazon Web Services","Ruby SDK","Frameworks"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faws%2Faws-sdk-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faws%2Faws-sdk-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faws%2Faws-sdk-ruby/lists"}