├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── closed-issue-message.yml │ ├── issue-lifecycle.yml │ └── pr-closer.yml ├── .gitignore ├── .scripts ├── convert_models ├── list_services ├── overrides.json ├── queries └── update_versions ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── models ├── accessanalyzer │ └── service │ │ └── 2019-11-01 │ │ └── accessanalyzer-2019-11-01.json ├── account │ └── service │ │ └── 2021-02-01 │ │ └── account-2021-02-01.json ├── acm-pca │ └── service │ │ └── 2017-08-22 │ │ └── acm-pca-2017-08-22.json ├── acm │ └── service │ │ └── 2015-12-08 │ │ └── acm-2015-12-08.json ├── aiops │ └── service │ │ └── 2018-05-10 │ │ └── aiops-2018-05-10.json ├── amp │ └── service │ │ └── 2020-08-01 │ │ └── amp-2020-08-01.json ├── amplify │ └── service │ │ └── 2017-07-25 │ │ └── amplify-2017-07-25.json ├── amplifybackend │ └── service │ │ └── 2020-08-11 │ │ └── amplifybackend-2020-08-11.json ├── amplifyuibuilder │ └── service │ │ └── 2021-08-11 │ │ └── amplifyuibuilder-2021-08-11.json ├── api-gateway │ └── service │ │ └── 2015-07-09 │ │ └── api-gateway-2015-07-09.json ├── apigatewaymanagementapi │ └── service │ │ └── 2018-11-29 │ │ └── apigatewaymanagementapi-2018-11-29.json ├── apigatewayv2 │ └── service │ │ └── 2018-11-29 │ │ └── apigatewayv2-2018-11-29.json ├── app-mesh │ └── service │ │ └── 2019-01-25 │ │ └── app-mesh-2019-01-25.json ├── appconfig │ └── service │ │ └── 2019-10-09 │ │ └── appconfig-2019-10-09.json ├── appconfigdata │ └── service │ │ └── 2021-11-11 │ │ └── appconfigdata-2021-11-11.json ├── appfabric │ └── service │ │ └── 2023-05-19 │ │ └── appfabric-2023-05-19.json ├── appflow │ └── service │ │ └── 2020-08-23 │ │ └── appflow-2020-08-23.json ├── appintegrations │ └── service │ │ └── 2020-07-29 │ │ └── appintegrations-2020-07-29.json ├── application-auto-scaling │ └── service │ │ └── 2016-02-06 │ │ └── application-auto-scaling-2016-02-06.json ├── application-discovery-service │ └── service │ │ └── 2015-11-01 │ │ └── application-discovery-service-2015-11-01.json ├── application-insights │ └── service │ │ └── 2018-11-25 │ │ └── application-insights-2018-11-25.json ├── application-signals │ └── service │ │ └── 2024-04-15 │ │ └── application-signals-2024-04-15.json ├── applicationcostprofiler │ └── service │ │ └── 2020-09-10 │ │ └── applicationcostprofiler-2020-09-10.json ├── apprunner │ └── service │ │ └── 2020-05-15 │ │ └── apprunner-2020-05-15.json ├── appstream │ └── service │ │ └── 2016-12-01 │ │ └── appstream-2016-12-01.json ├── appsync │ └── service │ │ └── 2017-07-25 │ │ └── appsync-2017-07-25.json ├── arc-region-switch │ └── service │ │ └── 2022-07-26 │ │ └── arc-region-switch-2022-07-26.json ├── arc-zonal-shift │ └── service │ │ └── 2022-10-30 │ │ └── arc-zonal-shift-2022-10-30.json ├── artifact │ └── service │ │ └── 2018-05-10 │ │ └── artifact-2018-05-10.json ├── athena │ └── service │ │ └── 2017-05-18 │ │ └── athena-2017-05-18.json ├── auditmanager │ └── service │ │ └── 2017-07-25 │ │ └── auditmanager-2017-07-25.json ├── auto-scaling-plans │ └── service │ │ └── 2018-01-06 │ │ └── auto-scaling-plans-2018-01-06.json ├── auto-scaling │ └── service │ │ └── 2011-01-01 │ │ └── auto-scaling-2011-01-01.json ├── b2bi │ └── service │ │ └── 2022-06-23 │ │ └── b2bi-2022-06-23.json ├── backup-gateway │ └── service │ │ └── 2021-01-01 │ │ └── backup-gateway-2021-01-01.json ├── backup │ └── service │ │ └── 2018-11-15 │ │ └── backup-2018-11-15.json ├── backupsearch │ └── service │ │ └── 2018-05-10 │ │ └── backupsearch-2018-05-10.json ├── batch │ └── service │ │ └── 2016-08-10 │ │ └── batch-2016-08-10.json ├── bcm-dashboards │ └── service │ │ └── 2025-08-18 │ │ └── bcm-dashboards-2025-08-18.json ├── bcm-data-exports │ └── service │ │ └── 2023-11-26 │ │ └── bcm-data-exports-2023-11-26.json ├── bcm-pricing-calculator │ └── service │ │ └── 2024-06-19 │ │ └── bcm-pricing-calculator-2024-06-19.json ├── bcm-recommended-actions │ └── service │ │ └── 2024-11-14 │ │ └── bcm-recommended-actions-2024-11-14.json ├── bedrock-agent-runtime │ └── service │ │ └── 2023-07-26 │ │ └── bedrock-agent-runtime-2023-07-26.json ├── bedrock-agent │ └── service │ │ └── 2023-06-05 │ │ └── bedrock-agent-2023-06-05.json ├── bedrock-agentcore-control │ └── service │ │ └── 2023-06-05 │ │ └── bedrock-agentcore-control-2023-06-05.json ├── bedrock-agentcore │ └── service │ │ └── 2024-02-28 │ │ └── bedrock-agentcore-2024-02-28.json ├── bedrock-data-automation-runtime │ └── service │ │ └── 2024-06-13 │ │ └── bedrock-data-automation-runtime-2024-06-13.json ├── bedrock-data-automation │ └── service │ │ └── 2023-07-26 │ │ └── bedrock-data-automation-2023-07-26.json ├── bedrock-runtime │ └── service │ │ └── 2023-09-30 │ │ └── bedrock-runtime-2023-09-30.json ├── bedrock │ └── service │ │ └── 2023-04-20 │ │ └── bedrock-2023-04-20.json ├── billing │ └── service │ │ └── 2023-09-07 │ │ └── billing-2023-09-07.json ├── billingconductor │ └── service │ │ └── 2021-07-30 │ │ └── billingconductor-2021-07-30.json ├── braket │ └── service │ │ └── 2019-09-01 │ │ └── braket-2019-09-01.json ├── budgets │ └── service │ │ └── 2016-10-20 │ │ └── budgets-2016-10-20.json ├── chatbot │ └── service │ │ └── 2017-10-11 │ │ └── chatbot-2017-10-11.json ├── chime-sdk-identity │ └── service │ │ └── 2021-04-20 │ │ └── chime-sdk-identity-2021-04-20.json ├── chime-sdk-media-pipelines │ └── service │ │ └── 2021-07-15 │ │ └── chime-sdk-media-pipelines-2021-07-15.json ├── chime-sdk-meetings │ └── service │ │ └── 2021-07-15 │ │ └── chime-sdk-meetings-2021-07-15.json ├── chime-sdk-messaging │ └── service │ │ └── 2021-05-15 │ │ └── chime-sdk-messaging-2021-05-15.json ├── chime-sdk-voice │ └── service │ │ └── 2022-08-03 │ │ └── chime-sdk-voice-2022-08-03.json ├── chime │ └── service │ │ └── 2018-05-01 │ │ └── chime-2018-05-01.json ├── cleanrooms │ └── service │ │ └── 2022-02-17 │ │ └── cleanrooms-2022-02-17.json ├── cleanroomsml │ └── service │ │ └── 2023-09-06 │ │ └── cleanroomsml-2023-09-06.json ├── cloud9 │ └── service │ │ └── 2017-09-23 │ │ └── cloud9-2017-09-23.json ├── cloudcontrol │ └── service │ │ └── 2021-09-30 │ │ └── cloudcontrol-2021-09-30.json ├── clouddirectory │ └── service │ │ └── 2017-01-11 │ │ └── clouddirectory-2017-01-11.json ├── cloudformation │ └── service │ │ └── 2010-05-15 │ │ └── cloudformation-2010-05-15.json ├── cloudfront-keyvaluestore │ └── service │ │ └── 2022-07-26 │ │ └── cloudfront-keyvaluestore-2022-07-26.json ├── cloudfront │ └── service │ │ └── 2020-05-31 │ │ └── cloudfront-2020-05-31.json ├── cloudhsm-v2 │ └── service │ │ └── 2017-04-28 │ │ └── cloudhsm-v2-2017-04-28.json ├── cloudhsm │ └── service │ │ └── 2014-05-30 │ │ └── cloudhsm-2014-05-30.json ├── cloudsearch-domain │ └── service │ │ └── 2013-01-01 │ │ └── cloudsearch-domain-2013-01-01.json ├── cloudsearch │ └── service │ │ └── 2013-01-01 │ │ └── cloudsearch-2013-01-01.json ├── cloudtrail-data │ └── service │ │ └── 2021-08-11 │ │ └── cloudtrail-data-2021-08-11.json ├── cloudtrail │ └── service │ │ └── 2013-11-01 │ │ └── cloudtrail-2013-11-01.json ├── cloudwatch-events │ └── service │ │ └── 2015-10-07 │ │ └── cloudwatch-events-2015-10-07.json ├── cloudwatch-logs │ └── service │ │ └── 2014-03-28 │ │ └── cloudwatch-logs-2014-03-28.json ├── cloudwatch │ └── service │ │ └── 2010-08-01 │ │ └── cloudwatch-2010-08-01.json ├── codeartifact │ └── service │ │ └── 2018-09-22 │ │ └── codeartifact-2018-09-22.json ├── codebuild │ └── service │ │ └── 2016-10-06 │ │ └── codebuild-2016-10-06.json ├── codecatalyst │ └── service │ │ └── 2022-09-28 │ │ └── codecatalyst-2022-09-28.json ├── codecommit │ └── service │ │ └── 2015-04-13 │ │ └── codecommit-2015-04-13.json ├── codeconnections │ └── service │ │ └── 2023-12-01 │ │ └── codeconnections-2023-12-01.json ├── codedeploy │ └── service │ │ └── 2014-10-06 │ │ └── codedeploy-2014-10-06.json ├── codeguru-reviewer │ └── service │ │ └── 2019-09-19 │ │ └── codeguru-reviewer-2019-09-19.json ├── codeguru-security │ └── service │ │ └── 2018-05-10 │ │ └── codeguru-security-2018-05-10.json ├── codeguruprofiler │ └── service │ │ └── 2019-07-18 │ │ └── codeguruprofiler-2019-07-18.json ├── codepipeline │ └── service │ │ └── 2015-07-09 │ │ └── codepipeline-2015-07-09.json ├── codestar-connections │ └── service │ │ └── 2019-12-01 │ │ └── codestar-connections-2019-12-01.json ├── codestar-notifications │ └── service │ │ └── 2019-10-15 │ │ └── codestar-notifications-2019-10-15.json ├── cognito-identity-provider │ └── service │ │ └── 2016-04-18 │ │ └── cognito-identity-provider-2016-04-18.json ├── cognito-identity │ └── service │ │ └── 2014-06-30 │ │ └── cognito-identity-2014-06-30.json ├── cognito-sync │ └── service │ │ └── 2014-06-30 │ │ └── cognito-sync-2014-06-30.json ├── comprehend │ └── service │ │ └── 2017-11-27 │ │ └── comprehend-2017-11-27.json ├── comprehendmedical │ └── service │ │ └── 2018-10-30 │ │ └── comprehendmedical-2018-10-30.json ├── compute-optimizer-automation │ └── service │ │ └── 2025-09-22 │ │ └── compute-optimizer-automation-2025-09-22.json ├── compute-optimizer │ └── service │ │ └── 2019-11-01 │ │ └── compute-optimizer-2019-11-01.json ├── config-service │ └── service │ │ └── 2014-11-12 │ │ └── config-service-2014-11-12.json ├── connect-contact-lens │ └── service │ │ └── 2020-08-21 │ │ └── connect-contact-lens-2020-08-21.json ├── connect │ └── service │ │ └── 2017-08-08 │ │ └── connect-2017-08-08.json ├── connectcampaigns │ └── service │ │ └── 2021-01-30 │ │ └── connectcampaigns-2021-01-30.json ├── connectcampaignsv2 │ └── service │ │ └── 2024-04-23 │ │ └── connectcampaignsv2-2024-04-23.json ├── connectcases │ └── service │ │ └── 2022-10-03 │ │ └── connectcases-2022-10-03.json ├── connectparticipant │ └── service │ │ └── 2018-09-07 │ │ └── connectparticipant-2018-09-07.json ├── controlcatalog │ └── service │ │ └── 2018-05-10 │ │ └── controlcatalog-2018-05-10.json ├── controltower │ └── service │ │ └── 2018-05-10 │ │ └── controltower-2018-05-10.json ├── cost-and-usage-report-service │ └── service │ │ └── 2017-01-06 │ │ └── cost-and-usage-report-service-2017-01-06.json ├── cost-explorer │ └── service │ │ └── 2017-10-25 │ │ └── cost-explorer-2017-10-25.json ├── cost-optimization-hub │ └── service │ │ └── 2022-07-26 │ │ └── cost-optimization-hub-2022-07-26.json ├── customer-profiles │ └── service │ │ └── 2020-08-15 │ │ └── customer-profiles-2020-08-15.json ├── data-pipeline │ └── service │ │ └── 2012-10-29 │ │ └── data-pipeline-2012-10-29.json ├── database-migration-service │ └── service │ │ └── 2016-01-01 │ │ └── database-migration-service-2016-01-01.json ├── databrew │ └── service │ │ └── 2017-07-25 │ │ └── databrew-2017-07-25.json ├── dataexchange │ └── service │ │ └── 2017-07-25 │ │ └── dataexchange-2017-07-25.json ├── datasync │ └── service │ │ └── 2018-11-09 │ │ └── datasync-2018-11-09.json ├── datazone │ └── service │ │ └── 2018-05-10 │ │ └── datazone-2018-05-10.json ├── dax │ └── service │ │ └── 2017-04-19 │ │ └── dax-2017-04-19.json ├── deadline │ └── service │ │ └── 2023-10-12 │ │ └── deadline-2023-10-12.json ├── detective │ └── service │ │ └── 2018-10-26 │ │ └── detective-2018-10-26.json ├── device-farm │ └── service │ │ └── 2015-06-23 │ │ └── device-farm-2015-06-23.json ├── devops-guru │ └── service │ │ └── 2020-12-01 │ │ └── devops-guru-2020-12-01.json ├── direct-connect │ └── service │ │ └── 2012-10-25 │ │ └── direct-connect-2012-10-25.json ├── directory-service-data │ └── service │ │ └── 2023-05-31 │ │ └── directory-service-data-2023-05-31.json ├── directory-service │ └── service │ │ └── 2015-04-16 │ │ └── directory-service-2015-04-16.json ├── dlm │ └── service │ │ └── 2018-01-12 │ │ └── dlm-2018-01-12.json ├── docdb-elastic │ └── service │ │ └── 2022-11-28 │ │ └── docdb-elastic-2022-11-28.json ├── docdb │ └── service │ │ └── 2014-10-31 │ │ └── docdb-2014-10-31.json ├── drs │ └── service │ │ └── 2020-02-26 │ │ └── drs-2020-02-26.json ├── dsql │ └── service │ │ └── 2018-05-10 │ │ └── dsql-2018-05-10.json ├── dynamodb-streams │ └── service │ │ └── 2012-08-10 │ │ └── dynamodb-streams-2012-08-10.json ├── dynamodb │ └── service │ │ └── 2012-08-10 │ │ └── dynamodb-2012-08-10.json ├── ebs │ └── service │ │ └── 2019-11-02 │ │ └── ebs-2019-11-02.json ├── ec2-instance-connect │ └── service │ │ └── 2018-04-02 │ │ └── ec2-instance-connect-2018-04-02.json ├── ec2 │ └── service │ │ └── 2016-11-15 │ │ └── ec2-2016-11-15.json ├── ecr-public │ └── service │ │ └── 2020-10-30 │ │ └── ecr-public-2020-10-30.json ├── ecr │ └── service │ │ └── 2015-09-21 │ │ └── ecr-2015-09-21.json ├── ecs │ └── service │ │ └── 2014-11-13 │ │ └── ecs-2014-11-13.json ├── efs │ └── service │ │ └── 2015-02-01 │ │ └── efs-2015-02-01.json ├── eks-auth │ └── service │ │ └── 2023-11-26 │ │ └── eks-auth-2023-11-26.json ├── eks │ └── service │ │ └── 2017-11-01 │ │ └── eks-2017-11-01.json ├── elastic-beanstalk │ └── service │ │ └── 2010-12-01 │ │ └── elastic-beanstalk-2010-12-01.json ├── elastic-load-balancing-v2 │ └── service │ │ └── 2015-12-01 │ │ └── elastic-load-balancing-v2-2015-12-01.json ├── elastic-load-balancing │ └── service │ │ └── 2012-06-01 │ │ └── elastic-load-balancing-2012-06-01.json ├── elastic-transcoder │ └── service │ │ └── 2012-09-25 │ │ └── elastic-transcoder-2012-09-25.json ├── elasticache │ └── service │ │ └── 2015-02-02 │ │ └── elasticache-2015-02-02.json ├── elasticsearch-service │ └── service │ │ └── 2015-01-01 │ │ └── elasticsearch-service-2015-01-01.json ├── emr-containers │ └── service │ │ └── 2020-10-01 │ │ └── emr-containers-2020-10-01.json ├── emr-serverless │ └── service │ │ └── 2021-07-13 │ │ └── emr-serverless-2021-07-13.json ├── emr │ └── service │ │ └── 2009-03-31 │ │ └── emr-2009-03-31.json ├── entityresolution │ └── service │ │ └── 2018-05-10 │ │ └── entityresolution-2018-05-10.json ├── eventbridge │ └── service │ │ └── 2015-10-07 │ │ └── eventbridge-2015-10-07.json ├── evidently │ └── service │ │ └── 2021-02-01 │ │ └── evidently-2021-02-01.json ├── evs │ └── service │ │ └── 2023-07-27 │ │ └── evs-2023-07-27.json ├── finspace-data │ └── service │ │ └── 2020-07-13 │ │ └── finspace-data-2020-07-13.json ├── finspace │ └── service │ │ └── 2021-03-12 │ │ └── finspace-2021-03-12.json ├── firehose │ └── service │ │ └── 2015-08-04 │ │ └── firehose-2015-08-04.json ├── fis │ └── service │ │ └── 2020-12-01 │ │ └── fis-2020-12-01.json ├── fms │ └── service │ │ └── 2018-01-01 │ │ └── fms-2018-01-01.json ├── forecast │ └── service │ │ └── 2018-06-26 │ │ └── forecast-2018-06-26.json ├── forecastquery │ └── service │ │ └── 2018-06-26 │ │ └── forecastquery-2018-06-26.json ├── frauddetector │ └── service │ │ └── 2019-11-15 │ │ └── frauddetector-2019-11-15.json ├── freetier │ └── service │ │ └── 2023-09-07 │ │ └── freetier-2023-09-07.json ├── fsx │ └── service │ │ └── 2018-03-01 │ │ └── fsx-2018-03-01.json ├── gamelift │ └── service │ │ └── 2015-10-01 │ │ └── gamelift-2015-10-01.json ├── gameliftstreams │ └── service │ │ └── 2018-05-10 │ │ └── gameliftstreams-2018-05-10.json ├── geo-maps │ └── service │ │ └── 2020-11-19 │ │ └── geo-maps-2020-11-19.json ├── geo-places │ └── service │ │ └── 2020-11-19 │ │ └── geo-places-2020-11-19.json ├── geo-routes │ └── service │ │ └── 2020-11-19 │ │ └── geo-routes-2020-11-19.json ├── glacier │ └── service │ │ └── 2012-06-01 │ │ └── glacier-2012-06-01.json ├── global-accelerator │ └── service │ │ └── 2018-08-08 │ │ └── global-accelerator-2018-08-08.json ├── glue │ └── service │ │ └── 2017-03-31 │ │ └── glue-2017-03-31.json ├── grafana │ └── service │ │ └── 2020-08-18 │ │ └── grafana-2020-08-18.json ├── greengrass │ └── service │ │ └── 2017-06-07 │ │ └── greengrass-2017-06-07.json ├── greengrassv2 │ └── service │ │ └── 2020-11-30 │ │ └── greengrassv2-2020-11-30.json ├── groundstation │ └── service │ │ └── 2019-05-23 │ │ └── groundstation-2019-05-23.json ├── guardduty │ └── service │ │ └── 2017-11-28 │ │ └── guardduty-2017-11-28.json ├── health │ └── service │ │ └── 2016-08-04 │ │ └── health-2016-08-04.json ├── healthlake │ └── service │ │ └── 2017-07-01 │ │ └── healthlake-2017-07-01.json ├── iam │ └── service │ │ └── 2010-05-08 │ │ └── iam-2010-05-08.json ├── identitystore │ └── service │ │ └── 2020-06-15 │ │ └── identitystore-2020-06-15.json ├── imagebuilder │ └── service │ │ └── 2019-12-02 │ │ └── imagebuilder-2019-12-02.json ├── inspector-scan │ └── service │ │ └── 2023-08-08 │ │ └── inspector-scan-2023-08-08.json ├── inspector │ └── service │ │ └── 2016-02-16 │ │ └── inspector-2016-02-16.json ├── inspector2 │ └── service │ │ └── 2020-06-08 │ │ └── inspector2-2020-06-08.json ├── internetmonitor │ └── service │ │ └── 2021-06-03 │ │ └── internetmonitor-2021-06-03.json ├── invoicing │ └── service │ │ └── 2024-12-01 │ │ └── invoicing-2024-12-01.json ├── iot-data-plane │ └── service │ │ └── 2015-05-28 │ │ └── iot-data-plane-2015-05-28.json ├── iot-events-data │ └── service │ │ └── 2018-10-23 │ │ └── iot-events-data-2018-10-23.json ├── iot-events │ └── service │ │ └── 2018-07-27 │ │ └── iot-events-2018-07-27.json ├── iot-jobs-data-plane │ └── service │ │ └── 2017-09-29 │ │ └── iot-jobs-data-plane-2017-09-29.json ├── iot-managed-integrations │ └── service │ │ └── 2025-03-03 │ │ └── iot-managed-integrations-2025-03-03.json ├── iot-wireless │ └── service │ │ └── 2020-11-22 │ │ └── iot-wireless-2020-11-22.json ├── iot │ └── service │ │ └── 2015-05-28 │ │ └── iot-2015-05-28.json ├── iotanalytics │ └── service │ │ └── 2017-11-27 │ │ └── iotanalytics-2017-11-27.json ├── iotdeviceadvisor │ └── service │ │ └── 2020-09-18 │ │ └── iotdeviceadvisor-2020-09-18.json ├── iotfleetwise │ └── service │ │ └── 2021-06-17 │ │ └── iotfleetwise-2021-06-17.json ├── iotsecuretunneling │ └── service │ │ └── 2018-10-05 │ │ └── iotsecuretunneling-2018-10-05.json ├── iotsitewise │ └── service │ │ └── 2019-12-02 │ │ └── iotsitewise-2019-12-02.json ├── iotthingsgraph │ └── service │ │ └── 2018-09-06 │ │ └── iotthingsgraph-2018-09-06.json ├── iottwinmaker │ └── service │ │ └── 2021-11-29 │ │ └── iottwinmaker-2021-11-29.json ├── ivs-realtime │ └── service │ │ └── 2020-07-14 │ │ └── ivs-realtime-2020-07-14.json ├── ivs │ └── service │ │ └── 2020-07-14 │ │ └── ivs-2020-07-14.json ├── ivschat │ └── service │ │ └── 2020-07-14 │ │ └── ivschat-2020-07-14.json ├── kafka │ └── service │ │ └── 2018-11-14 │ │ └── kafka-2018-11-14.json ├── kafkaconnect │ └── service │ │ └── 2021-09-14 │ │ └── kafkaconnect-2021-09-14.json ├── kendra-ranking │ └── service │ │ └── 2022-10-19 │ │ └── kendra-ranking-2022-10-19.json ├── kendra │ └── service │ │ └── 2019-02-03 │ │ └── kendra-2019-02-03.json ├── keyspaces │ └── service │ │ └── 2022-02-10 │ │ └── keyspaces-2022-02-10.json ├── keyspacesstreams │ └── service │ │ └── 2024-09-09 │ │ └── keyspacesstreams-2024-09-09.json ├── kinesis-analytics-v2 │ └── service │ │ └── 2018-05-23 │ │ └── kinesis-analytics-v2-2018-05-23.json ├── kinesis-analytics │ └── service │ │ └── 2015-08-14 │ │ └── kinesis-analytics-2015-08-14.json ├── kinesis-video-archived-media │ └── service │ │ └── 2017-09-30 │ │ └── kinesis-video-archived-media-2017-09-30.json ├── kinesis-video-media │ └── service │ │ └── 2017-09-30 │ │ └── kinesis-video-media-2017-09-30.json ├── kinesis-video-signaling │ └── service │ │ └── 2019-12-04 │ │ └── kinesis-video-signaling-2019-12-04.json ├── kinesis-video-webrtc-storage │ └── service │ │ └── 2018-05-10 │ │ └── kinesis-video-webrtc-storage-2018-05-10.json ├── kinesis-video │ └── service │ │ └── 2017-09-30 │ │ └── kinesis-video-2017-09-30.json ├── kinesis │ └── service │ │ └── 2013-12-02 │ │ └── kinesis-2013-12-02.json ├── kms │ └── service │ │ └── 2014-11-01 │ │ └── kms-2014-11-01.json ├── lakeformation │ └── service │ │ └── 2017-03-31 │ │ └── lakeformation-2017-03-31.json ├── lambda │ └── service │ │ └── 2015-03-31 │ │ └── lambda-2015-03-31.json ├── launch-wizard │ └── service │ │ └── 2018-05-10 │ │ └── launch-wizard-2018-05-10.json ├── lex-model-building-service │ └── service │ │ └── 2017-04-19 │ │ └── lex-model-building-service-2017-04-19.json ├── lex-models-v2 │ └── service │ │ └── 2020-08-07 │ │ └── lex-models-v2-2020-08-07.json ├── lex-runtime-service │ └── service │ │ └── 2016-11-28 │ │ └── lex-runtime-service-2016-11-28.json ├── lex-runtime-v2 │ └── service │ │ └── 2020-08-07 │ │ └── lex-runtime-v2-2020-08-07.json ├── license-manager-linux-subscriptions │ └── service │ │ └── 2018-05-10 │ │ └── license-manager-linux-subscriptions-2018-05-10.json ├── license-manager-user-subscriptions │ └── service │ │ └── 2018-05-10 │ │ └── license-manager-user-subscriptions-2018-05-10.json ├── license-manager │ └── service │ │ └── 2018-08-01 │ │ └── license-manager-2018-08-01.json ├── lightsail │ └── service │ │ └── 2016-11-28 │ │ └── lightsail-2016-11-28.json ├── location │ └── service │ │ └── 2020-11-19 │ │ └── location-2020-11-19.json ├── lookoutequipment │ └── service │ │ └── 2020-12-15 │ │ └── lookoutequipment-2020-12-15.json ├── m2 │ └── service │ │ └── 2021-04-28 │ │ └── m2-2021-04-28.json ├── machine-learning │ └── service │ │ └── 2014-12-12 │ │ └── machine-learning-2014-12-12.json ├── macie2 │ └── service │ │ └── 2020-01-01 │ │ └── macie2-2020-01-01.json ├── mailmanager │ └── service │ │ └── 2023-10-17 │ │ └── mailmanager-2023-10-17.json ├── managedblockchain-query │ └── service │ │ └── 2023-05-04 │ │ └── managedblockchain-query-2023-05-04.json ├── managedblockchain │ └── service │ │ └── 2018-09-24 │ │ └── managedblockchain-2018-09-24.json ├── marketplace-agreement │ └── service │ │ └── 2020-03-01 │ │ └── marketplace-agreement-2020-03-01.json ├── marketplace-catalog │ └── service │ │ └── 2018-09-17 │ │ └── marketplace-catalog-2018-09-17.json ├── marketplace-commerce-analytics │ └── service │ │ └── 2015-07-01 │ │ └── marketplace-commerce-analytics-2015-07-01.json ├── marketplace-deployment │ └── service │ │ └── 2023-01-25 │ │ └── marketplace-deployment-2023-01-25.json ├── marketplace-entitlement-service │ └── service │ │ └── 2017-01-11 │ │ └── marketplace-entitlement-service-2017-01-11.json ├── marketplace-metering │ └── service │ │ └── 2016-01-14 │ │ └── marketplace-metering-2016-01-14.json ├── marketplace-reporting │ └── service │ │ └── 2018-05-10 │ │ └── marketplace-reporting-2018-05-10.json ├── mediaconnect │ └── service │ │ └── 2018-11-14 │ │ └── mediaconnect-2018-11-14.json ├── mediaconvert │ └── service │ │ └── 2017-08-29 │ │ └── mediaconvert-2017-08-29.json ├── medialive │ └── service │ │ └── 2017-10-14 │ │ └── medialive-2017-10-14.json ├── mediapackage-vod │ └── service │ │ └── 2018-11-07 │ │ └── mediapackage-vod-2018-11-07.json ├── mediapackage │ └── service │ │ └── 2017-10-12 │ │ └── mediapackage-2017-10-12.json ├── mediapackagev2 │ └── service │ │ └── 2022-12-25 │ │ └── mediapackagev2-2022-12-25.json ├── mediastore-data │ └── service │ │ └── 2017-09-01 │ │ └── mediastore-data-2017-09-01.json ├── mediastore │ └── service │ │ └── 2017-09-01 │ │ └── mediastore-2017-09-01.json ├── mediatailor │ └── service │ │ └── 2018-04-23 │ │ └── mediatailor-2018-04-23.json ├── medical-imaging │ └── service │ │ └── 2023-07-19 │ │ └── medical-imaging-2023-07-19.json ├── memorydb │ └── service │ │ └── 2021-01-01 │ │ └── memorydb-2021-01-01.json ├── mgn │ └── service │ │ └── 2020-02-26 │ │ └── mgn-2020-02-26.json ├── migration-hub-refactor-spaces │ └── service │ │ └── 2021-10-26 │ │ └── migration-hub-refactor-spaces-2021-10-26.json ├── migration-hub │ └── service │ │ └── 2017-05-31 │ │ └── migration-hub-2017-05-31.json ├── migrationhub-config │ └── service │ │ └── 2019-06-30 │ │ └── migrationhub-config-2019-06-30.json ├── migrationhuborchestrator │ └── service │ │ └── 2021-08-28 │ │ └── migrationhuborchestrator-2021-08-28.json ├── migrationhubstrategy │ └── service │ │ └── 2020-02-19 │ │ └── migrationhubstrategy-2020-02-19.json ├── mpa │ └── service │ │ └── 2022-07-26 │ │ └── mpa-2022-07-26.json ├── mq │ └── service │ │ └── 2017-11-27 │ │ └── mq-2017-11-27.json ├── mturk │ └── service │ │ └── 2017-01-17 │ │ └── mturk-2017-01-17.json ├── mwaa-serverless │ └── service │ │ └── 2024-07-26 │ │ └── mwaa-serverless-2024-07-26.json ├── mwaa │ └── service │ │ └── 2020-07-01 │ │ └── mwaa-2020-07-01.json ├── neptune-graph │ └── service │ │ └── 2023-11-29 │ │ └── neptune-graph-2023-11-29.json ├── neptune │ └── service │ │ └── 2014-10-31 │ │ └── neptune-2014-10-31.json ├── neptunedata │ └── service │ │ └── 2023-08-01 │ │ └── neptunedata-2023-08-01.json ├── network-firewall │ └── service │ │ └── 2020-11-12 │ │ └── network-firewall-2020-11-12.json ├── networkflowmonitor │ └── service │ │ └── 2023-04-19 │ │ └── networkflowmonitor-2023-04-19.json ├── networkmanager │ └── service │ │ └── 2019-07-05 │ │ └── networkmanager-2019-07-05.json ├── networkmonitor │ └── service │ │ └── 2023-08-01 │ │ └── networkmonitor-2023-08-01.json ├── notifications │ └── service │ │ └── 2018-05-10 │ │ └── notifications-2018-05-10.json ├── notificationscontacts │ └── service │ │ └── 2018-05-10 │ │ └── notificationscontacts-2018-05-10.json ├── nova-act │ └── service │ │ └── 2025-08-22 │ │ └── nova-act-2025-08-22.json ├── oam │ └── service │ │ └── 2022-06-10 │ │ └── oam-2022-06-10.json ├── observabilityadmin │ └── service │ │ └── 2018-05-10 │ │ └── observabilityadmin-2018-05-10.json ├── odb │ └── service │ │ └── 2024-08-20 │ │ └── odb-2024-08-20.json ├── omics │ └── service │ │ └── 2022-11-28 │ │ └── omics-2022-11-28.json ├── opensearch │ └── service │ │ └── 2021-01-01 │ │ └── opensearch-2021-01-01.json ├── opensearchserverless │ └── service │ │ └── 2021-11-01 │ │ └── opensearchserverless-2021-11-01.json ├── organizations │ └── service │ │ └── 2016-11-28 │ │ └── organizations-2016-11-28.json ├── osis │ └── service │ │ └── 2022-01-01 │ │ └── osis-2022-01-01.json ├── outposts │ └── service │ │ └── 2019-12-03 │ │ └── outposts-2019-12-03.json ├── panorama │ └── service │ │ └── 2019-07-24 │ │ └── panorama-2019-07-24.json ├── partnercentral-account │ └── service │ │ └── 2025-04-04 │ │ └── partnercentral-account-2025-04-04.json ├── partnercentral-benefits │ └── service │ │ └── 2018-05-10 │ │ └── partnercentral-benefits-2018-05-10.json ├── partnercentral-channel │ └── service │ │ └── 2024-03-18 │ │ └── partnercentral-channel-2024-03-18.json ├── partnercentral-selling │ └── service │ │ └── 2022-07-26 │ │ └── partnercentral-selling-2022-07-26.json ├── payment-cryptography-data │ └── service │ │ └── 2022-02-03 │ │ └── payment-cryptography-data-2022-02-03.json ├── payment-cryptography │ └── service │ │ └── 2021-09-14 │ │ └── payment-cryptography-2021-09-14.json ├── pca-connector-ad │ └── service │ │ └── 2018-05-10 │ │ └── pca-connector-ad-2018-05-10.json ├── pca-connector-scep │ └── service │ │ └── 2018-05-10 │ │ └── pca-connector-scep-2018-05-10.json ├── pcs │ └── service │ │ └── 2023-02-10 │ │ └── pcs-2023-02-10.json ├── personalize-events │ └── service │ │ └── 2018-03-22 │ │ └── personalize-events-2018-03-22.json ├── personalize-runtime │ └── service │ │ └── 2018-05-22 │ │ └── personalize-runtime-2018-05-22.json ├── personalize │ └── service │ │ └── 2018-05-22 │ │ └── personalize-2018-05-22.json ├── pi │ └── service │ │ └── 2018-02-27 │ │ └── pi-2018-02-27.json ├── pinpoint-email │ └── service │ │ └── 2018-07-26 │ │ └── pinpoint-email-2018-07-26.json ├── pinpoint-sms-voice-v2 │ └── service │ │ └── 2022-03-31 │ │ └── pinpoint-sms-voice-v2-2022-03-31.json ├── pinpoint-sms-voice │ └── service │ │ └── 2018-09-05 │ │ └── pinpoint-sms-voice-2018-09-05.json ├── pinpoint │ └── service │ │ └── 2016-12-01 │ │ └── pinpoint-2016-12-01.json ├── pipes │ └── service │ │ └── 2015-10-07 │ │ └── pipes-2015-10-07.json ├── polly │ └── service │ │ └── 2016-06-10 │ │ └── polly-2016-06-10.json ├── pricing │ └── service │ │ └── 2017-10-15 │ │ └── pricing-2017-10-15.json ├── proton │ └── service │ │ └── 2020-07-20 │ │ └── proton-2020-07-20.json ├── qapps │ └── service │ │ └── 2023-11-27 │ │ └── qapps-2023-11-27.json ├── qbusiness │ └── service │ │ └── 2023-11-27 │ │ └── qbusiness-2023-11-27.json ├── qconnect │ └── service │ │ └── 2020-10-19 │ │ └── qconnect-2020-10-19.json ├── quicksight │ └── service │ │ └── 2018-04-01 │ │ └── quicksight-2018-04-01.json ├── ram │ └── service │ │ └── 2018-01-04 │ │ └── ram-2018-01-04.json ├── rbin │ └── service │ │ └── 2021-06-15 │ │ └── rbin-2021-06-15.json ├── rds-data │ └── service │ │ └── 2018-08-01 │ │ └── rds-data-2018-08-01.json ├── rds │ └── service │ │ └── 2014-10-31 │ │ └── rds-2014-10-31.json ├── redshift-data │ └── service │ │ └── 2019-12-20 │ │ └── redshift-data-2019-12-20.json ├── redshift-serverless │ └── service │ │ └── 2021-04-21 │ │ └── redshift-serverless-2021-04-21.json ├── redshift │ └── service │ │ └── 2012-12-01 │ │ └── redshift-2012-12-01.json ├── rekognition │ └── service │ │ └── 2016-06-27 │ │ └── rekognition-2016-06-27.json ├── repostspace │ └── service │ │ └── 2022-05-13 │ │ └── repostspace-2022-05-13.json ├── resiliencehub │ └── service │ │ └── 2020-04-30 │ │ └── resiliencehub-2020-04-30.json ├── resource-explorer-2 │ └── service │ │ └── 2022-07-28 │ │ └── resource-explorer-2-2022-07-28.json ├── resource-groups-tagging-api │ └── service │ │ └── 2017-01-26 │ │ └── resource-groups-tagging-api-2017-01-26.json ├── resource-groups │ └── service │ │ └── 2017-11-27 │ │ └── resource-groups-2017-11-27.json ├── rolesanywhere │ └── service │ │ └── 2018-05-10 │ │ └── rolesanywhere-2018-05-10.json ├── route-53-domains │ └── service │ │ └── 2014-05-15 │ │ └── route-53-domains-2014-05-15.json ├── route-53 │ └── service │ │ └── 2013-04-01 │ │ └── route-53-2013-04-01.json ├── route53-recovery-cluster │ └── service │ │ └── 2019-12-02 │ │ └── route53-recovery-cluster-2019-12-02.json ├── route53-recovery-control-config │ └── service │ │ └── 2020-11-02 │ │ └── route53-recovery-control-config-2020-11-02.json ├── route53-recovery-readiness │ └── service │ │ └── 2019-12-02 │ │ └── route53-recovery-readiness-2019-12-02.json ├── route53globalresolver │ └── service │ │ └── 2022-09-27 │ │ └── route53globalresolver-2022-09-27.json ├── route53profiles │ └── service │ │ └── 2018-05-10 │ │ └── route53profiles-2018-05-10.json ├── route53resolver │ └── service │ │ └── 2018-04-01 │ │ └── route53resolver-2018-04-01.json ├── rtbfabric │ └── service │ │ └── 2023-05-15 │ │ └── rtbfabric-2023-05-15.json ├── rum │ └── service │ │ └── 2018-05-10 │ │ └── rum-2018-05-10.json ├── s3-control │ └── service │ │ └── 2018-08-20 │ │ └── s3-control-2018-08-20.json ├── s3 │ └── service │ │ └── 2006-03-01 │ │ └── s3-2006-03-01.json ├── s3outposts │ └── service │ │ └── 2017-07-25 │ │ └── s3outposts-2017-07-25.json ├── s3tables │ └── service │ │ └── 2018-05-10 │ │ └── s3tables-2018-05-10.json ├── s3vectors │ └── service │ │ └── 2025-07-15 │ │ └── s3vectors-2025-07-15.json ├── sagemaker-a2i-runtime │ └── service │ │ └── 2019-11-07 │ │ └── sagemaker-a2i-runtime-2019-11-07.json ├── sagemaker-edge │ └── service │ │ └── 2020-09-23 │ │ └── sagemaker-edge-2020-09-23.json ├── sagemaker-featurestore-runtime │ └── service │ │ └── 2020-07-01 │ │ └── sagemaker-featurestore-runtime-2020-07-01.json ├── sagemaker-geospatial │ └── service │ │ └── 2020-05-27 │ │ └── sagemaker-geospatial-2020-05-27.json ├── sagemaker-metrics │ └── service │ │ └── 2022-09-30 │ │ └── sagemaker-metrics-2022-09-30.json ├── sagemaker-runtime-http2 │ └── service │ │ └── 2025-10-01 │ │ └── sagemaker-runtime-http2-2025-10-01.json ├── sagemaker-runtime │ └── service │ │ └── 2017-05-13 │ │ └── sagemaker-runtime-2017-05-13.json ├── sagemaker │ └── service │ │ └── 2017-07-24 │ │ └── sagemaker-2017-07-24.json ├── savingsplans │ └── service │ │ └── 2019-06-28 │ │ └── savingsplans-2019-06-28.json ├── scheduler │ └── service │ │ └── 2021-06-30 │ │ └── scheduler-2021-06-30.json ├── schemas │ └── service │ │ └── 2019-12-02 │ │ └── schemas-2019-12-02.json ├── secrets-manager │ └── service │ │ └── 2017-10-17 │ │ └── secrets-manager-2017-10-17.json ├── security-ir │ └── service │ │ └── 2018-05-10 │ │ └── security-ir-2018-05-10.json ├── securityhub │ └── service │ │ └── 2018-10-26 │ │ └── securityhub-2018-10-26.json ├── securitylake │ └── service │ │ └── 2018-05-10 │ │ └── securitylake-2018-05-10.json ├── serverlessapplicationrepository │ └── service │ │ └── 2017-09-08 │ │ └── serverlessapplicationrepository-2017-09-08.json ├── service-catalog-appregistry │ └── service │ │ └── 2020-06-24 │ │ └── service-catalog-appregistry-2020-06-24.json ├── service-catalog │ └── service │ │ └── 2015-12-10 │ │ └── service-catalog-2015-12-10.json ├── service-quotas │ └── service │ │ └── 2019-06-24 │ │ └── service-quotas-2019-06-24.json ├── servicediscovery │ └── service │ │ └── 2017-03-14 │ │ └── servicediscovery-2017-03-14.json ├── ses │ └── service │ │ └── 2010-12-01 │ │ └── ses-2010-12-01.json ├── sesv2 │ └── service │ │ └── 2019-09-27 │ │ └── sesv2-2019-09-27.json ├── sfn │ └── service │ │ └── 2016-11-23 │ │ └── sfn-2016-11-23.json ├── shield │ └── service │ │ └── 2016-06-02 │ │ └── shield-2016-06-02.json ├── signer │ └── service │ │ └── 2017-08-25 │ │ └── signer-2017-08-25.json ├── signin │ └── service │ │ └── 2023-01-01 │ │ └── signin-2023-01-01.json ├── simspaceweaver │ └── service │ │ └── 2022-10-28 │ │ └── simspaceweaver-2022-10-28.json ├── snow-device-management │ └── service │ │ └── 2021-08-04 │ │ └── snow-device-management-2021-08-04.json ├── snowball │ └── service │ │ └── 2016-06-30 │ │ └── snowball-2016-06-30.json ├── sns │ └── service │ │ └── 2010-03-31 │ │ └── sns-2010-03-31.json ├── socialmessaging │ └── service │ │ └── 2024-01-01 │ │ └── socialmessaging-2024-01-01.json ├── sqs │ └── service │ │ └── 2012-11-05 │ │ └── sqs-2012-11-05.json ├── ssm-contacts │ └── service │ │ └── 2021-05-03 │ │ └── ssm-contacts-2021-05-03.json ├── ssm-guiconnect │ └── service │ │ └── 2021-05-01 │ │ └── ssm-guiconnect-2021-05-01.json ├── ssm-incidents │ └── service │ │ └── 2018-05-10 │ │ └── ssm-incidents-2018-05-10.json ├── ssm-quicksetup │ └── service │ │ └── 2018-05-10 │ │ └── ssm-quicksetup-2018-05-10.json ├── ssm-sap │ └── service │ │ └── 2018-05-10 │ │ └── ssm-sap-2018-05-10.json ├── ssm │ └── service │ │ └── 2014-11-06 │ │ └── ssm-2014-11-06.json ├── sso-admin │ └── service │ │ └── 2020-07-20 │ │ └── sso-admin-2020-07-20.json ├── sso-oidc │ └── service │ │ └── 2019-06-10 │ │ └── sso-oidc-2019-06-10.json ├── sso │ └── service │ │ └── 2019-06-10 │ │ └── sso-2019-06-10.json ├── storage-gateway │ └── service │ │ └── 2013-06-30 │ │ └── storage-gateway-2013-06-30.json ├── sts │ └── service │ │ └── 2011-06-15 │ │ └── sts-2011-06-15.json ├── supplychain │ └── service │ │ └── 2024-01-01 │ │ └── supplychain-2024-01-01.json ├── support-app │ └── service │ │ └── 2021-08-20 │ │ └── support-app-2021-08-20.json ├── support │ └── service │ │ └── 2013-04-15 │ │ └── support-2013-04-15.json ├── swf │ └── service │ │ └── 2012-01-25 │ │ └── swf-2012-01-25.json ├── synthetics │ └── service │ │ └── 2017-10-11 │ │ └── synthetics-2017-10-11.json ├── taxsettings │ └── service │ │ └── 2018-05-10 │ │ └── taxsettings-2018-05-10.json ├── textract │ └── service │ │ └── 2018-06-27 │ │ └── textract-2018-06-27.json ├── timestream-influxdb │ └── service │ │ └── 2023-01-27 │ │ └── timestream-influxdb-2023-01-27.json ├── timestream-query │ └── service │ │ └── 2018-11-01 │ │ └── timestream-query-2018-11-01.json ├── timestream-write │ └── service │ │ └── 2018-11-01 │ │ └── timestream-write-2018-11-01.json ├── tnb │ └── service │ │ └── 2008-10-21 │ │ └── tnb-2008-10-21.json ├── transcribe-streaming │ └── service │ │ └── 2017-10-26 │ │ └── transcribe-streaming-2017-10-26.json ├── transcribe │ └── service │ │ └── 2017-10-26 │ │ └── transcribe-2017-10-26.json ├── transfer │ └── service │ │ └── 2018-11-05 │ │ └── transfer-2018-11-05.json ├── translate │ └── service │ │ └── 2017-07-01 │ │ └── translate-2017-07-01.json ├── trustedadvisor │ └── service │ │ └── 2022-09-15 │ │ └── trustedadvisor-2022-09-15.json ├── verifiedpermissions │ └── service │ │ └── 2021-12-01 │ │ └── verifiedpermissions-2021-12-01.json ├── voice-id │ └── service │ │ └── 2021-09-27 │ │ └── voice-id-2021-09-27.json ├── vpc-lattice │ └── service │ │ └── 2022-11-30 │ │ └── vpc-lattice-2022-11-30.json ├── waf-regional │ └── service │ │ └── 2016-11-28 │ │ └── waf-regional-2016-11-28.json ├── waf │ └── service │ │ └── 2015-08-24 │ │ └── waf-2015-08-24.json ├── wafv2 │ └── service │ │ └── 2019-07-29 │ │ └── wafv2-2019-07-29.json ├── wellarchitected │ └── service │ │ └── 2020-03-31 │ │ └── wellarchitected-2020-03-31.json ├── wisdom │ └── service │ │ └── 2020-10-19 │ │ └── wisdom-2020-10-19.json ├── workdocs │ └── service │ │ └── 2016-05-01 │ │ └── workdocs-2016-05-01.json ├── workmail │ └── service │ │ └── 2017-10-01 │ │ └── workmail-2017-10-01.json ├── workmailmessageflow │ └── service │ │ └── 2019-05-01 │ │ └── workmailmessageflow-2019-05-01.json ├── workspaces-instances │ └── service │ │ └── 2022-07-26 │ │ └── workspaces-instances-2022-07-26.json ├── workspaces-thin-client │ └── service │ │ └── 2023-08-22 │ │ └── workspaces-thin-client-2023-08-22.json ├── workspaces-web │ └── service │ │ └── 2020-07-08 │ │ └── workspaces-web-2020-07-08.json ├── workspaces │ └── service │ │ └── 2015-04-08 │ │ └── workspaces-2015-04-08.json └── xray │ └── service │ └── 2016-04-12 │ └── xray-2016-04-12.json └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/closed-issue-message.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/workflows/closed-issue-message.yml -------------------------------------------------------------------------------- /.github/workflows/issue-lifecycle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/workflows/issue-lifecycle.yml -------------------------------------------------------------------------------- /.github/workflows/pr-closer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.github/workflows/pr-closer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/convert_models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.scripts/convert_models -------------------------------------------------------------------------------- /.scripts/list_services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.scripts/list_services -------------------------------------------------------------------------------- /.scripts/overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.scripts/overrides.json -------------------------------------------------------------------------------- /.scripts/queries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.scripts/queries -------------------------------------------------------------------------------- /.scripts/update_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/.scripts/update_versions -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/gradlew.bat -------------------------------------------------------------------------------- /models/accessanalyzer/service/2019-11-01/accessanalyzer-2019-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/accessanalyzer/service/2019-11-01/accessanalyzer-2019-11-01.json -------------------------------------------------------------------------------- /models/account/service/2021-02-01/account-2021-02-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/account/service/2021-02-01/account-2021-02-01.json -------------------------------------------------------------------------------- /models/acm-pca/service/2017-08-22/acm-pca-2017-08-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/acm-pca/service/2017-08-22/acm-pca-2017-08-22.json -------------------------------------------------------------------------------- /models/acm/service/2015-12-08/acm-2015-12-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/acm/service/2015-12-08/acm-2015-12-08.json -------------------------------------------------------------------------------- /models/aiops/service/2018-05-10/aiops-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/aiops/service/2018-05-10/aiops-2018-05-10.json -------------------------------------------------------------------------------- /models/amp/service/2020-08-01/amp-2020-08-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/amp/service/2020-08-01/amp-2020-08-01.json -------------------------------------------------------------------------------- /models/amplify/service/2017-07-25/amplify-2017-07-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/amplify/service/2017-07-25/amplify-2017-07-25.json -------------------------------------------------------------------------------- /models/amplifybackend/service/2020-08-11/amplifybackend-2020-08-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/amplifybackend/service/2020-08-11/amplifybackend-2020-08-11.json -------------------------------------------------------------------------------- /models/amplifyuibuilder/service/2021-08-11/amplifyuibuilder-2021-08-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/amplifyuibuilder/service/2021-08-11/amplifyuibuilder-2021-08-11.json -------------------------------------------------------------------------------- /models/api-gateway/service/2015-07-09/api-gateway-2015-07-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/api-gateway/service/2015-07-09/api-gateway-2015-07-09.json -------------------------------------------------------------------------------- /models/apigatewaymanagementapi/service/2018-11-29/apigatewaymanagementapi-2018-11-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/apigatewaymanagementapi/service/2018-11-29/apigatewaymanagementapi-2018-11-29.json -------------------------------------------------------------------------------- /models/apigatewayv2/service/2018-11-29/apigatewayv2-2018-11-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/apigatewayv2/service/2018-11-29/apigatewayv2-2018-11-29.json -------------------------------------------------------------------------------- /models/app-mesh/service/2019-01-25/app-mesh-2019-01-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/app-mesh/service/2019-01-25/app-mesh-2019-01-25.json -------------------------------------------------------------------------------- /models/appconfig/service/2019-10-09/appconfig-2019-10-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appconfig/service/2019-10-09/appconfig-2019-10-09.json -------------------------------------------------------------------------------- /models/appconfigdata/service/2021-11-11/appconfigdata-2021-11-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appconfigdata/service/2021-11-11/appconfigdata-2021-11-11.json -------------------------------------------------------------------------------- /models/appfabric/service/2023-05-19/appfabric-2023-05-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appfabric/service/2023-05-19/appfabric-2023-05-19.json -------------------------------------------------------------------------------- /models/appflow/service/2020-08-23/appflow-2020-08-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appflow/service/2020-08-23/appflow-2020-08-23.json -------------------------------------------------------------------------------- /models/appintegrations/service/2020-07-29/appintegrations-2020-07-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appintegrations/service/2020-07-29/appintegrations-2020-07-29.json -------------------------------------------------------------------------------- /models/application-auto-scaling/service/2016-02-06/application-auto-scaling-2016-02-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/application-auto-scaling/service/2016-02-06/application-auto-scaling-2016-02-06.json -------------------------------------------------------------------------------- /models/application-discovery-service/service/2015-11-01/application-discovery-service-2015-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/application-discovery-service/service/2015-11-01/application-discovery-service-2015-11-01.json -------------------------------------------------------------------------------- /models/application-insights/service/2018-11-25/application-insights-2018-11-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/application-insights/service/2018-11-25/application-insights-2018-11-25.json -------------------------------------------------------------------------------- /models/application-signals/service/2024-04-15/application-signals-2024-04-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/application-signals/service/2024-04-15/application-signals-2024-04-15.json -------------------------------------------------------------------------------- /models/applicationcostprofiler/service/2020-09-10/applicationcostprofiler-2020-09-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/applicationcostprofiler/service/2020-09-10/applicationcostprofiler-2020-09-10.json -------------------------------------------------------------------------------- /models/apprunner/service/2020-05-15/apprunner-2020-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/apprunner/service/2020-05-15/apprunner-2020-05-15.json -------------------------------------------------------------------------------- /models/appstream/service/2016-12-01/appstream-2016-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appstream/service/2016-12-01/appstream-2016-12-01.json -------------------------------------------------------------------------------- /models/appsync/service/2017-07-25/appsync-2017-07-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/appsync/service/2017-07-25/appsync-2017-07-25.json -------------------------------------------------------------------------------- /models/arc-region-switch/service/2022-07-26/arc-region-switch-2022-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/arc-region-switch/service/2022-07-26/arc-region-switch-2022-07-26.json -------------------------------------------------------------------------------- /models/arc-zonal-shift/service/2022-10-30/arc-zonal-shift-2022-10-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/arc-zonal-shift/service/2022-10-30/arc-zonal-shift-2022-10-30.json -------------------------------------------------------------------------------- /models/artifact/service/2018-05-10/artifact-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/artifact/service/2018-05-10/artifact-2018-05-10.json -------------------------------------------------------------------------------- /models/athena/service/2017-05-18/athena-2017-05-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/athena/service/2017-05-18/athena-2017-05-18.json -------------------------------------------------------------------------------- /models/auditmanager/service/2017-07-25/auditmanager-2017-07-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/auditmanager/service/2017-07-25/auditmanager-2017-07-25.json -------------------------------------------------------------------------------- /models/auto-scaling-plans/service/2018-01-06/auto-scaling-plans-2018-01-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/auto-scaling-plans/service/2018-01-06/auto-scaling-plans-2018-01-06.json -------------------------------------------------------------------------------- /models/auto-scaling/service/2011-01-01/auto-scaling-2011-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/auto-scaling/service/2011-01-01/auto-scaling-2011-01-01.json -------------------------------------------------------------------------------- /models/b2bi/service/2022-06-23/b2bi-2022-06-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/b2bi/service/2022-06-23/b2bi-2022-06-23.json -------------------------------------------------------------------------------- /models/backup-gateway/service/2021-01-01/backup-gateway-2021-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/backup-gateway/service/2021-01-01/backup-gateway-2021-01-01.json -------------------------------------------------------------------------------- /models/backup/service/2018-11-15/backup-2018-11-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/backup/service/2018-11-15/backup-2018-11-15.json -------------------------------------------------------------------------------- /models/backupsearch/service/2018-05-10/backupsearch-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/backupsearch/service/2018-05-10/backupsearch-2018-05-10.json -------------------------------------------------------------------------------- /models/batch/service/2016-08-10/batch-2016-08-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/batch/service/2016-08-10/batch-2016-08-10.json -------------------------------------------------------------------------------- /models/bcm-dashboards/service/2025-08-18/bcm-dashboards-2025-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bcm-dashboards/service/2025-08-18/bcm-dashboards-2025-08-18.json -------------------------------------------------------------------------------- /models/bcm-data-exports/service/2023-11-26/bcm-data-exports-2023-11-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bcm-data-exports/service/2023-11-26/bcm-data-exports-2023-11-26.json -------------------------------------------------------------------------------- /models/bcm-pricing-calculator/service/2024-06-19/bcm-pricing-calculator-2024-06-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bcm-pricing-calculator/service/2024-06-19/bcm-pricing-calculator-2024-06-19.json -------------------------------------------------------------------------------- /models/bcm-recommended-actions/service/2024-11-14/bcm-recommended-actions-2024-11-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bcm-recommended-actions/service/2024-11-14/bcm-recommended-actions-2024-11-14.json -------------------------------------------------------------------------------- /models/bedrock-agent-runtime/service/2023-07-26/bedrock-agent-runtime-2023-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-agent-runtime/service/2023-07-26/bedrock-agent-runtime-2023-07-26.json -------------------------------------------------------------------------------- /models/bedrock-agent/service/2023-06-05/bedrock-agent-2023-06-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-agent/service/2023-06-05/bedrock-agent-2023-06-05.json -------------------------------------------------------------------------------- /models/bedrock-agentcore-control/service/2023-06-05/bedrock-agentcore-control-2023-06-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-agentcore-control/service/2023-06-05/bedrock-agentcore-control-2023-06-05.json -------------------------------------------------------------------------------- /models/bedrock-agentcore/service/2024-02-28/bedrock-agentcore-2024-02-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-agentcore/service/2024-02-28/bedrock-agentcore-2024-02-28.json -------------------------------------------------------------------------------- /models/bedrock-data-automation-runtime/service/2024-06-13/bedrock-data-automation-runtime-2024-06-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-data-automation-runtime/service/2024-06-13/bedrock-data-automation-runtime-2024-06-13.json -------------------------------------------------------------------------------- /models/bedrock-data-automation/service/2023-07-26/bedrock-data-automation-2023-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-data-automation/service/2023-07-26/bedrock-data-automation-2023-07-26.json -------------------------------------------------------------------------------- /models/bedrock-runtime/service/2023-09-30/bedrock-runtime-2023-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock-runtime/service/2023-09-30/bedrock-runtime-2023-09-30.json -------------------------------------------------------------------------------- /models/bedrock/service/2023-04-20/bedrock-2023-04-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/bedrock/service/2023-04-20/bedrock-2023-04-20.json -------------------------------------------------------------------------------- /models/billing/service/2023-09-07/billing-2023-09-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/billing/service/2023-09-07/billing-2023-09-07.json -------------------------------------------------------------------------------- /models/billingconductor/service/2021-07-30/billingconductor-2021-07-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/billingconductor/service/2021-07-30/billingconductor-2021-07-30.json -------------------------------------------------------------------------------- /models/braket/service/2019-09-01/braket-2019-09-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/braket/service/2019-09-01/braket-2019-09-01.json -------------------------------------------------------------------------------- /models/budgets/service/2016-10-20/budgets-2016-10-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/budgets/service/2016-10-20/budgets-2016-10-20.json -------------------------------------------------------------------------------- /models/chatbot/service/2017-10-11/chatbot-2017-10-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chatbot/service/2017-10-11/chatbot-2017-10-11.json -------------------------------------------------------------------------------- /models/chime-sdk-identity/service/2021-04-20/chime-sdk-identity-2021-04-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chime-sdk-identity/service/2021-04-20/chime-sdk-identity-2021-04-20.json -------------------------------------------------------------------------------- /models/chime-sdk-media-pipelines/service/2021-07-15/chime-sdk-media-pipelines-2021-07-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chime-sdk-media-pipelines/service/2021-07-15/chime-sdk-media-pipelines-2021-07-15.json -------------------------------------------------------------------------------- /models/chime-sdk-meetings/service/2021-07-15/chime-sdk-meetings-2021-07-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chime-sdk-meetings/service/2021-07-15/chime-sdk-meetings-2021-07-15.json -------------------------------------------------------------------------------- /models/chime-sdk-messaging/service/2021-05-15/chime-sdk-messaging-2021-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chime-sdk-messaging/service/2021-05-15/chime-sdk-messaging-2021-05-15.json -------------------------------------------------------------------------------- /models/chime-sdk-voice/service/2022-08-03/chime-sdk-voice-2022-08-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chime-sdk-voice/service/2022-08-03/chime-sdk-voice-2022-08-03.json -------------------------------------------------------------------------------- /models/chime/service/2018-05-01/chime-2018-05-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/chime/service/2018-05-01/chime-2018-05-01.json -------------------------------------------------------------------------------- /models/cleanrooms/service/2022-02-17/cleanrooms-2022-02-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cleanrooms/service/2022-02-17/cleanrooms-2022-02-17.json -------------------------------------------------------------------------------- /models/cleanroomsml/service/2023-09-06/cleanroomsml-2023-09-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cleanroomsml/service/2023-09-06/cleanroomsml-2023-09-06.json -------------------------------------------------------------------------------- /models/cloud9/service/2017-09-23/cloud9-2017-09-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloud9/service/2017-09-23/cloud9-2017-09-23.json -------------------------------------------------------------------------------- /models/cloudcontrol/service/2021-09-30/cloudcontrol-2021-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudcontrol/service/2021-09-30/cloudcontrol-2021-09-30.json -------------------------------------------------------------------------------- /models/clouddirectory/service/2017-01-11/clouddirectory-2017-01-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/clouddirectory/service/2017-01-11/clouddirectory-2017-01-11.json -------------------------------------------------------------------------------- /models/cloudformation/service/2010-05-15/cloudformation-2010-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudformation/service/2010-05-15/cloudformation-2010-05-15.json -------------------------------------------------------------------------------- /models/cloudfront-keyvaluestore/service/2022-07-26/cloudfront-keyvaluestore-2022-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudfront-keyvaluestore/service/2022-07-26/cloudfront-keyvaluestore-2022-07-26.json -------------------------------------------------------------------------------- /models/cloudfront/service/2020-05-31/cloudfront-2020-05-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudfront/service/2020-05-31/cloudfront-2020-05-31.json -------------------------------------------------------------------------------- /models/cloudhsm-v2/service/2017-04-28/cloudhsm-v2-2017-04-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudhsm-v2/service/2017-04-28/cloudhsm-v2-2017-04-28.json -------------------------------------------------------------------------------- /models/cloudhsm/service/2014-05-30/cloudhsm-2014-05-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudhsm/service/2014-05-30/cloudhsm-2014-05-30.json -------------------------------------------------------------------------------- /models/cloudsearch-domain/service/2013-01-01/cloudsearch-domain-2013-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudsearch-domain/service/2013-01-01/cloudsearch-domain-2013-01-01.json -------------------------------------------------------------------------------- /models/cloudsearch/service/2013-01-01/cloudsearch-2013-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudsearch/service/2013-01-01/cloudsearch-2013-01-01.json -------------------------------------------------------------------------------- /models/cloudtrail-data/service/2021-08-11/cloudtrail-data-2021-08-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudtrail-data/service/2021-08-11/cloudtrail-data-2021-08-11.json -------------------------------------------------------------------------------- /models/cloudtrail/service/2013-11-01/cloudtrail-2013-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudtrail/service/2013-11-01/cloudtrail-2013-11-01.json -------------------------------------------------------------------------------- /models/cloudwatch-events/service/2015-10-07/cloudwatch-events-2015-10-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudwatch-events/service/2015-10-07/cloudwatch-events-2015-10-07.json -------------------------------------------------------------------------------- /models/cloudwatch-logs/service/2014-03-28/cloudwatch-logs-2014-03-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudwatch-logs/service/2014-03-28/cloudwatch-logs-2014-03-28.json -------------------------------------------------------------------------------- /models/cloudwatch/service/2010-08-01/cloudwatch-2010-08-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cloudwatch/service/2010-08-01/cloudwatch-2010-08-01.json -------------------------------------------------------------------------------- /models/codeartifact/service/2018-09-22/codeartifact-2018-09-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codeartifact/service/2018-09-22/codeartifact-2018-09-22.json -------------------------------------------------------------------------------- /models/codebuild/service/2016-10-06/codebuild-2016-10-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codebuild/service/2016-10-06/codebuild-2016-10-06.json -------------------------------------------------------------------------------- /models/codecatalyst/service/2022-09-28/codecatalyst-2022-09-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codecatalyst/service/2022-09-28/codecatalyst-2022-09-28.json -------------------------------------------------------------------------------- /models/codecommit/service/2015-04-13/codecommit-2015-04-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codecommit/service/2015-04-13/codecommit-2015-04-13.json -------------------------------------------------------------------------------- /models/codeconnections/service/2023-12-01/codeconnections-2023-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codeconnections/service/2023-12-01/codeconnections-2023-12-01.json -------------------------------------------------------------------------------- /models/codedeploy/service/2014-10-06/codedeploy-2014-10-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codedeploy/service/2014-10-06/codedeploy-2014-10-06.json -------------------------------------------------------------------------------- /models/codeguru-reviewer/service/2019-09-19/codeguru-reviewer-2019-09-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codeguru-reviewer/service/2019-09-19/codeguru-reviewer-2019-09-19.json -------------------------------------------------------------------------------- /models/codeguru-security/service/2018-05-10/codeguru-security-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codeguru-security/service/2018-05-10/codeguru-security-2018-05-10.json -------------------------------------------------------------------------------- /models/codeguruprofiler/service/2019-07-18/codeguruprofiler-2019-07-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codeguruprofiler/service/2019-07-18/codeguruprofiler-2019-07-18.json -------------------------------------------------------------------------------- /models/codepipeline/service/2015-07-09/codepipeline-2015-07-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codepipeline/service/2015-07-09/codepipeline-2015-07-09.json -------------------------------------------------------------------------------- /models/codestar-connections/service/2019-12-01/codestar-connections-2019-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codestar-connections/service/2019-12-01/codestar-connections-2019-12-01.json -------------------------------------------------------------------------------- /models/codestar-notifications/service/2019-10-15/codestar-notifications-2019-10-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/codestar-notifications/service/2019-10-15/codestar-notifications-2019-10-15.json -------------------------------------------------------------------------------- /models/cognito-identity-provider/service/2016-04-18/cognito-identity-provider-2016-04-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cognito-identity-provider/service/2016-04-18/cognito-identity-provider-2016-04-18.json -------------------------------------------------------------------------------- /models/cognito-identity/service/2014-06-30/cognito-identity-2014-06-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cognito-identity/service/2014-06-30/cognito-identity-2014-06-30.json -------------------------------------------------------------------------------- /models/cognito-sync/service/2014-06-30/cognito-sync-2014-06-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cognito-sync/service/2014-06-30/cognito-sync-2014-06-30.json -------------------------------------------------------------------------------- /models/comprehend/service/2017-11-27/comprehend-2017-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/comprehend/service/2017-11-27/comprehend-2017-11-27.json -------------------------------------------------------------------------------- /models/comprehendmedical/service/2018-10-30/comprehendmedical-2018-10-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/comprehendmedical/service/2018-10-30/comprehendmedical-2018-10-30.json -------------------------------------------------------------------------------- /models/compute-optimizer-automation/service/2025-09-22/compute-optimizer-automation-2025-09-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/compute-optimizer-automation/service/2025-09-22/compute-optimizer-automation-2025-09-22.json -------------------------------------------------------------------------------- /models/compute-optimizer/service/2019-11-01/compute-optimizer-2019-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/compute-optimizer/service/2019-11-01/compute-optimizer-2019-11-01.json -------------------------------------------------------------------------------- /models/config-service/service/2014-11-12/config-service-2014-11-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/config-service/service/2014-11-12/config-service-2014-11-12.json -------------------------------------------------------------------------------- /models/connect-contact-lens/service/2020-08-21/connect-contact-lens-2020-08-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/connect-contact-lens/service/2020-08-21/connect-contact-lens-2020-08-21.json -------------------------------------------------------------------------------- /models/connect/service/2017-08-08/connect-2017-08-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/connect/service/2017-08-08/connect-2017-08-08.json -------------------------------------------------------------------------------- /models/connectcampaigns/service/2021-01-30/connectcampaigns-2021-01-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/connectcampaigns/service/2021-01-30/connectcampaigns-2021-01-30.json -------------------------------------------------------------------------------- /models/connectcampaignsv2/service/2024-04-23/connectcampaignsv2-2024-04-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/connectcampaignsv2/service/2024-04-23/connectcampaignsv2-2024-04-23.json -------------------------------------------------------------------------------- /models/connectcases/service/2022-10-03/connectcases-2022-10-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/connectcases/service/2022-10-03/connectcases-2022-10-03.json -------------------------------------------------------------------------------- /models/connectparticipant/service/2018-09-07/connectparticipant-2018-09-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/connectparticipant/service/2018-09-07/connectparticipant-2018-09-07.json -------------------------------------------------------------------------------- /models/controlcatalog/service/2018-05-10/controlcatalog-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/controlcatalog/service/2018-05-10/controlcatalog-2018-05-10.json -------------------------------------------------------------------------------- /models/controltower/service/2018-05-10/controltower-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/controltower/service/2018-05-10/controltower-2018-05-10.json -------------------------------------------------------------------------------- /models/cost-and-usage-report-service/service/2017-01-06/cost-and-usage-report-service-2017-01-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cost-and-usage-report-service/service/2017-01-06/cost-and-usage-report-service-2017-01-06.json -------------------------------------------------------------------------------- /models/cost-explorer/service/2017-10-25/cost-explorer-2017-10-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cost-explorer/service/2017-10-25/cost-explorer-2017-10-25.json -------------------------------------------------------------------------------- /models/cost-optimization-hub/service/2022-07-26/cost-optimization-hub-2022-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/cost-optimization-hub/service/2022-07-26/cost-optimization-hub-2022-07-26.json -------------------------------------------------------------------------------- /models/customer-profiles/service/2020-08-15/customer-profiles-2020-08-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/customer-profiles/service/2020-08-15/customer-profiles-2020-08-15.json -------------------------------------------------------------------------------- /models/data-pipeline/service/2012-10-29/data-pipeline-2012-10-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/data-pipeline/service/2012-10-29/data-pipeline-2012-10-29.json -------------------------------------------------------------------------------- /models/database-migration-service/service/2016-01-01/database-migration-service-2016-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/database-migration-service/service/2016-01-01/database-migration-service-2016-01-01.json -------------------------------------------------------------------------------- /models/databrew/service/2017-07-25/databrew-2017-07-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/databrew/service/2017-07-25/databrew-2017-07-25.json -------------------------------------------------------------------------------- /models/dataexchange/service/2017-07-25/dataexchange-2017-07-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/dataexchange/service/2017-07-25/dataexchange-2017-07-25.json -------------------------------------------------------------------------------- /models/datasync/service/2018-11-09/datasync-2018-11-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/datasync/service/2018-11-09/datasync-2018-11-09.json -------------------------------------------------------------------------------- /models/datazone/service/2018-05-10/datazone-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/datazone/service/2018-05-10/datazone-2018-05-10.json -------------------------------------------------------------------------------- /models/dax/service/2017-04-19/dax-2017-04-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/dax/service/2017-04-19/dax-2017-04-19.json -------------------------------------------------------------------------------- /models/deadline/service/2023-10-12/deadline-2023-10-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/deadline/service/2023-10-12/deadline-2023-10-12.json -------------------------------------------------------------------------------- /models/detective/service/2018-10-26/detective-2018-10-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/detective/service/2018-10-26/detective-2018-10-26.json -------------------------------------------------------------------------------- /models/device-farm/service/2015-06-23/device-farm-2015-06-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/device-farm/service/2015-06-23/device-farm-2015-06-23.json -------------------------------------------------------------------------------- /models/devops-guru/service/2020-12-01/devops-guru-2020-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/devops-guru/service/2020-12-01/devops-guru-2020-12-01.json -------------------------------------------------------------------------------- /models/direct-connect/service/2012-10-25/direct-connect-2012-10-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/direct-connect/service/2012-10-25/direct-connect-2012-10-25.json -------------------------------------------------------------------------------- /models/directory-service-data/service/2023-05-31/directory-service-data-2023-05-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/directory-service-data/service/2023-05-31/directory-service-data-2023-05-31.json -------------------------------------------------------------------------------- /models/directory-service/service/2015-04-16/directory-service-2015-04-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/directory-service/service/2015-04-16/directory-service-2015-04-16.json -------------------------------------------------------------------------------- /models/dlm/service/2018-01-12/dlm-2018-01-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/dlm/service/2018-01-12/dlm-2018-01-12.json -------------------------------------------------------------------------------- /models/docdb-elastic/service/2022-11-28/docdb-elastic-2022-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/docdb-elastic/service/2022-11-28/docdb-elastic-2022-11-28.json -------------------------------------------------------------------------------- /models/docdb/service/2014-10-31/docdb-2014-10-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/docdb/service/2014-10-31/docdb-2014-10-31.json -------------------------------------------------------------------------------- /models/drs/service/2020-02-26/drs-2020-02-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/drs/service/2020-02-26/drs-2020-02-26.json -------------------------------------------------------------------------------- /models/dsql/service/2018-05-10/dsql-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/dsql/service/2018-05-10/dsql-2018-05-10.json -------------------------------------------------------------------------------- /models/dynamodb-streams/service/2012-08-10/dynamodb-streams-2012-08-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/dynamodb-streams/service/2012-08-10/dynamodb-streams-2012-08-10.json -------------------------------------------------------------------------------- /models/dynamodb/service/2012-08-10/dynamodb-2012-08-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/dynamodb/service/2012-08-10/dynamodb-2012-08-10.json -------------------------------------------------------------------------------- /models/ebs/service/2019-11-02/ebs-2019-11-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ebs/service/2019-11-02/ebs-2019-11-02.json -------------------------------------------------------------------------------- /models/ec2-instance-connect/service/2018-04-02/ec2-instance-connect-2018-04-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ec2-instance-connect/service/2018-04-02/ec2-instance-connect-2018-04-02.json -------------------------------------------------------------------------------- /models/ec2/service/2016-11-15/ec2-2016-11-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ec2/service/2016-11-15/ec2-2016-11-15.json -------------------------------------------------------------------------------- /models/ecr-public/service/2020-10-30/ecr-public-2020-10-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ecr-public/service/2020-10-30/ecr-public-2020-10-30.json -------------------------------------------------------------------------------- /models/ecr/service/2015-09-21/ecr-2015-09-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ecr/service/2015-09-21/ecr-2015-09-21.json -------------------------------------------------------------------------------- /models/ecs/service/2014-11-13/ecs-2014-11-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ecs/service/2014-11-13/ecs-2014-11-13.json -------------------------------------------------------------------------------- /models/efs/service/2015-02-01/efs-2015-02-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/efs/service/2015-02-01/efs-2015-02-01.json -------------------------------------------------------------------------------- /models/eks-auth/service/2023-11-26/eks-auth-2023-11-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/eks-auth/service/2023-11-26/eks-auth-2023-11-26.json -------------------------------------------------------------------------------- /models/eks/service/2017-11-01/eks-2017-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/eks/service/2017-11-01/eks-2017-11-01.json -------------------------------------------------------------------------------- /models/elastic-beanstalk/service/2010-12-01/elastic-beanstalk-2010-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/elastic-beanstalk/service/2010-12-01/elastic-beanstalk-2010-12-01.json -------------------------------------------------------------------------------- /models/elastic-load-balancing-v2/service/2015-12-01/elastic-load-balancing-v2-2015-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/elastic-load-balancing-v2/service/2015-12-01/elastic-load-balancing-v2-2015-12-01.json -------------------------------------------------------------------------------- /models/elastic-load-balancing/service/2012-06-01/elastic-load-balancing-2012-06-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/elastic-load-balancing/service/2012-06-01/elastic-load-balancing-2012-06-01.json -------------------------------------------------------------------------------- /models/elastic-transcoder/service/2012-09-25/elastic-transcoder-2012-09-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/elastic-transcoder/service/2012-09-25/elastic-transcoder-2012-09-25.json -------------------------------------------------------------------------------- /models/elasticache/service/2015-02-02/elasticache-2015-02-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/elasticache/service/2015-02-02/elasticache-2015-02-02.json -------------------------------------------------------------------------------- /models/elasticsearch-service/service/2015-01-01/elasticsearch-service-2015-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/elasticsearch-service/service/2015-01-01/elasticsearch-service-2015-01-01.json -------------------------------------------------------------------------------- /models/emr-containers/service/2020-10-01/emr-containers-2020-10-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/emr-containers/service/2020-10-01/emr-containers-2020-10-01.json -------------------------------------------------------------------------------- /models/emr-serverless/service/2021-07-13/emr-serverless-2021-07-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/emr-serverless/service/2021-07-13/emr-serverless-2021-07-13.json -------------------------------------------------------------------------------- /models/emr/service/2009-03-31/emr-2009-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/emr/service/2009-03-31/emr-2009-03-31.json -------------------------------------------------------------------------------- /models/entityresolution/service/2018-05-10/entityresolution-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/entityresolution/service/2018-05-10/entityresolution-2018-05-10.json -------------------------------------------------------------------------------- /models/eventbridge/service/2015-10-07/eventbridge-2015-10-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/eventbridge/service/2015-10-07/eventbridge-2015-10-07.json -------------------------------------------------------------------------------- /models/evidently/service/2021-02-01/evidently-2021-02-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/evidently/service/2021-02-01/evidently-2021-02-01.json -------------------------------------------------------------------------------- /models/evs/service/2023-07-27/evs-2023-07-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/evs/service/2023-07-27/evs-2023-07-27.json -------------------------------------------------------------------------------- /models/finspace-data/service/2020-07-13/finspace-data-2020-07-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/finspace-data/service/2020-07-13/finspace-data-2020-07-13.json -------------------------------------------------------------------------------- /models/finspace/service/2021-03-12/finspace-2021-03-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/finspace/service/2021-03-12/finspace-2021-03-12.json -------------------------------------------------------------------------------- /models/firehose/service/2015-08-04/firehose-2015-08-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/firehose/service/2015-08-04/firehose-2015-08-04.json -------------------------------------------------------------------------------- /models/fis/service/2020-12-01/fis-2020-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/fis/service/2020-12-01/fis-2020-12-01.json -------------------------------------------------------------------------------- /models/fms/service/2018-01-01/fms-2018-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/fms/service/2018-01-01/fms-2018-01-01.json -------------------------------------------------------------------------------- /models/forecast/service/2018-06-26/forecast-2018-06-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/forecast/service/2018-06-26/forecast-2018-06-26.json -------------------------------------------------------------------------------- /models/forecastquery/service/2018-06-26/forecastquery-2018-06-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/forecastquery/service/2018-06-26/forecastquery-2018-06-26.json -------------------------------------------------------------------------------- /models/frauddetector/service/2019-11-15/frauddetector-2019-11-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/frauddetector/service/2019-11-15/frauddetector-2019-11-15.json -------------------------------------------------------------------------------- /models/freetier/service/2023-09-07/freetier-2023-09-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/freetier/service/2023-09-07/freetier-2023-09-07.json -------------------------------------------------------------------------------- /models/fsx/service/2018-03-01/fsx-2018-03-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/fsx/service/2018-03-01/fsx-2018-03-01.json -------------------------------------------------------------------------------- /models/gamelift/service/2015-10-01/gamelift-2015-10-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/gamelift/service/2015-10-01/gamelift-2015-10-01.json -------------------------------------------------------------------------------- /models/gameliftstreams/service/2018-05-10/gameliftstreams-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/gameliftstreams/service/2018-05-10/gameliftstreams-2018-05-10.json -------------------------------------------------------------------------------- /models/geo-maps/service/2020-11-19/geo-maps-2020-11-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/geo-maps/service/2020-11-19/geo-maps-2020-11-19.json -------------------------------------------------------------------------------- /models/geo-places/service/2020-11-19/geo-places-2020-11-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/geo-places/service/2020-11-19/geo-places-2020-11-19.json -------------------------------------------------------------------------------- /models/geo-routes/service/2020-11-19/geo-routes-2020-11-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/geo-routes/service/2020-11-19/geo-routes-2020-11-19.json -------------------------------------------------------------------------------- /models/glacier/service/2012-06-01/glacier-2012-06-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/glacier/service/2012-06-01/glacier-2012-06-01.json -------------------------------------------------------------------------------- /models/global-accelerator/service/2018-08-08/global-accelerator-2018-08-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/global-accelerator/service/2018-08-08/global-accelerator-2018-08-08.json -------------------------------------------------------------------------------- /models/glue/service/2017-03-31/glue-2017-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/glue/service/2017-03-31/glue-2017-03-31.json -------------------------------------------------------------------------------- /models/grafana/service/2020-08-18/grafana-2020-08-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/grafana/service/2020-08-18/grafana-2020-08-18.json -------------------------------------------------------------------------------- /models/greengrass/service/2017-06-07/greengrass-2017-06-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/greengrass/service/2017-06-07/greengrass-2017-06-07.json -------------------------------------------------------------------------------- /models/greengrassv2/service/2020-11-30/greengrassv2-2020-11-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/greengrassv2/service/2020-11-30/greengrassv2-2020-11-30.json -------------------------------------------------------------------------------- /models/groundstation/service/2019-05-23/groundstation-2019-05-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/groundstation/service/2019-05-23/groundstation-2019-05-23.json -------------------------------------------------------------------------------- /models/guardduty/service/2017-11-28/guardduty-2017-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/guardduty/service/2017-11-28/guardduty-2017-11-28.json -------------------------------------------------------------------------------- /models/health/service/2016-08-04/health-2016-08-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/health/service/2016-08-04/health-2016-08-04.json -------------------------------------------------------------------------------- /models/healthlake/service/2017-07-01/healthlake-2017-07-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/healthlake/service/2017-07-01/healthlake-2017-07-01.json -------------------------------------------------------------------------------- /models/iam/service/2010-05-08/iam-2010-05-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iam/service/2010-05-08/iam-2010-05-08.json -------------------------------------------------------------------------------- /models/identitystore/service/2020-06-15/identitystore-2020-06-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/identitystore/service/2020-06-15/identitystore-2020-06-15.json -------------------------------------------------------------------------------- /models/imagebuilder/service/2019-12-02/imagebuilder-2019-12-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/imagebuilder/service/2019-12-02/imagebuilder-2019-12-02.json -------------------------------------------------------------------------------- /models/inspector-scan/service/2023-08-08/inspector-scan-2023-08-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/inspector-scan/service/2023-08-08/inspector-scan-2023-08-08.json -------------------------------------------------------------------------------- /models/inspector/service/2016-02-16/inspector-2016-02-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/inspector/service/2016-02-16/inspector-2016-02-16.json -------------------------------------------------------------------------------- /models/inspector2/service/2020-06-08/inspector2-2020-06-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/inspector2/service/2020-06-08/inspector2-2020-06-08.json -------------------------------------------------------------------------------- /models/internetmonitor/service/2021-06-03/internetmonitor-2021-06-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/internetmonitor/service/2021-06-03/internetmonitor-2021-06-03.json -------------------------------------------------------------------------------- /models/invoicing/service/2024-12-01/invoicing-2024-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/invoicing/service/2024-12-01/invoicing-2024-12-01.json -------------------------------------------------------------------------------- /models/iot-data-plane/service/2015-05-28/iot-data-plane-2015-05-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot-data-plane/service/2015-05-28/iot-data-plane-2015-05-28.json -------------------------------------------------------------------------------- /models/iot-events-data/service/2018-10-23/iot-events-data-2018-10-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot-events-data/service/2018-10-23/iot-events-data-2018-10-23.json -------------------------------------------------------------------------------- /models/iot-events/service/2018-07-27/iot-events-2018-07-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot-events/service/2018-07-27/iot-events-2018-07-27.json -------------------------------------------------------------------------------- /models/iot-jobs-data-plane/service/2017-09-29/iot-jobs-data-plane-2017-09-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot-jobs-data-plane/service/2017-09-29/iot-jobs-data-plane-2017-09-29.json -------------------------------------------------------------------------------- /models/iot-managed-integrations/service/2025-03-03/iot-managed-integrations-2025-03-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot-managed-integrations/service/2025-03-03/iot-managed-integrations-2025-03-03.json -------------------------------------------------------------------------------- /models/iot-wireless/service/2020-11-22/iot-wireless-2020-11-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot-wireless/service/2020-11-22/iot-wireless-2020-11-22.json -------------------------------------------------------------------------------- /models/iot/service/2015-05-28/iot-2015-05-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iot/service/2015-05-28/iot-2015-05-28.json -------------------------------------------------------------------------------- /models/iotanalytics/service/2017-11-27/iotanalytics-2017-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iotanalytics/service/2017-11-27/iotanalytics-2017-11-27.json -------------------------------------------------------------------------------- /models/iotdeviceadvisor/service/2020-09-18/iotdeviceadvisor-2020-09-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iotdeviceadvisor/service/2020-09-18/iotdeviceadvisor-2020-09-18.json -------------------------------------------------------------------------------- /models/iotfleetwise/service/2021-06-17/iotfleetwise-2021-06-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iotfleetwise/service/2021-06-17/iotfleetwise-2021-06-17.json -------------------------------------------------------------------------------- /models/iotsecuretunneling/service/2018-10-05/iotsecuretunneling-2018-10-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iotsecuretunneling/service/2018-10-05/iotsecuretunneling-2018-10-05.json -------------------------------------------------------------------------------- /models/iotsitewise/service/2019-12-02/iotsitewise-2019-12-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iotsitewise/service/2019-12-02/iotsitewise-2019-12-02.json -------------------------------------------------------------------------------- /models/iotthingsgraph/service/2018-09-06/iotthingsgraph-2018-09-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iotthingsgraph/service/2018-09-06/iotthingsgraph-2018-09-06.json -------------------------------------------------------------------------------- /models/iottwinmaker/service/2021-11-29/iottwinmaker-2021-11-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/iottwinmaker/service/2021-11-29/iottwinmaker-2021-11-29.json -------------------------------------------------------------------------------- /models/ivs-realtime/service/2020-07-14/ivs-realtime-2020-07-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ivs-realtime/service/2020-07-14/ivs-realtime-2020-07-14.json -------------------------------------------------------------------------------- /models/ivs/service/2020-07-14/ivs-2020-07-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ivs/service/2020-07-14/ivs-2020-07-14.json -------------------------------------------------------------------------------- /models/ivschat/service/2020-07-14/ivschat-2020-07-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ivschat/service/2020-07-14/ivschat-2020-07-14.json -------------------------------------------------------------------------------- /models/kafka/service/2018-11-14/kafka-2018-11-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kafka/service/2018-11-14/kafka-2018-11-14.json -------------------------------------------------------------------------------- /models/kafkaconnect/service/2021-09-14/kafkaconnect-2021-09-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kafkaconnect/service/2021-09-14/kafkaconnect-2021-09-14.json -------------------------------------------------------------------------------- /models/kendra-ranking/service/2022-10-19/kendra-ranking-2022-10-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kendra-ranking/service/2022-10-19/kendra-ranking-2022-10-19.json -------------------------------------------------------------------------------- /models/kendra/service/2019-02-03/kendra-2019-02-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kendra/service/2019-02-03/kendra-2019-02-03.json -------------------------------------------------------------------------------- /models/keyspaces/service/2022-02-10/keyspaces-2022-02-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/keyspaces/service/2022-02-10/keyspaces-2022-02-10.json -------------------------------------------------------------------------------- /models/keyspacesstreams/service/2024-09-09/keyspacesstreams-2024-09-09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/keyspacesstreams/service/2024-09-09/keyspacesstreams-2024-09-09.json -------------------------------------------------------------------------------- /models/kinesis-analytics-v2/service/2018-05-23/kinesis-analytics-v2-2018-05-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-analytics-v2/service/2018-05-23/kinesis-analytics-v2-2018-05-23.json -------------------------------------------------------------------------------- /models/kinesis-analytics/service/2015-08-14/kinesis-analytics-2015-08-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-analytics/service/2015-08-14/kinesis-analytics-2015-08-14.json -------------------------------------------------------------------------------- /models/kinesis-video-archived-media/service/2017-09-30/kinesis-video-archived-media-2017-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-video-archived-media/service/2017-09-30/kinesis-video-archived-media-2017-09-30.json -------------------------------------------------------------------------------- /models/kinesis-video-media/service/2017-09-30/kinesis-video-media-2017-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-video-media/service/2017-09-30/kinesis-video-media-2017-09-30.json -------------------------------------------------------------------------------- /models/kinesis-video-signaling/service/2019-12-04/kinesis-video-signaling-2019-12-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-video-signaling/service/2019-12-04/kinesis-video-signaling-2019-12-04.json -------------------------------------------------------------------------------- /models/kinesis-video-webrtc-storage/service/2018-05-10/kinesis-video-webrtc-storage-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-video-webrtc-storage/service/2018-05-10/kinesis-video-webrtc-storage-2018-05-10.json -------------------------------------------------------------------------------- /models/kinesis-video/service/2017-09-30/kinesis-video-2017-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis-video/service/2017-09-30/kinesis-video-2017-09-30.json -------------------------------------------------------------------------------- /models/kinesis/service/2013-12-02/kinesis-2013-12-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kinesis/service/2013-12-02/kinesis-2013-12-02.json -------------------------------------------------------------------------------- /models/kms/service/2014-11-01/kms-2014-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/kms/service/2014-11-01/kms-2014-11-01.json -------------------------------------------------------------------------------- /models/lakeformation/service/2017-03-31/lakeformation-2017-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lakeformation/service/2017-03-31/lakeformation-2017-03-31.json -------------------------------------------------------------------------------- /models/lambda/service/2015-03-31/lambda-2015-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lambda/service/2015-03-31/lambda-2015-03-31.json -------------------------------------------------------------------------------- /models/launch-wizard/service/2018-05-10/launch-wizard-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/launch-wizard/service/2018-05-10/launch-wizard-2018-05-10.json -------------------------------------------------------------------------------- /models/lex-model-building-service/service/2017-04-19/lex-model-building-service-2017-04-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lex-model-building-service/service/2017-04-19/lex-model-building-service-2017-04-19.json -------------------------------------------------------------------------------- /models/lex-models-v2/service/2020-08-07/lex-models-v2-2020-08-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lex-models-v2/service/2020-08-07/lex-models-v2-2020-08-07.json -------------------------------------------------------------------------------- /models/lex-runtime-service/service/2016-11-28/lex-runtime-service-2016-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lex-runtime-service/service/2016-11-28/lex-runtime-service-2016-11-28.json -------------------------------------------------------------------------------- /models/lex-runtime-v2/service/2020-08-07/lex-runtime-v2-2020-08-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lex-runtime-v2/service/2020-08-07/lex-runtime-v2-2020-08-07.json -------------------------------------------------------------------------------- /models/license-manager-linux-subscriptions/service/2018-05-10/license-manager-linux-subscriptions-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/license-manager-linux-subscriptions/service/2018-05-10/license-manager-linux-subscriptions-2018-05-10.json -------------------------------------------------------------------------------- /models/license-manager-user-subscriptions/service/2018-05-10/license-manager-user-subscriptions-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/license-manager-user-subscriptions/service/2018-05-10/license-manager-user-subscriptions-2018-05-10.json -------------------------------------------------------------------------------- /models/license-manager/service/2018-08-01/license-manager-2018-08-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/license-manager/service/2018-08-01/license-manager-2018-08-01.json -------------------------------------------------------------------------------- /models/lightsail/service/2016-11-28/lightsail-2016-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lightsail/service/2016-11-28/lightsail-2016-11-28.json -------------------------------------------------------------------------------- /models/location/service/2020-11-19/location-2020-11-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/location/service/2020-11-19/location-2020-11-19.json -------------------------------------------------------------------------------- /models/lookoutequipment/service/2020-12-15/lookoutequipment-2020-12-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/lookoutequipment/service/2020-12-15/lookoutequipment-2020-12-15.json -------------------------------------------------------------------------------- /models/m2/service/2021-04-28/m2-2021-04-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/m2/service/2021-04-28/m2-2021-04-28.json -------------------------------------------------------------------------------- /models/machine-learning/service/2014-12-12/machine-learning-2014-12-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/machine-learning/service/2014-12-12/machine-learning-2014-12-12.json -------------------------------------------------------------------------------- /models/macie2/service/2020-01-01/macie2-2020-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/macie2/service/2020-01-01/macie2-2020-01-01.json -------------------------------------------------------------------------------- /models/mailmanager/service/2023-10-17/mailmanager-2023-10-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mailmanager/service/2023-10-17/mailmanager-2023-10-17.json -------------------------------------------------------------------------------- /models/managedblockchain-query/service/2023-05-04/managedblockchain-query-2023-05-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/managedblockchain-query/service/2023-05-04/managedblockchain-query-2023-05-04.json -------------------------------------------------------------------------------- /models/managedblockchain/service/2018-09-24/managedblockchain-2018-09-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/managedblockchain/service/2018-09-24/managedblockchain-2018-09-24.json -------------------------------------------------------------------------------- /models/marketplace-agreement/service/2020-03-01/marketplace-agreement-2020-03-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-agreement/service/2020-03-01/marketplace-agreement-2020-03-01.json -------------------------------------------------------------------------------- /models/marketplace-catalog/service/2018-09-17/marketplace-catalog-2018-09-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-catalog/service/2018-09-17/marketplace-catalog-2018-09-17.json -------------------------------------------------------------------------------- /models/marketplace-commerce-analytics/service/2015-07-01/marketplace-commerce-analytics-2015-07-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-commerce-analytics/service/2015-07-01/marketplace-commerce-analytics-2015-07-01.json -------------------------------------------------------------------------------- /models/marketplace-deployment/service/2023-01-25/marketplace-deployment-2023-01-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-deployment/service/2023-01-25/marketplace-deployment-2023-01-25.json -------------------------------------------------------------------------------- /models/marketplace-entitlement-service/service/2017-01-11/marketplace-entitlement-service-2017-01-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-entitlement-service/service/2017-01-11/marketplace-entitlement-service-2017-01-11.json -------------------------------------------------------------------------------- /models/marketplace-metering/service/2016-01-14/marketplace-metering-2016-01-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-metering/service/2016-01-14/marketplace-metering-2016-01-14.json -------------------------------------------------------------------------------- /models/marketplace-reporting/service/2018-05-10/marketplace-reporting-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/marketplace-reporting/service/2018-05-10/marketplace-reporting-2018-05-10.json -------------------------------------------------------------------------------- /models/mediaconnect/service/2018-11-14/mediaconnect-2018-11-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediaconnect/service/2018-11-14/mediaconnect-2018-11-14.json -------------------------------------------------------------------------------- /models/mediaconvert/service/2017-08-29/mediaconvert-2017-08-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediaconvert/service/2017-08-29/mediaconvert-2017-08-29.json -------------------------------------------------------------------------------- /models/medialive/service/2017-10-14/medialive-2017-10-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/medialive/service/2017-10-14/medialive-2017-10-14.json -------------------------------------------------------------------------------- /models/mediapackage-vod/service/2018-11-07/mediapackage-vod-2018-11-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediapackage-vod/service/2018-11-07/mediapackage-vod-2018-11-07.json -------------------------------------------------------------------------------- /models/mediapackage/service/2017-10-12/mediapackage-2017-10-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediapackage/service/2017-10-12/mediapackage-2017-10-12.json -------------------------------------------------------------------------------- /models/mediapackagev2/service/2022-12-25/mediapackagev2-2022-12-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediapackagev2/service/2022-12-25/mediapackagev2-2022-12-25.json -------------------------------------------------------------------------------- /models/mediastore-data/service/2017-09-01/mediastore-data-2017-09-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediastore-data/service/2017-09-01/mediastore-data-2017-09-01.json -------------------------------------------------------------------------------- /models/mediastore/service/2017-09-01/mediastore-2017-09-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediastore/service/2017-09-01/mediastore-2017-09-01.json -------------------------------------------------------------------------------- /models/mediatailor/service/2018-04-23/mediatailor-2018-04-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mediatailor/service/2018-04-23/mediatailor-2018-04-23.json -------------------------------------------------------------------------------- /models/medical-imaging/service/2023-07-19/medical-imaging-2023-07-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/medical-imaging/service/2023-07-19/medical-imaging-2023-07-19.json -------------------------------------------------------------------------------- /models/memorydb/service/2021-01-01/memorydb-2021-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/memorydb/service/2021-01-01/memorydb-2021-01-01.json -------------------------------------------------------------------------------- /models/mgn/service/2020-02-26/mgn-2020-02-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mgn/service/2020-02-26/mgn-2020-02-26.json -------------------------------------------------------------------------------- /models/migration-hub-refactor-spaces/service/2021-10-26/migration-hub-refactor-spaces-2021-10-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/migration-hub-refactor-spaces/service/2021-10-26/migration-hub-refactor-spaces-2021-10-26.json -------------------------------------------------------------------------------- /models/migration-hub/service/2017-05-31/migration-hub-2017-05-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/migration-hub/service/2017-05-31/migration-hub-2017-05-31.json -------------------------------------------------------------------------------- /models/migrationhub-config/service/2019-06-30/migrationhub-config-2019-06-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/migrationhub-config/service/2019-06-30/migrationhub-config-2019-06-30.json -------------------------------------------------------------------------------- /models/migrationhuborchestrator/service/2021-08-28/migrationhuborchestrator-2021-08-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/migrationhuborchestrator/service/2021-08-28/migrationhuborchestrator-2021-08-28.json -------------------------------------------------------------------------------- /models/migrationhubstrategy/service/2020-02-19/migrationhubstrategy-2020-02-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/migrationhubstrategy/service/2020-02-19/migrationhubstrategy-2020-02-19.json -------------------------------------------------------------------------------- /models/mpa/service/2022-07-26/mpa-2022-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mpa/service/2022-07-26/mpa-2022-07-26.json -------------------------------------------------------------------------------- /models/mq/service/2017-11-27/mq-2017-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mq/service/2017-11-27/mq-2017-11-27.json -------------------------------------------------------------------------------- /models/mturk/service/2017-01-17/mturk-2017-01-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mturk/service/2017-01-17/mturk-2017-01-17.json -------------------------------------------------------------------------------- /models/mwaa-serverless/service/2024-07-26/mwaa-serverless-2024-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mwaa-serverless/service/2024-07-26/mwaa-serverless-2024-07-26.json -------------------------------------------------------------------------------- /models/mwaa/service/2020-07-01/mwaa-2020-07-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/mwaa/service/2020-07-01/mwaa-2020-07-01.json -------------------------------------------------------------------------------- /models/neptune-graph/service/2023-11-29/neptune-graph-2023-11-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/neptune-graph/service/2023-11-29/neptune-graph-2023-11-29.json -------------------------------------------------------------------------------- /models/neptune/service/2014-10-31/neptune-2014-10-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/neptune/service/2014-10-31/neptune-2014-10-31.json -------------------------------------------------------------------------------- /models/neptunedata/service/2023-08-01/neptunedata-2023-08-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/neptunedata/service/2023-08-01/neptunedata-2023-08-01.json -------------------------------------------------------------------------------- /models/network-firewall/service/2020-11-12/network-firewall-2020-11-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/network-firewall/service/2020-11-12/network-firewall-2020-11-12.json -------------------------------------------------------------------------------- /models/networkflowmonitor/service/2023-04-19/networkflowmonitor-2023-04-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/networkflowmonitor/service/2023-04-19/networkflowmonitor-2023-04-19.json -------------------------------------------------------------------------------- /models/networkmanager/service/2019-07-05/networkmanager-2019-07-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/networkmanager/service/2019-07-05/networkmanager-2019-07-05.json -------------------------------------------------------------------------------- /models/networkmonitor/service/2023-08-01/networkmonitor-2023-08-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/networkmonitor/service/2023-08-01/networkmonitor-2023-08-01.json -------------------------------------------------------------------------------- /models/notifications/service/2018-05-10/notifications-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/notifications/service/2018-05-10/notifications-2018-05-10.json -------------------------------------------------------------------------------- /models/notificationscontacts/service/2018-05-10/notificationscontacts-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/notificationscontacts/service/2018-05-10/notificationscontacts-2018-05-10.json -------------------------------------------------------------------------------- /models/nova-act/service/2025-08-22/nova-act-2025-08-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/nova-act/service/2025-08-22/nova-act-2025-08-22.json -------------------------------------------------------------------------------- /models/oam/service/2022-06-10/oam-2022-06-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/oam/service/2022-06-10/oam-2022-06-10.json -------------------------------------------------------------------------------- /models/observabilityadmin/service/2018-05-10/observabilityadmin-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/observabilityadmin/service/2018-05-10/observabilityadmin-2018-05-10.json -------------------------------------------------------------------------------- /models/odb/service/2024-08-20/odb-2024-08-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/odb/service/2024-08-20/odb-2024-08-20.json -------------------------------------------------------------------------------- /models/omics/service/2022-11-28/omics-2022-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/omics/service/2022-11-28/omics-2022-11-28.json -------------------------------------------------------------------------------- /models/opensearch/service/2021-01-01/opensearch-2021-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/opensearch/service/2021-01-01/opensearch-2021-01-01.json -------------------------------------------------------------------------------- /models/opensearchserverless/service/2021-11-01/opensearchserverless-2021-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/opensearchserverless/service/2021-11-01/opensearchserverless-2021-11-01.json -------------------------------------------------------------------------------- /models/organizations/service/2016-11-28/organizations-2016-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/organizations/service/2016-11-28/organizations-2016-11-28.json -------------------------------------------------------------------------------- /models/osis/service/2022-01-01/osis-2022-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/osis/service/2022-01-01/osis-2022-01-01.json -------------------------------------------------------------------------------- /models/outposts/service/2019-12-03/outposts-2019-12-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/outposts/service/2019-12-03/outposts-2019-12-03.json -------------------------------------------------------------------------------- /models/panorama/service/2019-07-24/panorama-2019-07-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/panorama/service/2019-07-24/panorama-2019-07-24.json -------------------------------------------------------------------------------- /models/partnercentral-account/service/2025-04-04/partnercentral-account-2025-04-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/partnercentral-account/service/2025-04-04/partnercentral-account-2025-04-04.json -------------------------------------------------------------------------------- /models/partnercentral-benefits/service/2018-05-10/partnercentral-benefits-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/partnercentral-benefits/service/2018-05-10/partnercentral-benefits-2018-05-10.json -------------------------------------------------------------------------------- /models/partnercentral-channel/service/2024-03-18/partnercentral-channel-2024-03-18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/partnercentral-channel/service/2024-03-18/partnercentral-channel-2024-03-18.json -------------------------------------------------------------------------------- /models/partnercentral-selling/service/2022-07-26/partnercentral-selling-2022-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/partnercentral-selling/service/2022-07-26/partnercentral-selling-2022-07-26.json -------------------------------------------------------------------------------- /models/payment-cryptography-data/service/2022-02-03/payment-cryptography-data-2022-02-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/payment-cryptography-data/service/2022-02-03/payment-cryptography-data-2022-02-03.json -------------------------------------------------------------------------------- /models/payment-cryptography/service/2021-09-14/payment-cryptography-2021-09-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/payment-cryptography/service/2021-09-14/payment-cryptography-2021-09-14.json -------------------------------------------------------------------------------- /models/pca-connector-ad/service/2018-05-10/pca-connector-ad-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pca-connector-ad/service/2018-05-10/pca-connector-ad-2018-05-10.json -------------------------------------------------------------------------------- /models/pca-connector-scep/service/2018-05-10/pca-connector-scep-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pca-connector-scep/service/2018-05-10/pca-connector-scep-2018-05-10.json -------------------------------------------------------------------------------- /models/pcs/service/2023-02-10/pcs-2023-02-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pcs/service/2023-02-10/pcs-2023-02-10.json -------------------------------------------------------------------------------- /models/personalize-events/service/2018-03-22/personalize-events-2018-03-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/personalize-events/service/2018-03-22/personalize-events-2018-03-22.json -------------------------------------------------------------------------------- /models/personalize-runtime/service/2018-05-22/personalize-runtime-2018-05-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/personalize-runtime/service/2018-05-22/personalize-runtime-2018-05-22.json -------------------------------------------------------------------------------- /models/personalize/service/2018-05-22/personalize-2018-05-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/personalize/service/2018-05-22/personalize-2018-05-22.json -------------------------------------------------------------------------------- /models/pi/service/2018-02-27/pi-2018-02-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pi/service/2018-02-27/pi-2018-02-27.json -------------------------------------------------------------------------------- /models/pinpoint-email/service/2018-07-26/pinpoint-email-2018-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pinpoint-email/service/2018-07-26/pinpoint-email-2018-07-26.json -------------------------------------------------------------------------------- /models/pinpoint-sms-voice-v2/service/2022-03-31/pinpoint-sms-voice-v2-2022-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pinpoint-sms-voice-v2/service/2022-03-31/pinpoint-sms-voice-v2-2022-03-31.json -------------------------------------------------------------------------------- /models/pinpoint-sms-voice/service/2018-09-05/pinpoint-sms-voice-2018-09-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pinpoint-sms-voice/service/2018-09-05/pinpoint-sms-voice-2018-09-05.json -------------------------------------------------------------------------------- /models/pinpoint/service/2016-12-01/pinpoint-2016-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pinpoint/service/2016-12-01/pinpoint-2016-12-01.json -------------------------------------------------------------------------------- /models/pipes/service/2015-10-07/pipes-2015-10-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pipes/service/2015-10-07/pipes-2015-10-07.json -------------------------------------------------------------------------------- /models/polly/service/2016-06-10/polly-2016-06-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/polly/service/2016-06-10/polly-2016-06-10.json -------------------------------------------------------------------------------- /models/pricing/service/2017-10-15/pricing-2017-10-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/pricing/service/2017-10-15/pricing-2017-10-15.json -------------------------------------------------------------------------------- /models/proton/service/2020-07-20/proton-2020-07-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/proton/service/2020-07-20/proton-2020-07-20.json -------------------------------------------------------------------------------- /models/qapps/service/2023-11-27/qapps-2023-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/qapps/service/2023-11-27/qapps-2023-11-27.json -------------------------------------------------------------------------------- /models/qbusiness/service/2023-11-27/qbusiness-2023-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/qbusiness/service/2023-11-27/qbusiness-2023-11-27.json -------------------------------------------------------------------------------- /models/qconnect/service/2020-10-19/qconnect-2020-10-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/qconnect/service/2020-10-19/qconnect-2020-10-19.json -------------------------------------------------------------------------------- /models/quicksight/service/2018-04-01/quicksight-2018-04-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/quicksight/service/2018-04-01/quicksight-2018-04-01.json -------------------------------------------------------------------------------- /models/ram/service/2018-01-04/ram-2018-01-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ram/service/2018-01-04/ram-2018-01-04.json -------------------------------------------------------------------------------- /models/rbin/service/2021-06-15/rbin-2021-06-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rbin/service/2021-06-15/rbin-2021-06-15.json -------------------------------------------------------------------------------- /models/rds-data/service/2018-08-01/rds-data-2018-08-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rds-data/service/2018-08-01/rds-data-2018-08-01.json -------------------------------------------------------------------------------- /models/rds/service/2014-10-31/rds-2014-10-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rds/service/2014-10-31/rds-2014-10-31.json -------------------------------------------------------------------------------- /models/redshift-data/service/2019-12-20/redshift-data-2019-12-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/redshift-data/service/2019-12-20/redshift-data-2019-12-20.json -------------------------------------------------------------------------------- /models/redshift-serverless/service/2021-04-21/redshift-serverless-2021-04-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/redshift-serverless/service/2021-04-21/redshift-serverless-2021-04-21.json -------------------------------------------------------------------------------- /models/redshift/service/2012-12-01/redshift-2012-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/redshift/service/2012-12-01/redshift-2012-12-01.json -------------------------------------------------------------------------------- /models/rekognition/service/2016-06-27/rekognition-2016-06-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rekognition/service/2016-06-27/rekognition-2016-06-27.json -------------------------------------------------------------------------------- /models/repostspace/service/2022-05-13/repostspace-2022-05-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/repostspace/service/2022-05-13/repostspace-2022-05-13.json -------------------------------------------------------------------------------- /models/resiliencehub/service/2020-04-30/resiliencehub-2020-04-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/resiliencehub/service/2020-04-30/resiliencehub-2020-04-30.json -------------------------------------------------------------------------------- /models/resource-explorer-2/service/2022-07-28/resource-explorer-2-2022-07-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/resource-explorer-2/service/2022-07-28/resource-explorer-2-2022-07-28.json -------------------------------------------------------------------------------- /models/resource-groups-tagging-api/service/2017-01-26/resource-groups-tagging-api-2017-01-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/resource-groups-tagging-api/service/2017-01-26/resource-groups-tagging-api-2017-01-26.json -------------------------------------------------------------------------------- /models/resource-groups/service/2017-11-27/resource-groups-2017-11-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/resource-groups/service/2017-11-27/resource-groups-2017-11-27.json -------------------------------------------------------------------------------- /models/rolesanywhere/service/2018-05-10/rolesanywhere-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rolesanywhere/service/2018-05-10/rolesanywhere-2018-05-10.json -------------------------------------------------------------------------------- /models/route-53-domains/service/2014-05-15/route-53-domains-2014-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route-53-domains/service/2014-05-15/route-53-domains-2014-05-15.json -------------------------------------------------------------------------------- /models/route-53/service/2013-04-01/route-53-2013-04-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route-53/service/2013-04-01/route-53-2013-04-01.json -------------------------------------------------------------------------------- /models/route53-recovery-cluster/service/2019-12-02/route53-recovery-cluster-2019-12-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route53-recovery-cluster/service/2019-12-02/route53-recovery-cluster-2019-12-02.json -------------------------------------------------------------------------------- /models/route53-recovery-control-config/service/2020-11-02/route53-recovery-control-config-2020-11-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route53-recovery-control-config/service/2020-11-02/route53-recovery-control-config-2020-11-02.json -------------------------------------------------------------------------------- /models/route53-recovery-readiness/service/2019-12-02/route53-recovery-readiness-2019-12-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route53-recovery-readiness/service/2019-12-02/route53-recovery-readiness-2019-12-02.json -------------------------------------------------------------------------------- /models/route53globalresolver/service/2022-09-27/route53globalresolver-2022-09-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route53globalresolver/service/2022-09-27/route53globalresolver-2022-09-27.json -------------------------------------------------------------------------------- /models/route53profiles/service/2018-05-10/route53profiles-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route53profiles/service/2018-05-10/route53profiles-2018-05-10.json -------------------------------------------------------------------------------- /models/route53resolver/service/2018-04-01/route53resolver-2018-04-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/route53resolver/service/2018-04-01/route53resolver-2018-04-01.json -------------------------------------------------------------------------------- /models/rtbfabric/service/2023-05-15/rtbfabric-2023-05-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rtbfabric/service/2023-05-15/rtbfabric-2023-05-15.json -------------------------------------------------------------------------------- /models/rum/service/2018-05-10/rum-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/rum/service/2018-05-10/rum-2018-05-10.json -------------------------------------------------------------------------------- /models/s3-control/service/2018-08-20/s3-control-2018-08-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/s3-control/service/2018-08-20/s3-control-2018-08-20.json -------------------------------------------------------------------------------- /models/s3/service/2006-03-01/s3-2006-03-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/s3/service/2006-03-01/s3-2006-03-01.json -------------------------------------------------------------------------------- /models/s3outposts/service/2017-07-25/s3outposts-2017-07-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/s3outposts/service/2017-07-25/s3outposts-2017-07-25.json -------------------------------------------------------------------------------- /models/s3tables/service/2018-05-10/s3tables-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/s3tables/service/2018-05-10/s3tables-2018-05-10.json -------------------------------------------------------------------------------- /models/s3vectors/service/2025-07-15/s3vectors-2025-07-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/s3vectors/service/2025-07-15/s3vectors-2025-07-15.json -------------------------------------------------------------------------------- /models/sagemaker-a2i-runtime/service/2019-11-07/sagemaker-a2i-runtime-2019-11-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-a2i-runtime/service/2019-11-07/sagemaker-a2i-runtime-2019-11-07.json -------------------------------------------------------------------------------- /models/sagemaker-edge/service/2020-09-23/sagemaker-edge-2020-09-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-edge/service/2020-09-23/sagemaker-edge-2020-09-23.json -------------------------------------------------------------------------------- /models/sagemaker-featurestore-runtime/service/2020-07-01/sagemaker-featurestore-runtime-2020-07-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-featurestore-runtime/service/2020-07-01/sagemaker-featurestore-runtime-2020-07-01.json -------------------------------------------------------------------------------- /models/sagemaker-geospatial/service/2020-05-27/sagemaker-geospatial-2020-05-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-geospatial/service/2020-05-27/sagemaker-geospatial-2020-05-27.json -------------------------------------------------------------------------------- /models/sagemaker-metrics/service/2022-09-30/sagemaker-metrics-2022-09-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-metrics/service/2022-09-30/sagemaker-metrics-2022-09-30.json -------------------------------------------------------------------------------- /models/sagemaker-runtime-http2/service/2025-10-01/sagemaker-runtime-http2-2025-10-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-runtime-http2/service/2025-10-01/sagemaker-runtime-http2-2025-10-01.json -------------------------------------------------------------------------------- /models/sagemaker-runtime/service/2017-05-13/sagemaker-runtime-2017-05-13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker-runtime/service/2017-05-13/sagemaker-runtime-2017-05-13.json -------------------------------------------------------------------------------- /models/sagemaker/service/2017-07-24/sagemaker-2017-07-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sagemaker/service/2017-07-24/sagemaker-2017-07-24.json -------------------------------------------------------------------------------- /models/savingsplans/service/2019-06-28/savingsplans-2019-06-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/savingsplans/service/2019-06-28/savingsplans-2019-06-28.json -------------------------------------------------------------------------------- /models/scheduler/service/2021-06-30/scheduler-2021-06-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/scheduler/service/2021-06-30/scheduler-2021-06-30.json -------------------------------------------------------------------------------- /models/schemas/service/2019-12-02/schemas-2019-12-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/schemas/service/2019-12-02/schemas-2019-12-02.json -------------------------------------------------------------------------------- /models/secrets-manager/service/2017-10-17/secrets-manager-2017-10-17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/secrets-manager/service/2017-10-17/secrets-manager-2017-10-17.json -------------------------------------------------------------------------------- /models/security-ir/service/2018-05-10/security-ir-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/security-ir/service/2018-05-10/security-ir-2018-05-10.json -------------------------------------------------------------------------------- /models/securityhub/service/2018-10-26/securityhub-2018-10-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/securityhub/service/2018-10-26/securityhub-2018-10-26.json -------------------------------------------------------------------------------- /models/securitylake/service/2018-05-10/securitylake-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/securitylake/service/2018-05-10/securitylake-2018-05-10.json -------------------------------------------------------------------------------- /models/serverlessapplicationrepository/service/2017-09-08/serverlessapplicationrepository-2017-09-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/serverlessapplicationrepository/service/2017-09-08/serverlessapplicationrepository-2017-09-08.json -------------------------------------------------------------------------------- /models/service-catalog-appregistry/service/2020-06-24/service-catalog-appregistry-2020-06-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/service-catalog-appregistry/service/2020-06-24/service-catalog-appregistry-2020-06-24.json -------------------------------------------------------------------------------- /models/service-catalog/service/2015-12-10/service-catalog-2015-12-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/service-catalog/service/2015-12-10/service-catalog-2015-12-10.json -------------------------------------------------------------------------------- /models/service-quotas/service/2019-06-24/service-quotas-2019-06-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/service-quotas/service/2019-06-24/service-quotas-2019-06-24.json -------------------------------------------------------------------------------- /models/servicediscovery/service/2017-03-14/servicediscovery-2017-03-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/servicediscovery/service/2017-03-14/servicediscovery-2017-03-14.json -------------------------------------------------------------------------------- /models/ses/service/2010-12-01/ses-2010-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ses/service/2010-12-01/ses-2010-12-01.json -------------------------------------------------------------------------------- /models/sesv2/service/2019-09-27/sesv2-2019-09-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sesv2/service/2019-09-27/sesv2-2019-09-27.json -------------------------------------------------------------------------------- /models/sfn/service/2016-11-23/sfn-2016-11-23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sfn/service/2016-11-23/sfn-2016-11-23.json -------------------------------------------------------------------------------- /models/shield/service/2016-06-02/shield-2016-06-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/shield/service/2016-06-02/shield-2016-06-02.json -------------------------------------------------------------------------------- /models/signer/service/2017-08-25/signer-2017-08-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/signer/service/2017-08-25/signer-2017-08-25.json -------------------------------------------------------------------------------- /models/signin/service/2023-01-01/signin-2023-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/signin/service/2023-01-01/signin-2023-01-01.json -------------------------------------------------------------------------------- /models/simspaceweaver/service/2022-10-28/simspaceweaver-2022-10-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/simspaceweaver/service/2022-10-28/simspaceweaver-2022-10-28.json -------------------------------------------------------------------------------- /models/snow-device-management/service/2021-08-04/snow-device-management-2021-08-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/snow-device-management/service/2021-08-04/snow-device-management-2021-08-04.json -------------------------------------------------------------------------------- /models/snowball/service/2016-06-30/snowball-2016-06-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/snowball/service/2016-06-30/snowball-2016-06-30.json -------------------------------------------------------------------------------- /models/sns/service/2010-03-31/sns-2010-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sns/service/2010-03-31/sns-2010-03-31.json -------------------------------------------------------------------------------- /models/socialmessaging/service/2024-01-01/socialmessaging-2024-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/socialmessaging/service/2024-01-01/socialmessaging-2024-01-01.json -------------------------------------------------------------------------------- /models/sqs/service/2012-11-05/sqs-2012-11-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sqs/service/2012-11-05/sqs-2012-11-05.json -------------------------------------------------------------------------------- /models/ssm-contacts/service/2021-05-03/ssm-contacts-2021-05-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ssm-contacts/service/2021-05-03/ssm-contacts-2021-05-03.json -------------------------------------------------------------------------------- /models/ssm-guiconnect/service/2021-05-01/ssm-guiconnect-2021-05-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ssm-guiconnect/service/2021-05-01/ssm-guiconnect-2021-05-01.json -------------------------------------------------------------------------------- /models/ssm-incidents/service/2018-05-10/ssm-incidents-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ssm-incidents/service/2018-05-10/ssm-incidents-2018-05-10.json -------------------------------------------------------------------------------- /models/ssm-quicksetup/service/2018-05-10/ssm-quicksetup-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ssm-quicksetup/service/2018-05-10/ssm-quicksetup-2018-05-10.json -------------------------------------------------------------------------------- /models/ssm-sap/service/2018-05-10/ssm-sap-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ssm-sap/service/2018-05-10/ssm-sap-2018-05-10.json -------------------------------------------------------------------------------- /models/ssm/service/2014-11-06/ssm-2014-11-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/ssm/service/2014-11-06/ssm-2014-11-06.json -------------------------------------------------------------------------------- /models/sso-admin/service/2020-07-20/sso-admin-2020-07-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sso-admin/service/2020-07-20/sso-admin-2020-07-20.json -------------------------------------------------------------------------------- /models/sso-oidc/service/2019-06-10/sso-oidc-2019-06-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sso-oidc/service/2019-06-10/sso-oidc-2019-06-10.json -------------------------------------------------------------------------------- /models/sso/service/2019-06-10/sso-2019-06-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sso/service/2019-06-10/sso-2019-06-10.json -------------------------------------------------------------------------------- /models/storage-gateway/service/2013-06-30/storage-gateway-2013-06-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/storage-gateway/service/2013-06-30/storage-gateway-2013-06-30.json -------------------------------------------------------------------------------- /models/sts/service/2011-06-15/sts-2011-06-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/sts/service/2011-06-15/sts-2011-06-15.json -------------------------------------------------------------------------------- /models/supplychain/service/2024-01-01/supplychain-2024-01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/supplychain/service/2024-01-01/supplychain-2024-01-01.json -------------------------------------------------------------------------------- /models/support-app/service/2021-08-20/support-app-2021-08-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/support-app/service/2021-08-20/support-app-2021-08-20.json -------------------------------------------------------------------------------- /models/support/service/2013-04-15/support-2013-04-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/support/service/2013-04-15/support-2013-04-15.json -------------------------------------------------------------------------------- /models/swf/service/2012-01-25/swf-2012-01-25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/swf/service/2012-01-25/swf-2012-01-25.json -------------------------------------------------------------------------------- /models/synthetics/service/2017-10-11/synthetics-2017-10-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/synthetics/service/2017-10-11/synthetics-2017-10-11.json -------------------------------------------------------------------------------- /models/taxsettings/service/2018-05-10/taxsettings-2018-05-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/taxsettings/service/2018-05-10/taxsettings-2018-05-10.json -------------------------------------------------------------------------------- /models/textract/service/2018-06-27/textract-2018-06-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/textract/service/2018-06-27/textract-2018-06-27.json -------------------------------------------------------------------------------- /models/timestream-influxdb/service/2023-01-27/timestream-influxdb-2023-01-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/timestream-influxdb/service/2023-01-27/timestream-influxdb-2023-01-27.json -------------------------------------------------------------------------------- /models/timestream-query/service/2018-11-01/timestream-query-2018-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/timestream-query/service/2018-11-01/timestream-query-2018-11-01.json -------------------------------------------------------------------------------- /models/timestream-write/service/2018-11-01/timestream-write-2018-11-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/timestream-write/service/2018-11-01/timestream-write-2018-11-01.json -------------------------------------------------------------------------------- /models/tnb/service/2008-10-21/tnb-2008-10-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/tnb/service/2008-10-21/tnb-2008-10-21.json -------------------------------------------------------------------------------- /models/transcribe-streaming/service/2017-10-26/transcribe-streaming-2017-10-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/transcribe-streaming/service/2017-10-26/transcribe-streaming-2017-10-26.json -------------------------------------------------------------------------------- /models/transcribe/service/2017-10-26/transcribe-2017-10-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/transcribe/service/2017-10-26/transcribe-2017-10-26.json -------------------------------------------------------------------------------- /models/transfer/service/2018-11-05/transfer-2018-11-05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/transfer/service/2018-11-05/transfer-2018-11-05.json -------------------------------------------------------------------------------- /models/translate/service/2017-07-01/translate-2017-07-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/translate/service/2017-07-01/translate-2017-07-01.json -------------------------------------------------------------------------------- /models/trustedadvisor/service/2022-09-15/trustedadvisor-2022-09-15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/trustedadvisor/service/2022-09-15/trustedadvisor-2022-09-15.json -------------------------------------------------------------------------------- /models/verifiedpermissions/service/2021-12-01/verifiedpermissions-2021-12-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/verifiedpermissions/service/2021-12-01/verifiedpermissions-2021-12-01.json -------------------------------------------------------------------------------- /models/voice-id/service/2021-09-27/voice-id-2021-09-27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/voice-id/service/2021-09-27/voice-id-2021-09-27.json -------------------------------------------------------------------------------- /models/vpc-lattice/service/2022-11-30/vpc-lattice-2022-11-30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/vpc-lattice/service/2022-11-30/vpc-lattice-2022-11-30.json -------------------------------------------------------------------------------- /models/waf-regional/service/2016-11-28/waf-regional-2016-11-28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/waf-regional/service/2016-11-28/waf-regional-2016-11-28.json -------------------------------------------------------------------------------- /models/waf/service/2015-08-24/waf-2015-08-24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/waf/service/2015-08-24/waf-2015-08-24.json -------------------------------------------------------------------------------- /models/wafv2/service/2019-07-29/wafv2-2019-07-29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/wafv2/service/2019-07-29/wafv2-2019-07-29.json -------------------------------------------------------------------------------- /models/wellarchitected/service/2020-03-31/wellarchitected-2020-03-31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/wellarchitected/service/2020-03-31/wellarchitected-2020-03-31.json -------------------------------------------------------------------------------- /models/wisdom/service/2020-10-19/wisdom-2020-10-19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/wisdom/service/2020-10-19/wisdom-2020-10-19.json -------------------------------------------------------------------------------- /models/workdocs/service/2016-05-01/workdocs-2016-05-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workdocs/service/2016-05-01/workdocs-2016-05-01.json -------------------------------------------------------------------------------- /models/workmail/service/2017-10-01/workmail-2017-10-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workmail/service/2017-10-01/workmail-2017-10-01.json -------------------------------------------------------------------------------- /models/workmailmessageflow/service/2019-05-01/workmailmessageflow-2019-05-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workmailmessageflow/service/2019-05-01/workmailmessageflow-2019-05-01.json -------------------------------------------------------------------------------- /models/workspaces-instances/service/2022-07-26/workspaces-instances-2022-07-26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workspaces-instances/service/2022-07-26/workspaces-instances-2022-07-26.json -------------------------------------------------------------------------------- /models/workspaces-thin-client/service/2023-08-22/workspaces-thin-client-2023-08-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workspaces-thin-client/service/2023-08-22/workspaces-thin-client-2023-08-22.json -------------------------------------------------------------------------------- /models/workspaces-web/service/2020-07-08/workspaces-web-2020-07-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workspaces-web/service/2020-07-08/workspaces-web-2020-07-08.json -------------------------------------------------------------------------------- /models/workspaces/service/2015-04-08/workspaces-2015-04-08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/workspaces/service/2015-04-08/workspaces-2015-04-08.json -------------------------------------------------------------------------------- /models/xray/service/2016-04-12/xray-2016-04-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/models/xray/service/2016-04-12/xray-2016-04-12.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/api-models-aws/HEAD/settings.gradle.kts --------------------------------------------------------------------------------