diff --git a/.changes/2.38.5.json b/.changes/2.38.5.json new file mode 100644 index 00000000000..d76c4fabec0 --- /dev/null +++ b/.changes/2.38.5.json @@ -0,0 +1,66 @@ +{ + "version": "2.38.5", + "date": "2025-11-12", + "entries": [ + { + "type": "feature", + "category": "AWS Database Migration Service", + "contributor": "", + "description": "Added support of SQL statements creation, metadata model discovery and selection rules transformation." + }, + { + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "This release expands ALB Authentication to support JWT verification and adds support for a new JWT validation action in listener rule." + }, + { + "type": "feature", + "category": "Amazon Redshift", + "contributor": "", + "description": "Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated applications. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Adds complete AMI ancestry tracing from immediate parent through each preceding generation back to the root AMI" + }, + { + "type": "feature", + "category": "Amazon Prometheus Service", + "contributor": "", + "description": "Add VPC source configuration support enabling Amazon Managed Service for Prometheus Collector to collect metrics from MSK clusters." + }, + { + "type": "feature", + "category": "Amazon S3 Tables", + "contributor": "", + "description": "Adds support for request metrics metrics APIs for S3 Tables" + }, + { + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "Add support for trn2.3xlarge instance type for SageMaker Hyperpod" + }, + { + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "Updated Authentication Profile APIs to add support for automatic logout on user inactivity" + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated endpoint and partition metadata." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated SDK default configurations." + } + ] +} \ No newline at end of file diff --git a/.github/workflows/pull-request-build.yml b/.github/workflows/pull-request-build.yml new file mode 100644 index 00000000000..ed782f523bb --- /dev/null +++ b/.github/workflows/pull-request-build.yml @@ -0,0 +1,47 @@ +name: Build SDK +on: + pull_request: + types: [opened, synchronize, ready_for_review] + +concurrency: + group: start-pull-request-build-${{ github.ref }} + cancel-in-progress: true + +env: + # TODO - set correct account + IAM_ROLE_ARN: 'arn:aws:iam::020344137793:role/AwsSdkJavaV2GitHubRole' + DOWNLOAD_FOLDER: '.build-scripts/' + SCRIPT_LOCATION: 'workflows/start-pull-request-build/pull-request-build-v1.sh' + +jobs: + aws-sdk-pr-build: + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + permissions: + id-token: write + issues: write + pull-requests: write + contents: read + steps: + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ env.IAM_ROLE_ARN }} + role-session-name: PullRequestBuildGitHubAction + aws-region: us-west-2 + role-duration-seconds: 7200 # 2 hours + - name: Download Build Script + run: | + aws s3 cp s3://aws-sdk-builds-github-assets-prod-us-west-2/$SCRIPT_LOCATION ./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION --no-progress + chmod +x ./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION + - name: Build + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + HEAD_REF: ${{ github.event.pull_request.head.ref }} + run: | + ./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION \ + --repo "${{ github.repository }}" \ + --branch "$HEAD_REF" \ + --pr-number "${{ github.event.pull_request.number }}" \ + --run-id "${{ github.run_id }}" + timeout-minutes: 120 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d1bc22210e..e64efcf866c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,42 @@ #### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._ +# __2.38.5__ __2025-11-12__ +## __AWS Database Migration Service__ + - ### Features + - Added support of SQL statements creation, metadata model discovery and selection rules transformation. + +## __AWS SDK for Java v2__ + - ### Features + - Updated SDK default configurations. + - Updated endpoint and partition metadata. + +## __Amazon Connect Service__ + - ### Features + - Updated Authentication Profile APIs to add support for automatic logout on user inactivity + +## __Amazon Elastic Compute Cloud__ + - ### Features + - Adds complete AMI ancestry tracing from immediate parent through each preceding generation back to the root AMI + +## __Amazon Prometheus Service__ + - ### Features + - Add VPC source configuration support enabling Amazon Managed Service for Prometheus Collector to collect metrics from MSK clusters. + +## __Amazon Redshift__ + - ### Features + - Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated applications. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages. + +## __Amazon S3 Tables__ + - ### Features + - Adds support for request metrics metrics APIs for S3 Tables + +## __Amazon SageMaker Service__ + - ### Features + - Add support for trn2.3xlarge instance type for SageMaker Hyperpod + +## __Elastic Load Balancing__ + - ### Features + - This release expands ALB Authentication to support JWT verification and adds support for a new JWT validation action in listener rule. + # __2.38.4__ __2025-11-11__ ## __AWS Batch__ - ### Features diff --git a/README.md b/README.md index 7b3bfbf3964..8804a98e0e6 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ [![All Contributors](https://img.shields.io/badge/all_contributors-120-orange.svg?style=flat-square)](#contributors-) +**GREETINGS!!!** The **AWS SDK for Java 2.0** is a rewrite of 1.0 with some great new features. As with version 1.0, it enables you to easily work with [Amazon Web Services][aws] but also includes features like non-blocking IO and pluggable HTTP implementation to further customize your applications. You can @@ -51,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.38.4 + 2.38.7 pom import @@ -85,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.38.4 + 2.38.7 software.amazon.awssdk s3 - 2.38.4 + 2.38.7 ``` @@ -102,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.38.4 + 2.38.7 ``` diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml index 0f443d69e14..ca1fe8c102f 100644 --- a/archetypes/archetype-app-quickstart/pom.xml +++ b/archetypes/archetype-app-quickstart/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 009c92e8631..5e8d27e1d11 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml index 6b72df1c61b..5b98ae3d9e6 100644 --- a/archetypes/archetype-tools/pom.xml +++ b/archetypes/archetype-tools/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 48287010846..ebb0983b0d8 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index dba29410549..3d38c1e2820 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 385155a6d5c..d0cd1f3beae 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 4387eee1add..ec26710eb3b 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../pom.xml bom diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml index d23db178f91..6b528fe6f38 100644 --- a/bundle-logging-bridge/pom.xml +++ b/bundle-logging-bridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bundle-logging-bridge jar diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml index 3492da91ab1..5c393b9723e 100644 --- a/bundle-sdk/pom.xml +++ b/bundle-sdk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bundle-sdk jar diff --git a/bundle/pom.xml b/bundle/pom.xml index 664beeba808..2b143f4702c 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 4089049de3a..a6e2ba487c1 100644 --- a/codegen-lite-maven-plugin/pom.xml +++ b/codegen-lite-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 7806c6a3eb3..75eca32879a 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-lite/src/main/java/software/amazon/awssdk/codegen/lite/Utils.java b/codegen-lite/src/main/java/software/amazon/awssdk/codegen/lite/Utils.java index 226bd147d9e..504298bda9f 100644 --- a/codegen-lite/src/main/java/software/amazon/awssdk/codegen/lite/Utils.java +++ b/codegen-lite/src/main/java/software/amazon/awssdk/codegen/lite/Utils.java @@ -21,6 +21,7 @@ import software.amazon.awssdk.utils.IoUtils; import software.amazon.awssdk.utils.StringUtils; +// hola public final class Utils { private Utils() { diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 07bc34d56a6..9cc4afe6739 100644 --- a/codegen-maven-plugin/pom.xml +++ b/codegen-maven-plugin/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 28662263d82..d698e16fdd9 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/codegen/src/main/resources/software/amazon/awssdk/codegen/rules/partitions.json.resource b/codegen/src/main/resources/software/amazon/awssdk/codegen/rules/partitions.json.resource index c789264d2b0..1a86c77e891 100644 --- a/codegen/src/main/resources/software/amazon/awssdk/codegen/rules/partitions.json.resource +++ b/codegen/src/main/resources/software/amazon/awssdk/codegen/rules/partitions.json.resource @@ -1,267 +1,276 @@ { - "partitions" : [ { - "id" : "aws", - "outputs" : { - "dnsSuffix" : "amazonaws.com", - "dualStackDnsSuffix" : "api.aws", - "implicitGlobalRegion" : "us-east-1", - "name" : "aws", - "supportsDualStack" : true, - "supportsFIPS" : true - }, - "regionRegex" : "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", - "regions" : { - "af-south-1" : { - "description" : "Africa (Cape Town)" - }, - "ap-east-1" : { - "description" : "Asia Pacific (Hong Kong)" - }, - "ap-east-2" : { - "description" : "Asia Pacific (Taipei)" - }, - "ap-northeast-1" : { - "description" : "Asia Pacific (Tokyo)" - }, - "ap-northeast-2" : { - "description" : "Asia Pacific (Seoul)" - }, - "ap-northeast-3" : { - "description" : "Asia Pacific (Osaka)" - }, - "ap-south-1" : { - "description" : "Asia Pacific (Mumbai)" - }, - "ap-south-2" : { - "description" : "Asia Pacific (Hyderabad)" - }, - "ap-southeast-1" : { - "description" : "Asia Pacific (Singapore)" - }, - "ap-southeast-2" : { - "description" : "Asia Pacific (Sydney)" - }, - "ap-southeast-3" : { - "description" : "Asia Pacific (Jakarta)" - }, - "ap-southeast-4" : { - "description" : "Asia Pacific (Melbourne)" - }, - "ap-southeast-5" : { - "description" : "Asia Pacific (Malaysia)" - }, - "ap-southeast-6" : { - "description" : "Asia Pacific (New Zealand)" - }, - "ap-southeast-7" : { - "description" : "Asia Pacific (Thailand)" - }, - "aws-global" : { - "description" : "aws global region" - }, - "ca-central-1" : { - "description" : "Canada (Central)" - }, - "ca-west-1" : { - "description" : "Canada West (Calgary)" - }, - "eu-central-1" : { - "description" : "Europe (Frankfurt)" - }, - "eu-central-2" : { - "description" : "Europe (Zurich)" - }, - "eu-north-1" : { - "description" : "Europe (Stockholm)" - }, - "eu-south-1" : { - "description" : "Europe (Milan)" - }, - "eu-south-2" : { - "description" : "Europe (Spain)" - }, - "eu-west-1" : { - "description" : "Europe (Ireland)" - }, - "eu-west-2" : { - "description" : "Europe (London)" - }, - "eu-west-3" : { - "description" : "Europe (Paris)" - }, - "il-central-1" : { - "description" : "Israel (Tel Aviv)" - }, - "me-central-1" : { - "description" : "Middle East (UAE)" - }, - "me-south-1" : { - "description" : "Middle East (Bahrain)" - }, - "mx-central-1" : { - "description" : "Mexico (Central)" - }, - "sa-east-1" : { - "description" : "South America (Sao Paulo)" - }, - "us-east-1" : { - "description" : "US East (N. Virginia)" - }, - "us-east-2" : { - "description" : "US East (Ohio)" - }, - "us-west-1" : { - "description" : "US West (N. California)" - }, - "us-west-2" : { - "description" : "US West (Oregon)" + "partitions": [ + { + "id": "aws", + "outputs": { + "dnsSuffix": "amazonaws.com", + "dualStackDnsSuffix": "api.aws", + "implicitGlobalRegion": "us-east-1", + "name": "aws", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", + "regions": { + "af-south-1": { + "description": "Africa (Cape Town)" + }, + "ap-east-1": { + "description": "Asia Pacific (Hong Kong)" + }, + "ap-east-2": { + "description": "Asia Pacific (Taipei)" + }, + "ap-northeast-1": { + "description": "Asia Pacific (Tokyo)" + }, + "ap-northeast-2": { + "description": "Asia Pacific (Seoul)" + }, + "ap-northeast-3": { + "description": "Asia Pacific (Osaka)" + }, + "ap-south-1": { + "description": "Asia Pacific (Mumbai)" + }, + "ap-south-2": { + "description": "Asia Pacific (Hyderabad)" + }, + "ap-southeast-1": { + "description": "Asia Pacific (Singapore)" + }, + "ap-southeast-2": { + "description": "Asia Pacific (Sydney)" + }, + "ap-southeast-3": { + "description": "Asia Pacific (Jakarta)" + }, + "ap-southeast-4": { + "description": "Asia Pacific (Melbourne)" + }, + "ap-southeast-5": { + "description": "Asia Pacific (Malaysia)" + }, + "ap-southeast-6": { + "description": "Asia Pacific (New Zealand)" + }, + "ap-southeast-7": { + "description": "Asia Pacific (Thailand)" + }, + "aws-global": { + "description": "aws global region" + }, + "ca-central-1": { + "description": "Canada (Central)" + }, + "ca-west-1": { + "description": "Canada West (Calgary)" + }, + "eu-central-1": { + "description": "Europe (Frankfurt)" + }, + "eu-central-2": { + "description": "Europe (Zurich)" + }, + "eu-north-1": { + "description": "Europe (Stockholm)" + }, + "eu-south-1": { + "description": "Europe (Milan)" + }, + "eu-south-2": { + "description": "Europe (Spain)" + }, + "eu-west-1": { + "description": "Europe (Ireland)" + }, + "eu-west-2": { + "description": "Europe (London)" + }, + "eu-west-3": { + "description": "Europe (Paris)" + }, + "il-central-1": { + "description": "Israel (Tel Aviv)" + }, + "me-central-1": { + "description": "Middle East (UAE)" + }, + "me-south-1": { + "description": "Middle East (Bahrain)" + }, + "mx-central-1": { + "description": "Mexico (Central)" + }, + "sa-east-1": { + "description": "South America (Sao Paulo)" + }, + "us-east-1": { + "description": "US East (N. Virginia)" + }, + "us-east-2": { + "description": "US East (Ohio)" + }, + "us-west-1": { + "description": "US West (N. California)" + }, + "us-west-2": { + "description": "US West (Oregon)" + } } - } - }, { - "id" : "aws-cn", - "outputs" : { - "dnsSuffix" : "amazonaws.com.cn", - "dualStackDnsSuffix" : "api.amazonwebservices.com.cn", - "implicitGlobalRegion" : "cn-northwest-1", - "name" : "aws-cn", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^cn\\-\\w+\\-\\d+$", - "regions" : { - "aws-cn-global" : { - "description" : "aws-cn global region" - }, - "cn-north-1" : { - "description" : "China (Beijing)" - }, - "cn-northwest-1" : { - "description" : "China (Ningxia)" + { + "id": "aws-cn", + "outputs": { + "dnsSuffix": "amazonaws.com.cn", + "dualStackDnsSuffix": "api.amazonwebservices.com.cn", + "implicitGlobalRegion": "cn-northwest-1", + "name": "aws-cn", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^cn\\-\\w+\\-\\d+$", + "regions": { + "aws-cn-global": { + "description": "aws-cn global region" + }, + "cn-north-1": { + "description": "China (Beijing)" + }, + "cn-northwest-1": { + "description": "China (Ningxia)" + } } - } - }, { - "id" : "aws-eusc", - "outputs" : { - "dnsSuffix" : "amazonaws.eu", - "dualStackDnsSuffix" : "api.amazonwebservices.eu", - "implicitGlobalRegion" : "eusc-de-east-1", - "name" : "aws-eusc", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$", - "regions" : { - "eusc-de-east-1" : { - "description" : "EU (Germany)" + { + "id": "aws-eusc", + "outputs": { + "dnsSuffix": "amazonaws.eu", + "dualStackDnsSuffix": "api.amazonwebservices.eu", + "implicitGlobalRegion": "eusc-de-east-1", + "name": "aws-eusc", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^eusc\\-(de)\\-\\w+\\-\\d+$", + "regions": { + "eusc-de-east-1": { + "description": "EU (Germany)" + } } - } - }, { - "id" : "aws-iso", - "outputs" : { - "dnsSuffix" : "c2s.ic.gov", - "dualStackDnsSuffix" : "api.aws.ic.gov", - "implicitGlobalRegion" : "us-iso-east-1", - "name" : "aws-iso", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$", - "regions" : { - "aws-iso-global" : { - "description" : "aws-iso global region" - }, - "us-iso-east-1" : { - "description" : "US ISO East" - }, - "us-iso-west-1" : { - "description" : "US ISO WEST" + { + "id": "aws-iso", + "outputs": { + "dnsSuffix": "c2s.ic.gov", + "dualStackDnsSuffix": "api.aws.ic.gov", + "implicitGlobalRegion": "us-iso-east-1", + "name": "aws-iso", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^us\\-iso\\-\\w+\\-\\d+$", + "regions": { + "aws-iso-global": { + "description": "aws-iso global region" + }, + "us-iso-east-1": { + "description": "US ISO East" + }, + "us-iso-west-1": { + "description": "US ISO WEST" + } } - } - }, { - "id" : "aws-iso-b", - "outputs" : { - "dnsSuffix" : "sc2s.sgov.gov", - "dualStackDnsSuffix" : "api.aws.scloud", - "implicitGlobalRegion" : "us-isob-east-1", - "name" : "aws-iso-b", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$", - "regions" : { - "aws-iso-b-global" : { - "description" : "aws-iso-b global region" - }, - "us-isob-east-1" : { - "description" : "US ISOB East (Ohio)" - }, - "us-isob-west-1" : { - "description" : "US ISOB West" + { + "id": "aws-iso-b", + "outputs": { + "dnsSuffix": "sc2s.sgov.gov", + "dualStackDnsSuffix": "api.aws.scloud", + "implicitGlobalRegion": "us-isob-east-1", + "name": "aws-iso-b", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^us\\-isob\\-\\w+\\-\\d+$", + "regions": { + "aws-iso-b-global": { + "description": "aws-iso-b global region" + }, + "us-isob-east-1": { + "description": "US ISOB East (Ohio)" + }, + "us-isob-west-1": { + "description": "US ISOB West" + } } - } - }, { - "id" : "aws-iso-e", - "outputs" : { - "dnsSuffix" : "cloud.adc-e.uk", - "dualStackDnsSuffix" : "api.cloud-aws.adc-e.uk", - "implicitGlobalRegion" : "eu-isoe-west-1", - "name" : "aws-iso-e", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$", - "regions" : { - "aws-iso-e-global" : { - "description" : "aws-iso-e global region" - }, - "eu-isoe-west-1" : { - "description" : "EU ISOE West" + { + "id": "aws-iso-e", + "outputs": { + "dnsSuffix": "cloud.adc-e.uk", + "dualStackDnsSuffix": "api.cloud-aws.adc-e.uk", + "implicitGlobalRegion": "eu-isoe-west-1", + "name": "aws-iso-e", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^eu\\-isoe\\-\\w+\\-\\d+$", + "regions": { + "aws-iso-e-global": { + "description": "aws-iso-e global region" + }, + "eu-isoe-west-1": { + "description": "EU ISOE West" + } } - } - }, { - "id" : "aws-iso-f", - "outputs" : { - "dnsSuffix" : "csp.hci.ic.gov", - "dualStackDnsSuffix" : "api.aws.hci.ic.gov", - "implicitGlobalRegion" : "us-isof-south-1", - "name" : "aws-iso-f", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$", - "regions" : { - "aws-iso-f-global" : { - "description" : "aws-iso-f global region" - }, - "us-isof-east-1" : { - "description" : "US ISOF EAST" - }, - "us-isof-south-1" : { - "description" : "US ISOF SOUTH" + { + "id": "aws-iso-f", + "outputs": { + "dnsSuffix": "csp.hci.ic.gov", + "dualStackDnsSuffix": "api.aws.hci.ic.gov", + "implicitGlobalRegion": "us-isof-south-1", + "name": "aws-iso-f", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^us\\-isof\\-\\w+\\-\\d+$", + "regions": { + "aws-iso-f-global": { + "description": "aws-iso-f global region" + }, + "us-isof-east-1": { + "description": "US ISOF EAST" + }, + "us-isof-south-1": { + "description": "US ISOF SOUTH" + } } - } - }, { - "id" : "aws-us-gov", - "outputs" : { - "dnsSuffix" : "amazonaws.com", - "dualStackDnsSuffix" : "api.aws", - "implicitGlobalRegion" : "us-gov-west-1", - "name" : "aws-us-gov", - "supportsDualStack" : true, - "supportsFIPS" : true }, - "regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$", - "regions" : { - "aws-us-gov-global" : { - "description" : "aws-us-gov global region" - }, - "us-gov-east-1" : { - "description" : "AWS GovCloud (US-East)" - }, - "us-gov-west-1" : { - "description" : "AWS GovCloud (US-West)" + { + "id": "aws-us-gov", + "outputs": { + "dnsSuffix": "amazonaws.com", + "dualStackDnsSuffix": "api.aws", + "implicitGlobalRegion": "us-gov-west-1", + "name": "aws-us-gov", + "supportsDualStack": true, + "supportsFIPS": true + }, + "regionRegex": "^us\\-gov\\-\\w+\\-\\d+$", + "regions": { + "aws-us-gov-global": { + "description": "aws-us-gov global region" + }, + "us-gov-east-1": { + "description": "AWS GovCloud (US-East)" + }, + "us-gov-west-1": { + "description": "AWS GovCloud (US-West)" + } } } - } ], - "version" : "1.1" -} \ No newline at end of file + ], + "version": "1.1" +} diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 0b3a7726083..261977eee15 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 625de3daee3..208e61767c5 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml index a09cddfe8f9..26fa0572e08 100644 --- a/core/auth-crt/pom.xml +++ b/core/auth-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT auth-crt diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 1f51aa6a35a..5bce0f0c17e 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index c91cbb84fcf..d2aa71b3db2 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT aws-core diff --git a/core/aws-core/src/main/resources/software/amazon/awssdk/awscore/internal/defaults/sdk-default-configuration.json b/core/aws-core/src/main/resources/software/amazon/awssdk/awscore/internal/defaults/sdk-default-configuration.json index 3db13b26cc5..3c236c3c39b 100644 --- a/core/aws-core/src/main/resources/software/amazon/awssdk/awscore/internal/defaults/sdk-default-configuration.json +++ b/core/aws-core/src/main/resources/software/amazon/awssdk/awscore/internal/defaults/sdk-default-configuration.json @@ -16,8 +16,7 @@ "override": 3100 } }, - "in-region": { - }, + "in-region": {}, "cross-region": { "connectTimeoutInMillis": { "override": 3100 @@ -52,4 +51,4 @@ "tlsNegotiationTimeoutInMillis": "

The maximum amount of time that a TLS handshake is allowed to take from the time the CLIENT HELLO message is sent to ethe time the client and server have fully negotiated ciphers and exchanged keys

" } } -} \ No newline at end of file +} diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml index 3f75b2172dc..6079cef0629 100644 --- a/core/checksums-spi/pom.xml +++ b/core/checksums-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT checksums-spi diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml index 0c654f6651f..d69a4d6f1dd 100644 --- a/core/checksums/pom.xml +++ b/core/checksums/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT checksums diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml index f09be12434a..5295d7c596f 100644 --- a/core/crt-core/pom.xml +++ b/core/crt-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT crt-core diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml index b7799ad1207..b3f1ca4dcda 100644 --- a/core/endpoints-spi/pom.xml +++ b/core/endpoints-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml index 30e818bc9b5..9d017306199 100644 --- a/core/http-auth-aws-crt/pom.xml +++ b/core/http-auth-aws-crt/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT http-auth-aws-crt diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml index a27c545c121..afd66ce6b96 100644 --- a/core/http-auth-aws-eventstream/pom.xml +++ b/core/http-auth-aws-eventstream/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT http-auth-aws-eventstream diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml index 174ad71ce71..bdb77b20e06 100644 --- a/core/http-auth-aws/pom.xml +++ b/core/http-auth-aws/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT http-auth-aws diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml index d14e7b2b14f..52750a92d42 100644 --- a/core/http-auth-spi/pom.xml +++ b/core/http-auth-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT http-auth-spi diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml index be7ce04a724..3d8fa75460f 100644 --- a/core/http-auth/pom.xml +++ b/core/http-auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT http-auth diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml index 9f00b668068..244f3272247 100644 --- a/core/identity-spi/pom.xml +++ b/core/identity-spi/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT identity-spi diff --git a/core/imds/pom.xml b/core/imds/pom.xml index 2bc102df3d1..bd73bf5c753 100644 --- a/core/imds/pom.xml +++ b/core/imds/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 imds diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml index fb721a9be84..b434d9c6cdd 100644 --- a/core/json-utils/pom.xml +++ b/core/json-utils/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 3e97e00a094..0d4d910c69c 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index bef7444458f..e21df377df8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 010d23e98ae..a4fb29e1c96 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 63e5115ad5c..5a30e7941e0 100644 --- a/core/protocols/aws-cbor-protocol/pom.xml +++ b/core/protocols/aws-cbor-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 91ac0b2ad8c..174c7577489 100644 --- a/core/protocols/aws-json-protocol/pom.xml +++ b/core/protocols/aws-json-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 62ce06e4166..dd72a5f06e7 100644 --- a/core/protocols/aws-query-protocol/pom.xml +++ b/core/protocols/aws-query-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 359db570258..187b3c04374 100644 --- a/core/protocols/aws-xml-protocol/pom.xml +++ b/core/protocols/aws-xml-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index e2c5e78d97c..dbaac759586 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 8f4e608c7a1..ad787f1ac71 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml index 39c70c62fae..465622e5a5d 100644 --- a/core/protocols/smithy-rpcv2-protocol/pom.xml +++ b/core/protocols/smithy-rpcv2-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 9b1dd183763..e1aae86cf4e 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT regions diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 162aa21b32c..085c7a5e907 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -1,40169 +1,46195 @@ { - "partitions" : [ { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "{service}.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "dnsSuffix" : "amazonaws.com", - "partition" : "aws", - "partitionName" : "AWS Standard", - "regionRegex" : "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", - "regions" : { - "af-south-1" : { - "description" : "Africa (Cape Town)" - }, - "ap-east-1" : { - "description" : "Asia Pacific (Hong Kong)" - }, - "ap-east-2" : { - "description" : "Asia Pacific (Taipei)" - }, - "ap-northeast-1" : { - "description" : "Asia Pacific (Tokyo)" - }, - "ap-northeast-2" : { - "description" : "Asia Pacific (Seoul)" - }, - "ap-northeast-3" : { - "description" : "Asia Pacific (Osaka)" - }, - "ap-south-1" : { - "description" : "Asia Pacific (Mumbai)" - }, - "ap-south-2" : { - "description" : "Asia Pacific (Hyderabad)" - }, - "ap-southeast-1" : { - "description" : "Asia Pacific (Singapore)" - }, - "ap-southeast-2" : { - "description" : "Asia Pacific (Sydney)" - }, - "ap-southeast-3" : { - "description" : "Asia Pacific (Jakarta)" - }, - "ap-southeast-4" : { - "description" : "Asia Pacific (Melbourne)" - }, - "ap-southeast-5" : { - "description" : "Asia Pacific (Malaysia)" - }, - "ap-southeast-6" : { - "description" : "Asia Pacific (New Zealand)" - }, - "ap-southeast-7" : { - "description" : "Asia Pacific (Thailand)" - }, - "ca-central-1" : { - "description" : "Canada (Central)" - }, - "ca-west-1" : { - "description" : "Canada West (Calgary)" - }, - "eu-central-1" : { - "description" : "Europe (Frankfurt)" - }, - "eu-central-2" : { - "description" : "Europe (Zurich)" - }, - "eu-north-1" : { - "description" : "Europe (Stockholm)" - }, - "eu-south-1" : { - "description" : "Europe (Milan)" - }, - "eu-south-2" : { - "description" : "Europe (Spain)" - }, - "eu-west-1" : { - "description" : "Europe (Ireland)" - }, - "eu-west-2" : { - "description" : "Europe (London)" - }, - "eu-west-3" : { - "description" : "Europe (Paris)" - }, - "il-central-1" : { - "description" : "Israel (Tel Aviv)" - }, - "me-central-1" : { - "description" : "Middle East (UAE)" - }, - "me-south-1" : { - "description" : "Middle East (Bahrain)" - }, - "mx-central-1" : { - "description" : "Mexico (Central)" - }, - "sa-east-1" : { - "description" : "South America (Sao Paulo)" - }, - "us-east-1" : { - "description" : "US East (N. Virginia)" - }, - "us-east-2" : { - "description" : "US East (Ohio)" - }, - "us-west-1" : { - "description" : "US West (N. California)" + "partitions": [ + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "{service}.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] }, - "us-west-2" : { - "description" : "US West (Oregon)" + "dnsSuffix": "amazonaws.com", + "partition": "aws", + "partitionName": "AWS Standard", + "regionRegex": "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", + "regions": { + "af-south-1": { + "description": "Africa (Cape Town)" + }, + "ap-east-1": { + "description": "Asia Pacific (Hong Kong)" + }, + "ap-east-2": { + "description": "Asia Pacific (Taipei)" + }, + "ap-northeast-1": { + "description": "Asia Pacific (Tokyo)" + }, + "ap-northeast-2": { + "description": "Asia Pacific (Seoul)" + }, + "ap-northeast-3": { + "description": "Asia Pacific (Osaka)" + }, + "ap-south-1": { + "description": "Asia Pacific (Mumbai)" + }, + "ap-south-2": { + "description": "Asia Pacific (Hyderabad)" + }, + "ap-southeast-1": { + "description": "Asia Pacific (Singapore)" + }, + "ap-southeast-2": { + "description": "Asia Pacific (Sydney)" + }, + "ap-southeast-3": { + "description": "Asia Pacific (Jakarta)" + }, + "ap-southeast-4": { + "description": "Asia Pacific (Melbourne)" + }, + "ap-southeast-5": { + "description": "Asia Pacific (Malaysia)" + }, + "ap-southeast-6": { + "description": "Asia Pacific (New Zealand)" + }, + "ap-southeast-7": { + "description": "Asia Pacific (Thailand)" + }, + "ca-central-1": { + "description": "Canada (Central)" + }, + "ca-west-1": { + "description": "Canada West (Calgary)" + }, + "eu-central-1": { + "description": "Europe (Frankfurt)" + }, + "eu-central-2": { + "description": "Europe (Zurich)" + }, + "eu-north-1": { + "description": "Europe (Stockholm)" + }, + "eu-south-1": { + "description": "Europe (Milan)" + }, + "eu-south-2": { + "description": "Europe (Spain)" + }, + "eu-west-1": { + "description": "Europe (Ireland)" + }, + "eu-west-2": { + "description": "Europe (London)" + }, + "eu-west-3": { + "description": "Europe (Paris)" + }, + "il-central-1": { + "description": "Israel (Tel Aviv)" + }, + "me-central-1": { + "description": "Middle East (UAE)" + }, + "me-south-1": { + "description": "Middle East (Bahrain)" + }, + "mx-central-1": { + "description": "Mexico (Central)" + }, + "sa-east-1": { + "description": "South America (Sao Paulo)" + }, + "us-east-1": { + "description": "US East (N. Virginia)" + }, + "us-east-2": { + "description": "US East (Ohio)" + }, + "us-west-1": { + "description": "US West (N. California)" + }, + "us-west-2": { + "description": "US West (Oregon)" + } + }, + "services": { + "access-analyzer": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "access-analyzer.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "access-analyzer.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "access-analyzer.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "access-analyzer.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "access-analyzer.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "access-analyzer.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "access-analyzer.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "access-analyzer.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "access-analyzer.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "access-analyzer.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "access-analyzer.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "access-analyzer.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "access-analyzer.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "access-analyzer-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "access-analyzer.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "access-analyzer-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "access-analyzer.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "access-analyzer.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "access-analyzer.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "access-analyzer.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "access-analyzer.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "access-analyzer.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "access-analyzer.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "access-analyzer.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "access-analyzer.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "access-analyzer-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "access-analyzer-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "access-analyzer-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "access-analyzer-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "access-analyzer-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "access-analyzer-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "access-analyzer.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "access-analyzer.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "access-analyzer.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "access-analyzer.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "access-analyzer.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "access-analyzer-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "access-analyzer.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "access-analyzer-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "access-analyzer.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "access-analyzer-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "access-analyzer.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "access-analyzer-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "access-analyzer.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "account": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "account.us-east-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "acm": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "acm-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "acm-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "acm-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "acm-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "acm-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "acm-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "acm-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "acm-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "acm-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "acm-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "acm-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "acm-fips.us-west-2.amazonaws.com" + } + } + }, + "acm-pca": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "acm-pca-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "acm-pca-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "acm-pca-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "acm-pca-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "acm-pca-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "acm-pca-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "acm-pca-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "acm-pca-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "acm-pca-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "acm-pca-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "acm-pca-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "acm-pca-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "agreement-marketplace": { + "endpoints": { + "us-east-1": { + "variants": [ + { + "hostname": "agreement-marketplace.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "airflow": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "amplify": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "amplifybackend": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "amplifyuibuilder": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "aoss": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "api.detective": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "detective.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "detective.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "detective.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "detective.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "detective.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "detective.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "detective.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "api.detective-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "api.detective-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "variants": [ + { + "hostname": "detective.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "detective.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "detective.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "detective.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "detective.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "detective.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "detective.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "detective.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "detective.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "api.detective-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "api.detective-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "api.detective-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "api.detective-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "api.detective-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "api.detective-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "api.detective-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "api.detective-fips.us-west-2.amazonaws.com" + } + } + }, + "api.ecr": { + "defaults": { + "variants": [ + { + "hostname": "ecr-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "api.ecr.af-south-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "api.ecr.ap-east-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "api.ecr.ap-northeast-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "api.ecr.ap-northeast-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "api.ecr.ap-northeast-3.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "api.ecr.ap-south-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "api.ecr.ap-south-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "api.ecr.ap-southeast-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "api.ecr.ap-southeast-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "api.ecr.ap-southeast-3.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "api.ecr.ap-southeast-4.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "hostname": "api.ecr.ap-southeast-5.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "credentialScope": { + "region": "ap-southeast-7" + }, + "hostname": "api.ecr.ap-southeast-7.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "api.ecr.ca-central-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "hostname": "api.ecr.ca-west-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "dkr-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ecr-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "dkr-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ecr-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "dkr-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ecr-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "dkr-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ecr-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "api.ecr.eu-central-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "api.ecr.eu-central-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "api.ecr.eu-north-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "api.ecr.eu-south-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "api.ecr.eu-south-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "api.ecr.eu-west-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "api.ecr.eu-west-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "api.ecr.eu-west-3.amazonaws.com", + "variants": [ + { + "hostname": "ecr.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-dkr-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-east-1.amazonaws.com" + }, + "fips-dkr-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ecr-fips.us-east-2.amazonaws.com" + }, + "fips-dkr-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-west-1.amazonaws.com" + }, + "fips-dkr-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ecr-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ecr-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ecr-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "api.ecr.il-central-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "api.ecr.me-central-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "api.ecr.me-south-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "credentialScope": { + "region": "mx-central-1" + }, + "hostname": "api.ecr.mx-central-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "api.ecr.sa-east-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.ecr.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ecr-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ecr.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "api.ecr.us-east-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ecr-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ecr.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "api.ecr.us-west-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ecr-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ecr.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.ecr.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "ecr-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ecr-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ecr.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "api.ecr-public": { + "endpoints": { + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.ecr-public.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr-public.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.ecr-public.us-west-2.amazonaws.com" + } + } + }, + "api.iotdeviceadvisor": { + "endpoints": { + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "api.iotdeviceadvisor.ap-northeast-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "api.iotdeviceadvisor.eu-west-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.iotdeviceadvisor.us-east-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.iotdeviceadvisor.us-west-2.amazonaws.com" + } + } + }, + "api.iotwireless": { + "endpoints": { + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "api.iotwireless.ap-northeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "api.iotwireless.ap-southeast-2.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "api.iotwireless.eu-central-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "api.iotwireless.eu-west-1.amazonaws.com" + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "api.iotwireless.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.iotwireless.us-east-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.iotwireless.us-west-2.amazonaws.com" + } + } + }, + "api.mediatailor": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-3": {}, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "api.pricing": { + "defaults": { + "credentialScope": { + "service": "pricing" + } + }, + "endpoints": { + "ap-south-1": {}, + "eu-central-1": {}, + "us-east-1": {} + } + }, + "api.sagemaker": { + "defaults": { + "variants": [ + { + "hostname": "api-fips.sagemaker.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "api-fips.sagemaker.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "api-fips.sagemaker.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "api-fips.sagemaker.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "api-fips.sagemaker.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "api-fips.sagemaker.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "api-fips.sagemaker.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.us-west-2.amazonaws.com" + } + } + }, + "api.tunneling.iot": { + "defaults": { + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "api.tunneling.iot-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "api.iot-tunneling-fips.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "api.iot-tunneling.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "ap-east-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "api.iot-tunneling.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "api.iot-tunneling.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.ca-central-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": {}, + "eu-west-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "api.iot-tunneling.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "api.iot-tunneling.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-west-2.amazonaws.com" + }, + "me-central-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.us-east-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.us-east-2.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.us-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.us-west-2.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "apigateway": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "apigateway-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "apigateway-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "apigateway-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "apigateway-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "apigateway-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "apigateway-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "apigateway-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "apigateway-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "apigateway-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "apigateway-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "apigateway-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "apigateway-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "app-integrations": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "appconfig": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "appconfigdata": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "appflow": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "appflow-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "appflow-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "appflow-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "appflow-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "appflow-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "appflow-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "appflow-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "appflow-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "applicationinsights": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "applicationinsights.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "applicationinsights.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "applicationinsights.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "applicationinsights.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "applicationinsights.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "applicationinsights.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "applicationinsights.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "applicationinsights.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "applicationinsights.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "applicationinsights.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "applicationinsights.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "applicationinsights-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "applicationinsights-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "applicationinsights.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "applicationinsights.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "applicationinsights.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "applicationinsights.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "applicationinsights.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "applicationinsights.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "applicationinsights.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "applicationinsights.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "applicationinsights.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "applicationinsights.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "applicationinsights.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "applicationinsights.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "applicationinsights-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "applicationinsights-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "applicationinsights-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "applicationinsights-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "appmesh": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "appmesh.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "appmesh.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "appmesh.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "appmesh.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "appmesh.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "appmesh.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "appmesh.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "appmesh.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "appmesh.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "appmesh-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "appmesh-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "appmesh.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "appmesh-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "variants": [ + { + "hostname": "appmesh.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "appmesh.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "appmesh.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "appmesh.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "appmesh.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "appmesh.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "appmesh.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "appmesh.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "appmesh.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "appmesh.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "appmesh.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "appmesh-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "appmesh-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "appmesh.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "appmesh-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "appmesh-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "appmesh-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "appmesh.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "appmesh-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "appmesh-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "appmesh-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "appmesh.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "appmesh-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "appmesh-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "appmesh-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "appmesh.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "appmesh-fips.us-west-2.amazonaws.com" + } + } + }, + "apprunner": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "apprunner-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "apprunner-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "apprunner-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "apprunner-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "apprunner-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "apprunner-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "appstream2": { + "defaults": { + "credentialScope": { + "service": "appstream" + }, + "protocols": ["https"] + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "appstream2-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "appstream2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "appstream2-fips.us-east-1.amazonaws.com" + }, + "us-east-2": {}, + "us-west-2": { + "variants": [ + { + "hostname": "appstream2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "appstream2-fips.us-west-2.amazonaws.com" + } + } + }, + "appsync": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "appsync.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "appsync.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "appsync.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "appsync.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "appsync.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "appsync.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "appsync.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "appsync.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "appsync.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "appsync.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "appsync.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "appsync.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": {}, + "eu-central-1": { + "variants": [ + { + "hostname": "appsync.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "appsync.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "appsync.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "appsync.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "appsync.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "appsync.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "appsync.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "appsync.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "appsync.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "appsync.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "appsync.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "appsync.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "appsync.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "appsync.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "appsync.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "appsync.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "aps": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": {}, + "ap-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": {}, + "ap-southeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": {}, + "eu-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "deprecated": true + }, + "us-east-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "deprecated": true + }, + "us-west-1": {}, + "us-west-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "deprecated": true + } + } + }, + "arc-zonal-shift": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "athena": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "athena.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "athena.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "athena.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "athena.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "athena.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "athena.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "athena.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "athena.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "athena.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "athena.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "athena.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "athena.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "athena-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "athena-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "athena.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "athena.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "athena.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "athena.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "athena.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "athena.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "athena.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "athena.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "athena-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "athena-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "athena-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "athena-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "athena-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "athena-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "athena.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "athena.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "athena.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "athena.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "athena-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "athena-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "athena-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "athena-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "auditmanager": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": { + "variants": [ + { + "hostname": "auditmanager-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "auditmanager-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "auditmanager-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "auditmanager-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "auditmanager-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "auditmanager-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "auditmanager-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "auditmanager-fips.us-west-2.amazonaws.com" + } + } + }, + "autoscaling": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "autoscaling-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "autoscaling-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "autoscaling-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "autoscaling-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "autoscaling-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "autoscaling-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "autoscaling-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "autoscaling-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "autoscaling-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "autoscaling-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "autoscaling-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "autoscaling-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "autoscaling-plans": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "backup": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "backup-gateway": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "batch": { + "defaults": { + "variants": [ + { + "hostname": "fips.batch.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "fips.batch.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "fips.batch.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "fips.batch.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "fips.batch.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "fips.batch.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "fips.batch.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "fips.batch.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "fips.batch.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "bedrock": { + "endpoints": { + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "bedrock-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "bedrock.ap-northeast-1.amazonaws.com" + }, + "bedrock-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "bedrock.ap-northeast-2.amazonaws.com" + }, + "bedrock-ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "bedrock.ap-northeast-3.amazonaws.com" + }, + "bedrock-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "bedrock.ap-south-1.amazonaws.com" + }, + "bedrock-ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "bedrock.ap-south-2.amazonaws.com" + }, + "bedrock-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "bedrock.ap-southeast-1.amazonaws.com" + }, + "bedrock-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "bedrock.ap-southeast-2.amazonaws.com" + }, + "bedrock-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "bedrock.ca-central-1.amazonaws.com" + }, + "bedrock-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "bedrock.eu-central-1.amazonaws.com" + }, + "bedrock-eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "bedrock.eu-central-2.amazonaws.com" + }, + "bedrock-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "bedrock.eu-north-1.amazonaws.com" + }, + "bedrock-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "bedrock.eu-south-1.amazonaws.com" + }, + "bedrock-eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "bedrock.eu-south-2.amazonaws.com" + }, + "bedrock-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "bedrock.eu-west-1.amazonaws.com" + }, + "bedrock-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "bedrock.eu-west-2.amazonaws.com" + }, + "bedrock-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "bedrock.eu-west-3.amazonaws.com" + }, + "bedrock-fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "bedrock-fips.ca-central-1.amazonaws.com" + }, + "bedrock-fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "bedrock-fips.us-east-1.amazonaws.com" + }, + "bedrock-fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "bedrock-fips.us-east-2.amazonaws.com" + }, + "bedrock-fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "bedrock-fips.us-west-2.amazonaws.com" + }, + "bedrock-runtime-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "bedrock-runtime.ap-northeast-1.amazonaws.com" + }, + "bedrock-runtime-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "bedrock-runtime.ap-northeast-2.amazonaws.com" + }, + "bedrock-runtime-ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "bedrock-runtime.ap-northeast-3.amazonaws.com" + }, + "bedrock-runtime-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "bedrock-runtime.ap-south-1.amazonaws.com" + }, + "bedrock-runtime-ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "bedrock-runtime.ap-south-2.amazonaws.com" + }, + "bedrock-runtime-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "bedrock-runtime.ap-southeast-1.amazonaws.com" + }, + "bedrock-runtime-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "bedrock-runtime.ap-southeast-2.amazonaws.com" + }, + "bedrock-runtime-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "bedrock-runtime.ca-central-1.amazonaws.com" + }, + "bedrock-runtime-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "bedrock-runtime.eu-central-1.amazonaws.com" + }, + "bedrock-runtime-eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "bedrock-runtime.eu-central-2.amazonaws.com" + }, + "bedrock-runtime-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "bedrock-runtime.eu-north-1.amazonaws.com" + }, + "bedrock-runtime-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "bedrock-runtime.eu-south-1.amazonaws.com" + }, + "bedrock-runtime-eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "bedrock-runtime.eu-south-2.amazonaws.com" + }, + "bedrock-runtime-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "bedrock-runtime.eu-west-1.amazonaws.com" + }, + "bedrock-runtime-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "bedrock-runtime.eu-west-2.amazonaws.com" + }, + "bedrock-runtime-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "bedrock-runtime.eu-west-3.amazonaws.com" + }, + "bedrock-runtime-fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "bedrock-runtime-fips.ca-central-1.amazonaws.com" + }, + "bedrock-runtime-fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "bedrock-runtime-fips.us-east-1.amazonaws.com" + }, + "bedrock-runtime-fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "bedrock-runtime-fips.us-east-2.amazonaws.com" + }, + "bedrock-runtime-fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "bedrock-runtime-fips.us-west-2.amazonaws.com" + }, + "bedrock-runtime-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "bedrock-runtime.sa-east-1.amazonaws.com" + }, + "bedrock-runtime-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "bedrock-runtime.us-east-1.amazonaws.com" + }, + "bedrock-runtime-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "bedrock-runtime.us-east-2.amazonaws.com" + }, + "bedrock-runtime-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "bedrock-runtime.us-west-2.amazonaws.com" + }, + "bedrock-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "bedrock.sa-east-1.amazonaws.com" + }, + "bedrock-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "bedrock.us-east-1.amazonaws.com" + }, + "bedrock-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "bedrock.us-east-2.amazonaws.com" + }, + "bedrock-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "bedrock.us-west-2.amazonaws.com" + }, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "billingconductor": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "billingconductor.us-east-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "braket": { + "endpoints": { + "eu-north-1": { + "variants": [ + { + "hostname": "braket.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "braket.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "braket.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "braket.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "braket.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "budgets": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "budgets.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "cases": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-us-east-1": { + "deprecated": true + }, + "fips-us-west-2": { + "deprecated": true + }, + "us-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["fips"] + } + ] + } + } + }, + "cassandra": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cassandra-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cassandra-fips.us-west-2.amazonaws.com" + }, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "cassandra-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": { + "variants": [ + { + "hostname": "cassandra-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "catalog.marketplace": { + "endpoints": { + "us-east-1": {} + } + }, + "ce": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "ce.us-east-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "chime": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "chime.us-east-1.amazonaws.com", + "protocols": ["https"] + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "cleanrooms": { + "endpoints": { + "ap-northeast-1": { + "variants": [ + { + "hostname": "cleanrooms.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "cleanrooms.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "cleanrooms.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "cleanrooms.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "cleanrooms.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "cleanrooms.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "cleanrooms.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "cleanrooms.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cleanrooms-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cleanrooms-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cleanrooms-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "cleanrooms-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cleanrooms-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cleanrooms.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "cleanrooms-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cleanrooms-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cleanrooms.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "cleanrooms-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cleanrooms-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cleanrooms.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "cloud9": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "cloud9-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloud9-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "cloud9-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cloud9-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cloud9-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "cloud9-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cloud9-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "cloud9-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloud9-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "cloud9-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloud9-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "cloud9-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloud9-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "cloud9-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloud9-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + } + } + }, + "cloudcontrolapi": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "cloudcontrolapi.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "cloudcontrolapi.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "clouddirectory": { + "endpoints": { + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "cloudformation": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "cloudformation-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cloudformation-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "cloudformation-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cloudformation-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "cloudformation-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "cloudformation-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "cloudformation-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cloudformation-fips.us-west-2.amazonaws.com" + } + } + }, + "cloudfront": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "cloudfront.amazonaws.com", + "protocols": ["http", "https"] + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "cloudhsm": { + "endpoints": { + "us-east-1": {} + } + }, + "cloudhsmv2": { + "defaults": { + "credentialScope": { + "service": "cloudhsm" + } + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "cloudhsmv2.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "cloudhsmv2.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "cloudhsmv2.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": {}, + "eu-west-1": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "cloudhsmv2.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "cloudhsmv2.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "cloudhsmv2.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "cloudhsmv2.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "cloudhsmv2.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "cloudhsmv2.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "cloudhsmv2.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "cloudhsmv2.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "cloudhsmv2.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "cloudsearch": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "cloudtrail": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "cloudtrail-data": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "codeartifact": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "codebuild": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "codebuild-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "codebuild-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "codebuild-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "codebuild-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "codebuild-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "codebuild-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "codebuild-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "codebuild-fips.us-west-2.amazonaws.com" + } + } + }, + "codecatalyst": { + "endpoints": { + "aws-global": { + "hostname": "codecatalyst.global.api.aws" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "codecommit": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "codecommit-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.ca-central-1.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "codecommit-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "codecommit-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "codecommit-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "codecommit-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-west-2.amazonaws.com" + } + } + }, + "codedeploy": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "codedeploy-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "codedeploy-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "codedeploy-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "codedeploy-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "codedeploy-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "codedeploy-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "codedeploy-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "codedeploy-fips.us-west-2.amazonaws.com" + } + } + }, + "codeguru-profiler": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "codeguru-reviewer": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "codepipeline": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "codepipeline-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "codepipeline-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "codepipeline-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "codepipeline-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "codepipeline-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "codepipeline-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "codepipeline-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "codepipeline-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "codepipeline-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "codepipeline-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "codestar-connections": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "codestar-notifications": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "cognito-identity": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "cognito-identity.af-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "cognito-identity.ap-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "cognito-identity.ap-northeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "cognito-identity.ap-northeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "cognito-identity.ap-northeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "cognito-identity.ap-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "cognito-identity.ap-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "cognito-identity.ap-southeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "cognito-identity.ap-southeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "cognito-identity.ap-southeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "cognito-identity.ap-southeast-4.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "cognito-identity.ap-southeast-5.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "cognito-identity.ca-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "cognito-identity.ca-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "cognito-identity.eu-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "cognito-identity.eu-central-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "cognito-identity.eu-north-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "cognito-identity.eu-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "cognito-identity.eu-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "cognito-identity.eu-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "cognito-identity.eu-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "cognito-identity.eu-west-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cognito-identity-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cognito-identity-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "cognito-identity-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cognito-identity-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "cognito-identity.il-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "cognito-identity.me-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "cognito-identity.me-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "cognito-identity.sa-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "cognito-identity-fips.us-east-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-identity-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-identity.us-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "cognito-identity-fips.us-east-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-identity-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-identity.us-east-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "cognito-identity-fips.us-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-identity-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-identity.us-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "cognito-identity-fips.us-west-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-identity-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-identity.us-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + } + } + }, + "cognito-idp": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "cognito-idp.af-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "cognito-idp.ap-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "cognito-idp.ap-northeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "cognito-idp.ap-northeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "cognito-idp.ap-northeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "cognito-idp.ap-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "cognito-idp.ap-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "cognito-idp.ap-southeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "cognito-idp.ap-southeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "cognito-idp.ap-southeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "cognito-idp.ap-southeast-4.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "cognito-idp.ap-southeast-5.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "cognito-idp.ca-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "cognito-idp.ca-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "cognito-idp.eu-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "cognito-idp.eu-central-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "cognito-idp.eu-north-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "cognito-idp.eu-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "cognito-idp.eu-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "cognito-idp.eu-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "cognito-idp.eu-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "cognito-idp.eu-west-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "cognito-idp-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "cognito-idp-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "cognito-idp-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "cognito-idp-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "cognito-idp.il-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "cognito-idp.me-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "cognito-idp.me-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "cognito-idp.sa-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "cognito-idp-fips.us-east-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-idp-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-idp.us-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "cognito-idp-fips.us-east-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-idp-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-idp.us-east-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "cognito-idp-fips.us-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-idp-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-idp.us-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "cognito-idp-fips.us-west-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-idp-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-idp.us-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + } + } + }, + "cognito-sync": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "comprehend": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "ap-northeast-1": { + "variants": [ + { + "hostname": "comprehend.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "comprehend.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "comprehend.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "comprehend.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "comprehend.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "comprehend-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "comprehend-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "comprehend.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "comprehend.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "comprehend.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "comprehend.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "comprehend-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "comprehend-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "comprehend-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "comprehend-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "comprehend-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "comprehend-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "comprehend.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "comprehend-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "comprehend-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "comprehend.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "comprehend-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "comprehend-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "comprehend.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "comprehendmedical": { + "endpoints": { + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "comprehendmedical-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "comprehendmedical-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "comprehendmedical-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "comprehendmedical-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "comprehendmedical-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "comprehendmedical-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "comprehendmedical-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "comprehendmedical-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "compute-optimizer": { + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "compute-optimizer.af-south-1.amazonaws.com" + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "compute-optimizer.ap-east-1.amazonaws.com" + }, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "compute-optimizer.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "compute-optimizer.ap-northeast-2.amazonaws.com" + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "compute-optimizer.ap-northeast-3.amazonaws.com" + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "compute-optimizer.ap-south-1.amazonaws.com" + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "compute-optimizer.ap-south-2.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "compute-optimizer.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "compute-optimizer.ap-southeast-2.amazonaws.com" + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "compute-optimizer.ap-southeast-3.amazonaws.com" + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "compute-optimizer.ap-southeast-4.amazonaws.com" + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "compute-optimizer.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "compute-optimizer.eu-central-1.amazonaws.com" + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "compute-optimizer.eu-central-2.amazonaws.com" + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "compute-optimizer.eu-north-1.amazonaws.com" + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "compute-optimizer.eu-south-1.amazonaws.com" + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "compute-optimizer.eu-south-2.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "compute-optimizer.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "compute-optimizer.eu-west-2.amazonaws.com" + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "compute-optimizer.eu-west-3.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "compute-optimizer.il-central-1.amazonaws.com" + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "compute-optimizer.me-central-1.amazonaws.com" + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "compute-optimizer.me-south-1.amazonaws.com" + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "compute-optimizer.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "compute-optimizer.us-east-1.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "compute-optimizer.us-east-2.amazonaws.com" + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "compute-optimizer.us-west-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "compute-optimizer.us-west-2.amazonaws.com" + } + } + }, + "config": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "config-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "config-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "config-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "config-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "config-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "config-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "config-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "config-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "connect": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "connect-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "connect-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "connect-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "connect-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "connect-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "connect-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "connect-campaigns": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "connect-campaigns-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "connect-campaigns-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "connect-campaigns-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "connect-campaigns-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "contact-lens": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "controltower": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "controltower-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "controltower-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "controltower-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "controltower-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "controltower-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "controltower-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "controltower-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "controltower-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "controltower-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "controltower-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "controltower-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "controltower-fips.us-west-2.amazonaws.com" + } + } + }, + "cost-optimization-hub": { + "endpoints": { + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "cost-optimization-hub.us-east-1.amazonaws.com" + } + } + }, + "cur": { + "endpoints": { + "us-east-1": {} + } + }, + "data-ats.iot": { + "defaults": { + "credentialScope": { + "service": "iotdata" + }, + "protocols": ["https"] + }, + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "data.iot-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-west-2.amazonaws.com" + }, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "data.iot-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "data.iot-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "data.iot": { + "defaults": { + "credentialScope": { + "service": "iotdata" + }, + "protocols": ["https"] + }, + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "data.iot-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-west-2.amazonaws.com" + }, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "data.iot-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "data.iot-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "data.jobs.iot": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.us-west-2.amazonaws.com" + }, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "data.mediastore": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "databrew": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "databrew-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "databrew-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "databrew-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "databrew-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "databrew-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "databrew-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "databrew-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "databrew-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "dataexchange": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "datapipeline": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "datasync": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "datasync.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "datasync.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "datasync.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "datasync.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "datasync.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "datasync.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "datasync.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "datasync.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "datasync.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "datasync.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "datasync.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "datasync.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "datasync.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "datasync-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "datasync-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "datasync.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "datasync.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "datasync.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "datasync.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "datasync.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "datasync.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "datasync.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "datasync.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "datasync-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "datasync-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "datasync-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "datasync-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "datasync-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "datasync-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "datasync.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "datasync.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "datasync.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "datasync.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "datasync.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "datasync-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "datasync-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "datasync-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "datasync-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "datazone": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "datazone.ap-northeast-1.api.aws" + }, + "ap-northeast-2": { + "hostname": "datazone.ap-northeast-2.api.aws" + }, + "ap-northeast-3": { + "hostname": "datazone.ap-northeast-3.api.aws" + }, + "ap-south-1": { + "hostname": "datazone.ap-south-1.api.aws" + }, + "ap-south-2": { + "hostname": "datazone.ap-south-2.api.aws" + }, + "ap-southeast-1": { + "hostname": "datazone.ap-southeast-1.api.aws" + }, + "ap-southeast-2": { + "hostname": "datazone.ap-southeast-2.api.aws" + }, + "ap-southeast-3": { + "hostname": "datazone.ap-southeast-3.api.aws" + }, + "ap-southeast-4": { + "hostname": "datazone.ap-southeast-4.api.aws" + }, + "ap-southeast-5": { + "hostname": "datazone.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "datazone.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "datazone.ca-central-1.api.aws", + "variants": [ + { + "hostname": "datazone-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "hostname": "datazone.ca-west-1.api.aws" + }, + "eu-central-1": { + "hostname": "datazone.eu-central-1.api.aws" + }, + "eu-central-2": {}, + "eu-north-1": { + "hostname": "datazone.eu-north-1.api.aws" + }, + "eu-south-1": { + "hostname": "datazone.eu-south-1.api.aws" + }, + "eu-west-1": { + "hostname": "datazone.eu-west-1.api.aws" + }, + "eu-west-2": { + "hostname": "datazone.eu-west-2.api.aws" + }, + "eu-west-3": { + "hostname": "datazone.eu-west-3.api.aws" + }, + "il-central-1": { + "hostname": "datazone.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "datazone.me-central-1.api.aws" + }, + "me-south-1": { + "hostname": "datazone.me-south-1.api.aws" + }, + "mx-central-1": { + "hostname": "datazone.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "datazone.sa-east-1.api.aws" + }, + "us-east-1": { + "hostname": "datazone.us-east-1.api.aws", + "variants": [ + { + "hostname": "datazone-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "hostname": "datazone.us-east-2.api.aws", + "variants": [ + { + "hostname": "datazone-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "hostname": "datazone.us-west-1.api.aws" + }, + "us-west-2": { + "hostname": "datazone.us-west-2.api.aws", + "variants": [ + { + "hostname": "datazone-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "dax": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "devicefarm": { + "endpoints": { + "us-west-2": {} + } + }, + "devops-guru": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "devops-guru-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "devops-guru-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "devops-guru-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "devops-guru-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "devops-guru-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "devops-guru-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "devops-guru-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "devops-guru-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "devops-guru-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "devops-guru-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "directconnect": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "directconnect-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "directconnect-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "directconnect-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "directconnect-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "directconnect-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "directconnect-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "directconnect-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "directconnect-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "directconnect-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "directconnect-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "directconnect-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "directconnect-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "discovery": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "dlm": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "dlm.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "dlm.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "dlm.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "dlm.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "dlm.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "dlm.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "dlm.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "dlm.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "dlm.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "dlm.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "dlm.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "dlm.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "dlm.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "dlm-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "dlm-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "dlm.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "dlm.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "dlm.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "dlm.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "dlm.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "dlm.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "dlm.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "dlm.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "dlm.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "dlm.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "dlm.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "dlm.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "dlm.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "dlm-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "dlm-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "dlm-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "dlm-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "dms": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "dms": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "dms-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "dms-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "dms-fips.us-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "dms-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "dms-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "dms-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "dms-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "dms-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "dms-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "dms-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "dms-fips.us-west-2.amazonaws.com" + } + } + }, + "docdb": { + "endpoints": { + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "rds.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "rds.ap-northeast-2.amazonaws.com" + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "rds.ap-south-1.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "rds.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "rds.ap-southeast-2.amazonaws.com" + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "rds.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "rds.eu-central-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "rds.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "rds.eu-west-2.amazonaws.com" + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "rds.eu-west-3.amazonaws.com" + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "rds.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "rds.us-east-1.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "rds.us-east-2.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "rds.us-west-2.amazonaws.com" + } + } + }, + "drs": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "drs-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "drs-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "drs-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "drs-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "drs-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "drs-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "drs-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "drs-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ds": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "ds-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "ds-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ds-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "ds-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ds-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ds-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "ds-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ds-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ds-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ds-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "dynamodb": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "dynamodb-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "dynamodb-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "dynamodb-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "dynamodb-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "local": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "localhost:8000", + "protocols": ["http"] + }, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "dynamodb-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "dynamodb-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "dynamodb-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "dynamodb-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "dynamodb-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "dynamodb-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "dynamodb-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "dynamodb-fips.us-west-2.amazonaws.com" + } + } + }, + "ebs": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "ebs-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "ebs-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ebs-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "ebs-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ebs-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ebs-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ebs-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ebs-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "ebs-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ebs-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ebs-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ebs-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ec2": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "ec2.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "ec2.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "ec2.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "ec2.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": {}, + "ap-south-1": { + "variants": [ + { + "hostname": "ec2.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": {}, + "ap-southeast-1": { + "variants": [ + { + "hostname": "ec2.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "ec2.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "ec2-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ec2.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "ec2-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "ec2.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": {}, + "eu-north-1": { + "variants": [ + { + "hostname": "ec2.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "ec2.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": {}, + "eu-west-1": { + "variants": [ + { + "hostname": "ec2.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "ec2.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "ec2.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ec2-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "ec2-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ec2-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ec2-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ec2-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ec2-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": { + "variants": [ + { + "hostname": "ec2.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "ec2.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "ec2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ec2.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ec2-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ec2.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ec2-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ec2.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ec2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ec2.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "ecs": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ecs-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ecs-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ecs-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ecs-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "ecs-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ecs-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ecs-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ecs-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "edge.sagemaker": { + "endpoints": { + "ap-northeast-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "fips.eks.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "fips.eks.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "fips.eks.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "fips.eks.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "fips.eks.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "fips.eks.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "fips.eks.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "fips.eks.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "fips.eks.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "eks-auth": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "hostname": "eks-auth.af-south-1.api.aws" + }, + "ap-east-1": { + "hostname": "eks-auth.ap-east-1.api.aws" + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "eks-auth.ap-northeast-1.api.aws" + }, + "ap-northeast-2": { + "hostname": "eks-auth.ap-northeast-2.api.aws" + }, + "ap-northeast-3": { + "hostname": "eks-auth.ap-northeast-3.api.aws" + }, + "ap-south-1": { + "hostname": "eks-auth.ap-south-1.api.aws" + }, + "ap-south-2": { + "hostname": "eks-auth.ap-south-2.api.aws" + }, + "ap-southeast-1": { + "hostname": "eks-auth.ap-southeast-1.api.aws" + }, + "ap-southeast-2": { + "hostname": "eks-auth.ap-southeast-2.api.aws" + }, + "ap-southeast-3": { + "hostname": "eks-auth.ap-southeast-3.api.aws" + }, + "ap-southeast-4": { + "hostname": "eks-auth.ap-southeast-4.api.aws" + }, + "ap-southeast-5": { + "hostname": "eks-auth.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "eks-auth.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "eks-auth.ca-central-1.api.aws" + }, + "ca-west-1": { + "hostname": "eks-auth.ca-west-1.api.aws" + }, + "eu-central-1": { + "hostname": "eks-auth.eu-central-1.api.aws" + }, + "eu-central-2": { + "hostname": "eks-auth.eu-central-2.api.aws" + }, + "eu-north-1": { + "hostname": "eks-auth.eu-north-1.api.aws" + }, + "eu-south-1": { + "hostname": "eks-auth.eu-south-1.api.aws" + }, + "eu-south-2": { + "hostname": "eks-auth.eu-south-2.api.aws" + }, + "eu-west-1": { + "hostname": "eks-auth.eu-west-1.api.aws" + }, + "eu-west-2": { + "hostname": "eks-auth.eu-west-2.api.aws" + }, + "eu-west-3": { + "hostname": "eks-auth.eu-west-3.api.aws" + }, + "il-central-1": { + "hostname": "eks-auth.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "eks-auth.me-central-1.api.aws" + }, + "me-south-1": { + "hostname": "eks-auth.me-south-1.api.aws" + }, + "mx-central-1": { + "hostname": "eks-auth.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "eks-auth.sa-east-1.api.aws" + }, + "us-east-1": { + "hostname": "eks-auth.us-east-1.api.aws" + }, + "us-east-2": { + "hostname": "eks-auth.us-east-2.api.aws" + }, + "us-west-1": { + "hostname": "eks-auth.us-west-1.api.aws" + }, + "us-west-2": { + "hostname": "eks-auth.us-west-2.api.aws" + } + } + }, + "elasticache": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "elasticache-fips.us-west-1.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "elasticache-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "elasticache-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "elasticache-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "elasticache-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "elasticache-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "elasticache-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "elasticache-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "elasticache-fips.us-west-2.amazonaws.com" + } + } + }, + "elasticbeanstalk": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "elasticbeanstalk.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": {}, + "eu-west-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "elasticbeanstalk.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "elasticbeanstalk.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "elasticbeanstalk-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "elasticbeanstalk-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "elasticbeanstalk-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "elasticbeanstalk-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": {}, + "me-south-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "elasticbeanstalk-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticbeanstalk-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "elasticbeanstalk.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "elasticbeanstalk-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticbeanstalk-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "elasticbeanstalk.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "elasticbeanstalk-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticbeanstalk-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "elasticbeanstalk.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "elasticbeanstalk-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticbeanstalk-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "elasticbeanstalk.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "elasticfilesystem": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.af-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-northeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-northeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-northeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-southeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-southeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-southeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-southeast-4.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-southeast-5.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ap-southeast-7.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-central-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-north-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-west-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.af-south-1.amazonaws.com" + }, + "fips-ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-east-1.amazonaws.com" + }, + "fips-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-northeast-1.amazonaws.com" + }, + "fips-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-northeast-3.amazonaws.com" + }, + "fips-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-south-1.amazonaws.com" + }, + "fips-ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-south-2.amazonaws.com" + }, + "fips-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-southeast-2.amazonaws.com" + }, + "fips-ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-southeast-3.amazonaws.com" + }, + "fips-ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-southeast-4.amazonaws.com" + }, + "fips-ap-southeast-5": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-southeast-5.amazonaws.com" + }, + "fips-ap-southeast-7": { + "credentialScope": { + "region": "ap-southeast-7" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ap-southeast-7.amazonaws.com" + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.ca-west-1.amazonaws.com" + }, + "fips-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-central-1.amazonaws.com" + }, + "fips-eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-central-2.amazonaws.com" + }, + "fips-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-north-1.amazonaws.com" + }, + "fips-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-south-1.amazonaws.com" + }, + "fips-eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-south-2.amazonaws.com" + }, + "fips-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-west-1.amazonaws.com" + }, + "fips-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-west-2.amazonaws.com" + }, + "fips-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-west-3.amazonaws.com" + }, + "fips-il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.il-central-1.amazonaws.com" + }, + "fips-me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.me-central-1.amazonaws.com" + }, + "fips-me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.me-south-1.amazonaws.com" + }, + "fips-mx-central-1": { + "credentialScope": { + "region": "mx-central-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.mx-central-1.amazonaws.com" + }, + "fips-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.sa-east-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.il-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.me-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.me-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.mx-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.sa-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "elasticloadbalancing": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "elasticloadbalancing-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "elasticloadbalancing-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "elasticloadbalancing-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "elasticloadbalancing-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "elasticloadbalancing-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "elasticloadbalancing-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "elasticloadbalancing-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "elasticloadbalancing-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "elasticmapreduce": { + "defaults": { + "protocols": ["https"], + "sslCommonName": "{region}.{service}.{dnsSuffix}" + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "elasticmapreduce-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "elasticmapreduce-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "sslCommonName": "{service}.{region}.{dnsSuffix}" + }, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "elasticmapreduce-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "elasticmapreduce-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "sslCommonName": "{service}.{region}.{dnsSuffix}", + "variants": [ + { + "hostname": "elasticmapreduce-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "elasticmapreduce-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticmapreduce.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "elasticmapreduce-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "elasticmapreduce-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "elastictranscoder": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "email": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "email-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "email-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "email-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "email-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "email-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "email-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "email-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "email-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "email-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "email-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "emr-containers": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "emr-containers-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "emr-containers-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "emr-containers-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "emr-containers-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "emr-containers-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "emr-containers-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "emr-containers-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "emr-containers-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "emr-containers-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "emr-containers-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "emr-serverless": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "emr-serverless-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "emr-serverless-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "emr-serverless-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "emr-serverless-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "emr-serverless-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "emr-serverless-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "emr-serverless-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "emr-serverless-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "emr-serverless-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "emr-serverless-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "entitlement.marketplace": { + "defaults": { + "credentialScope": { + "service": "aws-marketplace" + } + }, + "endpoints": { + "us-east-1": { + "variants": [ + { + "hostname": "entitlement-marketplace.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "es": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "aos.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "aos.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "aos.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "aos.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "aos.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "aos.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "aos.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "aos.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "aos.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "aos.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "aos.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "aos.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "aos.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "aos.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "aos.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "aos.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "aos.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "aos.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "aos.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "aos.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "aos.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "aos.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "aos.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "es-fips.us-west-1.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "aos.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "aos.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "aos.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "aos.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "aos.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "aos.us-east-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "es-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "es-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "aos.us-east-2.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "es-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "es-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "aos.us-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "es-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "es-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "aos.us-west-2.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "es-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "es-fips.us-west-2.amazonaws.com" + } + } + }, + "events": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "events.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "events.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "events.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "events.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "events.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "events.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "events.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "events.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "events.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "events.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "events.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "events.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "events.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "events.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "events.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "events.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "events.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "events.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "events.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "events.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "events.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "events.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "events.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "events-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "events-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "events-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "events-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "events.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "events.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "events.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "events.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "events.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "events-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "events-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "events.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "events-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "events-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "events.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "events-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "events-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "events.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "events-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "events-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "events.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "evidently": { + "endpoints": { + "ap-northeast-1": { + "hostname": "evidently.ap-northeast-1.amazonaws.com" + }, + "ap-southeast-1": { + "hostname": "evidently.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "hostname": "evidently.ap-southeast-2.amazonaws.com" + }, + "eu-central-1": { + "hostname": "evidently.eu-central-1.amazonaws.com" + }, + "eu-north-1": { + "hostname": "evidently.eu-north-1.amazonaws.com" + }, + "eu-west-1": { + "hostname": "evidently.eu-west-1.amazonaws.com" + }, + "us-east-1": { + "hostname": "evidently.us-east-1.amazonaws.com" + }, + "us-east-2": { + "hostname": "evidently.us-east-2.amazonaws.com" + }, + "us-west-2": { + "hostname": "evidently.us-west-2.amazonaws.com" + } + } + }, + "finspace": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "finspace-api": { + "endpoints": { + "ca-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "firehose": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "firehose.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "firehose.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "firehose.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "firehose.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "firehose.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "firehose.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "firehose.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "firehose.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "firehose.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "firehose.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "firehose.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "firehose.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "firehose.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "firehose.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "firehose.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "firehose.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "firehose.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "firehose.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "firehose.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "firehose.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "firehose.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "firehose.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "firehose-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "firehose-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "firehose-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "firehose-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "firehose.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "firehose.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "firehose.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "firehose.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "firehose.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "firehose-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "firehose-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "firehose.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "firehose-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "firehose-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "firehose.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "firehose-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "firehose-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "firehose.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "firehose-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "firehose-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "firehose.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "fms": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "fms-fips.af-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "fms-fips.ap-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "fms-fips.ap-northeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "fms-fips.ap-northeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-3": {}, + "ap-south-1": { + "variants": [ + { + "hostname": "fms-fips.ap-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-2": {}, + "ap-southeast-1": { + "variants": [ + { + "hostname": "fms-fips.ap-southeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "fms-fips.ap-southeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "fms-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "fms-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "fms-fips.eu-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": { + "variants": [ + { + "hostname": "fms-fips.eu-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-2": {}, + "eu-west-1": { + "variants": [ + { + "hostname": "fms-fips.eu-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "fms-fips.eu-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "fms-fips.eu-west-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "deprecated": true, + "hostname": "fms-fips.af-south-1.amazonaws.com" + }, + "fips-ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "deprecated": true, + "hostname": "fms-fips.ap-east-1.amazonaws.com" + }, + "fips-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "deprecated": true, + "hostname": "fms-fips.ap-northeast-1.amazonaws.com" + }, + "fips-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "deprecated": true, + "hostname": "fms-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "deprecated": true, + "hostname": "fms-fips.ap-south-1.amazonaws.com" + }, + "fips-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "deprecated": true, + "hostname": "fms-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "deprecated": true, + "hostname": "fms-fips.ap-southeast-2.amazonaws.com" + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "fms-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "fms-fips.ca-west-1.amazonaws.com" + }, + "fips-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "deprecated": true, + "hostname": "fms-fips.eu-central-1.amazonaws.com" + }, + "fips-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "deprecated": true, + "hostname": "fms-fips.eu-south-1.amazonaws.com" + }, + "fips-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "deprecated": true, + "hostname": "fms-fips.eu-west-1.amazonaws.com" + }, + "fips-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "deprecated": true, + "hostname": "fms-fips.eu-west-2.amazonaws.com" + }, + "fips-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "deprecated": true, + "hostname": "fms-fips.eu-west-3.amazonaws.com" + }, + "fips-me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "deprecated": true, + "hostname": "fms-fips.me-south-1.amazonaws.com" + }, + "fips-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "deprecated": true, + "hostname": "fms-fips.sa-east-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "fms-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "fms-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "fms-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "fms-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": { + "variants": [ + { + "hostname": "fms-fips.me-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "fms-fips.sa-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "fms-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "fms-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "fms-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "fms-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "forecast": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "forecast-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "forecast-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "forecast-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "forecast-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "forecast-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "forecast-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "forecastquery": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "forecastquery-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "forecastquery-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "forecastquery-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "forecastquery-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "forecastquery-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "forecastquery-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "frauddetector": { + "endpoints": { + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "fsx": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "fsx-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "fsx-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "fsx-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "fsx-fips.ca-west-1.amazonaws.com" + }, + "fips-prod-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "fsx-fips.ca-central-1.amazonaws.com" + }, + "fips-prod-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "fsx-fips.ca-west-1.amazonaws.com" + }, + "fips-prod-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-east-1.amazonaws.com" + }, + "fips-prod-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "fsx-fips.us-east-2.amazonaws.com" + }, + "fips-prod-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-west-1.amazonaws.com" + }, + "fips-prod-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "fsx-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "fsx-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "fsx-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "prod-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "prod-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "prod-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "prod-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "prod-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "prod-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "fsx-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "fsx-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "fsx-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "fsx-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "gamelift": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "gameliftstreams": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "hostname": "gameliftstreams.af-south-1.api.aws" + }, + "ap-east-1": { + "hostname": "gameliftstreams.ap-east-1.api.aws" + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "gameliftstreams.ap-northeast-1.api.aws" + }, + "ap-northeast-2": { + "hostname": "gameliftstreams.ap-northeast-2.api.aws" + }, + "ap-northeast-3": { + "hostname": "gameliftstreams.ap-northeast-3.api.aws" + }, + "ap-south-1": { + "hostname": "gameliftstreams.ap-south-1.api.aws" + }, + "ap-south-2": { + "hostname": "gameliftstreams.ap-south-2.api.aws" + }, + "ap-southeast-1": { + "hostname": "gameliftstreams.ap-southeast-1.api.aws" + }, + "ap-southeast-2": { + "hostname": "gameliftstreams.ap-southeast-2.api.aws" + }, + "ap-southeast-3": { + "hostname": "gameliftstreams.ap-southeast-3.api.aws" + }, + "ap-southeast-4": { + "hostname": "gameliftstreams.ap-southeast-4.api.aws" + }, + "ap-southeast-5": { + "hostname": "gameliftstreams.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "gameliftstreams.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "gameliftstreams.ca-central-1.api.aws" + }, + "ca-west-1": { + "hostname": "gameliftstreams.ca-west-1.api.aws" + }, + "eu-central-1": { + "hostname": "gameliftstreams.eu-central-1.api.aws" + }, + "eu-central-2": { + "hostname": "gameliftstreams.eu-central-2.api.aws" + }, + "eu-north-1": { + "hostname": "gameliftstreams.eu-north-1.api.aws" + }, + "eu-south-1": { + "hostname": "gameliftstreams.eu-south-1.api.aws" + }, + "eu-south-2": { + "hostname": "gameliftstreams.eu-south-2.api.aws" + }, + "eu-west-1": { + "hostname": "gameliftstreams.eu-west-1.api.aws" + }, + "eu-west-2": { + "hostname": "gameliftstreams.eu-west-2.api.aws" + }, + "eu-west-3": { + "hostname": "gameliftstreams.eu-west-3.api.aws" + }, + "il-central-1": { + "hostname": "gameliftstreams.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "gameliftstreams.me-central-1.api.aws" + }, + "me-south-1": { + "hostname": "gameliftstreams.me-south-1.api.aws" + }, + "mx-central-1": { + "hostname": "gameliftstreams.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "gameliftstreams.sa-east-1.api.aws" + }, + "us-east-1": { + "hostname": "gameliftstreams.us-east-1.api.aws" + }, + "us-east-2": { + "hostname": "gameliftstreams.us-east-2.api.aws" + }, + "us-west-1": { + "hostname": "gameliftstreams.us-west-1.api.aws" + }, + "us-west-2": { + "hostname": "gameliftstreams.us-west-2.api.aws" + } + } + }, + "geo": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "glacier": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "glacier-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "glacier-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "glacier-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "glacier-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "glacier-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "glacier-fips.us-west-2.amazonaws.com" + }, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "glacier-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "glacier-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "glacier-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "glacier-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "globalaccelerator": { + "endpoints": { + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "globalaccelerator-fips.us-west-2.amazonaws.com" + } + } + }, + "glue": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "glue.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "glue.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "glue.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "glue.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "glue.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "glue.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "glue.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "glue.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "glue.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "glue.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "glue.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "glue.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-7": { + "variants": [ + { + "hostname": "glue.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "glue.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "glue.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "glue.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "glue.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "glue.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "glue.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "glue.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "glue.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "glue.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "glue.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "glue-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "glue-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "glue-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "glue-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "glue.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "glue.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "glue.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "glue.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "glue.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "glue-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "glue-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "glue.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "glue-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "glue-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "glue.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "glue-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "glue-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "glue.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "glue-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "glue-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "glue.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "grafana": { + "endpoints": { + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "grafana.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "grafana.ap-northeast-2.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "grafana.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "grafana.ap-southeast-2.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "grafana.eu-central-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "grafana.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "grafana.eu-west-2.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "grafana.us-east-1.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "grafana.us-east-2.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "grafana.us-west-2.amazonaws.com" + } + } + }, + "greengrass": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "greengrass-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "greengrass-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "greengrass-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "greengrass-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "greengrass-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "greengrass-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "greengrass-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "greengrass-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + }, + "isRegionalized": true + }, + "groundstation": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "groundstation-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "groundstation-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "groundstation-fips.us-west-2.amazonaws.com" + }, + "me-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "groundstation-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "groundstation-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "groundstation-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "groundstation-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "groundstation-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "groundstation-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + } + } + }, + "guardduty": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": { + "variants": [ + { + "hostname": "guardduty-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "guardduty-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "guardduty-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "guardduty-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "guardduty-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "guardduty-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "guardduty-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "guardduty-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "guardduty-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "guardduty-fips.us-west-2.amazonaws.com" + } + }, + "isRegionalized": true + }, + "health": { + "defaults": { + "protocols": ["https"], + "sslCommonName": "health.us-east-1.amazonaws.com" + }, + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "global.health.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "health-fips.us-east-2.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "health-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "healthlake": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "ap-south-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "iam": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "iam.amazonaws.com", + "variants": [ + { + "hostname": "iam-fips.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "iam.global.api.aws", + "tags": ["dualstack"] + } + ] + }, + "aws-global-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "iam-fips.amazonaws.com" + }, + "iam": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "iam-fips.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "iam-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "iam-fips.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "identity-chime": { + "endpoints": { + "eu-central-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "identity-chime-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "identity-chime-fips.us-east-1.amazonaws.com" + } + } + }, + "identitystore": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "importexport": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1", + "service": "IngestionService" + }, + "hostname": "importexport.amazonaws.com", + "signatureVersions": ["v2", "v4"] + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "ingest.timestream": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "ingest-fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ingest.timestream-fips.us-east-1.amazonaws.com" + }, + "ingest-fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ingest.timestream-fips.us-east-2.amazonaws.com" + }, + "ingest-fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ingest.timestream-fips.us-west-2.amazonaws.com" + }, + "ingest-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ingest.timestream-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ingest-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ingest.timestream-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ingest-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ingest.timestream-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "inspector": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "inspector-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "inspector-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "inspector-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "inspector-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "inspector-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "inspector-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "inspector-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "inspector-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "inspector2": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "inspector2-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "inspector2-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "inspector2-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "inspector2-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "inspector2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "inspector2-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "inspector2-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "inspector2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "internetmonitor": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "hostname": "internetmonitor.af-south-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "hostname": "internetmonitor.ap-east-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "internetmonitor.ap-northeast-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "hostname": "internetmonitor.ap-northeast-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "hostname": "internetmonitor.ap-northeast-3.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "hostname": "internetmonitor.ap-south-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "hostname": "internetmonitor.ap-south-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "hostname": "internetmonitor.ap-southeast-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "hostname": "internetmonitor.ap-southeast-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "hostname": "internetmonitor.ap-southeast-3.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "hostname": "internetmonitor.ap-southeast-4.api.aws", + "variants": [ + { + "hostname": "internetmonitor.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "hostname": "internetmonitor.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "internetmonitor.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "internetmonitor.ca-central-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "internetmonitor-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "internetmonitor.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "hostname": "internetmonitor.ca-west-1.api.aws" + }, + "eu-central-1": { + "hostname": "internetmonitor.eu-central-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "hostname": "internetmonitor.eu-central-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "hostname": "internetmonitor.eu-north-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "hostname": "internetmonitor.eu-south-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "hostname": "internetmonitor.eu-south-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "hostname": "internetmonitor.eu-west-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "hostname": "internetmonitor.eu-west-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "hostname": "internetmonitor.eu-west-3.api.aws", + "variants": [ + { + "hostname": "internetmonitor.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "hostname": "internetmonitor.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "internetmonitor.me-central-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "hostname": "internetmonitor.me-south-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "hostname": "internetmonitor.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "internetmonitor.sa-east-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "hostname": "internetmonitor.us-east-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "internetmonitor-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "internetmonitor.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "hostname": "internetmonitor.us-east-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "internetmonitor-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "internetmonitor.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "hostname": "internetmonitor.us-west-1.api.aws", + "variants": [ + { + "hostname": "internetmonitor-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "internetmonitor-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "internetmonitor.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "hostname": "internetmonitor.us-west-2.api.aws", + "variants": [ + { + "hostname": "internetmonitor-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "internetmonitor-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "internetmonitor.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "iot": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "iot-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "deprecated": true, + "hostname": "iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "deprecated": true, + "hostname": "iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "deprecated": true, + "hostname": "iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "deprecated": true, + "hostname": "iot-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "deprecated": true, + "hostname": "iot-fips.us-west-2.amazonaws.com" + }, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "iot-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "iot-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "iot-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "iot-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotanalytics": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "iotevents": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "iotevents-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "iotevents-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "iotevents-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "iotevents-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "iotevents-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "iotevents-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "iotevents-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "iotevents-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ioteventsdata": { + "endpoints": { + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "data.iotevents.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "data.iotevents.ap-northeast-2.amazonaws.com" + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "data.iotevents.ap-south-1.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "data.iotevents.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "data.iotevents.ap-southeast-2.amazonaws.com" + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "data.iotevents.ca-central-1.amazonaws.com", + "variants": [ + { + "hostname": "data.iotevents-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "data.iotevents.eu-central-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "data.iotevents.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "data.iotevents.eu-west-2.amazonaws.com" + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "data.iotevents-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "data.iotevents-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "data.iotevents-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "data.iotevents-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "data.iotevents.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "data.iotevents-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "data.iotevents.us-east-2.amazonaws.com", + "variants": [ + { + "hostname": "data.iotevents-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "data.iotevents.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "data.iotevents-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotfleetwise": { + "endpoints": { + "ap-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + } + } + }, + "iotsecuredtunneling": { + "defaults": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-west-2.amazonaws.com" + }, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotsitewise": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "iotsitewise-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-1": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "iotsitewise-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "iotsitewise-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "iotsitewise-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "iotsitewise-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "iotsitewise-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "iotsitewise-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "iotsitewise-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotthingsgraph": { + "defaults": { + "credentialScope": { + "service": "iotthingsgraph" + } + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "iottwinmaker": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "api-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "api.iottwinmaker.ap-northeast-1.amazonaws.com" + }, + "api-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "api.iottwinmaker.ap-northeast-2.amazonaws.com" + }, + "api-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "api.iottwinmaker.ap-south-1.amazonaws.com" + }, + "api-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "api.iottwinmaker.ap-southeast-1.amazonaws.com" + }, + "api-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "api.iottwinmaker.ap-southeast-2.amazonaws.com" + }, + "api-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "api.iottwinmaker.eu-central-1.amazonaws.com" + }, + "api-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "api.iottwinmaker.eu-west-1.amazonaws.com" + }, + "api-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.iottwinmaker.us-east-1.amazonaws.com" + }, + "api-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.iottwinmaker.us-west-2.amazonaws.com" + }, + "data-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "data.iottwinmaker.ap-northeast-1.amazonaws.com" + }, + "data-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "data.iottwinmaker.ap-northeast-2.amazonaws.com" + }, + "data-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "data.iottwinmaker.ap-south-1.amazonaws.com" + }, + "data-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "data.iottwinmaker.ap-southeast-1.amazonaws.com" + }, + "data-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "data.iottwinmaker.ap-southeast-2.amazonaws.com" + }, + "data-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "data.iottwinmaker.eu-central-1.amazonaws.com" + }, + "data-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "data.iottwinmaker.eu-west-1.amazonaws.com" + }, + "data-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "data.iottwinmaker.us-east-1.amazonaws.com" + }, + "data-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "data.iottwinmaker.us-west-2.amazonaws.com" + }, + "eu-central-1": {}, + "eu-west-1": {}, + "fips-api-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.iottwinmaker-fips.us-east-1.amazonaws.com" + }, + "fips-api-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.iottwinmaker-fips.us-west-2.amazonaws.com" + }, + "fips-data-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "data.iottwinmaker-fips.us-east-1.amazonaws.com" + }, + "fips-data-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "data.iottwinmaker-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "iottwinmaker-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "iottwinmaker-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "iottwinmaker-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "iottwinmaker-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotwireless": { + "endpoints": { + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "api.iotwireless.ap-northeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "api.iotwireless.ap-southeast-2.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "api.iotwireless.eu-west-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "api.iotwireless.us-east-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "api.iotwireless.us-west-2.amazonaws.com" + } + } + }, + "ivs": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "ivschat": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "ivsrealtime": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "kafka": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "kafka-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "kafka-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "kafka-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "kafka-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "kafka-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "kafka-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "kafka-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "kafka-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "kafka-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "kafka-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "kafka-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "kafka-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kafkaconnect": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "kendra": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "kendra-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "kendra-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "kendra-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "kendra-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "kendra-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "kendra-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "kendra-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "kendra-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kendra-ranking": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "hostname": "kendra-ranking.af-south-1.api.aws" + }, + "ap-east-1": { + "hostname": "kendra-ranking.ap-east-1.api.aws" + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "kendra-ranking.ap-northeast-1.api.aws" + }, + "ap-northeast-2": { + "hostname": "kendra-ranking.ap-northeast-2.api.aws" + }, + "ap-northeast-3": { + "hostname": "kendra-ranking.ap-northeast-3.api.aws" + }, + "ap-south-1": { + "hostname": "kendra-ranking.ap-south-1.api.aws" + }, + "ap-south-2": { + "hostname": "kendra-ranking.ap-south-2.api.aws" + }, + "ap-southeast-1": { + "hostname": "kendra-ranking.ap-southeast-1.api.aws" + }, + "ap-southeast-2": { + "hostname": "kendra-ranking.ap-southeast-2.api.aws" + }, + "ap-southeast-3": { + "hostname": "kendra-ranking.ap-southeast-3.api.aws" + }, + "ap-southeast-4": { + "hostname": "kendra-ranking.ap-southeast-4.api.aws" + }, + "ap-southeast-5": { + "hostname": "kendra-ranking.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "kendra-ranking.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "kendra-ranking.ca-central-1.api.aws", + "variants": [ + { + "hostname": "kendra-ranking-fips.ca-central-1.api.aws", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "hostname": "kendra-ranking.ca-west-1.api.aws" + }, + "eu-central-2": { + "hostname": "kendra-ranking.eu-central-2.api.aws" + }, + "eu-north-1": { + "hostname": "kendra-ranking.eu-north-1.api.aws" + }, + "eu-south-1": { + "hostname": "kendra-ranking.eu-south-1.api.aws" + }, + "eu-south-2": { + "hostname": "kendra-ranking.eu-south-2.api.aws" + }, + "eu-west-1": { + "hostname": "kendra-ranking.eu-west-1.api.aws" + }, + "eu-west-3": { + "hostname": "kendra-ranking.eu-west-3.api.aws" + }, + "il-central-1": { + "hostname": "kendra-ranking.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "kendra-ranking.me-central-1.api.aws" + }, + "me-south-1": { + "hostname": "kendra-ranking.me-south-1.api.aws" + }, + "mx-central-1": { + "hostname": "kendra-ranking.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "kendra-ranking.sa-east-1.api.aws" + }, + "us-east-1": { + "hostname": "kendra-ranking.us-east-1.api.aws", + "variants": [ + { + "hostname": "kendra-ranking-fips.us-east-1.api.aws", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "hostname": "kendra-ranking.us-east-2.api.aws", + "variants": [ + { + "hostname": "kendra-ranking-fips.us-east-2.api.aws", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "hostname": "kendra-ranking.us-west-1.api.aws" + }, + "us-west-2": { + "hostname": "kendra-ranking.us-west-2.api.aws", + "variants": [ + { + "hostname": "kendra-ranking-fips.us-west-2.api.aws", + "tags": ["fips"] + } + ] + } + } + }, + "kinesis": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "kinesis-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "kinesis-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "kinesis-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "kinesis-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "kinesis-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "kinesis-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "kinesis-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "kinesis-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kinesisanalytics": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kinesisvideo": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-5": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "kms": { + "endpoints": { + "ProdFips": { + "credentialScope": { + "region": "eu-central-2" + }, + "deprecated": true, + "hostname": "kms-fips.eu-central-2.amazonaws.com" + }, + "af-south-1": { + "variants": [ + { + "hostname": "kms-fips.af-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "af-south-1-fips": { + "credentialScope": { + "region": "af-south-1" + }, + "deprecated": true, + "hostname": "kms-fips.af-south-1.amazonaws.com" + }, + "ap-east-1": { + "variants": [ + { + "hostname": "kms-fips.ap-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-1-fips": { + "credentialScope": { + "region": "ap-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.ap-east-1.amazonaws.com" + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "kms-fips.ap-northeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-1-fips": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "deprecated": true, + "hostname": "kms-fips.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "kms-fips.ap-northeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-2-fips": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "deprecated": true, + "hostname": "kms-fips.ap-northeast-2.amazonaws.com" + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "kms-fips.ap-northeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-3-fips": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "deprecated": true, + "hostname": "kms-fips.ap-northeast-3.amazonaws.com" + }, + "ap-south-1": { + "variants": [ + { + "hostname": "kms-fips.ap-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-1-fips": { + "credentialScope": { + "region": "ap-south-1" + }, + "deprecated": true, + "hostname": "kms-fips.ap-south-1.amazonaws.com" + }, + "ap-south-2": { + "variants": [ + { + "hostname": "kms-fips.ap-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-2-fips": { + "credentialScope": { + "region": "ap-south-2" + }, + "deprecated": true, + "hostname": "kms-fips.ap-south-2.amazonaws.com" + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "kms-fips.ap-southeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-1-fips": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "deprecated": true, + "hostname": "kms-fips.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "kms-fips.ap-southeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-2-fips": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "deprecated": true, + "hostname": "kms-fips.ap-southeast-2.amazonaws.com" + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "kms-fips.ap-southeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-3-fips": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "deprecated": true, + "hostname": "kms-fips.ap-southeast-3.amazonaws.com" + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "kms-fips.ap-southeast-4.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-4-fips": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "deprecated": true, + "hostname": "kms-fips.ap-southeast-4.amazonaws.com" + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "kms-fips.ap-southeast-5.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-5-fips": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "deprecated": true, + "hostname": "kms-fips.ap-southeast-5.amazonaws.com" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "kms-fips.ap-southeast-7.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-7-fips": { + "credentialScope": { + "region": "ap-southeast-7" + }, + "deprecated": true, + "hostname": "kms-fips.ap-southeast-7.amazonaws.com" + }, + "ca-central-1": { + "variants": [ + { + "hostname": "kms-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "kms-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "kms-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": { + "variants": [ + { + "hostname": "kms-fips.eu-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1-fips": { + "credentialScope": { + "region": "eu-central-1" + }, + "deprecated": true, + "hostname": "kms-fips.eu-central-1.amazonaws.com" + }, + "eu-central-2": { + "variants": [ + { + "hostname": "kms-fips.eu-central-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-2-fips": { + "credentialScope": { + "region": "eu-central-2" + }, + "deprecated": true, + "hostname": "kms-fips.eu-central-2.amazonaws.com" + }, + "eu-north-1": { + "variants": [ + { + "hostname": "kms-fips.eu-north-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-north-1-fips": { + "credentialScope": { + "region": "eu-north-1" + }, + "deprecated": true, + "hostname": "kms-fips.eu-north-1.amazonaws.com" + }, + "eu-south-1": { + "variants": [ + { + "hostname": "kms-fips.eu-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-1-fips": { + "credentialScope": { + "region": "eu-south-1" + }, + "deprecated": true, + "hostname": "kms-fips.eu-south-1.amazonaws.com" + }, + "eu-south-2": { + "variants": [ + { + "hostname": "kms-fips.eu-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-2-fips": { + "credentialScope": { + "region": "eu-south-2" + }, + "deprecated": true, + "hostname": "kms-fips.eu-south-2.amazonaws.com" + }, + "eu-west-1": { + "variants": [ + { + "hostname": "kms-fips.eu-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-1-fips": { + "credentialScope": { + "region": "eu-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "variants": [ + { + "hostname": "kms-fips.eu-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-2-fips": { + "credentialScope": { + "region": "eu-west-2" + }, + "deprecated": true, + "hostname": "kms-fips.eu-west-2.amazonaws.com" + }, + "eu-west-3": { + "variants": [ + { + "hostname": "kms-fips.eu-west-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-3-fips": { + "credentialScope": { + "region": "eu-west-3" + }, + "deprecated": true, + "hostname": "kms-fips.eu-west-3.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "kms-fips.il-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "il-central-1-fips": { + "credentialScope": { + "region": "il-central-1" + }, + "deprecated": true, + "hostname": "kms-fips.il-central-1.amazonaws.com" + }, + "me-central-1": { + "variants": [ + { + "hostname": "kms-fips.me-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-central-1-fips": { + "credentialScope": { + "region": "me-central-1" + }, + "deprecated": true, + "hostname": "kms-fips.me-central-1.amazonaws.com" + }, + "me-south-1": { + "variants": [ + { + "hostname": "kms-fips.me-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-south-1-fips": { + "credentialScope": { + "region": "me-south-1" + }, + "deprecated": true, + "hostname": "kms-fips.me-south-1.amazonaws.com" + }, + "mx-central-1": { + "variants": [ + { + "hostname": "kms-fips.mx-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "mx-central-1-fips": { + "credentialScope": { + "region": "mx-central-1" + }, + "deprecated": true, + "hostname": "kms-fips.mx-central-1.amazonaws.com" + }, + "sa-east-1": { + "variants": [ + { + "hostname": "kms-fips.sa-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "sa-east-1-fips": { + "credentialScope": { + "region": "sa-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "kms-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "kms-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "kms-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "kms-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "kms-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "kms-fips.us-west-2.amazonaws.com" + } + } + }, + "lakeformation": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "lakeformation.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "lakeformation.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "lakeformation.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "lakeformation.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "lakeformation.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "lakeformation.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "lakeformation.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "lakeformation.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "lakeformation.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "lakeformation.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "lakeformation.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "lakeformation.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-7": { + "variants": [ + { + "hostname": "lakeformation.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "lakeformation.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "lakeformation.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "lakeformation.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "lakeformation.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "lakeformation.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "lakeformation.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "lakeformation.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "lakeformation.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "lakeformation.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "lakeformation.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "lakeformation-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "lakeformation-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "lakeformation-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "lakeformation-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "lakeformation.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "lakeformation.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "lakeformation.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "lakeformation.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "lakeformation.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "lakeformation-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lakeformation-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "lakeformation.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "lakeformation-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lakeformation-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "lakeformation.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "lakeformation-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lakeformation-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "lakeformation.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "lakeformation-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lakeformation-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "lakeformation.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "lambda": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "lambda.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "lambda.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "lambda.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "lambda.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "lambda.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "lambda.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "lambda.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "lambda.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "lambda.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "lambda.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "lambda.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "lambda.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "lambda.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "lambda.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "lambda.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "lambda.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "lambda.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "lambda.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "lambda.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "lambda.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "lambda.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "lambda.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "lambda.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "lambda-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "lambda-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "lambda-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "lambda-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "lambda.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "lambda.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "lambda.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "lambda.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "lambda.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "lambda-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lambda.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "lambda-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lambda.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "lambda-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lambda.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "lambda-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lambda.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "license-manager": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "license-manager-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "license-manager-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "license-manager-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "license-manager-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "license-manager-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "license-manager-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "license-manager-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "license-manager-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "license-manager-linux-subscriptions": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "license-manager-linux-subscriptions-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "license-manager-linux-subscriptions-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "license-manager-linux-subscriptions-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "license-manager-linux-subscriptions-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "license-manager-linux-subscriptions-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "license-manager-linux-subscriptions-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "license-manager-linux-subscriptions-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "license-manager-linux-subscriptions-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "license-manager-user-subscriptions": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "license-manager-user-subscriptions-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "license-manager-user-subscriptions-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "license-manager-user-subscriptions-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "license-manager-user-subscriptions-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "license-manager-user-subscriptions-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "license-manager-user-subscriptions-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "license-manager-user-subscriptions-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "license-manager-user-subscriptions-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "lightsail": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "logs": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "logs.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "logs.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "logs.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "logs.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "logs.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "logs.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "logs.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "logs.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "logs.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "logs.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "logs.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "logs-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "logs-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "logs.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "logs.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "logs.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "logs.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "logs.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "logs.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "logs.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "logs.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "logs-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "logs-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "logs-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "logs-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "logs-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "logs-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "logs.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "logs.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "logs.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "logs.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "logs-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "logs-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "logs-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "logs-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "lookoutequipment": { + "endpoints": { + "ap-northeast-2": {}, + "eu-west-1": {}, + "us-east-1": {} + } + }, + "m2": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "deprecated": true + }, + "fips-us-east-1": { + "deprecated": true + }, + "fips-us-east-2": { + "deprecated": true + }, + "fips-us-west-1": { + "deprecated": true + }, + "fips-us-west-2": { + "deprecated": true + }, + "il-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["fips"] + } + ] + } + } + }, + "machinelearning": { + "endpoints": { + "eu-west-1": {}, + "us-east-1": {} + } + }, + "macie2": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "macie2.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "macie2.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "macie2.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "macie2.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "macie2.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "macie2.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "macie2.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "macie2.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "macie2.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "macie2.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "macie2.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "macie2.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "macie2.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "macie2.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "macie2.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "macie2-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "macie2-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "macie2-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "macie2-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "macie2.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "macie2.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "macie2.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "macie2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "macie2-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "macie2.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "macie2-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "macie2-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "macie2.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "macie2-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "macie2-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "macie2.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "macie2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "macie2-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "macie2.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "managedblockchain": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {} + } + }, + "managedblockchain-query": { + "endpoints": { + "us-east-1": {} + } + }, + "marketplacecommerceanalytics": { + "endpoints": { + "us-east-1": {} + } + }, + "media-pipelines-chime": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-2": {}, + "us-east-1": { + "variants": [ + { + "hostname": "media-pipelines-chime-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "media-pipelines-chime-fips.us-east-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "media-pipelines-chime-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "media-pipelines-chime-fips.us-west-2.amazonaws.com" + } + } + }, + "mediaconnect": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "mediaconvert": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "mediaconvert.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "mediaconvert.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "mediaconvert.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "mediaconvert.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "mediaconvert.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "mediaconvert.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "mediaconvert.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "mediaconvert.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "mediaconvert-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "mediaconvert-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "mediaconvert.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "mediaconvert.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "mediaconvert.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "mediaconvert.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "mediaconvert.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "mediaconvert.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "mediaconvert-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "mediaconvert-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "mediaconvert-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "mediaconvert-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "mediaconvert-fips.us-west-2.amazonaws.com" + }, + "me-central-1": { + "variants": [ + { + "hostname": "mediaconvert.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "mediaconvert.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "mediaconvert-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "mediaconvert-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "mediaconvert.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "mediaconvert-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "mediaconvert-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "mediaconvert.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "mediaconvert-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "mediaconvert-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "mediaconvert.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "mediaconvert-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "mediaconvert-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "mediaconvert.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "medialive": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "medialive-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "medialive-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "medialive-fips.us-west-2.amazonaws.com" + }, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "medialive-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "medialive-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "medialive-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "mediapackage": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "mediapackage-vod": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "mediapackagev2": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-4": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "mediapackagev2-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "mediapackagev2-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "mediapackagev2-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "mediapackagev2-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "mediapackagev2-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "mediapackagev2-fips.us-west-2.amazonaws.com" + }, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "mediapackagev2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "mediapackagev2-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "mediapackagev2-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "mediapackagev2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "mediastore": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "meetings-chime": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "meetings-chime-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "meetings-chime-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-west-2": {}, + "il-central-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "meetings-chime-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "meetings-chime-fips.us-east-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "meetings-chime-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "meetings-chime-fips.us-west-2.amazonaws.com" + } + } + }, + "memory-db": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "memory-db-fips.us-west-1.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "messaging-chime": { + "endpoints": { + "eu-central-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "messaging-chime-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "messaging-chime-fips.us-east-1.amazonaws.com" + } + } + }, + "metering.marketplace": { + "defaults": { + "credentialScope": { + "service": "aws-marketplace" + } + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "metering-marketplace.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "metering-marketplace.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "metering-marketplace.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "metering-marketplace.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "metering-marketplace.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "metering-marketplace.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "metering-marketplace.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "metering-marketplace.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "metering-marketplace.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "metering-marketplace.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "metering-marketplace.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "metering-marketplace.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "metering-marketplace.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "metering-marketplace.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "metering-marketplace.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "metering-marketplace.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "metering-marketplace.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "metering-marketplace.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "metering-marketplace.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "metering-marketplace.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "metering-marketplace.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "metering-marketplace.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "metering-marketplace.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "metering-marketplace.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "metering-marketplace.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "metering-marketplace.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "metering-marketplace.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "metering-marketplace.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "metrics.sagemaker": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "metrics-fips.sagemaker.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "metrics-fips.sagemaker.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "metrics-fips.sagemaker.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "metrics-fips.sagemaker.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "metrics-fips.sagemaker.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "metrics-fips.sagemaker.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "metrics-fips.sagemaker.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "metrics-fips.sagemaker.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "metrics-fips.sagemaker.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "metrics-fips.sagemaker.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "metrics-fips.sagemaker.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "metrics-fips.sagemaker.us-west-2.amazonaws.com" + } + } + }, + "mgh": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "mgn": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "mgn-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "mgn-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "mgn-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "mgn-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "mgn-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "mgn-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "mgn-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "mgn-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "migrationhub-orchestrator": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "migrationhub-strategy": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "mobileanalytics": { + "endpoints": { + "us-east-1": {} + } + }, + "models-v2-lex": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "models.lex": { + "defaults": { + "credentialScope": { + "service": "lex" + }, + "variants": [ + { + "hostname": "models-fips.lex.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": { + "variants": [ + { + "hostname": "models-fips.lex.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "models-fips.lex.us-east-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "models-fips.lex.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "models-fips.lex.us-west-2.amazonaws.com" + } + } + }, + "monitoring": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "monitoring-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "monitoring-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "monitoring-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "monitoring-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "monitoring-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "monitoring-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "monitoring-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "monitoring-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "mq": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "mq-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "mq-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "mq-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "mq-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "mq-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "mq-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "mq-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "mq-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "mturk-requester": { + "endpoints": { + "sandbox": { + "hostname": "mturk-requester-sandbox.us-east-1.amazonaws.com" + }, + "us-east-1": {} + }, + "isRegionalized": false + }, + "neptune": { + "endpoints": { + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "rds.ap-east-1.amazonaws.com" + }, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "rds.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "rds.ap-northeast-2.amazonaws.com" + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "rds.ap-south-1.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "rds.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "rds.ap-southeast-2.amazonaws.com" + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "rds.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "rds.eu-central-1.amazonaws.com" + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "rds.eu-north-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "rds.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "rds.eu-west-2.amazonaws.com" + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "rds.eu-west-3.amazonaws.com" + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "rds.me-south-1.amazonaws.com" + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "rds.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "rds.us-east-1.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "rds.us-east-2.amazonaws.com" + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "rds.us-west-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "rds.us-west-2.amazonaws.com" + } + } + }, + "network-firewall": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "network-firewall-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "network-firewall-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "network-firewall-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "network-firewall-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "network-firewall-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "network-firewall-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "network-firewall-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "network-firewall-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "network-firewall-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "network-firewall-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "networkmanager": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "networkmanager.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "networkmanager-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "networkmanager-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "networkmanager.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-aws-global": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "networkmanager-fips.us-west-2.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "notifications": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "hostname": "notifications.af-south-1.api.aws" + }, + "ap-east-1": { + "hostname": "notifications.ap-east-1.api.aws" + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "notifications.ap-northeast-1.api.aws" + }, + "ap-northeast-2": { + "hostname": "notifications.ap-northeast-2.api.aws" + }, + "ap-northeast-3": { + "hostname": "notifications.ap-northeast-3.api.aws" + }, + "ap-south-1": { + "hostname": "notifications.ap-south-1.api.aws" + }, + "ap-south-2": { + "hostname": "notifications.ap-south-2.api.aws" + }, + "ap-southeast-1": { + "hostname": "notifications.ap-southeast-1.api.aws" + }, + "ap-southeast-2": { + "hostname": "notifications.ap-southeast-2.api.aws" + }, + "ap-southeast-3": { + "hostname": "notifications.ap-southeast-3.api.aws" + }, + "ap-southeast-4": { + "hostname": "notifications.ap-southeast-4.api.aws" + }, + "ap-southeast-5": { + "hostname": "notifications.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "notifications.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "notifications.ca-central-1.api.aws" + }, + "ca-west-1": { + "hostname": "notifications.ca-west-1.api.aws" + }, + "eu-central-1": { + "hostname": "notifications.eu-central-1.api.aws" + }, + "eu-central-2": { + "hostname": "notifications.eu-central-2.api.aws" + }, + "eu-north-1": { + "hostname": "notifications.eu-north-1.api.aws" + }, + "eu-south-1": { + "hostname": "notifications.eu-south-1.api.aws" + }, + "eu-south-2": { + "hostname": "notifications.eu-south-2.api.aws" + }, + "eu-west-1": { + "hostname": "notifications.eu-west-1.api.aws" + }, + "eu-west-2": { + "hostname": "notifications.eu-west-2.api.aws" + }, + "eu-west-3": { + "hostname": "notifications.eu-west-3.api.aws" + }, + "il-central-1": { + "hostname": "notifications.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "notifications.me-central-1.api.aws" + }, + "me-south-1": { + "hostname": "notifications.me-south-1.api.aws" + }, + "mx-central-1": { + "hostname": "notifications.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "notifications.sa-east-1.api.aws" + }, + "us-east-1": { + "hostname": "notifications.us-east-1.api.aws" + }, + "us-east-2": { + "hostname": "notifications.us-east-2.api.aws" + }, + "us-west-1": { + "hostname": "notifications.us-west-1.api.aws" + }, + "us-west-2": { + "hostname": "notifications.us-west-2.api.aws" + } + } + }, + "notifications-contacts": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "notifications-contacts.us-east-1.api.aws" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "oam": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "oidc": { + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "oidc.af-south-1.amazonaws.com" + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "oidc.ap-east-1.amazonaws.com" + }, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "oidc.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "oidc.ap-northeast-2.amazonaws.com" + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "oidc.ap-northeast-3.amazonaws.com" + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "oidc.ap-south-1.amazonaws.com" + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "oidc.ap-south-2.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "oidc.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "oidc.ap-southeast-2.amazonaws.com" + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "oidc.ap-southeast-3.amazonaws.com" + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "oidc.ap-southeast-4.amazonaws.com" + }, + "ap-southeast-5": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "hostname": "oidc.ap-southeast-5.amazonaws.com" + }, + "ap-southeast-7": {}, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "oidc.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "hostname": "oidc.ca-west-1.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "oidc.eu-central-1.amazonaws.com" + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "oidc.eu-central-2.amazonaws.com" + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "oidc.eu-north-1.amazonaws.com" + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "oidc.eu-south-1.amazonaws.com" + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "oidc.eu-south-2.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "oidc.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "oidc.eu-west-2.amazonaws.com" + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "oidc.eu-west-3.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "oidc.il-central-1.amazonaws.com" + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "oidc.me-central-1.amazonaws.com" + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "oidc.me-south-1.amazonaws.com" + }, + "mx-central-1": {}, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "oidc.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "oidc.us-east-1.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "oidc.us-east-2.amazonaws.com" + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "oidc.us-west-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "oidc.us-west-2.amazonaws.com" + } + } + }, + "omics": { + "endpoints": { + "ap-northeast-2": {}, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "omics.ap-southeast-1.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "omics.eu-central-1.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "omics.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "omics.eu-west-2.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "omics-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "omics-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "omics.il-central-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "omics.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "omics-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "omics.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "omics-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "organizations": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "organizations.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "organizations-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "organizations-fips.us-east-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "osis": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "outposts": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "outposts-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "outposts-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "outposts-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "outposts-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "outposts-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "outposts-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "outposts-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "outposts-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "outposts-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "outposts-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "participant.connect": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "participant.connect-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "participant.connect-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "participant.connect-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "participant.connect-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "personalize": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "pi": { + "endpoints": { + "af-south-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "pi-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "pi-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "pi-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "pi-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "pi-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "pi-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "pinpoint": { + "defaults": { + "credentialScope": { + "service": "mobiletargeting" + } + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "pinpoint.ca-central-1.amazonaws.com", + "variants": [ + { + "hostname": "pinpoint-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "pinpoint-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "pinpoint-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "pinpoint-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "pinpoint-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "pinpoint.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "pinpoint-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "pinpoint.us-east-2.amazonaws.com", + "variants": [ + { + "hostname": "pinpoint-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "pinpoint.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "pinpoint-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "pipes": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "polly": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "polly.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "polly.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "polly.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "polly.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "polly.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "polly.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "polly.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "polly.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "polly.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "polly-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "polly-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "polly.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "polly.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": {}, + "eu-north-1": { + "variants": [ + { + "hostname": "polly.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "polly.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "polly.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "polly.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "polly.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "polly-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "polly-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "polly-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "polly-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "polly-fips.us-west-2.amazonaws.com" + }, + "me-south-1": { + "variants": [ + { + "hostname": "polly.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "polly.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "polly-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "polly-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "polly.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "polly-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "polly-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "polly.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "polly-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "polly-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "polly.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "polly-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "polly-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "polly.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "portal.sso": { + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "portal.sso.af-south-1.amazonaws.com" + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "portal.sso.ap-east-1.amazonaws.com" + }, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "portal.sso.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "portal.sso.ap-northeast-2.amazonaws.com" + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "portal.sso.ap-northeast-3.amazonaws.com" + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "portal.sso.ap-south-1.amazonaws.com" + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "portal.sso.ap-south-2.amazonaws.com" + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "portal.sso.ap-southeast-1.amazonaws.com" + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "portal.sso.ap-southeast-2.amazonaws.com" + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "portal.sso.ap-southeast-3.amazonaws.com" + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "portal.sso.ap-southeast-4.amazonaws.com" + }, + "ap-southeast-5": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "hostname": "portal.sso.ap-southeast-5.amazonaws.com" + }, + "ap-southeast-7": {}, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "portal.sso.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "hostname": "portal.sso.ca-west-1.amazonaws.com" + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "portal.sso.eu-central-1.amazonaws.com" + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "portal.sso.eu-central-2.amazonaws.com" + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "portal.sso.eu-north-1.amazonaws.com" + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "portal.sso.eu-south-1.amazonaws.com" + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "portal.sso.eu-south-2.amazonaws.com" + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "portal.sso.eu-west-1.amazonaws.com" + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "portal.sso.eu-west-2.amazonaws.com" + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "portal.sso.eu-west-3.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "portal.sso.il-central-1.amazonaws.com" + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "portal.sso.me-central-1.amazonaws.com" + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "portal.sso.me-south-1.amazonaws.com" + }, + "mx-central-1": {}, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "portal.sso.sa-east-1.amazonaws.com" + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "portal.sso.us-east-1.amazonaws.com" + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "portal.sso.us-east-2.amazonaws.com" + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "portal.sso.us-west-1.amazonaws.com" + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "portal.sso.us-west-2.amazonaws.com" + } + } + }, + "profile": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "profile-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "profile-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "profile-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "profile-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "profile-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "profile-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "proton": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "qbusiness": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "hostname": "qbusiness.af-south-1.api.aws" + }, + "ap-east-1": { + "hostname": "qbusiness.ap-east-1.api.aws" + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "qbusiness.ap-northeast-1.api.aws" + }, + "ap-northeast-2": { + "hostname": "qbusiness.ap-northeast-2.api.aws" + }, + "ap-northeast-3": { + "hostname": "qbusiness.ap-northeast-3.api.aws" + }, + "ap-south-1": { + "hostname": "qbusiness.ap-south-1.api.aws" + }, + "ap-south-2": { + "hostname": "qbusiness.ap-south-2.api.aws" + }, + "ap-southeast-1": { + "hostname": "qbusiness.ap-southeast-1.api.aws" + }, + "ap-southeast-2": { + "hostname": "qbusiness.ap-southeast-2.api.aws" + }, + "ap-southeast-3": { + "hostname": "qbusiness.ap-southeast-3.api.aws" + }, + "ap-southeast-4": { + "hostname": "qbusiness.ap-southeast-4.api.aws" + }, + "ap-southeast-5": { + "hostname": "qbusiness.ap-southeast-5.api.aws" + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "hostname": "qbusiness.ap-southeast-7.api.aws" + }, + "ca-central-1": { + "hostname": "qbusiness.ca-central-1.api.aws" + }, + "ca-west-1": { + "hostname": "qbusiness.ca-west-1.api.aws" + }, + "eu-central-1": { + "hostname": "qbusiness.eu-central-1.api.aws" + }, + "eu-central-2": { + "hostname": "qbusiness.eu-central-2.api.aws" + }, + "eu-north-1": { + "hostname": "qbusiness.eu-north-1.api.aws" + }, + "eu-south-1": { + "hostname": "qbusiness.eu-south-1.api.aws" + }, + "eu-south-2": { + "hostname": "qbusiness.eu-south-2.api.aws" + }, + "eu-west-1": { + "hostname": "qbusiness.eu-west-1.api.aws" + }, + "eu-west-2": { + "hostname": "qbusiness.eu-west-2.api.aws" + }, + "eu-west-3": { + "hostname": "qbusiness.eu-west-3.api.aws" + }, + "il-central-1": { + "hostname": "qbusiness.il-central-1.api.aws" + }, + "me-central-1": { + "hostname": "qbusiness.me-central-1.api.aws" + }, + "me-south-1": { + "hostname": "qbusiness.me-south-1.api.aws" + }, + "mx-central-1": { + "hostname": "qbusiness.mx-central-1.api.aws" + }, + "sa-east-1": { + "hostname": "qbusiness.sa-east-1.api.aws" + }, + "us-east-1": { + "hostname": "qbusiness.us-east-1.api.aws" + }, + "us-east-2": { + "hostname": "qbusiness.us-east-2.api.aws" + }, + "us-west-1": { + "hostname": "qbusiness.us-west-1.api.aws" + }, + "us-west-2": { + "hostname": "qbusiness.us-west-2.api.aws" + } + } + }, + "query.timestream": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "quicksight": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "ram": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ram-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ram-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ram-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "ram-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ram-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ram-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ram-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ram-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ram-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ram-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ram-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ram-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + } + } + }, + "rbin": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "rbin.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "rbin.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "rbin.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "rbin.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "rbin.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "rbin.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "rbin.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "rbin.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "rbin.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "rbin.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "rbin.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "rbin.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "rbin-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "rbin-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "rbin.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "rbin.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "rbin.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "rbin.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "rbin.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "rbin.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "rbin.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "rbin.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "rbin-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "rbin-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rbin-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rbin-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "rbin.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "rbin.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "rbin.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "rbin.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "rbin-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "rbin-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "rbin-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "rbin-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "rds": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "rds-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "rds-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "rds-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "rds-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "rds-fips.ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "rds-fips.ca-central-1.amazonaws.com" + }, + "rds-fips.ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "rds-fips.ca-west-1.amazonaws.com" + }, + "rds-fips.us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rds-fips.us-east-1.amazonaws.com" + }, + "rds-fips.us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rds-fips.us-east-2.amazonaws.com" + }, + "rds-fips.us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rds-fips.us-west-1.amazonaws.com" + }, + "rds-fips.us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rds-fips.us-west-2.amazonaws.com" + }, + "rds.ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rds-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rds.ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rds-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rds.us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rds-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rds.us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rds-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rds.us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rds-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rds.us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rds-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "sa-east-1": {}, + "us-east-1": { + "sslCommonName": "{service}.{dnsSuffix}", + "variants": [ + { + "hostname": "rds-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rds-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "rds-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rds-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "rds-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rds-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "rds-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rds-fips.us-west-2.amazonaws.com" + } + } + }, + "rds-data": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rds-data-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rds-data-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rds-data-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rds-data-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "rds-data-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "rds-data-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "rds-data-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "rds-data-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "redshift": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "redshift-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "redshift-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "redshift-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "redshift-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "redshift-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "redshift-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "redshift-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "redshift-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "redshift-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "redshift-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "redshift-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "redshift-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "redshift-serverless": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "redshift-serverless-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "redshift-serverless-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "redshift-serverless-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "redshift-serverless-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "redshift-serverless-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "rekognition": { + "endpoints": { + "ap-northeast-1": { + "variants": [ + { + "hostname": "rekognition.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "rekognition.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "rekognition.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "rekognition.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "rekognition.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "rekognition-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rekognition-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rekognition.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "variants": [ + { + "hostname": "rekognition.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "rekognition.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "rekognition.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "rekognition.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "rekognition.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "rekognition-fips.ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.ca-central-1.amazonaws.com" + }, + "rekognition-fips.us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-east-1.amazonaws.com" + }, + "rekognition-fips.us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-east-2.amazonaws.com" + }, + "rekognition-fips.us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-west-1.amazonaws.com" + }, + "rekognition-fips.us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-west-2.amazonaws.com" + }, + "rekognition.ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rekognition-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rekognition.us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rekognition-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rekognition.us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rekognition-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rekognition.us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rekognition-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "rekognition.us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rekognition-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "rekognition-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rekognition-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rekognition.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "rekognition-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rekognition-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rekognition.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "rekognition-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rekognition-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rekognition.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "rekognition-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rekognition-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rekognition.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-west-2.amazonaws.com" + } + } + }, + "resiliencehub": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "resiliencehub.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "resiliencehub.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "resiliencehub.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "resiliencehub.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "resiliencehub.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "resiliencehub.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "resiliencehub.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "resiliencehub.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "resiliencehub.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "resiliencehub.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "resiliencehub.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "resiliencehub.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "resiliencehub.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "resiliencehub.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "resiliencehub.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "resiliencehub.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "resiliencehub.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "resiliencehub.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "resiliencehub.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "resiliencehub.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "resource-explorer-2": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "resource-explorer-2-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resource-explorer-2-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "resource-explorer-2-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resource-explorer-2-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "resource-explorer-2-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "resource-explorer-2-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "resource-explorer-2-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "resource-explorer-2-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "resource-explorer-2-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "resource-explorer-2-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "resource-explorer-2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resource-explorer-2-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "resource-explorer-2-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resource-explorer-2-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "resource-explorer-2-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resource-explorer-2-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "resource-explorer-2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resource-explorer-2-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + } + } + }, + "resource-groups": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "resource-groups-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "resource-groups-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "resource-groups-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "resource-groups-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "resource-groups-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "resource-groups-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "resource-groups-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "resource-groups-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "rolesanywhere": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "rolesanywhere-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "rolesanywhere-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "rolesanywhere-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "rolesanywhere-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "rolesanywhere-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "rolesanywhere-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "rolesanywhere-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "rolesanywhere-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "route53": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "route53.amazonaws.com", + "variants": [ + { + "hostname": "route53-fips.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "route53-fips.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "route53-recovery-control-config": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "route53-recovery-control-config.us-west-2.amazonaws.com" + } + } + }, + "route53domains": { + "endpoints": { + "us-east-1": {} + } + }, + "route53profiles": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "route53profiles.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "route53profiles.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "route53profiles.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "route53profiles.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "route53profiles.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "route53profiles.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "route53profiles.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "route53profiles.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "route53profiles.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "route53profiles.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "route53profiles.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "route53profiles-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "route53profiles-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "route53profiles.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "route53profiles.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "route53profiles.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "route53profiles.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "route53profiles.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "route53profiles.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "route53profiles.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "route53profiles.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "route53profiles.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "route53profiles.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "route53profiles.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "route53profiles.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "route53profiles-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "route53profiles-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "route53profiles-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "route53profiles-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "route53resolver": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "route53resolver.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "route53resolver.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "route53resolver.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "route53resolver.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "route53resolver.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "route53resolver.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "route53resolver.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "route53resolver.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "route53resolver.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "route53resolver.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "route53resolver.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "route53resolver.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "route53resolver.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "route53resolver-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53resolver.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "route53resolver-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "route53resolver-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53resolver.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "route53resolver-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": { + "variants": [ + { + "hostname": "route53resolver.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "route53resolver.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "route53resolver.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "route53resolver.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "route53resolver.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "route53resolver.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "route53resolver.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "route53resolver.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "route53resolver.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "route53resolver.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "route53resolver.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "route53resolver.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "route53resolver.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "route53resolver-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53resolver.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "route53resolver-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "route53resolver-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53resolver.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "route53resolver-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "route53resolver-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53resolver.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "route53resolver-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "route53resolver-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53resolver.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "route53resolver-fips.us-west-2.amazonaws.com" + } + } + }, + "rum": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "runtime-v2-lex": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "runtime.lex": { + "defaults": { + "credentialScope": { + "service": "lex" + }, + "variants": [ + { + "hostname": "runtime-fips.lex.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": { + "variants": [ + { + "hostname": "runtime-fips.lex.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "runtime-fips.lex.us-east-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "runtime-fips.lex.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "runtime-fips.lex.us-west-2.amazonaws.com" + } + } + }, + "runtime.sagemaker": { + "defaults": { + "variants": [ + { + "hostname": "runtime-fips.sagemaker.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "runtime-fips.sagemaker.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "runtime-fips.sagemaker.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "runtime-fips.sagemaker.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "runtime-fips.sagemaker.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "runtime-fips.sagemaker.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "runtime-fips.sagemaker.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "runtime-fips.sagemaker.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "runtime-fips.sagemaker.us-west-2.amazonaws.com" + } + } + }, + "s3": { + "defaults": { + "protocols": ["http", "https"], + "signatureVersions": ["s3v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}-fips.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "s3.dualstack.af-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "s3.dualstack.ap-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "hostname": "s3.ap-northeast-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3.dualstack.ap-northeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "s3.dualstack.ap-northeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "s3.dualstack.ap-northeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "s3.dualstack.ap-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "s3.dualstack.ap-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "hostname": "s3.ap-southeast-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3.dualstack.ap-southeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "hostname": "s3.ap-southeast-2.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3.dualstack.ap-southeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "s3.dualstack.ap-southeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "s3.dualstack.ap-southeast-4.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "s3.dualstack.ap-southeast-5.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "s3.dualstack.ap-southeast-7.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "s3.amazonaws.com", + "signatureVersions": ["s3", "s3v4"] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "s3-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-fips.dualstack.ca-central-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3.dualstack.ca-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "s3-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-fips.dualstack.ca-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3.dualstack.ca-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "s3.dualstack.eu-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "s3.dualstack.eu-central-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "s3.dualstack.eu-north-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "s3.dualstack.eu-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "s3.dualstack.eu-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "hostname": "s3.eu-west-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3.dualstack.eu-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "s3.dualstack.eu-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "s3.dualstack.eu-west-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "s3-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "s3-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "s3-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "s3-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "s3.dualstack.il-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "s3.dualstack.me-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "s3.dualstack.me-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "s3.dualstack.mx-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "s3-external-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "s3-external-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"] + }, + "sa-east-1": { + "hostname": "s3.sa-east-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3.dualstack.sa-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "hostname": "s3.us-east-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3-fips.dualstack.us-east-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3.dualstack.us-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "s3-fips.dualstack.us-east-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3.dualstack.us-east-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "hostname": "s3.us-west-1.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3-fips.dualstack.us-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3.dualstack.us-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "hostname": "s3.us-west-2.amazonaws.com", + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "hostname": "s3-fips.dualstack.us-west-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3.dualstack.us-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + } + }, + "isRegionalized": true, + "partitionEndpoint": "aws-global" + }, + "s3-control": { + "defaults": { + "protocols": ["https"], + "signatureVersions": ["s3v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}-fips.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "s3-control.af-south-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.af-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "s3-control.ap-east-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "s3-control.ap-northeast-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-northeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "s3-control.ap-northeast-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-northeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "s3-control.ap-northeast-3.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-northeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "s3-control.ap-south-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "s3-control.ap-south-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "s3-control.ap-southeast-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-southeast-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "s3-control.ap-southeast-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-southeast-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "s3-control.ap-southeast-3.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-southeast-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "s3-control.ap-southeast-4.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.ap-southeast-4.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "s3-control.ca-central-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control-fips.dualstack.ca-central-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control.dualstack.ca-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.ca-central-1.amazonaws.com", + "signatureVersions": ["s3v4"] + }, + "ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "hostname": "s3-control.ca-west-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control-fips.dualstack.ca-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control.dualstack.ca-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.ca-west-1.amazonaws.com", + "signatureVersions": ["s3v4"] + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "s3-control.eu-central-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "s3-control.eu-central-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-central-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "s3-control.eu-north-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-north-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "s3-control.eu-south-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "s3-control.eu-south-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-south-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "s3-control.eu-west-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "s3-control.eu-west-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "s3-control.eu-west-3.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.eu-west-3.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "s3-control.il-central-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.il-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "s3-control.me-central-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.me-central-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "s3-control.me-south-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.me-south-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "s3-control.sa-east-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.sa-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "s3-control.us-east-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-east-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-east-1.amazonaws.com", + "signatureVersions": ["s3v4"] + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "s3-control.us-east-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-east-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-east-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-east-2.amazonaws.com", + "signatureVersions": ["s3v4"] + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "s3-control.us-west-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-west-1.amazonaws.com", + "signatureVersions": ["s3v4"] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "s3-control.us-west-2.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-west-2.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-west-2.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-west-2.amazonaws.com", + "signatureVersions": ["s3v4"] + } + } + }, + "s3-outposts": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "deprecated": true + }, + "fips-us-east-1": { + "deprecated": true + }, + "fips-us-east-2": { + "deprecated": true + }, + "fips-us-west-1": { + "deprecated": true + }, + "fips-us-west-2": { + "deprecated": true + }, + "il-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + } + } + }, + "sagemaker-geospatial": { + "endpoints": { + "us-west-2": {} + } + }, + "savingsplans": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "savingsplans.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "scheduler": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "schemas": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "sdb": { + "defaults": { + "protocols": ["http", "https"], + "signatureVersions": ["v2"] + }, + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "sa-east-1": {}, + "us-east-1": { + "hostname": "sdb.amazonaws.com" + }, + "us-west-1": {}, + "us-west-2": {} + } + }, + "secretsmanager": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "deprecated": true + }, + "ca-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "deprecated": true + }, + "eu-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "deprecated": true + }, + "us-east-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "deprecated": true + }, + "us-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "deprecated": true + }, + "us-west-2": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "deprecated": true + } + } + }, + "securityhub": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "securityhub.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "securityhub.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "securityhub.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "securityhub.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "securityhub.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "securityhub.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "securityhub.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "securityhub.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "securityhub.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "securityhub.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "securityhub.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "securityhub.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "securityhub.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "securityhub.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "securityhub.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "securityhub.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "securityhub.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "securityhub.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "securityhub.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "securityhub.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "securityhub.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "securityhub.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "securityhub.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "securityhub-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "securityhub-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "securityhub-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "securityhub-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "securityhub.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "securityhub.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "securityhub.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "securityhub.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "securityhub.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "securityhub-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securityhub.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "securityhub-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securityhub.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "securityhub-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securityhub.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "securityhub-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securityhub.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "securitylake": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "securitylake-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "securitylake-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "securitylake-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "securitylake-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "securitylake-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securitylake-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "securitylake-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securitylake-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "securitylake-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securitylake-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "securitylake-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securitylake-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + } + ] + } + } + }, + "serverlessrepo": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "ap-east-1": { + "protocols": ["https"] + }, + "ap-northeast-1": { + "protocols": ["https"] + }, + "ap-northeast-2": { + "protocols": ["https"] + }, + "ap-south-1": { + "protocols": ["https"] + }, + "ap-southeast-1": { + "protocols": ["https"] + }, + "ap-southeast-2": { + "protocols": ["https"] + }, + "ca-central-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "serverlessrepo-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": { + "protocols": ["https"] + }, + "eu-north-1": { + "protocols": ["https"] + }, + "eu-west-1": { + "protocols": ["https"] + }, + "eu-west-2": { + "protocols": ["https"] + }, + "eu-west-3": { + "protocols": ["https"] + }, + "me-south-1": { + "protocols": ["https"] + }, + "sa-east-1": { + "protocols": ["https"] + }, + "us-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "serverlessrepo-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "serverlessrepo-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "serverlessrepo-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "serverlessrepo-fips.us-west-2.amazonaws.com" + } + } + }, + "servicecatalog": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "servicecatalog-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "servicecatalog-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "servicecatalog-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "servicecatalog-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "servicecatalog-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "servicecatalog-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "servicecatalog-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "servicecatalog-fips.us-west-2.amazonaws.com" + } + } + }, + "servicecatalog-appregistry": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "servicecatalog-appregistry-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "servicecatalog-appregistry-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "servicecatalog-appregistry-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "servicecatalog-appregistry-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "servicecatalog-appregistry-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "servicecatalog-appregistry-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "servicecatalog-appregistry-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "servicecatalog-appregistry-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "servicediscovery": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "servicediscovery.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "servicediscovery.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "servicediscovery.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "servicediscovery.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "servicediscovery.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "servicediscovery.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "servicediscovery.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "servicediscovery.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "servicediscovery.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "servicediscovery.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "servicediscovery.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "servicediscovery.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "servicediscovery.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "servicediscovery-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "servicediscovery-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": { + "variants": [ + { + "hostname": "servicediscovery.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "servicediscovery.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "servicediscovery.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "servicediscovery.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "servicediscovery.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "servicediscovery.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "servicediscovery.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "servicediscovery.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "il-central-1": { + "variants": [ + { + "hostname": "servicediscovery.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "servicediscovery.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "servicediscovery.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "servicediscovery.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "servicediscovery.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "servicediscovery-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "servicediscovery-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "servicediscovery-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "servicediscovery-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-west-2.amazonaws.com" + } + } + }, + "servicequotas": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "shield": { + "defaults": { + "protocols": ["https"], + "sslCommonName": "shield.us-east-1.amazonaws.com" + }, + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "shield.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "shield-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "shield-fips.us-east-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "signer": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "signer-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "signer-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "signer-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "signer-fips.us-west-2.amazonaws.com" + }, + "fips-verification-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "verification.signer-fips.us-east-1.amazonaws.com" + }, + "fips-verification-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "verification.signer-fips.us-east-2.amazonaws.com" + }, + "fips-verification-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "verification.signer-fips.us-west-1.amazonaws.com" + }, + "fips-verification-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "verification.signer-fips.us-west-2.amazonaws.com" + }, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "signer-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "signer-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "signer-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "signer-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "verification-af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "verification.signer.af-south-1.amazonaws.com" + }, + "verification-ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "verification.signer.ap-east-1.amazonaws.com" + }, + "verification-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "verification.signer.ap-northeast-1.amazonaws.com" + }, + "verification-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "verification.signer.ap-northeast-2.amazonaws.com" + }, + "verification-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "verification.signer.ap-south-1.amazonaws.com" + }, + "verification-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "verification.signer.ap-southeast-1.amazonaws.com" + }, + "verification-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "verification.signer.ap-southeast-2.amazonaws.com" + }, + "verification-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "verification.signer.ca-central-1.amazonaws.com" + }, + "verification-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "verification.signer.eu-central-1.amazonaws.com" + }, + "verification-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "verification.signer.eu-north-1.amazonaws.com" + }, + "verification-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "verification.signer.eu-south-1.amazonaws.com" + }, + "verification-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "verification.signer.eu-west-1.amazonaws.com" + }, + "verification-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "verification.signer.eu-west-2.amazonaws.com" + }, + "verification-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "verification.signer.eu-west-3.amazonaws.com" + }, + "verification-me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "verification.signer.me-south-1.amazonaws.com" + }, + "verification-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "verification.signer.sa-east-1.amazonaws.com" + }, + "verification-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "verification.signer.us-east-1.amazonaws.com" + }, + "verification-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "verification.signer.us-east-2.amazonaws.com" + }, + "verification-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "verification.signer.us-west-1.amazonaws.com" + }, + "verification-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "verification.signer.us-west-2.amazonaws.com" + } + } + }, + "simspaceweaver": { + "endpoints": { + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "sms-voice": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "sms-voice.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "sms-voice.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "sms-voice.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "sms-voice.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "sms-voice.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "sms-voice.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "sms-voice.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "sms-voice.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "sms-voice.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "sms-voice.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "sms-voice-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "sms-voice-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "sms-voice.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "sms-voice.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "sms-voice.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "sms-voice.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "sms-voice.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "sms-voice.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "sms-voice.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "sms-voice.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "sms-voice-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "sms-voice-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "sms-voice-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "sms-voice-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "sms-voice-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "sms-voice-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "sms-voice.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "sms-voice.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "sms-voice.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": {}, + "sa-east-1": { + "variants": [ + { + "hostname": "sms-voice.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "sms-voice-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "sms-voice-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "sms-voice-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "sms-voice-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "snowball": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "snowball-fips.af-south-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.af-south-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "snowball-fips.ap-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "snowball-fips.ap-northeast-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-northeast-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "snowball-fips.ap-northeast-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-northeast-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "snowball-fips.ap-northeast-3.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-northeast-3.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "snowball-fips.ap-south-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-south-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "snowball-fips.ap-southeast-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-southeast-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "snowball-fips.ap-southeast-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-southeast-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "snowball-fips.ap-southeast-3.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ap-southeast-3.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "snowball-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "snowball-fips.eu-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.eu-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "snowball-fips.eu-north-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.eu-north-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "snowball-fips.eu-south-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.eu-south-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "snowball-fips.eu-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.eu-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "snowball-fips.eu-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.eu-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "snowball-fips.eu-west-3.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.eu-west-3.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "deprecated": true, + "hostname": "snowball-fips.af-south-1.amazonaws.com" + }, + "fips-ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-east-1.amazonaws.com" + }, + "fips-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-northeast-1.amazonaws.com" + }, + "fips-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-northeast-3.amazonaws.com" + }, + "fips-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-south-1.amazonaws.com" + }, + "fips-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-southeast-2.amazonaws.com" + }, + "fips-ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "deprecated": true, + "hostname": "snowball-fips.ap-southeast-3.amazonaws.com" + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "snowball-fips.ca-central-1.amazonaws.com" + }, + "fips-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "deprecated": true, + "hostname": "snowball-fips.eu-central-1.amazonaws.com" + }, + "fips-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "deprecated": true, + "hostname": "snowball-fips.eu-north-1.amazonaws.com" + }, + "fips-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "deprecated": true, + "hostname": "snowball-fips.eu-south-1.amazonaws.com" + }, + "fips-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "deprecated": true, + "hostname": "snowball-fips.eu-west-1.amazonaws.com" + }, + "fips-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "deprecated": true, + "hostname": "snowball-fips.eu-west-2.amazonaws.com" + }, + "fips-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "deprecated": true, + "hostname": "snowball-fips.eu-west-3.amazonaws.com" + }, + "fips-il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "deprecated": true, + "hostname": "snowball-fips.il-central-1.amazonaws.com" + }, + "fips-me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "deprecated": true, + "hostname": "snowball-fips.me-central-1.amazonaws.com" + }, + "fips-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "deprecated": true, + "hostname": "snowball-fips.sa-east-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "snowball-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "snowball-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "snowball-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "snowball-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "snowball-fips.il-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.il-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "snowball-fips.me-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.me-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "snowball-fips.sa-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.sa-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "snowball-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "snowball-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "snowball-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "snowball-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "sns": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "sns.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "sns.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "sns.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "sns.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "sns.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "sns.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "sns.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "sns.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "sns.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "sns.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "sns.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "sns.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "sns.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "sns.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "sns-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sns.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "sns.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "sns.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "sns.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "sns.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "sns.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "sns.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "sns.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "sns.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "sns-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "sns-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "sns-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "sns-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "sns-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "sns.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "sns.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "sns.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "sns.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "sns.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "sns-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sns.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "sns-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sns.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "sns-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sns.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "sns-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sns.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "sqs": { + "defaults": { + "protocols": ["http", "https"], + "sslCommonName": "{region}.queue.{dnsSuffix}" + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "sqs.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "sqs.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "sqs.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "sqs.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "sqs.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "sqs.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "sqs.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "sqs.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "sqs.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "sqs.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "sqs.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "sqs.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "sqs.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "sqs-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sqs.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "sqs-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sqs.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "sqs.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "sqs.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "sqs.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "sqs.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "sqs.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "sqs.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "sqs.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "sqs.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "sqs-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "sqs-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "sqs-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "sqs-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "sqs-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "sqs-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "sqs.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "sqs.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "sqs.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "sqs.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "sqs.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "sslCommonName": "queue.{dnsSuffix}", + "variants": [ + { + "hostname": "sqs-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sqs.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "sqs-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sqs.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "sqs-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sqs.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "sqs-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sqs.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "ssm": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "ssm-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "ssm-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ssm-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "ssm-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ssm-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ssm-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ssm-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ssm-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "ssm-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ssm-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ssm-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ssm-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ssm-contacts": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ssm-contacts-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ssm-contacts-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ssm-contacts-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ssm-contacts-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "ssm-contacts-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ssm-contacts-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ssm-contacts-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ssm-contacts-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ssm-incidents": { + "endpoints": { + "ap-northeast-1": { + "variants": [ + { + "hostname": "ssm-incidents.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "ssm-incidents.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "ssm-incidents.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "ssm-incidents.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "ssm-incidents.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "ssm-incidents-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-incidents-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-incidents.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "ssm-incidents.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "ssm-incidents.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "ssm-incidents.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "ssm-incidents.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "ssm-incidents.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ssm-incidents-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ssm-incidents-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ssm-incidents-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ssm-incidents-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ssm-incidents-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": { + "variants": [ + { + "hostname": "ssm-incidents.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "ssm-incidents-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-incidents-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-incidents.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ssm-incidents-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-incidents-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-incidents.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ssm-incidents-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-incidents-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-incidents.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ssm-incidents-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-incidents-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-incidents.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "ssm-quicksetup": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "ssm-quicksetup-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ssm-quicksetup-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ssm-quicksetup-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ssm-quicksetup-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ssm-quicksetup-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ssm-quicksetup-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "ssm-quicksetup-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ssm-quicksetup-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ssm-quicksetup-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ssm-quicksetup-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ssm-sap": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "ssm-sap.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "ssm-sap.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "ssm-sap.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "ssm-sap.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "ssm-sap.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "ssm-sap.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "ssm-sap.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "ssm-sap.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "ssm-sap.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "ssm-sap.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "ssm-sap.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "ssm-sap-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-sap-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-sap.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "ssm-sap.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "ssm-sap.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "ssm-sap.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "ssm-sap.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "ssm-sap.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "ssm-sap.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "ssm-sap.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "ssm-sap.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "ssm-sap-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "ssm-sap-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "ssm-sap-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "ssm-sap-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "ssm-sap-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "ssm-sap.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "ssm-sap.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "ssm-sap.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "ssm-sap.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "ssm-sap-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-sap-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-sap.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "ssm-sap-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-sap-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-sap.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "ssm-sap-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-sap-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-sap.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "ssm-sap-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ssm-sap-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ssm-sap.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "sso": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "states": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "states-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "states-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "states-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "states-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "states-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "states-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "states-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "states-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "states-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "states-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "states-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "states-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "storagegateway": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "storagegateway-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.ca-central-1.amazonaws.com" + }, + "ca-west-1": { + "variants": [ + { + "hostname": "storagegateway-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1-fips": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.ca-west-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "storagegateway-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "storagegateway-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "storagegateway-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "storagegateway-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-west-2.amazonaws.com" + } + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" + }, + "protocols": ["http", "https"] + }, + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "local": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "localhost:8000", + "protocols": ["http"] + }, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "sts": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "sts.amazonaws.com" + }, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "sts-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "sts-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "sts-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "sts-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "sts-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "sts-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "sts-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "sts-fips.us-west-2.amazonaws.com" + } + }, + "partitionEndpoint": "aws-global" + }, + "support": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "support.us-east-1.amazonaws.com" + } + }, + "partitionEndpoint": "aws-global" + }, + "supportapp": { + "endpoints": { + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "swf": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "swf-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "swf-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "swf-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "swf-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "swf-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "swf-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "swf-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "swf-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "swf-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "swf-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "swf-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "swf-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "synthetics": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "synthetics.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "synthetics.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "variants": [ + { + "hostname": "synthetics.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "synthetics.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-3": { + "variants": [ + { + "hostname": "synthetics.ap-northeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "synthetics.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-2": { + "variants": [ + { + "hostname": "synthetics.ap-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "synthetics.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "synthetics.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-3": { + "variants": [ + { + "hostname": "synthetics.ap-southeast-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-4": { + "variants": [ + { + "hostname": "synthetics.ap-southeast-4.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-5": { + "variants": [ + { + "hostname": "synthetics.ap-southeast-5.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-6": {}, + "ap-southeast-7": { + "variants": [ + { + "hostname": "synthetics.ap-southeast-7.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "synthetics-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "synthetics-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.ca-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.ca-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "synthetics.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-2": { + "variants": [ + { + "hostname": "synthetics.eu-central-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "synthetics.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-1": { + "variants": [ + { + "hostname": "synthetics.eu-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "synthetics.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "synthetics.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "synthetics.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "synthetics.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "synthetics-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "synthetics-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "synthetics-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "synthetics-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "synthetics-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "synthetics-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "variants": [ + { + "hostname": "synthetics.il-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-central-1": { + "variants": [ + { + "hostname": "synthetics.me-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "me-south-1": { + "variants": [ + { + "hostname": "synthetics.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "mx-central-1": { + "variants": [ + { + "hostname": "synthetics.mx-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "synthetics.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "synthetics-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "synthetics-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "synthetics-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "synthetics-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "tagging": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "tax": { + "endpoints": { + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "tax.us-east-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "textract": { + "endpoints": { + "ap-northeast-2": { + "variants": [ + { + "hostname": "textract.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "textract.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "textract.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "textract.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "textract-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "textract.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-south-2": { + "variants": [ + { + "hostname": "textract.eu-south-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "textract.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "textract.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "textract.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "textract-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "textract-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "textract-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "textract-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "textract-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "textract-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "textract-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "textract-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "textract-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "thinclient": { + "endpoints": { + "ap-south-1": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "tnb": { + "endpoints": { + "ap-northeast-2": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-south-2": {}, + "eu-west-3": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "transcribe": { + "defaults": { + "protocols": ["https"], + "variants": [ + { + "hostname": "fips.transcribe.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "transcribe.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-east-1": { + "variants": [ + { + "hostname": "transcribe.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "transcribe.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "transcribe.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "transcribe.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "transcribe.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "transcribe.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "fips.transcribe.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "transcribe.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "transcribe.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "transcribe.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "transcribe.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "transcribe.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "fips.transcribe.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-west-2.amazonaws.com" + }, + "me-south-1": { + "variants": [ + { + "hostname": "transcribe.me-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "sa-east-1": { + "variants": [ + { + "hostname": "transcribe.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "fips.transcribe.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "fips.transcribe.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "fips.transcribe.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "fips.transcribe.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "transcribestreaming": { + "endpoints": { + "af-south-1": { + "variants": [ + { + "hostname": "transcribestreaming.af-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "transcribestreaming.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "transcribestreaming.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "transcribestreaming.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "transcribestreaming.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "transcribestreaming.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "transcribestreaming-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribestreaming-fips.ca-central-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribestreaming.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "transcribestreaming.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "transcribestreaming.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "transcribestreaming.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "transcribestreaming-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "transcribestreaming-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "transcribestreaming-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "transcribestreaming-fips.us-west-2.amazonaws.com" + }, + "sa-east-1": { + "variants": [ + { + "hostname": "transcribestreaming.sa-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "transcribestreaming-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribestreaming-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribestreaming.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "transcribestreaming-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribestreaming-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribestreaming.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "transcribestreaming-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribestreaming-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribestreaming.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "transfer": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "transfer-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "transfer-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "transfer-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "transfer-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "transfer-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "transfer-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "transfer-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "transfer-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "transfer-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "transfer-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "transfer-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "transfer-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "translate": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "ap-east-1": { + "variants": [ + { + "hostname": "translate.ap-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-1": { + "variants": [ + { + "hostname": "translate.ap-northeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-northeast-2": { + "variants": [ + { + "hostname": "translate.ap-northeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-south-1": { + "variants": [ + { + "hostname": "translate.ap-south-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-1": { + "variants": [ + { + "hostname": "translate.ap-southeast-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ap-southeast-2": { + "variants": [ + { + "hostname": "translate.ap-southeast-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "ca-central-1": { + "variants": [ + { + "hostname": "translate.ca-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-central-1": { + "variants": [ + { + "hostname": "translate.eu-central-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-north-1": { + "variants": [ + { + "hostname": "translate.eu-north-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-1": { + "variants": [ + { + "hostname": "translate.eu-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-2": { + "variants": [ + { + "hostname": "translate.eu-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "eu-west-3": { + "variants": [ + { + "hostname": "translate.eu-west-3.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1": { + "variants": [ + { + "hostname": "translate-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "translate-fips.us-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "translate.us-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "translate-fips.us-east-1.amazonaws.com" + }, + "us-east-2": { + "variants": [ + { + "hostname": "translate-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "translate-fips.us-east-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "translate.us-east-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-east-2-fips": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "translate-fips.us-east-2.amazonaws.com" + }, + "us-west-1": { + "variants": [ + { + "hostname": "translate-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "translate-fips.us-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "translate.us-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-1-fips": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "translate-fips.us-west-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "translate-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "translate-fips.us-west-2.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "translate.us-west-2.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "translate-fips.us-west-2.amazonaws.com" + } + } + }, + "trustedadvisor": { + "endpoints": { + "ap-northeast-2": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "trustedadvisor-fips.us-east-1.api.aws" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "trustedadvisor-fips.us-east-2.api.aws" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "trustedadvisor-fips.us-west-2.api.aws" + }, + "us-east-1": {}, + "us-east-2": {}, + "us-west-2": {} + } + }, + "verifiedpermissions": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.ca-west-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "voice-chime": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "voice-chime-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1-fips": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "voice-chime-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "us-east-1": { + "variants": [ + { + "hostname": "voice-chime-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "voice-chime-fips.us-east-1.amazonaws.com" + }, + "us-west-2": { + "variants": [ + { + "hostname": "voice-chime-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2-fips": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "voice-chime-fips.us-west-2.amazonaws.com" + } + } + }, + "voiceid": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "hostname": "voiceid-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "voiceid-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "voiceid-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "voiceid-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "voiceid-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "voiceid-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "vpc-lattice": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-central-1": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "waf": { + "endpoints": { + "aws": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "waf-fips.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "aws-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "waf-fips.amazonaws.com" + }, + "aws-global": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "waf.amazonaws.com", + "variants": [ + { + "hostname": "waf-fips.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "aws-global-fips": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "waf-fips.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-global" + }, + "waf-regional": { + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "waf-regional.af-south-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.af-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "waf-regional.ap-east-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "waf-regional.ap-northeast-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-northeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "waf-regional.ap-northeast-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-northeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "waf-regional.ap-northeast-3.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-northeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "waf-regional.ap-south-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "waf-regional.ap-south-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "waf-regional.ap-southeast-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-southeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "waf-regional.ap-southeast-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-southeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "waf-regional.ap-southeast-3.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-southeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "waf-regional.ap-southeast-4.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ap-southeast-4.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "waf-regional.ca-central-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "waf-regional.eu-central-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "waf-regional.eu-central-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-central-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "waf-regional.eu-north-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-north-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "waf-regional.eu-south-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "waf-regional.eu-south-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "waf-regional.eu-west-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "waf-regional.eu-west-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "waf-regional.eu-west-3.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.eu-west-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.af-south-1.amazonaws.com" + }, + "fips-ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-east-1.amazonaws.com" + }, + "fips-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-northeast-1.amazonaws.com" + }, + "fips-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-northeast-3.amazonaws.com" + }, + "fips-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-south-1.amazonaws.com" + }, + "fips-ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-south-2.amazonaws.com" + }, + "fips-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-southeast-2.amazonaws.com" + }, + "fips-ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-southeast-3.amazonaws.com" + }, + "fips-ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ap-southeast-4.amazonaws.com" + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.ca-central-1.amazonaws.com" + }, + "fips-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-central-1.amazonaws.com" + }, + "fips-eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-central-2.amazonaws.com" + }, + "fips-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-north-1.amazonaws.com" + }, + "fips-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-south-1.amazonaws.com" + }, + "fips-eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-south-2.amazonaws.com" + }, + "fips-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-west-1.amazonaws.com" + }, + "fips-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-west-2.amazonaws.com" + }, + "fips-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "deprecated": true, + "hostname": "waf-regional-fips.eu-west-3.amazonaws.com" + }, + "fips-il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.il-central-1.amazonaws.com" + }, + "fips-me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.me-central-1.amazonaws.com" + }, + "fips-me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.me-south-1.amazonaws.com" + }, + "fips-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.sa-east-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "waf-regional-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "waf-regional.il-central-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.il-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "waf-regional.me-central-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.me-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "waf-regional.me-south-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.me-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "waf-regional.sa-east-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.sa-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "waf-regional.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "waf-regional.us-east-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "waf-regional.us-west-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "waf-regional.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "wafv2": { + "endpoints": { + "af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "hostname": "wafv2.af-south-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.af-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "hostname": "wafv2.ap-east-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-east-2": {}, + "ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "hostname": "wafv2.ap-northeast-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-northeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "hostname": "wafv2.ap-northeast-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-northeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "hostname": "wafv2.ap-northeast-3.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-northeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "hostname": "wafv2.ap-south-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "hostname": "wafv2.ap-south-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "hostname": "wafv2.ap-southeast-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-southeast-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "hostname": "wafv2.ap-southeast-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-southeast-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "hostname": "wafv2.ap-southeast-3.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-southeast-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "hostname": "wafv2.ap-southeast-4.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-southeast-4.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-5": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "hostname": "wafv2.ap-southeast-5.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-southeast-5.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ap-southeast-7": { + "credentialScope": { + "region": "ap-southeast-7" + }, + "hostname": "wafv2.ap-southeast-7.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ap-southeast-7.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "hostname": "wafv2.ca-central-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ca-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "hostname": "wafv2.ca-west-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.ca-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "hostname": "wafv2.eu-central-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "hostname": "wafv2.eu-central-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-central-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "hostname": "wafv2.eu-north-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-north-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "hostname": "wafv2.eu-south-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "hostname": "wafv2.eu-south-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-south-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "hostname": "wafv2.eu-west-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "hostname": "wafv2.eu-west-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "hostname": "wafv2.eu-west-3.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.eu-west-3.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-af-south-1": { + "credentialScope": { + "region": "af-south-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.af-south-1.amazonaws.com" + }, + "fips-ap-east-1": { + "credentialScope": { + "region": "ap-east-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-east-1.amazonaws.com" + }, + "fips-ap-northeast-1": { + "credentialScope": { + "region": "ap-northeast-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-northeast-1.amazonaws.com" + }, + "fips-ap-northeast-2": { + "credentialScope": { + "region": "ap-northeast-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-northeast-3": { + "credentialScope": { + "region": "ap-northeast-3" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-northeast-3.amazonaws.com" + }, + "fips-ap-south-1": { + "credentialScope": { + "region": "ap-south-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-south-1.amazonaws.com" + }, + "fips-ap-south-2": { + "credentialScope": { + "region": "ap-south-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-south-2.amazonaws.com" + }, + "fips-ap-southeast-1": { + "credentialScope": { + "region": "ap-southeast-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-southeast-2": { + "credentialScope": { + "region": "ap-southeast-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-southeast-2.amazonaws.com" + }, + "fips-ap-southeast-3": { + "credentialScope": { + "region": "ap-southeast-3" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-southeast-3.amazonaws.com" + }, + "fips-ap-southeast-4": { + "credentialScope": { + "region": "ap-southeast-4" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-southeast-4.amazonaws.com" + }, + "fips-ap-southeast-5": { + "credentialScope": { + "region": "ap-southeast-5" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-southeast-5.amazonaws.com" + }, + "fips-ap-southeast-7": { + "credentialScope": { + "region": "ap-southeast-7" + }, + "deprecated": true, + "hostname": "wafv2-fips.ap-southeast-7.amazonaws.com" + }, + "fips-ca-central-1": { + "credentialScope": { + "region": "ca-central-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.ca-central-1.amazonaws.com" + }, + "fips-ca-west-1": { + "credentialScope": { + "region": "ca-west-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.ca-west-1.amazonaws.com" + }, + "fips-eu-central-1": { + "credentialScope": { + "region": "eu-central-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-central-1.amazonaws.com" + }, + "fips-eu-central-2": { + "credentialScope": { + "region": "eu-central-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-central-2.amazonaws.com" + }, + "fips-eu-north-1": { + "credentialScope": { + "region": "eu-north-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-north-1.amazonaws.com" + }, + "fips-eu-south-1": { + "credentialScope": { + "region": "eu-south-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-south-1.amazonaws.com" + }, + "fips-eu-south-2": { + "credentialScope": { + "region": "eu-south-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-south-2.amazonaws.com" + }, + "fips-eu-west-1": { + "credentialScope": { + "region": "eu-west-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-west-1.amazonaws.com" + }, + "fips-eu-west-2": { + "credentialScope": { + "region": "eu-west-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-west-2.amazonaws.com" + }, + "fips-eu-west-3": { + "credentialScope": { + "region": "eu-west-3" + }, + "deprecated": true, + "hostname": "wafv2-fips.eu-west-3.amazonaws.com" + }, + "fips-il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.il-central-1.amazonaws.com" + }, + "fips-me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.me-central-1.amazonaws.com" + }, + "fips-me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.me-south-1.amazonaws.com" + }, + "fips-mx-central-1": { + "credentialScope": { + "region": "mx-central-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.mx-central-1.amazonaws.com" + }, + "fips-sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.sa-east-1.amazonaws.com" + }, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "wafv2-fips.us-west-2.amazonaws.com" + }, + "il-central-1": { + "credentialScope": { + "region": "il-central-1" + }, + "hostname": "wafv2.il-central-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.il-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-central-1": { + "credentialScope": { + "region": "me-central-1" + }, + "hostname": "wafv2.me-central-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.me-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "me-south-1": { + "credentialScope": { + "region": "me-south-1" + }, + "hostname": "wafv2.me-south-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.me-south-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "mx-central-1": { + "credentialScope": { + "region": "mx-central-1" + }, + "hostname": "wafv2.mx-central-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.mx-central-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "sa-east-1": { + "credentialScope": { + "region": "sa-east-1" + }, + "hostname": "wafv2.sa-east-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.sa-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "hostname": "wafv2.us-east-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "hostname": "wafv2.us-east-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "hostname": "wafv2.us-west-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "hostname": "wafv2.us-west-2.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "wellarchitected": { + "endpoints": { + "ap-east-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-north-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "me-south-1": {}, + "sa-east-1": {}, + "us-east-1": {}, + "us-east-2": {}, + "us-west-1": {}, + "us-west-2": {} + } + }, + "wisdom": { + "endpoints": { + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "eu-central-1": {}, + "eu-west-2": {}, + "fips-ca-central-1": { + "deprecated": true + }, + "fips-us-east-1": { + "deprecated": true + }, + "fips-us-west-2": { + "deprecated": true + }, + "ui-ap-northeast-1": {}, + "ui-ap-northeast-2": {}, + "ui-ap-southeast-1": {}, + "ui-ap-southeast-2": {}, + "ui-ca-central-1": {}, + "ui-eu-central-1": {}, + "ui-eu-west-2": {}, + "ui-us-east-1": {}, + "ui-us-west-2": {}, + "us-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "tags": ["fips"] + } + ] + } + } + }, + "workdocs": { + "endpoints": { + "ap-northeast-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "eu-west-1": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "workdocs-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "workdocs-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "workdocs-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "workdocs-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "workmail": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "eu-west-1": {}, + "us-east-1": {}, + "us-west-2": {} + } + }, + "workspaces": { + "endpoints": { + "af-south-1": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "workspaces-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "workspaces-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "workspaces-web": { + "endpoints": { + "ap-northeast-1": {}, + "ap-south-1": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ca-central-1": {}, + "eu-central-1": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "workspaces-web-fips.us-east-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "workspaces-web-fips.us-west-2.amazonaws.com" + }, + "us-east-1": { + "variants": [ + { + "hostname": "workspaces-web-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "workspaces-web-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "xray": { + "endpoints": { + "af-south-1": {}, + "ap-east-1": {}, + "ap-east-2": {}, + "ap-northeast-1": {}, + "ap-northeast-2": {}, + "ap-northeast-3": {}, + "ap-south-1": {}, + "ap-south-2": {}, + "ap-southeast-1": {}, + "ap-southeast-2": {}, + "ap-southeast-3": {}, + "ap-southeast-4": {}, + "ap-southeast-5": {}, + "ap-southeast-6": {}, + "ap-southeast-7": {}, + "ca-central-1": {}, + "ca-west-1": {}, + "eu-central-1": {}, + "eu-central-2": {}, + "eu-north-1": {}, + "eu-south-1": {}, + "eu-south-2": {}, + "eu-west-1": {}, + "eu-west-2": {}, + "eu-west-3": {}, + "fips-us-east-1": { + "credentialScope": { + "region": "us-east-1" + }, + "deprecated": true, + "hostname": "xray-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2": { + "credentialScope": { + "region": "us-east-2" + }, + "deprecated": true, + "hostname": "xray-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1": { + "credentialScope": { + "region": "us-west-1" + }, + "deprecated": true, + "hostname": "xray-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2": { + "credentialScope": { + "region": "us-west-2" + }, + "deprecated": true, + "hostname": "xray-fips.us-west-2.amazonaws.com" + }, + "il-central-1": {}, + "me-central-1": {}, + "me-south-1": {}, + "mx-central-1": {}, + "sa-east-1": {}, + "us-east-1": { + "variants": [ + { + "hostname": "xray-fips.us-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-east-2": { + "variants": [ + { + "hostname": "xray-fips.us-east-2.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-1": { + "variants": [ + { + "hostname": "xray-fips.us-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-west-2": { + "variants": [ + { + "hostname": "xray-fips.us-west-2.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + } } }, - "services" : { - "access-analyzer" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "access-analyzer.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "access-analyzer.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "access-analyzer-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "access-analyzer.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "access-analyzer-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "access-analyzer.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "access-analyzer-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "access-analyzer-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "access-analyzer-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "access-analyzer-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "access-analyzer-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "access-analyzer-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "access-analyzer.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "access-analyzer.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "access-analyzer.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "access-analyzer.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "access-analyzer.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "access-analyzer-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "access-analyzer.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "access-analyzer-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "access-analyzer.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "access-analyzer-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "access-analyzer.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "access-analyzer-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "access-analyzer.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + }, + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "dnsSuffix": "amazonaws.com.cn", + "partition": "aws-cn", + "partitionName": "AWS China", + "regionRegex": "^cn\\-\\w+\\-\\d+$", + "regions": { + "cn-north-1": { + "description": "China (Beijing)" + }, + "cn-northwest-1": { + "description": "China (Ningxia)" + } + }, + "services": { + "access-analyzer": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "access-analyzer.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "access-analyzer.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "account": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "account.cn-northwest-1.amazonaws.com.cn" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "acm": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "acm-pca": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "airflow": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "api.ecr": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "api.ecr.cn-north-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "ecr.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "api.ecr.cn-northwest-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "ecr.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "api.pricing": { + "defaults": { + "credentialScope": { + "service": "pricing" + } + }, + "endpoints": { + "cn-northwest-1": {} + } + }, + "api.sagemaker": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "api.tunneling.iot": { + "defaults": { + "variants": [ + { + "dnsSuffix": "amazonaws.com.cn", + "hostname": "api.tunneling.iot-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + }, + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "api.iot-tunneling-fips.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "api.iot-tunneling.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "api.iot-tunneling.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "apigateway": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "appconfig": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "appconfigdata": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "applicationinsights": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "applicationinsights.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "applicationinsights.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "appmesh": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "appmesh.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "appmesh.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "appsync": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "appsync.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "appsync.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "arc-zonal-shift": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "athena": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "athena.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "athena.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "autoscaling": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "autoscaling-plans": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "backup": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "batch": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "budgets": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "budgets.amazonaws.com.cn" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "cassandra": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "ce": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "ce.cn-northwest-1.amazonaws.com.cn" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "cloudcontrolapi": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "cloudcontrolapi.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "cloudformation": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "account" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "account.us-east-1.amazonaws.com" + }, + "cloudfront": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "cloudfront.cn-northwest-1.amazonaws.com.cn", + "protocols": ["http", "https"] + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "cloudtrail": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "acm" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "acm-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "acm-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "acm-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "acm-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "acm-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "acm-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "acm-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "acm-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "acm-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "acm-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "acm-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "acm-fips.us-west-2.amazonaws.com" + "codebuild": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "acm-pca" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "acm-pca-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "acm-pca-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "acm-pca-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "acm-pca-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "acm-pca-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "acm-pca-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "acm-pca-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "acm-pca-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "acm-pca-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "acm-pca-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "acm-pca-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "acm-pca-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "codecommit": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "agreement-marketplace" : { - "endpoints" : { - "us-east-1" : { - "variants" : [ { - "hostname" : "agreement-marketplace.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] + }, + "codedeploy": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "airflow" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "amplify" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "amplifybackend" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "amplifyuibuilder" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "aoss" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "api.detective" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "detective.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "detective.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "detective.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "detective.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "detective.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "detective.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "detective.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "api.detective-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "detective.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "detective.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "detective.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "detective.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "detective.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "detective.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "detective.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "detective.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "detective.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "api.detective-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "api.detective-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "api.detective-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "api.detective-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.us-west-2.amazonaws.com" + }, + "codepipeline": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "api.ecr" : { - "defaults" : { - "variants" : [ { - "hostname" : "ecr-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "api.ecr.af-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "api.ecr.ap-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "api.ecr.ap-northeast-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "api.ecr.ap-northeast-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "api.ecr.ap-northeast-3.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "api.ecr.ap-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "api.ecr.ap-south-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "api.ecr.ap-southeast-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "api.ecr.ap-southeast-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "hostname" : "api.ecr.ap-southeast-3.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "api.ecr.ap-southeast-4.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "hostname" : "api.ecr.ap-southeast-5.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "credentialScope" : { - "region" : "ap-southeast-7" - }, - "hostname" : "api.ecr.ap-southeast-7.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "api.ecr.ca-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "hostname" : "api.ecr.ca-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "dkr-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ecr-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "dkr-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ecr-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "dkr-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ecr-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "dkr-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ecr-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "api.ecr.eu-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "api.ecr.eu-central-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "api.ecr.eu-north-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "api.ecr.eu-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "api.ecr.eu-south-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "api.ecr.eu-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "api.ecr.eu-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "api.ecr.eu-west-3.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-dkr-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-east-1.amazonaws.com" - }, - "fips-dkr-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-east-2.amazonaws.com" - }, - "fips-dkr-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-west-1.amazonaws.com" - }, - "fips-dkr-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-west-2.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "api.ecr.il-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "api.ecr.me-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "api.ecr.me-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "credentialScope" : { - "region" : "mx-central-1" - }, - "hostname" : "api.ecr.mx-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "api.ecr.sa-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "api.ecr.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ecr-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ecr.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "api.ecr.us-east-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ecr-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ecr.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "api.ecr.us-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ecr-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ecr.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "api.ecr.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ecr-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ecr.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + }, + "cognito-identity": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "cognito-identity.cn-north-1.amazonaws.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "compute-optimizer": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "compute-optimizer.cn-north-1.amazonaws.com.cn" + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "compute-optimizer.cn-northwest-1.amazonaws.com.cn" + } } - } - }, - "api.ecr-public" : { - "endpoints" : { - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" + }, + "config": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "cur": { + "endpoints": { + "cn-northwest-1": {} + } + }, + "data-ats.iot": { + "defaults": { + "credentialScope": { + "service": "iotdata" }, - "hostname" : "api.ecr-public.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-public.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] + "protocols": ["https"] }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" + "endpoints": { + "cn-north-1": { + "hostname": "data.ats.iot.cn-north-1.amazonaws.com.cn", + "protocols": ["https"] }, - "hostname" : "api.ecr-public.us-west-2.amazonaws.com" + "cn-northwest-1": {} } - } - }, - "api.iotdeviceadvisor" : { - "endpoints" : { - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "api.iotdeviceadvisor.ap-northeast-1.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" + }, + "data.iot": { + "defaults": { + "credentialScope": { + "service": "iotdata" }, - "hostname" : "api.iotdeviceadvisor.eu-west-1.amazonaws.com" + "protocols": ["https"] }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "data.jobs.iot": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "databrew": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "datasync": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "datasync.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] }, - "hostname" : "api.iotdeviceadvisor.us-east-1.amazonaws.com" + "cn-northwest-1": { + "variants": [ + { + "hostname": "datasync.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "datazone": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" + "endpoints": { + "cn-north-1": { + "hostname": "datazone.cn-north-1.api.amazonwebservices.com.cn" }, - "hostname" : "api.iotdeviceadvisor.us-west-2.amazonaws.com" + "cn-northwest-1": { + "hostname": "datazone.cn-northwest-1.api.amazonwebservices.com.cn" + } } - } - }, - "api.iotwireless" : { - "endpoints" : { - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "api.iotwireless.ap-northeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" + }, + "dax": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "directconnect": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "dlm": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "dlm.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] }, - "hostname" : "api.iotwireless.ap-southeast-2.amazonaws.com" + "cn-northwest-1": { + "variants": [ + { + "hostname": "dlm.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "dms": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "docdb": { + "endpoints": { + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "rds.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "ds": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "dynamodb": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "ebs": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "ec2": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "ecs": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "eks-auth": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "hostname": "eks-auth.cn-north-1.api.amazonwebservices.com.cn" + }, + "cn-northwest-1": { + "hostname": "eks-auth.cn-northwest-1.api.amazonwebservices.com.cn" + } + } + }, + "elasticache": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "elasticbeanstalk": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "elasticbeanstalk.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "elasticfilesystem": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "fips-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn" + }, + "fips-cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "elasticloadbalancing": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "elasticmapreduce": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "elasticmapreduce.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "elasticmapreduce.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "emr-containers": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "emr-serverless": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "entitlement.marketplace": { + "endpoints": { + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "entitlement-marketplace.cn-northwest-1.amazonaws.com.cn", + "protocols": ["https"], + "variants": [ + { + "hostname": "entitlement-marketplace.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "es": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "aos.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "aos.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "events": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "events.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "events.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "firehose": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "firehose.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "firehose.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "fms": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "fsx": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "gamelift": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "gameliftstreams": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "hostname": "gameliftstreams.cn-north-1.api.amazonwebservices.com.cn" + }, + "cn-northwest-1": { + "hostname": "gameliftstreams.cn-northwest-1.api.amazonwebservices.com.cn" + } + } + }, + "glacier": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "glue": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "glue.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "glue.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "greengrass": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": {} + }, + "isRegionalized": true + }, + "guardduty": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "api.iotwireless.eu-central-1.amazonaws.com" + "isRegionalized": true + }, + "health": { + "defaults": { + "protocols": ["https"], + "sslCommonName": "health.cn-northwest-1.amazonaws.com.cn" }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "api.iotwireless.eu-west-1.amazonaws.com" + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "global.health.amazonaws.com.cn" + } }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "api.iotwireless.sa-east-1.amazonaws.com" + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "iam": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "iam.cn-north-1.amazonaws.com.cn" + } }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "api.iotwireless.us-east-1.amazonaws.com" + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "identitystore": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "inspector2": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "internetmonitor": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" + "endpoints": { + "cn-north-1": { + "hostname": "internetmonitor.cn-north-1.api.amazonwebservices.com.cn" }, - "hostname" : "api.iotwireless.us-west-2.amazonaws.com" + "cn-northwest-1": { + "hostname": "internetmonitor.cn-northwest-1.api.amazonwebservices.com.cn" + } } - } - }, - "api.mediatailor" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "api.pricing" : { - "defaults" : { - "credentialScope" : { - "service" : "pricing" + }, + "iot": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } }, - "endpoints" : { - "ap-south-1" : { }, - "eu-central-1" : { }, - "us-east-1" : { } - } - }, - "api.sagemaker" : { - "defaults" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.us-west-2.amazonaws.com" + "iotanalytics": { + "endpoints": { + "cn-north-1": {} } - } - }, - "api.tunneling.iot" : { - "defaults" : { - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "api.tunneling.iot-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "api.iot-tunneling-fips.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "api.iot-tunneling.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "ap-east-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.us-east-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.us-east-2.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.us-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.us-west-2.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "iotevents": { + "endpoints": { + "cn-north-1": {} } - } - }, - "apigateway" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "apigateway-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "apigateway-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "apigateway-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "apigateway-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "apigateway-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "apigateway-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "apigateway-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "apigateway-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "apigateway-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "apigateway-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "apigateway-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "apigateway-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "ioteventsdata": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "data.iotevents.cn-north-1.amazonaws.com.cn" + } } - } - }, - "app-integrations" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "appconfig" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "appconfigdata" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "appflow" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "appflow-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "appflow-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "appflow-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "appflow-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "appflow-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "appflow-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "appflow-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "appflow-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "iotsecuredtunneling": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "applicationinsights" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "applicationinsights.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "applicationinsights.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "applicationinsights.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "applicationinsights.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "applicationinsights.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "applicationinsights.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "applicationinsights.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + }, + "iotsitewise": { + "endpoints": { + "cn-north-1": {} + } + }, + "iottwinmaker": { + "endpoints": { + "api-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "api.iottwinmaker.cn-north-1.amazonaws.com.cn" + }, + "cn-north-1": {}, + "data-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "data.iottwinmaker.cn-north-1.amazonaws.com.cn" + } + } + }, + "kafka": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "kafkaconnect": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } - } - }, - "appmesh" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "appmesh.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "appmesh.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "appmesh.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "appmesh.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "appmesh.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "appmesh.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "appmesh.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "appmesh.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "appmesh.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "appmesh-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "appmesh-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "appmesh.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "appmesh-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "appmesh.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "appmesh.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "appmesh.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "appmesh.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "appmesh.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "appmesh.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "appmesh.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "appmesh.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "appmesh.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "appmesh.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "appmesh.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "appmesh-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "appmesh-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "appmesh.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "appmesh-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "appmesh-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "appmesh-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "appmesh.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "appmesh-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "appmesh-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "appmesh-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "appmesh.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "appmesh-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "appmesh-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "appmesh-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "appmesh.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "appmesh-fips.us-west-2.amazonaws.com" + }, + "kendra-ranking": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "hostname": "kendra-ranking.cn-north-1.api.amazonwebservices.com.cn" + }, + "cn-northwest-1": { + "hostname": "kendra-ranking.cn-northwest-1.api.amazonwebservices.com.cn" + } + } + }, + "kinesis": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "kinesisanalytics": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "kinesisvideo": { + "endpoints": { + "cn-north-1": {} + } + }, + "kms": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "lakeformation": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "lakeformation.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "lakeformation.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "lambda": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "lambda.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "lambda.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "license-manager": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "license-manager-linux-subscriptions": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "logs": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "logs.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "logs.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "mediaconvert": { + "endpoints": { + "cn-northwest-1": { + "variants": [ + { + "hostname": "mediaconvert.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "memory-db": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "metering.marketplace": { + "defaults": { + "credentialScope": { + "service": "aws-marketplace" + } + }, + "endpoints": { + "cn-northwest-1": {} + } + }, + "metrics.sagemaker": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "monitoring": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "mq": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "neptune": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "rds.cn-north-1.amazonaws.com.cn" + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "rds.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "network-firewall": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "notifications": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "hostname": "notifications.cn-north-1.api.amazonwebservices.com.cn" + }, + "cn-northwest-1": { + "hostname": "notifications.cn-northwest-1.api.amazonwebservices.com.cn" + } + } + }, + "oam": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "oidc": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "oidc.cn-north-1.amazonaws.com.cn" + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "oidc.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "organizations": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "organizations.cn-northwest-1.amazonaws.com.cn" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "personalize": { + "endpoints": { + "cn-north-1": {} + } + }, + "pi": { + "endpoints": { + "cn-north-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "pipes": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "polly": { + "endpoints": { + "cn-northwest-1": { + "variants": [ + { + "hostname": "polly.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "portal.sso": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "portal.sso.cn-north-1.amazonaws.com.cn" + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "portal.sso.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "qbusiness": { + "defaults": { + "dnsSuffix": "api.amazonwebservices.com.cn", + "variants": [ + { + "dnsSuffix": "api.amazonwebservices.com.cn", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "hostname": "qbusiness.cn-north-1.api.amazonwebservices.com.cn" + }, + "cn-northwest-1": { + "hostname": "qbusiness.cn-northwest-1.api.amazonwebservices.com.cn" + } + } + }, + "quicksight": { + "endpoints": { + "cn-north-1": {} + } + }, + "ram": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + } + } + }, + "rbin": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "rbin.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "rbin.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "rds": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "redshift": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "redshift-serverless": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "resource-groups": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "rolesanywhere": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "route53": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "route53.amazonaws.com.cn" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-cn-global" + }, + "route53profiles": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "route53resolver": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "route53resolver.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "route53resolver.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "runtime.sagemaker": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "s3": { + "defaults": { + "protocols": ["http", "https"], + "signatureVersions": ["s3v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com.cn", + "hostname": "{service}.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "s3.dualstack.cn-north-1.amazonaws.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "s3.dualstack.cn-northwest-1.amazonaws.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "s3-control": { + "defaults": { + "protocols": ["https"], + "signatureVersions": ["s3v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com.cn", + "hostname": "{service}.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "s3-control.cn-north-1.amazonaws.com.cn", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.cn-north-1.amazonaws.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "s3-control.cn-northwest-1.amazonaws.com.cn", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control.dualstack.cn-northwest-1.amazonaws.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "savingsplans": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "savingsplans.cn-north-1.amazonaws.com.cn" + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "savingsplans.cn-northwest-1.amazonaws.com.cn" + } + }, + "isRegionalized": true + }, + "scheduler": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "schemas": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "secretsmanager": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "tags": ["dualstack"] + } + ] + } + } + }, + "securityhub": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "serverlessrepo": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": { + "protocols": ["https"] + }, + "cn-northwest-1": { + "protocols": ["https"] + } + } + }, + "servicecatalog": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "servicediscovery": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "servicediscovery.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "servicediscovery.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "servicequotas": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "signer": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {}, + "verification-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "verification.signer.cn-north-1.amazonaws.com.cn" + }, + "verification-cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "verification.signer.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "snowball": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "snowball-fips.cn-north-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "snowball-fips.cn-northwest-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "fips-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "deprecated": true, + "hostname": "snowball-fips.cn-north-1.amazonaws.com.cn" + }, + "fips-cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "deprecated": true, + "hostname": "snowball-fips.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "sns": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "sns.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "sns.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "sqs": { + "defaults": { + "protocols": ["http", "https"], + "sslCommonName": "{region}.queue.{dnsSuffix}" + }, + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "sqs.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "sqs.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "ssm": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "sso": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "states": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "states.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "states.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "storagegateway": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" + }, + "protocols": ["http", "https"] + }, + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "sts": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "support": { + "endpoints": { + "aws-cn-global": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "support.cn-north-1.amazonaws.com.cn" + } + }, + "partitionEndpoint": "aws-cn-global" + }, + "swf": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "synthetics": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "synthetics.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "synthetics.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "tagging": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "transcribe": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "cn.transcribe.cn-north-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "transcribe.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "cn.transcribe.cn-northwest-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "transcribe.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "transcribestreaming": { + "endpoints": { + "cn-north-1": { + "variants": [ + { + "hostname": "transcribestreaming.cn-north-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + }, + "cn-northwest-1": { + "variants": [ + { + "hostname": "transcribestreaming.cn-northwest-1.api.amazonwebservices.com.cn", + "tags": ["dualstack"] + } + ] + } + } + }, + "transfer": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "verifiedpermissions": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} + } + }, + "waf-regional": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "waf-regional.cn-north-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "waf-regional-fips.cn-north-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "waf-regional.cn-northwest-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "waf-regional-fips.cn-northwest-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "fips-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.cn-north-1.amazonaws.com.cn" + }, + "fips-cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "wafv2": { + "endpoints": { + "cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "hostname": "wafv2.cn-north-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "wafv2-fips.cn-north-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "hostname": "wafv2.cn-northwest-1.amazonaws.com.cn", + "variants": [ + { + "hostname": "wafv2-fips.cn-northwest-1.amazonaws.com.cn", + "tags": ["fips"] + } + ] + }, + "fips-cn-north-1": { + "credentialScope": { + "region": "cn-north-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.cn-north-1.amazonaws.com.cn" + }, + "fips-cn-northwest-1": { + "credentialScope": { + "region": "cn-northwest-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "workspaces": { + "endpoints": { + "cn-northwest-1": {} + } + }, + "xray": { + "endpoints": { + "cn-north-1": {}, + "cn-northwest-1": {} } } - }, - "apprunner" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "apprunner-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "apprunner-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "apprunner-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "apprunner-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "apprunner-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "apprunner-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + } + }, + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "{service}.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "dnsSuffix": "amazonaws.com", + "partition": "aws-us-gov", + "partitionName": "AWS GovCloud (US)", + "regionRegex": "^us\\-gov\\-\\w+\\-\\d+$", + "regions": { + "us-gov-east-1": { + "description": "AWS GovCloud (US-East)" + }, + "us-gov-west-1": { + "description": "AWS GovCloud (US-West)" + } + }, + "services": { + "access-analyzer": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "access-analyzer.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "access-analyzer.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer.us-gov-east-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "access-analyzer.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "access-analyzer.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "access-analyzer.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "access-analyzer.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "access-analyzer.us-gov-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "access-analyzer.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "access-analyzer.us-gov-west-1.amazonaws.com" + } + } + }, + "acm": { + "defaults": { + "variants": [ + { + "hostname": "acm.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "acm.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "acm.us-gov-west-1.amazonaws.com" + } + } + }, + "acm-pca": { + "defaults": { + "protocols": ["https"], + "variants": [ + { + "hostname": "acm-pca.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "acm-pca.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "acm-pca.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "acm-pca.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "acm-pca.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "aoss": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "api.detective": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "api.detective-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "api.detective-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "api.detective-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "detective-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "detective.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "api.detective-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "api.ecr": { + "defaults": { + "variants": [ + { + "hostname": "ecr-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "dkr-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ecr-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "dkr-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "ecr-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-dkr-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-gov-east-1.amazonaws.com" + }, + "fips-dkr-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-gov-west-1.amazonaws.com" + }, + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ecr-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "api.ecr.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ecr-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ecr.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "api.ecr.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "ecr-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ecr-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "ecr.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "api.sagemaker": { + "defaults": { + "variants": [ + { + "hostname": "api-fips.sagemaker.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "api-fips.sagemaker.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "api-fips.sagemaker.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "api-fips.sagemaker.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1-fips-secondary": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "api.sagemaker.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1-secondary": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "api.sagemaker.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "api.tunneling.iot": { + "defaults": { + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "api.tunneling.iot-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "api.iot-tunneling-fips.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "api.aws", + "hostname": "api.iot-tunneling.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.us-gov-east-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "api.iot-tunneling-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "api.iot-tunneling.us-gov-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "apigateway": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "appconfig": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "appconfig.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "appconfig.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "appconfig.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "appconfig.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "appconfigdata": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "appconfigdata.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "appconfigdata.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "appconfigdata.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "appconfigdata.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "application-autoscaling.us-gov-east-1.amazonaws.com", + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "application-autoscaling.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "deprecated": true, + "hostname": "application-autoscaling.us-gov-east-1.amazonaws.com", + "protocols": ["http", "https"] + }, + "us-gov-west-1": { + "hostname": "application-autoscaling.us-gov-west-1.amazonaws.com", + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "application-autoscaling.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "deprecated": true, + "hostname": "application-autoscaling.us-gov-west-1.amazonaws.com", + "protocols": ["http", "https"] + } + } + }, + "applicationinsights": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "applicationinsights-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "applicationinsights-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "applicationinsights-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "applicationinsights-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "applicationinsights.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "appstream2": { + "defaults": { + "credentialScope": { + "service": "appstream" + }, + "protocols": ["https"] + }, + "endpoints": { + "fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "appstream2-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "appstream2-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "appstream2-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "appstream2-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "appstream2-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "aps": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "arc-zonal-shift": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "athena": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "athena-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "athena-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "athena-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "athena-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "athena-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "athena.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "autoscaling": { + "defaults": { + "variants": [ + { + "hostname": "autoscaling.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "protocols": ["http", "https"] + }, + "us-gov-west-1": { + "protocols": ["http", "https"] + } + } + }, + "autoscaling-plans": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "autoscaling-plans.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "deprecated": true, + "hostname": "autoscaling-plans.us-gov-east-1.amazonaws.com", + "protocols": ["http", "https"] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "autoscaling-plans.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "deprecated": true, + "hostname": "autoscaling-plans.us-gov-west-1.amazonaws.com", + "protocols": ["http", "https"] + } + } + }, + "backup": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "backup-gateway": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "batch": { + "defaults": { + "variants": [ + { + "hostname": "batch.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "batch.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "batch.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "batch.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "batch.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "bedrock": { + "endpoints": { + "bedrock-fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "bedrock-fips.us-gov-east-1.amazonaws.com" + }, + "bedrock-fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "bedrock-fips.us-gov-west-1.amazonaws.com" + }, + "bedrock-runtime-fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "bedrock-runtime-fips.us-gov-east-1.amazonaws.com" + }, + "bedrock-runtime-fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "bedrock-runtime-fips.us-gov-west-1.amazonaws.com" + }, + "bedrock-runtime-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "bedrock-runtime.us-gov-east-1.amazonaws.com" + }, + "bedrock-runtime-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "bedrock-runtime.us-gov-west-1.amazonaws.com" + }, + "bedrock-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "bedrock.us-gov-east-1.amazonaws.com" + }, + "bedrock-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "bedrock.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "cassandra": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "cassandra.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "cassandra.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "cassandra.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "cassandra.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "cassandra.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "cassandra.us-gov-west-1.amazonaws.com" + } + } + }, + "cloudcontrolapi": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "cloudcontrolapi-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "cloudcontrolapi-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cloudcontrolapi-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cloudcontrolapi.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "clouddirectory": { + "endpoints": { + "us-gov-west-1": { + "variants": [ + { + "hostname": "clouddirectory.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "clouddirectory.us-gov-west-1.amazonaws.com" + } + } + }, + "cloudformation": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "cloudformation.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "cloudformation.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "cloudformation.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "cloudformation.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "cloudformation.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "cloudformation.us-gov-west-1.amazonaws.com" + } + } + }, + "cloudhsm": { + "endpoints": { + "us-gov-west-1": {} + } + }, + "cloudhsmv2": { + "defaults": { + "credentialScope": { + "service": "cloudhsm" + } + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "cloudhsmv2.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "cloudhsmv2.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "cloudtrail": { + "defaults": { + "variants": [ + { + "hostname": "cloudtrail.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "cloudtrail.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "cloudtrail.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "cloudtrail.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "cloudtrail.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "codebuild": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "codebuild-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "codebuild-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "codebuild-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "codebuild-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "codecommit": { + "endpoints": { + "fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "codecommit-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "codecommit-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "codecommit-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "codedeploy": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "codedeploy-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "codedeploy-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "codedeploy-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "codedeploy-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "codepipeline": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "codepipeline-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "codepipeline-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "codepipeline-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "codepipeline-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "codestar-connections": { + "endpoints": { + "us-gov-east-1": {} + } + }, + "cognito-identity": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "cognito-identity-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "cognito-identity.us-gov-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "cognito-identity-fips.us-gov-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-identity-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-identity.us-gov-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + } + } + }, + "cognito-idp": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "cognito-idp-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "cognito-idp.us-gov-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "cognito-idp-fips.us-gov-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "cognito-idp-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "cognito-idp.us-gov-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + } + } + }, + "comprehend": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "comprehend-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "comprehend-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "comprehend-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "comprehend.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "comprehendmedical": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "comprehendmedical-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "comprehendmedical-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "compute-optimizer": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "compute-optimizer-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "compute-optimizer-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "config": { + "defaults": { + "variants": [ + { + "hostname": "config.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "config.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "config.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "config.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "config.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "connect": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "connect.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "connect.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "controltower": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "controltower-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "controltower-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "controltower-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "controltower-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "data-ats.iot": { + "defaults": { + "credentialScope": { + "service": "iotdata" + }, + "protocols": ["https"] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "data.iot": { + "defaults": { + "credentialScope": { + "service": "iotdata" + }, + "protocols": ["https"] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "service": "iotdata" + }, + "deprecated": true, + "hostname": "data.iot-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "data.iot-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "data.jobs.iot": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "data.jobs.iot-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "data.jobs.iot-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "databrew": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "databrew.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "databrew.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "datasync": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "datasync-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "datasync-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "datasync-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "datasync-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "datasync-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "datasync.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "datazone": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "datazone.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "datazone.us-gov-west-1.api.aws" + } + } + }, + "directconnect": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "directconnect-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "directconnect-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "directconnect-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "directconnect-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "dlm": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "dlm-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "dlm.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "dlm.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "dlm-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "dlm.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "dlm.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "dlm.us-gov-west-1.amazonaws.com" + } + } + }, + "dms": { + "defaults": { + "variants": [ + { + "hostname": "dms.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "dms": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "dms.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "dms-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "dms.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "dms.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "dms.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "dms.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "dms.us-gov-west-1.amazonaws.com" + } + } + }, + "docdb": { + "endpoints": { + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "rds.us-gov-west-1.amazonaws.com" + } + } + }, + "drs": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "drs-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "drs-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "drs-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "drs-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ds": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "ds-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "ds-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "dynamodb": { + "defaults": { + "variants": [ + { + "hostname": "dynamodb.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "dynamodb-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "dynamodb-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "dynamodb-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "dynamodb-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "ebs": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "ec2": { + "defaults": { + "variants": [ + { + "hostname": "ec2.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "ec2.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "ec2.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "ec2.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "ec2.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "ecs": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "ecs-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ecs-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "ecs-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "ecs-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "eks.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "eks.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "eks.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "eks.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "eks.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "eks-auth": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "eks-auth.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "eks-auth.us-gov-west-1.api.aws" + } + } + }, + "elasticache": { + "defaults": { + "variants": [ + { + "hostname": "elasticache.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "elasticache.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": {}, + "us-gov-west-1": { + "variants": [ + { + "hostname": "elasticache.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "elasticache.us-gov-west-1.amazonaws.com" + } + } + }, + "elasticbeanstalk": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "elasticbeanstalk.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "elasticbeanstalk.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticbeanstalk.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "elasticbeanstalk.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "elasticbeanstalk.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "elasticbeanstalk.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticbeanstalk.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "elasticbeanstalk.us-gov-west-1.amazonaws.com" + } + } + }, + "elasticfilesystem": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "elasticloadbalancing": { + "defaults": { + "variants": [ + { + "hostname": "elasticloadbalancing.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "elasticloadbalancing.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "elasticloadbalancing.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "elasticloadbalancing.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "elasticloadbalancing.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "elasticmapreduce": { + "defaults": { + "variants": [ + { + "hostname": "elasticmapreduce.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "elasticmapreduce.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticmapreduce.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "elasticmapreduce.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "elasticmapreduce.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "email": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "email-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "email-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "email-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "email-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "emr-containers": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "emr-containers.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "emr-containers.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "emr-containers.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "emr-containers.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "emr-serverless": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "emr-serverless.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "emr-serverless.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "emr-serverless.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "emr-serverless.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "es": { + "endpoints": { + "fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "es-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "aos.us-gov-east-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "es-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "es-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "aos.us-gov-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "es-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "es-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "events": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "events.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "events.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "events.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "events.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "firehose": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "firehose-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "firehose-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "firehose-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "firehose-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "fms": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "fms-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "fms-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "fms-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "fms-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "fsx": { + "endpoints": { + "fips-prod-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-gov-east-1.amazonaws.com" + }, + "fips-prod-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-gov-west-1.amazonaws.com" + }, + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-gov-west-1.amazonaws.com" + }, + "prod-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "prod-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "fsx-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "fsx-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "gameliftstreams": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "gameliftstreams.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "gameliftstreams.us-gov-west-1.api.aws" + } + } + }, + "geo": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "geo-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "geo-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "glacier": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "glacier.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "glacier.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "glacier.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "glacier.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "glue": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "glue-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "glue-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "glue-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "glue-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "glue.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "glue-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "glue-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "glue.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "greengrass": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "dataplane-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "greengrass-ats.iot.us-gov-east-1.amazonaws.com" + }, + "dataplane-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "greengrass-ats.iot.us-gov-west-1.amazonaws.com" + }, + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "greengrass.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "greengrass.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "greengrass.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "greengrass.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + }, + "isRegionalized": true + }, + "guardduty": { + "defaults": { + "protocols": ["https"], + "variants": [ + { + "hostname": "guardduty.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "guardduty.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "guardduty.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "guardduty.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "guardduty.us-gov-west-1.amazonaws.com" + } + }, + "isRegionalized": true + }, + "health": { + "defaults": { + "protocols": ["https"], + "sslCommonName": "health.us-gov-west-1.amazonaws.com" + }, + "endpoints": { + "aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "global.health.us-gov.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "health-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "health-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iam": { + "endpoints": { + "aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "iam.us-gov.amazonaws.com", + "variants": [ + { + "hostname": "iam.us-gov.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "aws-us-gov-global-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "iam.us-gov.amazonaws.com" + }, + "iam-govcloud": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "iam.us-gov.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "iam-govcloud-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "iam.us-gov.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-us-gov-global" + }, + "identitystore": { + "defaults": { + "variants": [ + { + "hostname": "identitystore.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "identitystore.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "identitystore.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "identitystore.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "identitystore.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ingest.timestream": { + "endpoints": { + "us-gov-west-1": { + "variants": [ + { + "hostname": "ingest.timestream.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ingest.timestream.us-gov-west-1.amazonaws.com" + } + } + }, + "inspector": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "inspector-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "inspector-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "inspector-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "inspector-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "inspector2": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "inspector2-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "inspector2-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "inspector2-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "inspector2-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "internetmonitor": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "internetmonitor.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "internetmonitor.us-gov-west-1.api.aws" + } + } + }, + "iot": { + "endpoints": { + "fips-us-gov-east-1": { + "deprecated": true, + "hostname": "iot-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "deprecated": true, + "hostname": "iot-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "iot-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "iot-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotevents": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "iotevents-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "iotevents-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ioteventsdata": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "data.iotevents-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "data.iotevents.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "data.iotevents-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotsecuredtunneling": { + "defaults": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iotsitewise": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "iotsitewise-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "iotsitewise-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "iottwinmaker": { + "endpoints": { + "api-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "api.iottwinmaker.us-gov-west-1.amazonaws.com" + }, + "data-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "data.iottwinmaker.us-gov-west-1.amazonaws.com" + }, + "fips-api-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "api.iottwinmaker-fips.us-gov-west-1.amazonaws.com" + }, + "fips-data-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "data.iottwinmaker-fips.us-gov-west-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "iottwinmaker-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "iottwinmaker-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kafka": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "kafka.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "kafka.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "kafka.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "kafka.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "kafka.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kafka.us-gov-west-1.amazonaws.com" + } + } + }, + "kendra": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kendra-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "kendra-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kendra-ranking": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "kendra-ranking.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "kendra-ranking.us-gov-west-1.api.aws" + } + } + }, + "kinesis": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "kinesis.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kinesis.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "kinesis.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "kinesis.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "kinesis.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "kinesis.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kinesisanalytics": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kinesisanalytics-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "kinesisanalytics-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kinesisvideo": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "kinesisvideo-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kinesisvideo-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "kinesisvideo-fips.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "kinesisvideo-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "kinesisvideo-fips.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "kinesisvideo-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "kms": { + "endpoints": { + "ProdFips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "kms-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "kms-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "lakeformation": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "lakeformation-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "lakeformation-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "lakeformation-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lakeformation-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "lakeformation.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "lakeformation-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lakeformation-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "lakeformation.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "lambda": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "lambda-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "lambda-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "lambda-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lambda.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "lambda-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "lambda.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "license-manager": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "license-manager-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "license-manager-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "license-manager-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "license-manager-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "license-manager-linux-subscriptions": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "license-manager-user-subscriptions": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "logs": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "logs.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "logs.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "logs.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "logs.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "logs.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "m2": { + "endpoints": { + "fips-us-gov-east-1": { + "deprecated": true + }, + "fips-us-gov-west-1": { + "deprecated": true + }, + "us-gov-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + } + } + }, + "managedblockchain": { + "endpoints": { + "us-gov-west-1": {} + } + }, + "mediaconvert": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "mediaconvert.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "mediaconvert.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "mediaconvert.us-gov-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "mediaconvert.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + } + } + }, + "meetings-chime": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "meetings-chime-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "meetings-chime-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "meetings-chime-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "meetings-chime-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "memory-db": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "metering.marketplace": { + "defaults": { + "credentialScope": { + "service": "aws-marketplace" + } + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "metering-marketplace.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "metering-marketplace.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "metrics.sagemaker": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "mgn": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "mgn-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "mgn-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "mgn-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "mgn-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "models-v2-lex": { + "endpoints": { + "us-gov-west-1": {} + } + }, + "models.lex": { + "defaults": { + "credentialScope": { + "service": "lex" + }, + "variants": [ + { + "hostname": "models-fips.lex.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-west-1": { + "variants": [ + { + "hostname": "models-fips.lex.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "models-fips.lex.us-gov-west-1.amazonaws.com" + } + } + }, + "monitoring": { + "defaults": { + "variants": [ + { + "hostname": "monitoring.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "monitoring.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "monitoring.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "monitoring.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "monitoring.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "mq": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "mq-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "mq-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "mq-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "mq-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "neptune": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "rds.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "rds.us-gov-west-1.amazonaws.com" + } + } + }, + "network-firewall": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "network-firewall-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "network-firewall-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "network-firewall-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "network-firewall-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "networkmanager": { + "endpoints": { + "aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "networkmanager.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "networkmanager.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "networkmanager.us-gov-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "networkmanager.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "fips-aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "networkmanager.us-gov-west-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-us-gov-global" + }, + "notifications": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "notifications.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "notifications.us-gov-west-1.api.aws" + } + } + }, + "oam": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "oidc": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "oidc.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "oidc.us-gov-west-1.amazonaws.com" + } + } + }, + "organizations": { + "endpoints": { + "aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "organizations.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "organizations.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "organizations.us-gov-west-1.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-us-gov-global" + }, + "outposts": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "outposts.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "outposts.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "outposts.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "outposts.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "participant.connect": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "participant.connect.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "participant.connect.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "pi": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "pi-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "pi-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "pi-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "pi-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "pi.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "pinpoint": { + "defaults": { + "credentialScope": { + "service": "mobiletargeting" + } + }, + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "pinpoint-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "pinpoint.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "pinpoint-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "polly": { + "endpoints": { + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "polly-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "polly-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "polly-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "polly.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "portal.sso": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "portal.sso.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "portal.sso.us-gov-west-1.amazonaws.com" + } + } + }, + "qbusiness": { + "defaults": { + "dnsSuffix": "api.aws", + "variants": [ + { + "dnsSuffix": "api.aws", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "hostname": "qbusiness.us-gov-east-1.api.aws" + }, + "us-gov-west-1": { + "hostname": "qbusiness.us-gov-west-1.api.aws" + } + } + }, + "query.timestream": { + "endpoints": { + "us-gov-west-1": {} + } + }, + "quicksight": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "ram": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "ram.us-gov-east-1.amazonaws.com", + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ramus-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "ram.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "ram.us-gov-west-1.amazonaws.com", + "variants": [ + { + "tags": ["dualstack"] + }, + { + "hostname": "ram.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "ramus-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ram.us-gov-west-1.amazonaws.com" + } + } + }, + "rbin": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "rbin-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "rbin-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rbin-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rbin.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "rds": { + "defaults": { + "variants": [ + { + "hostname": "rds.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "rds.us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "rds.us-gov-east-1.amazonaws.com" + }, + "rds.us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "rds.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "rds.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "rds.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "rds.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "rds.us-gov-west-1.amazonaws.com" + } + } + }, + "redshift": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "redshift.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "redshift.us-gov-west-1.amazonaws.com" + } + } + }, + "redshift-serverless": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "redshift-serverless-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "redshift-serverless-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "redshift-serverless-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "rekognition": { + "endpoints": { + "rekognition-fips.us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-gov-west-1.amazonaws.com" + }, + "rekognition.us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "rekognition-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "rekognition-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "rekognition-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "rekognition.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "rekognition-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "resiliencehub": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "resiliencehub-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "resiliencehub-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "resiliencehub-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resiliencehub-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "resiliencehub.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "resiliencehub-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "resiliencehub-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "resiliencehub.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "resource-groups": { + "defaults": { + "variants": [ + { + "hostname": "resource-groups.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "resource-groups.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "resource-groups.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "resource-groups.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "resource-groups.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "rolesanywhere": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "rolesanywhere-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "rolesanywhere-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "rolesanywhere-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "rolesanywhere-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "route53": { + "endpoints": { + "aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "route53.us-gov.amazonaws.com", + "variants": [ + { + "hostname": "route53.us-gov.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "fips-aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "route53.us-gov.amazonaws.com" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-us-gov-global" + }, + "route53profiles": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "route53profiles-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "route53profiles-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "route53profiles.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "route53resolver": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "route53resolver.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver.us-gov-east-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "route53resolver.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-east-1-fips": { + "deprecated": true, + "hostname": "route53resolver.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "route53resolver.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "route53resolver.us-gov-west-1.api.aws", + "tags": ["dualstack"] + }, + { + "hostname": "route53resolver.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-west-1-fips": { + "deprecated": true, + "hostname": "route53resolver.us-gov-west-1.amazonaws.com" + } + } + }, + "rum": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "runtime-v2-lex": { + "endpoints": { + "us-gov-west-1": {} + } + }, + "runtime.lex": { + "defaults": { + "credentialScope": { + "service": "lex" + }, + "variants": [ + { + "hostname": "runtime-fips.lex.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-west-1": { + "variants": [ + { + "hostname": "runtime-fips.lex.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "runtime-fips.lex.us-gov-west-1.amazonaws.com" + } + } + }, + "runtime.sagemaker": { + "defaults": { + "variants": [ + { + "hostname": "runtime.sagemaker.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": { + "variants": [ + { + "hostname": "runtime.sagemaker.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "runtime.sagemaker.us-gov-west-1.amazonaws.com" + } + } + }, + "s3": { + "defaults": { + "signatureVersions": ["s3", "s3v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}-fips.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "hostname": "s3.us-gov-east-1.amazonaws.com", + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "s3-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3.dualstack.us-gov-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "hostname": "s3.us-gov-west-1.amazonaws.com", + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "s3-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3.dualstack.us-gov-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + } + } + }, + "s3-control": { + "defaults": { + "protocols": ["https"], + "signatureVersions": ["s3v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}-fips.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack", "fips"] + }, + { + "dnsSuffix": "amazonaws.com", + "hostname": "{service}.dualstack.{region}.{dnsSuffix}", + "tags": ["dualstack"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "s3-control.us-gov-east-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-gov-east-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-gov-east-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-gov-east-1.amazonaws.com", + "signatureVersions": ["s3v4"] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "s3-control.us-gov-west-1.amazonaws.com", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-gov-west-1.amazonaws.com", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-gov-west-1.amazonaws.com", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-gov-west-1.amazonaws.com", + "signatureVersions": ["s3v4"] + } + } + }, + "s3-outposts": { + "endpoints": { + "fips-us-gov-east-1": { + "deprecated": true + }, + "fips-us-gov-west-1": { + "deprecated": true + }, + "us-gov-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + } + } + }, + "scheduler": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "schemas": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "secretsmanager": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "deprecated": true + }, + "us-gov-west-1": { + "variants": [ + { + "tags": ["dualstack"] + }, + { + "tags": ["dualstack", "fips"] + }, + { + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "deprecated": true + } + } + }, + "securityhub": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "securityhub-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "securityhub-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "securityhub-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securityhub.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "securityhub-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securityhub.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "securitylake": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "securitylake.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securitylake.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "securitylake.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "securitylake.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "securitylake.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "securitylake.us-gov-west-1.amazonaws.com" + } + } + }, + "serverlessrepo": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-gov-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "serverlessrepo.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "serverlessrepo.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "serverlessrepo.us-gov-west-1.amazonaws.com" + } + } + }, + "servicecatalog": { + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "servicecatalog-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "servicecatalog-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "servicecatalog-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "servicecatalog-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "servicecatalog-appregistry": { + "defaults": { + "variants": [ + { + "hostname": "servicecatalog-appregistry.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "servicediscovery": { + "endpoints": { + "servicediscovery": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "servicediscovery-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "servicediscovery-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "servicediscovery-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "servicediscovery-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "servicediscovery-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "servicediscovery.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "servicediscovery-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "servicequotas": { + "defaults": { + "protocols": ["https"], + "variants": [ + { + "hostname": "servicequotas.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "servicequotas.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "servicequotas.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "servicequotas.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "servicequotas.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "signer": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "signer-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "signer-fips.us-gov-west-1.amazonaws.com" + }, + "fips-verification-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "verification.signer-fips.us-gov-east-1.amazonaws.com" + }, + "fips-verification-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "verification.signer-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "signer-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "signer-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "verification-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "verification.signer.us-gov-east-1.amazonaws.com" + }, + "verification-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "verification.signer.us-gov-west-1.amazonaws.com" + } + } + }, + "simspaceweaver": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "simspaceweaver.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "simspaceweaver.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "simspaceweaver.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "simspaceweaver.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "sms-voice": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "sms-voice-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "sms-voice-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "sms-voice-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "sms-voice-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "sms-voice-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "sms-voice.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "snowball": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "snowball-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "snowball-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "snowball-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "snowball-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "snowball-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "snowball.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "sns": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "sns.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "sns.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "sns.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "sns.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "sqs": { + "defaults": { + "variants": [ + { + "hostname": "sqs.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "sqs.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "sqs.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "sqs.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "protocols": ["http", "https"], + "sslCommonName": "{region}.queue.{dnsSuffix}", + "variants": [ + { + "hostname": "sqs.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "ssm": { + "defaults": { + "variants": [ + { + "hostname": "ssm.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "ssm.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "ssm.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "ssm.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "ssm.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "sso": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "sso.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "sso.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "sso.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "sso.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "sso.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "sso.us-gov-west-1.amazonaws.com" + } + } + }, + "states": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "states-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "states.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "states-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "states.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "storagegateway": { + "endpoints": { + "fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "storagegateway-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "storagegateway-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" + }, + "variants": [ + { + "hostname": "streams.dynamodb.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "sts": { + "defaults": { + "variants": [ + { + "hostname": "sts.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "us-gov-east-1": { + "variants": [ + { + "hostname": "sts.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "sts.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "sts.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "sts.us-gov-west-1.amazonaws.com" + } + } + }, + "support": { + "endpoints": { + "aws-us-gov-global": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "support.us-gov-west-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "support.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "support.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + }, + "partitionEndpoint": "aws-us-gov-global" + }, + "swf": { + "endpoints": { + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "swf.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "swf.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-east-1-fips": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "swf.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "swf.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "swf.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "swf.us-gov-west-1.amazonaws.com" + } + } + }, + "synthetics": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "synthetics-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "synthetics-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "synthetics-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "synthetics-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "synthetics-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "synthetics.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "tagging": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "textract": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "textract-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "textract-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "textract-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "textract-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "textract-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "textract.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "transcribe": { + "defaults": { + "protocols": ["https"], + "variants": [ + { + "hostname": "fips.transcribe.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "fips.transcribe.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "fips.transcribe.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribe-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribe.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "transcribestreaming": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "transcribestreaming-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "transcribestreaming-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "transcribestreaming-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribestreaming-fips.us-gov-east-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribestreaming.us-gov-east-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "transcribestreaming-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "transcribestreaming-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "transcribestreaming.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + } + } + }, + "transfer": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "transfer-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "transfer-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "transfer-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "transfer-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "translate": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-gov-west-1": { + "variants": [ + { + "hostname": "translate-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + }, + { + "hostname": "translate-fips.us-gov-west-1.api.aws", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "translate.us-gov-west-1.api.aws", + "tags": ["dualstack"] + } + ] + }, + "us-gov-west-1-fips": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "translate-fips.us-gov-west-1.amazonaws.com" + } + } + }, + "verifiedpermissions": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "verifiedpermissions-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "verifiedpermissions-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "waf-regional": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "waf-regional-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "waf-regional.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "waf-regional.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "waf-regional-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "wafv2": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "wafv2-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "hostname": "wafv2.us-gov-east-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "hostname": "wafv2.us-gov-west-1.amazonaws.com", + "variants": [ + { + "hostname": "wafv2-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "wellarchitected": { + "endpoints": { + "us-gov-east-1": {}, + "us-gov-west-1": {} + } + }, + "workspaces": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "workspaces-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "workspaces-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } + } + }, + "xray": { + "endpoints": { + "fips-us-gov-east-1": { + "credentialScope": { + "region": "us-gov-east-1" + }, + "deprecated": true, + "hostname": "xray-fips.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1": { + "credentialScope": { + "region": "us-gov-west-1" + }, + "deprecated": true, + "hostname": "xray-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-east-1": { + "variants": [ + { + "hostname": "xray-fips.us-gov-east-1.amazonaws.com", + "tags": ["fips"] + } + ] + }, + "us-gov-west-1": { + "variants": [ + { + "hostname": "xray-fips.us-gov-west-1.amazonaws.com", + "tags": ["fips"] + } + ] + } } } - }, - "appstream2" : { - "defaults" : { - "credentialScope" : { - "service" : "appstream" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "appstream2-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "appstream2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "appstream2-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { }, - "us-west-2" : { - "variants" : [ { - "hostname" : "appstream2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "appstream2-fips.us-west-2.amazonaws.com" + } + }, + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "c2s.ic.gov", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] } + ] + }, + "dnsSuffix": "c2s.ic.gov", + "partition": "aws-iso", + "partitionName": "AWS ISO (US)", + "regionRegex": "^us\\-iso\\-\\w+\\-\\d+$", + "regions": { + "us-iso-east-1": { + "description": "US ISO East" + }, + "us-iso-west-1": { + "description": "US ISO WEST" } }, - "appsync" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "appsync.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "appsync.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "appsync.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "appsync.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "appsync.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "appsync.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "appsync.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "appsync.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "appsync.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "appsync.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "appsync.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "appsync.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "appsync.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "appsync.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "appsync.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "appsync.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "appsync.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "appsync.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "appsync.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "appsync.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "appsync.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "appsync.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "appsync.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "appsync.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "appsync.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "appsync.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "appsync.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "appsync.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + "services": { + "acm": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} } - } - }, - "aps" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { }, - "ap-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { }, - "ap-southeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { }, - "eu-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "deprecated" : true - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "deprecated" : true - }, - "us-west-1" : { }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "deprecated" : true + }, + "agreement-marketplace": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "agreement-marketplace-fips.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "agreement-marketplace-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "athena" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "athena.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "athena.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "athena.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "athena.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "athena.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "athena.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "athena.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "athena.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "athena.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "athena.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "athena.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "athena.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "athena-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "athena-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "athena.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "athena.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "athena.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "athena.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "athena.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "athena.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "athena.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "athena.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "athena-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "athena-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "athena-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "athena-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "athena-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "athena-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "athena.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "athena.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "athena.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "athena.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "athena-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "athena-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "athena-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "athena-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + }, + "api.ecr": { + "endpoints": { + "us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "api.ecr.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "hostname": "api.ecr.us-iso-west-1.c2s.ic.gov" + } } - } - }, - "auditmanager" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "auditmanager-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "auditmanager-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "auditmanager-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "auditmanager-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "auditmanager-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "auditmanager-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "auditmanager-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "auditmanager-fips.us-west-2.amazonaws.com" + }, + "api.pricing": { + "defaults": { + "credentialScope": { + "service": "pricing" + } + }, + "endpoints": { + "us-iso-east-1": {} } - } - }, - "autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "autoscaling-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "autoscaling-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "autoscaling-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "autoscaling-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "autoscaling-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "autoscaling-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "autoscaling-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "autoscaling-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "autoscaling-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "autoscaling-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "autoscaling-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "autoscaling-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "api.sagemaker": { + "endpoints": { + "us-iso-east-1": {} } - } - }, - "autoscaling-plans" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "backup" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "backup-gateway" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "batch" : { - "defaults" : { - "variants" : [ { - "hostname" : "fips.batch.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "fips.batch.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "fips.batch.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "fips.batch.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "fips.batch.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "fips.batch.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "fips.batch.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "fips.batch.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "fips.batch.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "apigateway": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} } - } - }, - "bedrock" : { - "endpoints" : { - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "bedrock-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "bedrock.ap-northeast-1.amazonaws.com" + }, + "appconfig": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "appconfigdata": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] }, - "bedrock-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "arc-zonal-shift": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "athena": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "autoscaling": { + "endpoints": { + "us-iso-east-1": { + "protocols": ["http", "https"] }, - "hostname" : "bedrock.ap-northeast-2.amazonaws.com" - }, - "bedrock-ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" + "us-iso-west-1": {} + } + }, + "backup": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "batch": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "bedrock": { + "endpoints": { + "bedrock-runtime-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "bedrock-runtime.us-iso-east-1.c2s.ic.gov" }, - "hostname" : "bedrock.ap-northeast-3.amazonaws.com" - }, - "bedrock-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" + "bedrock-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "bedrock.us-iso-east-1.c2s.ic.gov" }, - "hostname" : "bedrock.ap-south-1.amazonaws.com" - }, - "bedrock-ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" + "us-iso-east-1": {} + } + }, + "budgets": { + "endpoints": { + "aws-iso-global": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "budgets.c2s.ic.gov" }, - "hostname" : "bedrock.ap-south-2.amazonaws.com" + "us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "budgets.c2s.ic.gov" + } }, - "bedrock-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-global" + }, + "ce": { + "endpoints": { + "aws-iso-global": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "ce.us-iso-east-1.c2s.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-global" + }, + "cloudcontrolapi": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "cloudformation": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "cloudtrail": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "codebuild": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "codedeploy": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "comprehend": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "comprehend-fips.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "comprehend-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "config": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "config-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "config-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "config-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "config-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "datapipeline": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "datasync": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "datasync-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "datasync-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "datasync-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "datasync-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "directconnect": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "dlm": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "dms": { + "defaults": { + "variants": [ + { + "hostname": "dms.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "dms": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "dms.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "dms-fips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "dms.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "dms.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-east-1-fips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "dms.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "dms.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1-fips": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "dms.us-iso-west-1.c2s.ic.gov" + } + } + }, + "ds": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "ds-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "ds-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "dynamodb": { + "endpoints": { + "us-iso-east-1": { + "protocols": ["http", "https"] + }, + "us-iso-west-1": {} + } + }, + "ebs": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "ec2": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "ecs": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "elasticache": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "elasticfilesystem": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "elasticloadbalancing": { + "endpoints": { + "us-iso-east-1": { + "protocols": ["http", "https"] + }, + "us-iso-west-1": {} + } + }, + "elasticmapreduce": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "protocols": ["https"], + "variants": [ + { + "hostname": "elasticmapreduce.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "elasticmapreduce.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "es": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "events": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "firehose": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "fsx": { + "endpoints": { + "fips-prod-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "fsx-fips.us-iso-east-1.c2s.ic.gov" + }, + "prod-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "fsx-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "fsx-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": {} + } + }, + "glacier": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "glacier-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "glacier-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "glacier-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "glacier-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "glue": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "guardduty": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-iso-east-1": {} + }, + "isRegionalized": true + }, + "health": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "iam": { + "endpoints": { + "aws-iso-global": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "iam.us-iso-east-1.c2s.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-global" + }, + "kinesis": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "kinesisanalytics": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "kinesisvideo": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "kms": { + "endpoints": { + "ProdFips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "kms-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-east-1-fips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "kms-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] }, - "hostname" : "bedrock.ap-southeast-1.amazonaws.com" - }, - "bedrock-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" + "us-iso-west-1-fips": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-iso-west-1.c2s.ic.gov" + } + } + }, + "lakeformation": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "lambda": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "license-manager": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "logs": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "medialive": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "medialive-fips.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "medialive-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "mediapackage": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "metrics.sagemaker": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "monitoring": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "network-firewall": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "oam": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "organizations": { + "endpoints": { + "aws-iso-global": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "organizations.us-iso-east-1.c2s.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-global" + }, + "outposts": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "pi": { + "endpoints": { + "us-iso-east-1": { + "protocols": ["https"] + }, + "us-iso-west-1": { + "protocols": ["https"] + } + } + }, + "ram": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "rbin": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "rbin-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "rbin-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "rds": { + "endpoints": { + "rds.us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "rds.us-iso-east-1.c2s.ic.gov" + }, + "rds.us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "rds.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "rds.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-east-1-fips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "rds.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "rds.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1-fips": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "rds.us-iso-west-1.c2s.ic.gov" + } + } + }, + "redshift": { + "endpoints": { + "us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "redshift.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "hostname": "redshift.us-iso-west-1.c2s.ic.gov" + } + } + }, + "resource-groups": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "route53": { + "endpoints": { + "aws-iso-global": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "route53.c2s.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-global" + }, + "route53resolver": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "runtime.sagemaker": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "s3": { + "defaults": { + "signatureVersions": ["s3v4"] + }, + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "protocols": ["http", "https"], + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-fips.dualstack.us-iso-east-1.c2s.ic.gov", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "s3-fips.dualstack.us-iso-west-1.c2s.ic.gov", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "s3-control": { + "defaults": { + "protocols": ["https"], + "signatureVersions": ["s3v4"] + }, + "endpoints": { + "us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "s3-control.us-iso-east-1.c2s.ic.gov", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-iso-east-1.c2s.ic.gov", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-iso-east-1.c2s.ic.gov", + "tags": ["dualstack"] + } + ] + }, + "us-iso-east-1-fips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-iso-east-1.c2s.ic.gov", + "signatureVersions": ["s3v4"] + }, + "us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "hostname": "s3-control.us-iso-west-1.c2s.ic.gov", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-iso-west-1.c2s.ic.gov", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-iso-west-1.c2s.ic.gov", + "tags": ["dualstack"] + } + ] + }, + "us-iso-west-1-fips": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-iso-west-1.c2s.ic.gov", + "signatureVersions": ["s3v4"] + } + } + }, + "s3-outposts": { + "endpoints": { + "fips-us-iso-east-1": { + "deprecated": true + }, + "us-iso-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + } + } + }, + "scheduler": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "secretsmanager": { + "endpoints": { + "us-iso-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-iso-east-1-fips": { + "deprecated": true + }, + "us-iso-west-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-iso-west-1-fips": { + "deprecated": true + } + } + }, + "securityhub": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "servicediscovery": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "servicequotas": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "snowball": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "sns": { + "endpoints": { + "us-iso-east-1": { + "protocols": ["http", "https"] + }, + "us-iso-west-1": {} + } + }, + "sqs": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "sqs.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "sqs.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "protocols": ["http", "https"], + "variants": [ + { + "hostname": "sqs.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "sqs.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "ssm": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "states": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "states-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "states-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "states-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "states-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "storagegateway": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" + } + }, + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "sts": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "support": { + "endpoints": { + "aws-iso-global": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "hostname": "support.us-iso-east-1.c2s.ic.gov" + } + }, + "partitionEndpoint": "aws-iso-global" + }, + "swf": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "swf-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "swf-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "swf-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "swf-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "synthetics": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "tagging": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + }, + "textract": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "transcribe": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "fips.transcribe.us-iso-east-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "fips.transcribe.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "transcribestreaming": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "translate": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-iso-east-1": { + "variants": [ + { + "hostname": "translate-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-east-1-fips": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "translate-fips.us-iso-east-1.c2s.ic.gov" + } + } + }, + "wafv2": { + "endpoints": { + "us-iso-east-1": {} + } + }, + "workspaces": { + "endpoints": { + "fips-us-iso-east-1": { + "credentialScope": { + "region": "us-iso-east-1" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-iso-east-1.c2s.ic.gov" + }, + "fips-us-iso-west-1": { + "credentialScope": { + "region": "us-iso-west-1" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-iso-west-1.c2s.ic.gov" + }, + "us-iso-east-1": { + "variants": [ + { + "hostname": "workspaces-fips.us-iso-east-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-iso-west-1": { + "variants": [ + { + "hostname": "workspaces-fips.us-iso-west-1.c2s.ic.gov", + "tags": ["fips"] + } + ] + } + } + }, + "xray": { + "endpoints": { + "us-iso-east-1": {}, + "us-iso-west-1": {} + } + } + } + }, + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "sc2s.sgov.gov", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "dnsSuffix": "sc2s.sgov.gov", + "partition": "aws-iso-b", + "partitionName": "AWS ISOB (US)", + "regionRegex": "^us\\-isob\\-\\w+\\-\\d+$", + "regions": { + "us-isob-east-1": { + "description": "US ISOB East (Ohio)" + }, + "us-isob-west-1": { + "description": "US ISOB West" + } + }, + "services": { + "api.ecr": { + "endpoints": { + "us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "api.ecr.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "bedrock.ap-southeast-2.amazonaws.com" + "us-isob-west-1": {} + } + }, + "api.pricing": { + "defaults": { + "credentialScope": { + "service": "pricing" + } }, - "bedrock-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "bedrock.ca-central-1.amazonaws.com" + "endpoints": { + "us-isob-east-1": {} + } + }, + "api.sagemaker": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "apigateway": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "appconfig": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "appconfigdata": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] }, - "bedrock-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "bedrock.eu-central-1.amazonaws.com" + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "arc-zonal-shift": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "athena": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "autoscaling": { + "defaults": { + "protocols": ["http", "https"] }, - "bedrock-eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "backup": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "batch": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "budgets": { + "endpoints": { + "aws-iso-b-global": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "budgets.global.sc2s.sgov.gov" }, - "hostname" : "bedrock.eu-central-2.amazonaws.com" + "us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "budgets.global.sc2s.sgov.gov" + } }, - "bedrock-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "bedrock.eu-north-1.amazonaws.com" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-b-global" + }, + "ce": { + "endpoints": { + "aws-iso-b-global": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "ce.us-isob-east-1.sc2s.sgov.gov" + } }, - "bedrock-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "bedrock.eu-south-1.amazonaws.com" - }, - "bedrock-eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "bedrock.eu-south-2.amazonaws.com" - }, - "bedrock-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "bedrock.eu-west-1.amazonaws.com" - }, - "bedrock-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "bedrock.eu-west-2.amazonaws.com" - }, - "bedrock-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "bedrock.eu-west-3.amazonaws.com" - }, - "bedrock-fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "bedrock-fips.ca-central-1.amazonaws.com" - }, - "bedrock-fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "bedrock-fips.us-east-1.amazonaws.com" - }, - "bedrock-fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "bedrock-fips.us-east-2.amazonaws.com" - }, - "bedrock-fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "bedrock-fips.us-west-2.amazonaws.com" - }, - "bedrock-runtime-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "bedrock-runtime.ap-northeast-1.amazonaws.com" - }, - "bedrock-runtime-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "bedrock-runtime.ap-northeast-2.amazonaws.com" - }, - "bedrock-runtime-ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "bedrock-runtime.ap-northeast-3.amazonaws.com" - }, - "bedrock-runtime-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "bedrock-runtime.ap-south-1.amazonaws.com" - }, - "bedrock-runtime-ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "bedrock-runtime.ap-south-2.amazonaws.com" - }, - "bedrock-runtime-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "bedrock-runtime.ap-southeast-1.amazonaws.com" - }, - "bedrock-runtime-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "bedrock-runtime.ap-southeast-2.amazonaws.com" - }, - "bedrock-runtime-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "bedrock-runtime.ca-central-1.amazonaws.com" - }, - "bedrock-runtime-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "bedrock-runtime.eu-central-1.amazonaws.com" - }, - "bedrock-runtime-eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "bedrock-runtime.eu-central-2.amazonaws.com" - }, - "bedrock-runtime-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "bedrock-runtime.eu-north-1.amazonaws.com" - }, - "bedrock-runtime-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "bedrock-runtime.eu-south-1.amazonaws.com" - }, - "bedrock-runtime-eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "bedrock-runtime.eu-south-2.amazonaws.com" - }, - "bedrock-runtime-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "bedrock-runtime.eu-west-1.amazonaws.com" - }, - "bedrock-runtime-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "bedrock-runtime.eu-west-2.amazonaws.com" - }, - "bedrock-runtime-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "bedrock-runtime.eu-west-3.amazonaws.com" - }, - "bedrock-runtime-fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "bedrock-runtime-fips.ca-central-1.amazonaws.com" - }, - "bedrock-runtime-fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "bedrock-runtime-fips.us-east-1.amazonaws.com" - }, - "bedrock-runtime-fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "bedrock-runtime-fips.us-east-2.amazonaws.com" - }, - "bedrock-runtime-fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "bedrock-runtime-fips.us-west-2.amazonaws.com" - }, - "bedrock-runtime-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-b-global" + }, + "cloudcontrolapi": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "cloudformation": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "cloudtrail": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "cloudtrail-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "cloudtrail-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] }, - "hostname" : "bedrock-runtime.sa-east-1.amazonaws.com" - }, - "bedrock-runtime-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" + "us-isob-west-1": {} + } + }, + "codebuild": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "codedeploy": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "config": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "config-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "config-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-west-1": {} + } + }, + "datasync": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "directconnect": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "dlm": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "dms": { + "defaults": { + "variants": [ + { + "hostname": "dms.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "endpoints": { + "dms": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "dms.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "dms-fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "dms.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "dms.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-east-1-fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "dms.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-west-1": {} + } + }, + "ds": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "ds-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "ds-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + } + } + }, + "dynamodb": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "ebs": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "ec2": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "ecs": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "elasticache": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "elasticfilesystem": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "bedrock-runtime.us-east-1.amazonaws.com" - }, - "bedrock-runtime-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" + "us-isob-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + } + } + }, + "elasticloadbalancing": { + "endpoints": { + "us-isob-east-1": { + "protocols": ["https"] }, - "hostname" : "bedrock-runtime.us-east-2.amazonaws.com" - }, - "bedrock-runtime-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" + "us-isob-west-1": {} + } + }, + "elasticmapreduce": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "elasticmapreduce.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "bedrock-runtime.us-west-2.amazonaws.com" - }, - "bedrock-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" + "us-isob-east-1": { + "variants": [ + { + "hostname": "elasticmapreduce.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] }, - "hostname" : "bedrock.sa-east-1.amazonaws.com" - }, - "bedrock-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" + "us-isob-west-1": {} + } + }, + "es": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "events": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "firehose": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "fsx": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "glacier": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "glacier-fips.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "bedrock.us-east-1.amazonaws.com" + "us-isob-east-1": { + "variants": [ + { + "hostname": "glacier-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + } + } + }, + "glue": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "guardduty": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "health": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "iam": { + "endpoints": { + "aws-iso-b-global": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "iam.us-isob-east-1.sc2s.sgov.gov" + } }, - "bedrock-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-b-global" + }, + "kinesis": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "kinesisanalytics": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "kms": { + "endpoints": { + "ProdFips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "bedrock.us-east-2.amazonaws.com" - }, - "bedrock-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" + "us-isob-east-1": { + "variants": [ + { + "hostname": "kms-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] }, - "hostname" : "bedrock.us-west-2.amazonaws.com" - }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "billingconductor" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" + "us-isob-east-1-fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "billingconductor.us-east-1.amazonaws.com" + "us-isob-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "braket" : { - "endpoints" : { - "eu-north-1" : { - "variants" : [ { - "hostname" : "braket.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "braket.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "braket.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "braket.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "braket.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + "lakeformation": { + "endpoints": { + "us-isob-east-1": {} } - } - }, - "budgets" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "budgets.amazonaws.com" + }, + "lambda": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "cases" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-us-east-1" : { - "deprecated" : true - }, - "fips-us-west-2" : { - "deprecated" : true - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] + "license-manager": { + "endpoints": { + "us-isob-east-1": {} } - } - }, - "cassandra" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cassandra-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cassandra-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cassandra-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cassandra-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "logs": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } - } - }, - "catalog.marketplace" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "ce" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" + }, + "medialive": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "medialive-fips.us-isob-east-1.sc2s.sgov.gov" }, - "hostname" : "ce.us-east-1.amazonaws.com" + "us-isob-east-1": { + "variants": [ + { + "hostname": "medialive-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + } } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "chime" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "chime.us-east-1.amazonaws.com", - "protocols" : [ "https" ] + "mediapackage": { + "endpoints": { + "us-isob-east-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "cleanrooms" : { - "endpoints" : { - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "cleanrooms.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "cleanrooms.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "cleanrooms.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "cleanrooms.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "cleanrooms.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "cleanrooms.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "cleanrooms.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "cleanrooms.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cleanrooms-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cleanrooms-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cleanrooms-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cleanrooms-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cleanrooms-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cleanrooms.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cleanrooms-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cleanrooms-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cleanrooms.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cleanrooms-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cleanrooms-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cleanrooms.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + "metering.marketplace": { + "defaults": { + "credentialScope": { + "service": "aws-marketplace" + } + }, + "endpoints": { + "us-isob-east-1": {} } - } - }, - "cloud9" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "cloud9-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloud9-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "cloud9-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cloud9-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cloud9-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "cloud9-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cloud9-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "cloud9-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloud9-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "cloud9-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloud9-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "cloud9-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloud9-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "cloud9-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloud9-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] + }, + "metrics.sagemaker": { + "endpoints": { + "us-isob-east-1": {} } - } - }, - "cloudcontrolapi" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + }, + "monitoring": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } - } - }, - "clouddirectory" : { - "endpoints" : { - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "cloudformation" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cloudformation-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cloudformation-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cloudformation-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cloudformation-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "cloudformation-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "cloudformation-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cloudformation-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cloudformation-fips.us-west-2.amazonaws.com" + }, + "network-firewall": { + "endpoints": { + "us-isob-east-1": {} } - } - }, - "cloudfront" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "cloudfront.amazonaws.com", - "protocols" : [ "http", "https" ] + }, + "oam": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "cloudhsm" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "cloudhsmv2" : { - "defaults" : { - "credentialScope" : { - "service" : "cloudhsm" - } - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "cloudhsmv2.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cloudhsmv2.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + "organizations": { + "endpoints": { + "aws-iso-b-global": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "organizations.us-isob-east-1.sc2s.sgov.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-b-global" + }, + "outposts": { + "endpoints": { + "us-isob-east-1": {} } - } - }, - "cloudsearch" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "cloudtrail" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "pi": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } - } - }, - "cloudtrail-data" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "codeartifact" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "codebuild" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "codebuild-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "codebuild-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "codebuild-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "codebuild-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "codebuild-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "codebuild-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "codebuild-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "codebuild-fips.us-west-2.amazonaws.com" + }, + "ram": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } - } - }, - "codecatalyst" : { - "endpoints" : { - "aws-global" : { - "hostname" : "codecatalyst.global.api.aws" + }, + "rbin": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "rbin-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "rbin-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "codecommit" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "codecommit-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.ca-central-1.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "codecommit-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "codecommit-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "codecommit-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "codecommit-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-west-2.amazonaws.com" + "rds": { + "endpoints": { + "rds.us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "rds.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "rds.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-east-1-fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "rds.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-west-1": {} + } + }, + "redshift": { + "endpoints": { + "us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "redshift.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-west-1": {} + } + }, + "resource-groups": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "route53": { + "endpoints": { + "aws-iso-b-global": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "route53.sc2s.sgov.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-b-global" + }, + "route53resolver": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "runtime.sagemaker": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "s3": { + "defaults": { + "protocols": ["http", "https"], + "signatureVersions": ["s3v4"] + }, + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "s3-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "s3-fips.dualstack.us-isob-east-1.sc2s.sgov.gov", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-west-1": {} + } + }, + "s3-control": { + "defaults": { + "protocols": ["https"], + "signatureVersions": ["s3v4"] + }, + "endpoints": { + "us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "s3-control.us-isob-east-1.sc2s.sgov.gov", + "signatureVersions": ["s3v4"], + "variants": [ + { + "hostname": "s3-control-fips.dualstack.us-isob-east-1.sc2s.sgov.gov", + "tags": ["dualstack", "fips"] + }, + { + "hostname": "s3-control-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + }, + { + "hostname": "s3-control.dualstack.us-isob-east-1.sc2s.sgov.gov", + "tags": ["dualstack"] + } + ] + }, + "us-isob-east-1-fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "s3-control-fips.us-isob-east-1.sc2s.sgov.gov", + "signatureVersions": ["s3v4"] + } + } + }, + "s3-outposts": { + "endpoints": { + "fips-us-isob-east-1": { + "deprecated": true + }, + "us-isob-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + } + } + }, + "scheduler": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "secretsmanager": { + "endpoints": { + "us-isob-east-1": { + "variants": [ + { + "tags": ["fips"] + } + ] + }, + "us-isob-east-1-fips": { + "deprecated": true + }, + "us-isob-west-1": {} + } + }, + "securityhub": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "servicediscovery": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "servicequotas": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "snowball": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "sns": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "sqs": { + "defaults": { + "protocols": ["http", "https"], + "sslCommonName": "{region}.queue.{dnsSuffix}" + }, + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "sqs.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "sqs.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-west-1": {} + } + }, + "ssm": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "states": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "states-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "states-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-west-1": {} } - } - }, - "codedeploy" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "codedeploy-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "codedeploy-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "codedeploy-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "codedeploy-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "codedeploy-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "codedeploy-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "codedeploy-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "codedeploy-fips.us-west-2.amazonaws.com" + }, + "storagegateway": { + "endpoints": { + "fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-east-1-fips": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov" + } + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" + }, + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "sts": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "support": { + "endpoints": { + "aws-iso-b-global": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "hostname": "support.us-isob-east-1.sc2s.sgov.gov" + } + }, + "partitionEndpoint": "aws-iso-b-global" + }, + "swf": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "swf-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "swf-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + }, + "us-isob-west-1": {} + } + }, + "synthetics": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "tagging": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} + } + }, + "wafv2": { + "endpoints": { + "us-isob-east-1": {} + } + }, + "workspaces": { + "endpoints": { + "fips-us-isob-east-1": { + "credentialScope": { + "region": "us-isob-east-1" + }, + "deprecated": true, + "hostname": "workspaces-fips.us-isob-east-1.sc2s.sgov.gov" + }, + "us-isob-east-1": { + "variants": [ + { + "hostname": "workspaces-fips.us-isob-east-1.sc2s.sgov.gov", + "tags": ["fips"] + } + ] + } + } + }, + "xray": { + "endpoints": { + "us-isob-east-1": {}, + "us-isob-west-1": {} } } - }, - "codeguru-profiler" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "codeguru-reviewer" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "codepipeline" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "codepipeline-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "codepipeline-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "codepipeline-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "codepipeline-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "codepipeline-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + } + }, + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "cloud.adc-e.uk", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] } - } + ] }, - "codestar-connections" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } + "dnsSuffix": "cloud.adc-e.uk", + "partition": "aws-iso-e", + "partitionName": "AWS ISOE (Europe)", + "regionRegex": "^eu\\-isoe\\-\\w+\\-\\d+$", + "regions": { + "eu-isoe-west-1": { + "description": "EU ISOE West" } }, - "codestar-notifications" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "cognito-identity" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "cognito-identity.af-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-northeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-northeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-northeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-southeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-southeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-southeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-southeast-4.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "cognito-identity.ap-southeast-5.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "cognito-identity.ca-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "cognito-identity.ca-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-central-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-north-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "cognito-identity.eu-west-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cognito-identity-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cognito-identity-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "cognito-identity-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cognito-identity-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "cognito-identity.il-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "cognito-identity.me-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "cognito-identity.me-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "cognito-identity.sa-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cognito-identity-fips.us-east-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-identity-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-identity.us-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cognito-identity-fips.us-east-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-identity-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-identity.us-east-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "cognito-identity-fips.us-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-identity-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-identity.us-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cognito-identity-fips.us-west-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-identity-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-identity.us-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] + "services": { + "access-analyzer": { + "endpoints": { + "eu-isoe-west-1": { + "variants": [ + { + "hostname": "access-analyzer.eu-isoe-west-1.api.cloud-aws.adc-e.uk", + "tags": ["dualstack"] + } + ] + } } - } - }, - "cognito-idp" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "cognito-idp.af-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-northeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-northeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-northeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-southeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-southeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-southeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-southeast-4.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "cognito-idp.ap-southeast-5.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "cognito-idp.ca-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "cognito-idp.ca-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-central-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-north-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "cognito-idp.eu-west-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "cognito-idp-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "cognito-idp-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "cognito-idp-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "cognito-idp-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "cognito-idp.il-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "cognito-idp.me-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "cognito-idp.me-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "cognito-idp.sa-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "cognito-idp-fips.us-east-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-idp-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-idp.us-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "cognito-idp-fips.us-east-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-idp-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-idp.us-east-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "cognito-idp-fips.us-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-idp-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-idp.us-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "cognito-idp-fips.us-west-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-idp-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-idp.us-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] + }, + "acm": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "cognito-sync" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "comprehend" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "comprehend.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "comprehend.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "comprehend.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "comprehend.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "comprehend.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "comprehend-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "comprehend-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "comprehend.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "comprehend.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "comprehend.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "comprehend.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "comprehend-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "comprehend-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "comprehend-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "comprehend-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "comprehend-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "comprehend-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "comprehend.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "comprehend-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "comprehend-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "comprehend.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "comprehend-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "comprehend-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "comprehend.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] + }, + "acm-pca": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "comprehendmedical" : { - "endpoints" : { - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "comprehendmedical-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "comprehendmedical-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "comprehendmedical-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "comprehendmedical-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "comprehendmedical-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "comprehendmedical-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "comprehendmedical-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "comprehendmedical-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] + }, + "api.ecr": { + "endpoints": { + "eu-isoe-west-1": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "api.ecr.eu-isoe-west-1.cloud.adc-e.uk" + } } - } - }, - "compute-optimizer" : { - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "compute-optimizer.af-south-1.amazonaws.com" - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "compute-optimizer.ap-east-1.amazonaws.com" - }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "compute-optimizer.ap-northeast-1.amazonaws.com" + }, + "api.pricing": { + "defaults": { + "credentialScope": { + "service": "pricing" + } }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "compute-optimizer.ap-northeast-2.amazonaws.com" + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "apigateway": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "appconfig": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "appconfigdata": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "compute-optimizer.ap-northeast-3.amazonaws.com" + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "arc-zonal-shift": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "athena": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "autoscaling": { + "defaults": { + "protocols": ["http", "https"] }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "batch": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "budgets": { + "endpoints": { + "aws-iso-e-global": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "budgets.global.cloud.adc-e.uk" }, - "hostname" : "compute-optimizer.ap-south-1.amazonaws.com" + "eu-isoe-west-1": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "budgets.global.cloud.adc-e.uk" + } }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "compute-optimizer.ap-south-2.amazonaws.com" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-e-global" + }, + "cloudcontrolapi": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "cloudformation": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "cloudtrail": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "cloudtrail-data": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "codedeploy": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "compute-optimizer": { + "endpoints": { + "eu-isoe-west-1": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "compute-optimizer.eu-isoe-west-1.cloud.adc-e.uk" + } + } + }, + "config": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "cost-optimization-hub": { + "endpoints": { + "eu-isoe-west-1": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "cost-optimization-hub.eu-isoe-west-1.cloud.adc-e.uk" + } + } + }, + "directconnect": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "dlm": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "dms": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "ds": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "dynamodb": { + "defaults": { + "protocols": ["http", "https"] }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "compute-optimizer.ap-southeast-1.amazonaws.com" + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "ebs": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "ec2": { + "defaults": { + "protocols": ["https"] }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "compute-optimizer.ap-southeast-2.amazonaws.com" + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "ecs": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"] }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "elasticache": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "elasticfilesystem": { + "endpoints": { + "eu-isoe-west-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.eu-isoe-west-1.cloud.adc-e.uk", + "tags": ["fips"] + } + ] }, - "hostname" : "compute-optimizer.ap-southeast-3.amazonaws.com" + "fips-eu-isoe-west-1": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.eu-isoe-west-1.cloud.adc-e.uk" + } + } + }, + "elasticloadbalancing": { + "defaults": { + "protocols": ["https"] }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "compute-optimizer.ap-southeast-4.amazonaws.com" - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "compute-optimizer.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "compute-optimizer.eu-central-1.amazonaws.com" - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "compute-optimizer.eu-central-2.amazonaws.com" - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "compute-optimizer.eu-north-1.amazonaws.com" - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "compute-optimizer.eu-south-1.amazonaws.com" - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "compute-optimizer.eu-south-2.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "compute-optimizer.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "compute-optimizer.eu-west-2.amazonaws.com" - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "compute-optimizer.eu-west-3.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "compute-optimizer.il-central-1.amazonaws.com" - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "compute-optimizer.me-central-1.amazonaws.com" - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "compute-optimizer.me-south-1.amazonaws.com" - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "compute-optimizer.sa-east-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "compute-optimizer.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "compute-optimizer.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "compute-optimizer.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "compute-optimizer.us-west-2.amazonaws.com" - } - } - }, - "config" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "config-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "config-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "config-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "config-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "config-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "config-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "config-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "config-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "connect" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "connect-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "connect-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "connect-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "connect-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "connect-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "connect-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "connect-campaigns" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "connect-campaigns-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "connect-campaigns-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "connect-campaigns-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "connect-campaigns-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "contact-lens" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "controltower" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "controltower-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "controltower-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "controltower-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "controltower-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "controltower-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "controltower-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "controltower-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "controltower-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "controltower-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "controltower-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "controltower-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "controltower-fips.us-west-2.amazonaws.com" - } - } - }, - "cost-optimization-hub" : { - "endpoints" : { - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "cost-optimization-hub.us-east-1.amazonaws.com" - } - } - }, - "cur" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "data-ats.iot" : { - "defaults" : { - "credentialScope" : { - "service" : "iotdata" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "data.iot" : { - "defaults" : { - "credentialScope" : { - "service" : "iotdata" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-west-2.amazonaws.com" - }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "data.jobs.iot" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "data.mediastore" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "databrew" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "databrew-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "databrew-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "databrew-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "databrew-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "databrew-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "databrew-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "databrew-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "databrew-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "dataexchange" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "datapipeline" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "datasync" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "datasync.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "datasync.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "datasync.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "datasync.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "datasync.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "datasync.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "datasync.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "datasync.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "datasync.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "datasync.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "datasync.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "datasync.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "datasync.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "datasync-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "datasync-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "datasync.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "datasync.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "datasync.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "datasync.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "datasync.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "datasync.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "datasync.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "datasync.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "datasync.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "datasync.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "datasync.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "datasync.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "datasync.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "datasync-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "datasync-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "datasync-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "datasync-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "datazone" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "datazone.ap-northeast-1.api.aws" - }, - "ap-northeast-2" : { - "hostname" : "datazone.ap-northeast-2.api.aws" - }, - "ap-northeast-3" : { - "hostname" : "datazone.ap-northeast-3.api.aws" - }, - "ap-south-1" : { - "hostname" : "datazone.ap-south-1.api.aws" - }, - "ap-south-2" : { - "hostname" : "datazone.ap-south-2.api.aws" - }, - "ap-southeast-1" : { - "hostname" : "datazone.ap-southeast-1.api.aws" - }, - "ap-southeast-2" : { - "hostname" : "datazone.ap-southeast-2.api.aws" - }, - "ap-southeast-3" : { - "hostname" : "datazone.ap-southeast-3.api.aws" - }, - "ap-southeast-4" : { - "hostname" : "datazone.ap-southeast-4.api.aws" - }, - "ap-southeast-5" : { - "hostname" : "datazone.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "datazone.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "datazone.ca-central-1.api.aws", - "variants" : [ { - "hostname" : "datazone-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "hostname" : "datazone.ca-west-1.api.aws" - }, - "eu-central-1" : { - "hostname" : "datazone.eu-central-1.api.aws" - }, - "eu-central-2" : { }, - "eu-north-1" : { - "hostname" : "datazone.eu-north-1.api.aws" - }, - "eu-south-1" : { - "hostname" : "datazone.eu-south-1.api.aws" - }, - "eu-west-1" : { - "hostname" : "datazone.eu-west-1.api.aws" - }, - "eu-west-2" : { - "hostname" : "datazone.eu-west-2.api.aws" - }, - "eu-west-3" : { - "hostname" : "datazone.eu-west-3.api.aws" - }, - "il-central-1" : { - "hostname" : "datazone.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "datazone.me-central-1.api.aws" - }, - "me-south-1" : { - "hostname" : "datazone.me-south-1.api.aws" - }, - "mx-central-1" : { - "hostname" : "datazone.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "datazone.sa-east-1.api.aws" - }, - "us-east-1" : { - "hostname" : "datazone.us-east-1.api.aws", - "variants" : [ { - "hostname" : "datazone-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "hostname" : "datazone.us-east-2.api.aws", - "variants" : [ { - "hostname" : "datazone-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "hostname" : "datazone.us-west-1.api.aws" - }, - "us-west-2" : { - "hostname" : "datazone.us-west-2.api.aws", - "variants" : [ { - "hostname" : "datazone-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "dax" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "devicefarm" : { - "endpoints" : { - "us-west-2" : { } - } - }, - "devops-guru" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "devops-guru-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "devops-guru-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "devops-guru-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "devops-guru-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "devops-guru-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "devops-guru-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "devops-guru-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "devops-guru-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "devops-guru-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "devops-guru-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "directconnect" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "directconnect-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "directconnect-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "directconnect-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "directconnect-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "directconnect-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "directconnect-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "discovery" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "dlm" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "dlm.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "dlm.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "dlm.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "dlm.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "dlm.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "dlm.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "dlm.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "dlm.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "dlm.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "dlm.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "dlm.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "dlm.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "dlm.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "dlm-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "dlm-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "dlm.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "dlm.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "dlm.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "dlm.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "dlm.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "dlm.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "dlm.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "dlm.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "dlm.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "dlm.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "dlm.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "dlm.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "dlm.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "dlm-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "dlm-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "dlm-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "dlm-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "dms" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "dms" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "dms-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "dms-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "dms-fips.us-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "dms-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "dms-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "dms-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "dms-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "dms-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "dms-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "dms-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "dms-fips.us-west-2.amazonaws.com" - } - } - }, - "docdb" : { - "endpoints" : { - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "rds.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "rds.ap-northeast-2.amazonaws.com" - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "rds.ap-south-1.amazonaws.com" - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "rds.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "rds.ap-southeast-2.amazonaws.com" - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "rds.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "rds.eu-central-1.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "rds.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "rds.eu-west-2.amazonaws.com" - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "rds.eu-west-3.amazonaws.com" - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "rds.sa-east-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "rds.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "rds.us-east-2.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "rds.us-west-2.amazonaws.com" - } - } - }, - "drs" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "drs-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "drs-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "drs-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "drs-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "drs-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "drs-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "drs-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "drs-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ds" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ds-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "ds-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ds-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ds-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "dynamodb" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "dynamodb-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "dynamodb-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "local" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "localhost:8000", - "protocols" : [ "http" ] - }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "dynamodb-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "dynamodb-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "dynamodb-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "dynamodb-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.us-west-2.amazonaws.com" - } - } - }, - "ebs" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ebs-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "ebs-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ebs-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "ebs-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ebs-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ebs-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ebs-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ebs-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ebs-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ebs-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ebs-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ebs-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ec2" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "ec2.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "ec2.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "ec2.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "ec2.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "ec2.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "ec2.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "ec2.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ec2-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ec2.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "ec2-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "ec2.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "ec2.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "ec2.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "ec2.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "ec2.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "ec2.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ec2-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "ec2-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ec2-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ec2-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ec2-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ec2-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { - "variants" : [ { - "hostname" : "ec2.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "ec2.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ec2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ec2.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ec2-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ec2.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ec2-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ec2.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ec2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ec2.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "ecs" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ecs-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ecs-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ecs-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ecs-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ecs-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ecs-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ecs-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ecs-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "edge.sagemaker" : { - "endpoints" : { - "ap-northeast-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "fips.eks.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "fips.eks.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "fips.eks.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "fips.eks.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "fips.eks.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "fips.eks.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "fips.eks.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "fips.eks.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "fips.eks.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "eks-auth" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "hostname" : "eks-auth.af-south-1.api.aws" - }, - "ap-east-1" : { - "hostname" : "eks-auth.ap-east-1.api.aws" - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "eks-auth.ap-northeast-1.api.aws" - }, - "ap-northeast-2" : { - "hostname" : "eks-auth.ap-northeast-2.api.aws" - }, - "ap-northeast-3" : { - "hostname" : "eks-auth.ap-northeast-3.api.aws" - }, - "ap-south-1" : { - "hostname" : "eks-auth.ap-south-1.api.aws" - }, - "ap-south-2" : { - "hostname" : "eks-auth.ap-south-2.api.aws" - }, - "ap-southeast-1" : { - "hostname" : "eks-auth.ap-southeast-1.api.aws" - }, - "ap-southeast-2" : { - "hostname" : "eks-auth.ap-southeast-2.api.aws" - }, - "ap-southeast-3" : { - "hostname" : "eks-auth.ap-southeast-3.api.aws" - }, - "ap-southeast-4" : { - "hostname" : "eks-auth.ap-southeast-4.api.aws" - }, - "ap-southeast-5" : { - "hostname" : "eks-auth.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "eks-auth.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "eks-auth.ca-central-1.api.aws" - }, - "ca-west-1" : { - "hostname" : "eks-auth.ca-west-1.api.aws" - }, - "eu-central-1" : { - "hostname" : "eks-auth.eu-central-1.api.aws" - }, - "eu-central-2" : { - "hostname" : "eks-auth.eu-central-2.api.aws" - }, - "eu-north-1" : { - "hostname" : "eks-auth.eu-north-1.api.aws" - }, - "eu-south-1" : { - "hostname" : "eks-auth.eu-south-1.api.aws" - }, - "eu-south-2" : { - "hostname" : "eks-auth.eu-south-2.api.aws" - }, - "eu-west-1" : { - "hostname" : "eks-auth.eu-west-1.api.aws" - }, - "eu-west-2" : { - "hostname" : "eks-auth.eu-west-2.api.aws" - }, - "eu-west-3" : { - "hostname" : "eks-auth.eu-west-3.api.aws" - }, - "il-central-1" : { - "hostname" : "eks-auth.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "eks-auth.me-central-1.api.aws" - }, - "me-south-1" : { - "hostname" : "eks-auth.me-south-1.api.aws" - }, - "mx-central-1" : { - "hostname" : "eks-auth.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "eks-auth.sa-east-1.api.aws" - }, - "us-east-1" : { - "hostname" : "eks-auth.us-east-1.api.aws" - }, - "us-east-2" : { - "hostname" : "eks-auth.us-east-2.api.aws" - }, - "us-west-1" : { - "hostname" : "eks-auth.us-west-1.api.aws" - }, - "us-west-2" : { - "hostname" : "eks-auth.us-west-2.api.aws" - } - } - }, - "elasticache" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "elasticache-fips.us-west-1.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "elasticache-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "elasticache-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "elasticache-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "elasticache-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "elasticache-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "elasticache-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "elasticache-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "elasticache-fips.us-west-2.amazonaws.com" - } - } - }, - "elasticbeanstalk" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "elasticbeanstalk-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "elasticbeanstalk-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "elasticbeanstalk-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "elasticbeanstalk-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { }, - "me-south-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticbeanstalk-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "elasticbeanstalk.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "elasticbeanstalk-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticbeanstalk-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "elasticbeanstalk.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticbeanstalk-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "elasticbeanstalk.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "elasticbeanstalk-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticbeanstalk-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "elasticbeanstalk.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.af-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-northeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-northeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-northeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-southeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-southeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-southeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-southeast-4.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-southeast-5.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ap-southeast-7.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-central-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-north-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-west-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.af-south-1.amazonaws.com" - }, - "fips-ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-east-1.amazonaws.com" - }, - "fips-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-northeast-1.amazonaws.com" - }, - "fips-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-northeast-2.amazonaws.com" - }, - "fips-ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-northeast-3.amazonaws.com" - }, - "fips-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-south-1.amazonaws.com" - }, - "fips-ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-south-2.amazonaws.com" - }, - "fips-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-southeast-1.amazonaws.com" - }, - "fips-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-southeast-2.amazonaws.com" - }, - "fips-ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-southeast-3.amazonaws.com" - }, - "fips-ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-southeast-4.amazonaws.com" - }, - "fips-ap-southeast-5" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-southeast-5.amazonaws.com" - }, - "fips-ap-southeast-7" : { - "credentialScope" : { - "region" : "ap-southeast-7" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ap-southeast-7.amazonaws.com" - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.ca-west-1.amazonaws.com" - }, - "fips-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-central-1.amazonaws.com" - }, - "fips-eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-central-2.amazonaws.com" - }, - "fips-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-north-1.amazonaws.com" - }, - "fips-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-south-1.amazonaws.com" - }, - "fips-eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-south-2.amazonaws.com" - }, - "fips-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-west-1.amazonaws.com" - }, - "fips-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-west-2.amazonaws.com" - }, - "fips-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-west-3.amazonaws.com" - }, - "fips-il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.il-central-1.amazonaws.com" - }, - "fips-me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.me-central-1.amazonaws.com" - }, - "fips-me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.me-south-1.amazonaws.com" - }, - "fips-mx-central-1" : { - "credentialScope" : { - "region" : "mx-central-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.mx-central-1.amazonaws.com" - }, - "fips-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.sa-east-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.il-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.me-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.me-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.mx-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.sa-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "elasticloadbalancing" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "elasticloadbalancing-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "elasticloadbalancing-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "elasticloadbalancing-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "elasticloadbalancing-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "elasticloadbalancing-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "elasticloadbalancing-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "elasticloadbalancing-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "elasticloadbalancing-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "elasticmapreduce" : { - "defaults" : { - "protocols" : [ "https" ], - "sslCommonName" : "{region}.{service}.{dnsSuffix}" - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "sslCommonName" : "{service}.{region}.{dnsSuffix}" - }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "sslCommonName" : "{service}.{region}.{dnsSuffix}", - "variants" : [ { - "hostname" : "elasticmapreduce-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "elasticmapreduce-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticmapreduce.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "elasticmapreduce-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "elastictranscoder" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "email" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "email-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "email-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "email-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "email-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "email-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "email-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "email-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "email-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "email-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "email-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "emr-containers" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "emr-containers-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "emr-containers-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "emr-containers-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "emr-containers-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "emr-containers-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "emr-containers-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "emr-containers-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "emr-containers-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "emr-containers-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "emr-containers-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "emr-serverless" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "emr-serverless-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "emr-serverless-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "emr-serverless-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "emr-serverless-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "emr-serverless-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "emr-serverless-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "emr-serverless-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "emr-serverless-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "emr-serverless-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "emr-serverless-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "entitlement.marketplace" : { - "defaults" : { - "credentialScope" : { - "service" : "aws-marketplace" - } - }, - "endpoints" : { - "us-east-1" : { - "variants" : [ { - "hostname" : "entitlement-marketplace.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "es" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "aos.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "aos.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "aos.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "aos.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "aos.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "aos.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "aos.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "aos.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "aos.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "aos.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "aos.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "aos.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "aos.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "aos.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "aos.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "aos.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "aos.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "aos.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "aos.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "aos.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "aos.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "aos.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "aos.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "es-fips.us-west-1.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "aos.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "aos.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "aos.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "aos.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "aos.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "aos.us-east-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "es-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "es-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "aos.us-east-2.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "es-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "es-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "aos.us-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "es-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "es-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "aos.us-west-2.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "es-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "es-fips.us-west-2.amazonaws.com" - } - } - }, - "events" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "events.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "events.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "events.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "events.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "events.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "events.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "events.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "events.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "events.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "events.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "events.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "events.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "events.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "events.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "events.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "events.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "events.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "events.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "events.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "events.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "events.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "events.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "events.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "events-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "events-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "events-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "events-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "events.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "events.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "events.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "events.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "events.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "events-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "events-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "events.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "events-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "events-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "events.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "events-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "events-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "events.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "events-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "events-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "events.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "evidently" : { - "endpoints" : { - "ap-northeast-1" : { - "hostname" : "evidently.ap-northeast-1.amazonaws.com" - }, - "ap-southeast-1" : { - "hostname" : "evidently.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "hostname" : "evidently.ap-southeast-2.amazonaws.com" - }, - "eu-central-1" : { - "hostname" : "evidently.eu-central-1.amazonaws.com" - }, - "eu-north-1" : { - "hostname" : "evidently.eu-north-1.amazonaws.com" - }, - "eu-west-1" : { - "hostname" : "evidently.eu-west-1.amazonaws.com" - }, - "us-east-1" : { - "hostname" : "evidently.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "hostname" : "evidently.us-east-2.amazonaws.com" - }, - "us-west-2" : { - "hostname" : "evidently.us-west-2.amazonaws.com" - } - } - }, - "finspace" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "finspace-api" : { - "endpoints" : { - "ca-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "firehose" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "firehose.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "firehose.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "firehose.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "firehose.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "firehose.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "firehose.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "firehose.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "firehose.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "firehose.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "firehose.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "firehose.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "firehose.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "firehose.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "firehose.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "firehose.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "firehose.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "firehose.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "firehose.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "firehose.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "firehose.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "firehose.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "firehose.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "firehose-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "firehose-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "firehose-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "firehose-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "firehose.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "firehose.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "firehose.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "firehose.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "firehose.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "firehose-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "firehose-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "firehose.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "firehose-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "firehose-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "firehose.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "firehose-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "firehose-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "firehose.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "firehose-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "firehose-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "firehose.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "fms" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "fms-fips.af-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "fms-fips.ap-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "fms-fips.ap-northeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "fms-fips.ap-northeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-3" : { }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "fms-fips.ap-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-2" : { }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "fms-fips.ap-southeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "fms-fips.ap-southeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "fms-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "fms-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "fms-fips.eu-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "fms-fips.eu-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-2" : { }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "fms-fips.eu-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "fms-fips.eu-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "fms-fips.eu-west-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.af-south-1.amazonaws.com" - }, - "fips-ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.ap-east-1.amazonaws.com" - }, - "fips-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.ap-northeast-1.amazonaws.com" - }, - "fips-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "deprecated" : true, - "hostname" : "fms-fips.ap-northeast-2.amazonaws.com" - }, - "fips-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.ap-south-1.amazonaws.com" - }, - "fips-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.ap-southeast-1.amazonaws.com" - }, - "fips-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "deprecated" : true, - "hostname" : "fms-fips.ap-southeast-2.amazonaws.com" - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.ca-west-1.amazonaws.com" - }, - "fips-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.eu-central-1.amazonaws.com" - }, - "fips-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.eu-south-1.amazonaws.com" - }, - "fips-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.eu-west-1.amazonaws.com" - }, - "fips-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "deprecated" : true, - "hostname" : "fms-fips.eu-west-2.amazonaws.com" - }, - "fips-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "deprecated" : true, - "hostname" : "fms-fips.eu-west-3.amazonaws.com" - }, - "fips-me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.me-south-1.amazonaws.com" - }, - "fips-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.sa-east-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "fms-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "fms-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { - "variants" : [ { - "hostname" : "fms-fips.me-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "fms-fips.sa-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "fms-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "fms-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "fms-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "fms-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "forecast" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "forecast-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "forecast-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "forecast-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "forecast-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "forecast-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "forecast-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "forecastquery" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "forecastquery-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "forecastquery-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "forecastquery-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "forecastquery-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "forecastquery-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "forecastquery-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "frauddetector" : { - "endpoints" : { - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "fsx" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "fsx-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "fsx-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.ca-west-1.amazonaws.com" - }, - "fips-prod-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.ca-central-1.amazonaws.com" - }, - "fips-prod-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.ca-west-1.amazonaws.com" - }, - "fips-prod-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-east-1.amazonaws.com" - }, - "fips-prod-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-east-2.amazonaws.com" - }, - "fips-prod-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-west-1.amazonaws.com" - }, - "fips-prod-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-west-2.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "prod-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "prod-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "prod-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "prod-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "prod-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "prod-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "fsx-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "fsx-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "fsx-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "fsx-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "gamelift" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "gameliftstreams" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "hostname" : "gameliftstreams.af-south-1.api.aws" - }, - "ap-east-1" : { - "hostname" : "gameliftstreams.ap-east-1.api.aws" - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "gameliftstreams.ap-northeast-1.api.aws" - }, - "ap-northeast-2" : { - "hostname" : "gameliftstreams.ap-northeast-2.api.aws" - }, - "ap-northeast-3" : { - "hostname" : "gameliftstreams.ap-northeast-3.api.aws" - }, - "ap-south-1" : { - "hostname" : "gameliftstreams.ap-south-1.api.aws" - }, - "ap-south-2" : { - "hostname" : "gameliftstreams.ap-south-2.api.aws" - }, - "ap-southeast-1" : { - "hostname" : "gameliftstreams.ap-southeast-1.api.aws" - }, - "ap-southeast-2" : { - "hostname" : "gameliftstreams.ap-southeast-2.api.aws" - }, - "ap-southeast-3" : { - "hostname" : "gameliftstreams.ap-southeast-3.api.aws" - }, - "ap-southeast-4" : { - "hostname" : "gameliftstreams.ap-southeast-4.api.aws" - }, - "ap-southeast-5" : { - "hostname" : "gameliftstreams.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "gameliftstreams.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "gameliftstreams.ca-central-1.api.aws" - }, - "ca-west-1" : { - "hostname" : "gameliftstreams.ca-west-1.api.aws" - }, - "eu-central-1" : { - "hostname" : "gameliftstreams.eu-central-1.api.aws" - }, - "eu-central-2" : { - "hostname" : "gameliftstreams.eu-central-2.api.aws" - }, - "eu-north-1" : { - "hostname" : "gameliftstreams.eu-north-1.api.aws" - }, - "eu-south-1" : { - "hostname" : "gameliftstreams.eu-south-1.api.aws" - }, - "eu-south-2" : { - "hostname" : "gameliftstreams.eu-south-2.api.aws" - }, - "eu-west-1" : { - "hostname" : "gameliftstreams.eu-west-1.api.aws" - }, - "eu-west-2" : { - "hostname" : "gameliftstreams.eu-west-2.api.aws" - }, - "eu-west-3" : { - "hostname" : "gameliftstreams.eu-west-3.api.aws" - }, - "il-central-1" : { - "hostname" : "gameliftstreams.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "gameliftstreams.me-central-1.api.aws" - }, - "me-south-1" : { - "hostname" : "gameliftstreams.me-south-1.api.aws" - }, - "mx-central-1" : { - "hostname" : "gameliftstreams.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "gameliftstreams.sa-east-1.api.aws" - }, - "us-east-1" : { - "hostname" : "gameliftstreams.us-east-1.api.aws" - }, - "us-east-2" : { - "hostname" : "gameliftstreams.us-east-2.api.aws" - }, - "us-west-1" : { - "hostname" : "gameliftstreams.us-west-1.api.aws" - }, - "us-west-2" : { - "hostname" : "gameliftstreams.us-west-2.api.aws" - } - } - }, - "geo" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "glacier" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "glacier-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "glacier-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-west-2.amazonaws.com" - }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "glacier-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "glacier-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "glacier-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "glacier-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "globalaccelerator" : { - "endpoints" : { - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "globalaccelerator-fips.us-west-2.amazonaws.com" - } - } - }, - "glue" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "glue.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "glue.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "glue.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "glue.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "glue.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "glue.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "glue.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "glue.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "glue.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "glue.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "glue.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "glue.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "glue.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "glue.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "glue.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "glue.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "glue.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "glue.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "glue.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "glue.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "glue.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "glue.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "glue.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "glue-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "glue-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "glue-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "glue-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "glue.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "glue.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "glue.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "glue.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "glue.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "glue-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "glue-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "glue.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "glue-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "glue-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "glue.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "glue-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "glue-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "glue.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "glue-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "glue-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "glue.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "grafana" : { - "endpoints" : { - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "grafana.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "grafana.ap-northeast-2.amazonaws.com" - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "grafana.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "grafana.ap-southeast-2.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "grafana.eu-central-1.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "grafana.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "grafana.eu-west-2.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "grafana.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "grafana.us-east-2.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "grafana.us-west-2.amazonaws.com" - } - } - }, - "greengrass" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "greengrass-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "greengrass-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "greengrass-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "greengrass-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "greengrass-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "greengrass-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "greengrass-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "greengrass-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - }, - "isRegionalized" : true - }, - "groundstation" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "groundstation-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "groundstation-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "groundstation-fips.us-west-2.amazonaws.com" - }, - "me-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "groundstation-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "groundstation-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "groundstation-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "groundstation-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "groundstation-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "groundstation-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - } - } - }, - "guardduty" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "guardduty-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "guardduty-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "guardduty-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "guardduty-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "guardduty-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "guardduty-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "guardduty-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "guardduty-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "guardduty-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "guardduty-fips.us-west-2.amazonaws.com" - } - }, - "isRegionalized" : true - }, - "health" : { - "defaults" : { - "protocols" : [ "https" ], - "sslCommonName" : "health.us-east-1.amazonaws.com" - }, - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "global.health.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "health-fips.us-east-2.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "health-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "healthlake" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-south-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "iam" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "iam.amazonaws.com", - "variants" : [ { - "hostname" : "iam-fips.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "iam.global.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "aws-global-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "iam-fips.amazonaws.com" - }, - "iam" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "iam-fips.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "iam-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "iam-fips.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "identity-chime" : { - "endpoints" : { - "eu-central-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "identity-chime-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "identity-chime-fips.us-east-1.amazonaws.com" - } - } - }, - "identitystore" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "importexport" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1", - "service" : "IngestionService" - }, - "hostname" : "importexport.amazonaws.com", - "signatureVersions" : [ "v2", "v4" ] - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "ingest.timestream" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "ingest-fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ingest.timestream-fips.us-east-1.amazonaws.com" - }, - "ingest-fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ingest.timestream-fips.us-east-2.amazonaws.com" - }, - "ingest-fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ingest.timestream-fips.us-west-2.amazonaws.com" - }, - "ingest-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ingest.timestream-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ingest-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ingest.timestream-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ingest-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ingest.timestream-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "inspector" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "inspector-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "inspector-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "inspector-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "inspector-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "inspector-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "inspector-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "inspector-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "inspector-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "inspector2" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "inspector2-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "inspector2-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "inspector2-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "inspector2-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "inspector2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "inspector2-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "inspector2-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "inspector2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "internetmonitor" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "hostname" : "internetmonitor.af-south-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "hostname" : "internetmonitor.ap-east-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "internetmonitor.ap-northeast-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "hostname" : "internetmonitor.ap-northeast-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "hostname" : "internetmonitor.ap-northeast-3.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "hostname" : "internetmonitor.ap-south-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "hostname" : "internetmonitor.ap-south-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "hostname" : "internetmonitor.ap-southeast-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "hostname" : "internetmonitor.ap-southeast-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "hostname" : "internetmonitor.ap-southeast-3.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "hostname" : "internetmonitor.ap-southeast-4.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "hostname" : "internetmonitor.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "internetmonitor.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "internetmonitor.ca-central-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "internetmonitor-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "internetmonitor.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "hostname" : "internetmonitor.ca-west-1.api.aws" - }, - "eu-central-1" : { - "hostname" : "internetmonitor.eu-central-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "hostname" : "internetmonitor.eu-central-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "hostname" : "internetmonitor.eu-north-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "hostname" : "internetmonitor.eu-south-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "hostname" : "internetmonitor.eu-south-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "hostname" : "internetmonitor.eu-west-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "hostname" : "internetmonitor.eu-west-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "hostname" : "internetmonitor.eu-west-3.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "hostname" : "internetmonitor.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "internetmonitor.me-central-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "hostname" : "internetmonitor.me-south-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "hostname" : "internetmonitor.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "internetmonitor.sa-east-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "hostname" : "internetmonitor.us-east-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "internetmonitor-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "internetmonitor.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "hostname" : "internetmonitor.us-east-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "internetmonitor-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "internetmonitor.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "hostname" : "internetmonitor.us-west-1.api.aws", - "variants" : [ { - "hostname" : "internetmonitor-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "internetmonitor-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "internetmonitor.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "hostname" : "internetmonitor.us-west-2.api.aws", - "variants" : [ { - "hostname" : "internetmonitor-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "internetmonitor-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "internetmonitor.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "iot" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "iot-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "deprecated" : true, - "hostname" : "iot-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "deprecated" : true, - "hostname" : "iot-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "deprecated" : true, - "hostname" : "iot-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "deprecated" : true, - "hostname" : "iot-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "deprecated" : true, - "hostname" : "iot-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "iot-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "iot-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "iot-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "iot-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotanalytics" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "iotevents" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "iotevents-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "iotevents-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "iotevents-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "iotevents-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "iotevents-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "iotevents-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "iotevents-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "iotevents-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ioteventsdata" : { - "endpoints" : { - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "data.iotevents.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "data.iotevents.ap-northeast-2.amazonaws.com" - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "data.iotevents.ap-south-1.amazonaws.com" - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "data.iotevents.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "data.iotevents.ap-southeast-2.amazonaws.com" - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "data.iotevents.ca-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "data.iotevents-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "data.iotevents.eu-central-1.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "data.iotevents.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "data.iotevents.eu-west-2.amazonaws.com" - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "data.iotevents-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "data.iotevents-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "data.iotevents-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "data.iotevents-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "data.iotevents.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "data.iotevents-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "data.iotevents.us-east-2.amazonaws.com", - "variants" : [ { - "hostname" : "data.iotevents-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "data.iotevents.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "data.iotevents-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotfleetwise" : { - "endpoints" : { - "ap-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - } - } - }, - "iotsecuredtunneling" : { - "defaults" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-west-2.amazonaws.com" - }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotsitewise" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "iotsitewise-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "iotsitewise-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "iotsitewise-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "iotsitewise-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "iotsitewise-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "iotsitewise-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "iotsitewise-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "iotsitewise-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotthingsgraph" : { - "defaults" : { - "credentialScope" : { - "service" : "iotthingsgraph" - } - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "iottwinmaker" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "api-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "api.iottwinmaker.ap-northeast-1.amazonaws.com" - }, - "api-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "api.iottwinmaker.ap-northeast-2.amazonaws.com" - }, - "api-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "api.iottwinmaker.ap-south-1.amazonaws.com" - }, - "api-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "api.iottwinmaker.ap-southeast-1.amazonaws.com" - }, - "api-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "api.iottwinmaker.ap-southeast-2.amazonaws.com" - }, - "api-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "api.iottwinmaker.eu-central-1.amazonaws.com" - }, - "api-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "api.iottwinmaker.eu-west-1.amazonaws.com" - }, - "api-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "api.iottwinmaker.us-east-1.amazonaws.com" - }, - "api-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "api.iottwinmaker.us-west-2.amazonaws.com" - }, - "data-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "data.iottwinmaker.ap-northeast-1.amazonaws.com" - }, - "data-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "data.iottwinmaker.ap-northeast-2.amazonaws.com" - }, - "data-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "data.iottwinmaker.ap-south-1.amazonaws.com" - }, - "data-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "data.iottwinmaker.ap-southeast-1.amazonaws.com" - }, - "data-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "data.iottwinmaker.ap-southeast-2.amazonaws.com" - }, - "data-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "data.iottwinmaker.eu-central-1.amazonaws.com" - }, - "data-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "data.iottwinmaker.eu-west-1.amazonaws.com" - }, - "data-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "data.iottwinmaker.us-east-1.amazonaws.com" - }, - "data-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "data.iottwinmaker.us-west-2.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "fips-api-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "api.iottwinmaker-fips.us-east-1.amazonaws.com" - }, - "fips-api-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "api.iottwinmaker-fips.us-west-2.amazonaws.com" - }, - "fips-data-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "data.iottwinmaker-fips.us-east-1.amazonaws.com" - }, - "fips-data-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "data.iottwinmaker-fips.us-west-2.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "iottwinmaker-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "iottwinmaker-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "iottwinmaker-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "iottwinmaker-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotwireless" : { - "endpoints" : { - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "api.iotwireless.ap-northeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "api.iotwireless.ap-southeast-2.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "api.iotwireless.eu-west-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "api.iotwireless.us-east-1.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "api.iotwireless.us-west-2.amazonaws.com" - } - } - }, - "ivs" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "ivschat" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "ivsrealtime" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "kafka" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "kafka-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "kafka-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "kafka-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "kafka-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "kafka-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "kafka-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "kafka-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "kafka-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "kafka-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "kafka-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "kafka-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "kafka-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kafkaconnect" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "kendra" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "kendra-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "kendra-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "kendra-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "kendra-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "kendra-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "kendra-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "kendra-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "kendra-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kendra-ranking" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "hostname" : "kendra-ranking.af-south-1.api.aws" - }, - "ap-east-1" : { - "hostname" : "kendra-ranking.ap-east-1.api.aws" - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "kendra-ranking.ap-northeast-1.api.aws" - }, - "ap-northeast-2" : { - "hostname" : "kendra-ranking.ap-northeast-2.api.aws" - }, - "ap-northeast-3" : { - "hostname" : "kendra-ranking.ap-northeast-3.api.aws" - }, - "ap-south-1" : { - "hostname" : "kendra-ranking.ap-south-1.api.aws" - }, - "ap-south-2" : { - "hostname" : "kendra-ranking.ap-south-2.api.aws" - }, - "ap-southeast-1" : { - "hostname" : "kendra-ranking.ap-southeast-1.api.aws" - }, - "ap-southeast-2" : { - "hostname" : "kendra-ranking.ap-southeast-2.api.aws" - }, - "ap-southeast-3" : { - "hostname" : "kendra-ranking.ap-southeast-3.api.aws" - }, - "ap-southeast-4" : { - "hostname" : "kendra-ranking.ap-southeast-4.api.aws" - }, - "ap-southeast-5" : { - "hostname" : "kendra-ranking.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "kendra-ranking.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "kendra-ranking.ca-central-1.api.aws", - "variants" : [ { - "hostname" : "kendra-ranking-fips.ca-central-1.api.aws", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "hostname" : "kendra-ranking.ca-west-1.api.aws" - }, - "eu-central-2" : { - "hostname" : "kendra-ranking.eu-central-2.api.aws" - }, - "eu-north-1" : { - "hostname" : "kendra-ranking.eu-north-1.api.aws" - }, - "eu-south-1" : { - "hostname" : "kendra-ranking.eu-south-1.api.aws" - }, - "eu-south-2" : { - "hostname" : "kendra-ranking.eu-south-2.api.aws" - }, - "eu-west-1" : { - "hostname" : "kendra-ranking.eu-west-1.api.aws" - }, - "eu-west-3" : { - "hostname" : "kendra-ranking.eu-west-3.api.aws" - }, - "il-central-1" : { - "hostname" : "kendra-ranking.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "kendra-ranking.me-central-1.api.aws" - }, - "me-south-1" : { - "hostname" : "kendra-ranking.me-south-1.api.aws" - }, - "mx-central-1" : { - "hostname" : "kendra-ranking.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "kendra-ranking.sa-east-1.api.aws" - }, - "us-east-1" : { - "hostname" : "kendra-ranking.us-east-1.api.aws", - "variants" : [ { - "hostname" : "kendra-ranking-fips.us-east-1.api.aws", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "hostname" : "kendra-ranking.us-east-2.api.aws", - "variants" : [ { - "hostname" : "kendra-ranking-fips.us-east-2.api.aws", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "hostname" : "kendra-ranking.us-west-1.api.aws" - }, - "us-west-2" : { - "hostname" : "kendra-ranking.us-west-2.api.aws", - "variants" : [ { - "hostname" : "kendra-ranking-fips.us-west-2.api.aws", - "tags" : [ "fips" ] - } ] - } - } - }, - "kinesis" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "kinesis-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "kinesis-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "kinesis-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "kinesis-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "kinesis-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "kinesis-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "kinesis-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "kinesis-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kinesisanalytics" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kinesisvideo" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-5" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "kms" : { - "endpoints" : { - "ProdFips" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-central-2.amazonaws.com" - }, - "af-south-1" : { - "variants" : [ { - "hostname" : "kms-fips.af-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "af-south-1-fips" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.af-south-1.amazonaws.com" - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.ap-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-1-fips" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-east-1.amazonaws.com" - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "kms-fips.ap-northeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-1-fips" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "kms-fips.ap-northeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-2-fips" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-northeast-2.amazonaws.com" - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "kms-fips.ap-northeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-3-fips" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-northeast-3.amazonaws.com" - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "kms-fips.ap-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-1-fips" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-south-1.amazonaws.com" - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "kms-fips.ap-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-2-fips" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-south-2.amazonaws.com" - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "kms-fips.ap-southeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-1-fips" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "kms-fips.ap-southeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-2-fips" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-southeast-2.amazonaws.com" - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "kms-fips.ap-southeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-3-fips" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-southeast-3.amazonaws.com" - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "kms-fips.ap-southeast-4.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-4-fips" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-southeast-4.amazonaws.com" - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "kms-fips.ap-southeast-5.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-5-fips" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-southeast-5.amazonaws.com" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "kms-fips.ap-southeast-7.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-7-fips" : { - "credentialScope" : { - "region" : "ap-southeast-7" - }, - "deprecated" : true, - "hostname" : "kms-fips.ap-southeast-7.amazonaws.com" - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "kms-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "kms-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "kms-fips.eu-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1-fips" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-central-1.amazonaws.com" - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "kms-fips.eu-central-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-2-fips" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-central-2.amazonaws.com" - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "kms-fips.eu-north-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-north-1-fips" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-north-1.amazonaws.com" - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "kms-fips.eu-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-1-fips" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-south-1.amazonaws.com" - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "kms-fips.eu-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-2-fips" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-south-2.amazonaws.com" - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "kms-fips.eu-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-1-fips" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "kms-fips.eu-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-2-fips" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-west-2.amazonaws.com" - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "kms-fips.eu-west-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-3-fips" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-west-3.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "kms-fips.il-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "il-central-1-fips" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.il-central-1.amazonaws.com" - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "kms-fips.me-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-central-1-fips" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.me-central-1.amazonaws.com" - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "kms-fips.me-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-south-1-fips" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.me-south-1.amazonaws.com" - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "kms-fips.mx-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "mx-central-1-fips" : { - "credentialScope" : { - "region" : "mx-central-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.mx-central-1.amazonaws.com" - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.sa-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "sa-east-1-fips" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.sa-east-1.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "kms-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "kms-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-west-2.amazonaws.com" - } - } - }, - "lakeformation" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "lakeformation.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "lakeformation.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "lakeformation.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "lakeformation.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "lakeformation.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "lakeformation.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "lakeformation.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "lakeformation.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "lakeformation.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "lakeformation.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "lakeformation.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "lakeformation.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "lakeformation.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "lakeformation.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "lakeformation.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "lakeformation.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "lakeformation.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "lakeformation.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "lakeformation.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "lakeformation.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "lakeformation.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "lakeformation.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "lakeformation.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "lakeformation-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "lakeformation-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "lakeformation-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "lakeformation-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "lakeformation.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "lakeformation.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "lakeformation.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "lakeformation.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "lakeformation.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "lakeformation-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lakeformation-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "lakeformation.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "lakeformation-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lakeformation-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "lakeformation.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "lakeformation-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lakeformation-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "lakeformation.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "lakeformation-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lakeformation-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "lakeformation.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "lambda" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "lambda.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "lambda.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "lambda.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "lambda.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "lambda.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "lambda.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "lambda.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "lambda.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "lambda.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "lambda.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "lambda.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "lambda.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "lambda.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "lambda.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "lambda.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "lambda.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "lambda.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "lambda.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "lambda.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "lambda.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "lambda.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "lambda.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "lambda.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "lambda-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "lambda-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "lambda-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "lambda-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "lambda.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "lambda.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "lambda.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "lambda.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "lambda.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "lambda-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lambda.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "lambda-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lambda.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "lambda-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lambda.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "lambda-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lambda.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "license-manager" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "license-manager-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "license-manager-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "license-manager-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "license-manager-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "license-manager-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "license-manager-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "license-manager-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "license-manager-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "license-manager-linux-subscriptions" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "license-manager-linux-subscriptions-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "license-manager-linux-subscriptions-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "license-manager-linux-subscriptions-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "license-manager-linux-subscriptions-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "license-manager-linux-subscriptions-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "license-manager-linux-subscriptions-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "license-manager-linux-subscriptions-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "license-manager-linux-subscriptions-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "license-manager-user-subscriptions" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "license-manager-user-subscriptions-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "license-manager-user-subscriptions-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "license-manager-user-subscriptions-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "license-manager-user-subscriptions-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "license-manager-user-subscriptions-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "license-manager-user-subscriptions-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "license-manager-user-subscriptions-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "license-manager-user-subscriptions-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "lightsail" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "logs" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "logs.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "logs.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "logs.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "logs.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "logs.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "logs.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "logs.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "logs.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "logs.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "logs.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "logs.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "logs-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "logs-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "logs.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "logs.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "logs.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "logs.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "logs.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "logs.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "logs.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "logs.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "logs-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "logs-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "logs-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "logs-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "logs-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "logs-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "logs.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "logs.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "logs.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "logs.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "logs-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "logs-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "logs-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "logs-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "lookoutequipment" : { - "endpoints" : { - "ap-northeast-2" : { }, - "eu-west-1" : { }, - "us-east-1" : { } - } - }, - "m2" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "deprecated" : true - }, - "fips-us-east-1" : { - "deprecated" : true - }, - "fips-us-east-2" : { - "deprecated" : true - }, - "fips-us-west-1" : { - "deprecated" : true - }, - "fips-us-west-2" : { - "deprecated" : true - }, - "il-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - } - } - }, - "machinelearning" : { - "endpoints" : { - "eu-west-1" : { }, - "us-east-1" : { } - } - }, - "macie2" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "macie2.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "macie2.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "macie2.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "macie2.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "macie2.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "macie2.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "macie2.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "macie2.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "macie2.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "macie2.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "macie2.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "macie2.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "macie2.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "macie2.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "macie2.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "macie2-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "macie2-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "macie2-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "macie2-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "macie2.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "macie2.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "macie2.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "macie2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "macie2-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "macie2.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "macie2-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "macie2-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "macie2.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "macie2-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "macie2-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "macie2.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "macie2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "macie2-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "macie2.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "managedblockchain" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { } - } - }, - "managedblockchain-query" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "marketplacecommerceanalytics" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "media-pipelines-chime" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "media-pipelines-chime-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "media-pipelines-chime-fips.us-east-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "media-pipelines-chime-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "media-pipelines-chime-fips.us-west-2.amazonaws.com" - } - } - }, - "mediaconnect" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "mediaconvert" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "mediaconvert.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "mediaconvert.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "mediaconvert-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "mediaconvert-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "mediaconvert.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "mediaconvert.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "mediaconvert.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "mediaconvert.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "mediaconvert.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "mediaconvert.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "mediaconvert-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "mediaconvert-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "mediaconvert-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "mediaconvert-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "mediaconvert-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "mediaconvert.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "mediaconvert.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "mediaconvert-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "mediaconvert-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "mediaconvert.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "mediaconvert-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "mediaconvert-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "mediaconvert.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "mediaconvert-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "mediaconvert-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "mediaconvert.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "mediaconvert-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "mediaconvert-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "mediaconvert.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "medialive" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "medialive-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "medialive-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "medialive-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "medialive-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "medialive-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "medialive-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "mediapackage" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "mediapackage-vod" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "mediapackagev2" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "mediapackagev2-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "mediapackagev2-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "mediapackagev2-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "mediapackagev2-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "mediapackagev2-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "mediapackagev2-fips.us-west-2.amazonaws.com" - }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "mediapackagev2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "mediapackagev2-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "mediapackagev2-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "mediapackagev2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "mediastore" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "meetings-chime" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "meetings-chime-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "meetings-chime-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "il-central-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "meetings-chime-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "meetings-chime-fips.us-east-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "meetings-chime-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "meetings-chime-fips.us-west-2.amazonaws.com" - } - } - }, - "memory-db" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "memory-db-fips.us-west-1.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "messaging-chime" : { - "endpoints" : { - "eu-central-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "messaging-chime-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "messaging-chime-fips.us-east-1.amazonaws.com" - } - } - }, - "metering.marketplace" : { - "defaults" : { - "credentialScope" : { - "service" : "aws-marketplace" - } - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "metering-marketplace.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "metering-marketplace.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "metering-marketplace.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "metrics.sagemaker" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "metrics-fips.sagemaker.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "metrics-fips.sagemaker.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "metrics-fips.sagemaker.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "metrics-fips.sagemaker.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "metrics-fips.sagemaker.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "metrics-fips.sagemaker.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "metrics-fips.sagemaker.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "metrics-fips.sagemaker.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "metrics-fips.sagemaker.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "metrics-fips.sagemaker.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "metrics-fips.sagemaker.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "metrics-fips.sagemaker.us-west-2.amazonaws.com" - } - } - }, - "mgh" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "mgn" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "mgn-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "mgn-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "mgn-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "mgn-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "mgn-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "mgn-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "mgn-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "mgn-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "migrationhub-orchestrator" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "migrationhub-strategy" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "mobileanalytics" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "models-v2-lex" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "models.lex" : { - "defaults" : { - "credentialScope" : { - "service" : "lex" - }, - "variants" : [ { - "hostname" : "models-fips.lex.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "models-fips.lex.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "models-fips.lex.us-east-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "models-fips.lex.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "models-fips.lex.us-west-2.amazonaws.com" - } - } - }, - "monitoring" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "monitoring-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "monitoring-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "monitoring-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "monitoring-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "monitoring-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "monitoring-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "monitoring-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "monitoring-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "mq" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "mq-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "mq-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "mq-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "mq-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "mq-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "mq-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "mq-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "mq-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "mturk-requester" : { - "endpoints" : { - "sandbox" : { - "hostname" : "mturk-requester-sandbox.us-east-1.amazonaws.com" - }, - "us-east-1" : { } - }, - "isRegionalized" : false - }, - "neptune" : { - "endpoints" : { - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "rds.ap-east-1.amazonaws.com" - }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "rds.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "rds.ap-northeast-2.amazonaws.com" - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "rds.ap-south-1.amazonaws.com" - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "rds.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "rds.ap-southeast-2.amazonaws.com" - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "rds.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "rds.eu-central-1.amazonaws.com" - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "rds.eu-north-1.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "rds.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "rds.eu-west-2.amazonaws.com" - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "rds.eu-west-3.amazonaws.com" - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "rds.me-south-1.amazonaws.com" - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "rds.sa-east-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "rds.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "rds.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "rds.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "rds.us-west-2.amazonaws.com" - } - } - }, - "network-firewall" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "network-firewall-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "network-firewall-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "network-firewall-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "network-firewall-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "network-firewall-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "networkmanager" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "networkmanager.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "networkmanager-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "networkmanager-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "networkmanager.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-aws-global" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "networkmanager-fips.us-west-2.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "notifications" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "hostname" : "notifications.af-south-1.api.aws" - }, - "ap-east-1" : { - "hostname" : "notifications.ap-east-1.api.aws" - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "notifications.ap-northeast-1.api.aws" - }, - "ap-northeast-2" : { - "hostname" : "notifications.ap-northeast-2.api.aws" - }, - "ap-northeast-3" : { - "hostname" : "notifications.ap-northeast-3.api.aws" - }, - "ap-south-1" : { - "hostname" : "notifications.ap-south-1.api.aws" - }, - "ap-south-2" : { - "hostname" : "notifications.ap-south-2.api.aws" - }, - "ap-southeast-1" : { - "hostname" : "notifications.ap-southeast-1.api.aws" - }, - "ap-southeast-2" : { - "hostname" : "notifications.ap-southeast-2.api.aws" - }, - "ap-southeast-3" : { - "hostname" : "notifications.ap-southeast-3.api.aws" - }, - "ap-southeast-4" : { - "hostname" : "notifications.ap-southeast-4.api.aws" - }, - "ap-southeast-5" : { - "hostname" : "notifications.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "notifications.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "notifications.ca-central-1.api.aws" - }, - "ca-west-1" : { - "hostname" : "notifications.ca-west-1.api.aws" - }, - "eu-central-1" : { - "hostname" : "notifications.eu-central-1.api.aws" - }, - "eu-central-2" : { - "hostname" : "notifications.eu-central-2.api.aws" - }, - "eu-north-1" : { - "hostname" : "notifications.eu-north-1.api.aws" - }, - "eu-south-1" : { - "hostname" : "notifications.eu-south-1.api.aws" - }, - "eu-south-2" : { - "hostname" : "notifications.eu-south-2.api.aws" - }, - "eu-west-1" : { - "hostname" : "notifications.eu-west-1.api.aws" - }, - "eu-west-2" : { - "hostname" : "notifications.eu-west-2.api.aws" - }, - "eu-west-3" : { - "hostname" : "notifications.eu-west-3.api.aws" - }, - "il-central-1" : { - "hostname" : "notifications.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "notifications.me-central-1.api.aws" - }, - "me-south-1" : { - "hostname" : "notifications.me-south-1.api.aws" - }, - "mx-central-1" : { - "hostname" : "notifications.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "notifications.sa-east-1.api.aws" - }, - "us-east-1" : { - "hostname" : "notifications.us-east-1.api.aws" - }, - "us-east-2" : { - "hostname" : "notifications.us-east-2.api.aws" - }, - "us-west-1" : { - "hostname" : "notifications.us-west-1.api.aws" - }, - "us-west-2" : { - "hostname" : "notifications.us-west-2.api.aws" - } - } - }, - "notifications-contacts" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "notifications-contacts.us-east-1.api.aws" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "oam" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "oidc" : { - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "oidc.af-south-1.amazonaws.com" - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "oidc.ap-east-1.amazonaws.com" - }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "oidc.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "oidc.ap-northeast-2.amazonaws.com" - }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "oidc.ap-northeast-3.amazonaws.com" - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "oidc.ap-south-1.amazonaws.com" - }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "oidc.ap-south-2.amazonaws.com" - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "oidc.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "oidc.ap-southeast-2.amazonaws.com" - }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "hostname" : "oidc.ap-southeast-3.amazonaws.com" - }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "oidc.ap-southeast-4.amazonaws.com" - }, - "ap-southeast-5" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "hostname" : "oidc.ap-southeast-5.amazonaws.com" - }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "oidc.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "hostname" : "oidc.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "oidc.eu-central-1.amazonaws.com" - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "oidc.eu-central-2.amazonaws.com" - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "oidc.eu-north-1.amazonaws.com" - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "oidc.eu-south-1.amazonaws.com" - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "oidc.eu-south-2.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "oidc.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "oidc.eu-west-2.amazonaws.com" - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "oidc.eu-west-3.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "oidc.il-central-1.amazonaws.com" - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "oidc.me-central-1.amazonaws.com" - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "oidc.me-south-1.amazonaws.com" - }, - "mx-central-1" : { }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "oidc.sa-east-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "oidc.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "oidc.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "oidc.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "oidc.us-west-2.amazonaws.com" - } - } - }, - "omics" : { - "endpoints" : { - "ap-northeast-2" : { }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "omics.ap-southeast-1.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "omics.eu-central-1.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "omics.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "omics.eu-west-2.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "omics-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "omics-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "omics.il-central-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "omics.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "omics-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "omics.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "omics-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "organizations" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "organizations.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "organizations-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "organizations-fips.us-east-1.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "osis" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "outposts" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "outposts-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "outposts-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "outposts-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "outposts-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "outposts-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "outposts-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "outposts-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "outposts-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "outposts-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "outposts-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "participant.connect" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "participant.connect-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "participant.connect-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "participant.connect-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "participant.connect-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "personalize" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "pi" : { - "endpoints" : { - "af-south-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "pi-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "pi-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "pi-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "pi-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "pi-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "pi-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "pinpoint" : { - "defaults" : { - "credentialScope" : { - "service" : "mobiletargeting" - } - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "pinpoint.ca-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "pinpoint-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "pinpoint-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "pinpoint-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "pinpoint-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "pinpoint-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "pinpoint.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "pinpoint-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "pinpoint.us-east-2.amazonaws.com", - "variants" : [ { - "hostname" : "pinpoint-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "pinpoint.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "pinpoint-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "pipes" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "polly" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "polly.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "polly.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "polly.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "polly.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "polly.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "polly.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "polly.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "polly.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "polly.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "polly-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "polly-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "polly.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "polly.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "polly.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "polly.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "polly.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "polly.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "polly.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "polly-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "polly-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "polly-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "polly-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "polly-fips.us-west-2.amazonaws.com" - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "polly.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "polly.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "polly-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "polly-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "polly.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "polly-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "polly-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "polly.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "polly-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "polly-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "polly.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "polly-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "polly-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "polly.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "portal.sso" : { - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "portal.sso.af-south-1.amazonaws.com" - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "portal.sso.ap-east-1.amazonaws.com" - }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "portal.sso.ap-northeast-1.amazonaws.com" - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "portal.sso.ap-northeast-2.amazonaws.com" - }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "portal.sso.ap-northeast-3.amazonaws.com" - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "portal.sso.ap-south-1.amazonaws.com" - }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "portal.sso.ap-south-2.amazonaws.com" - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "portal.sso.ap-southeast-1.amazonaws.com" - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "portal.sso.ap-southeast-2.amazonaws.com" - }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "hostname" : "portal.sso.ap-southeast-3.amazonaws.com" - }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "portal.sso.ap-southeast-4.amazonaws.com" - }, - "ap-southeast-5" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "hostname" : "portal.sso.ap-southeast-5.amazonaws.com" - }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "portal.sso.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "hostname" : "portal.sso.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "portal.sso.eu-central-1.amazonaws.com" - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "portal.sso.eu-central-2.amazonaws.com" - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "portal.sso.eu-north-1.amazonaws.com" - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "portal.sso.eu-south-1.amazonaws.com" - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "portal.sso.eu-south-2.amazonaws.com" - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "portal.sso.eu-west-1.amazonaws.com" - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "portal.sso.eu-west-2.amazonaws.com" - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "portal.sso.eu-west-3.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "portal.sso.il-central-1.amazonaws.com" - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "portal.sso.me-central-1.amazonaws.com" - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "portal.sso.me-south-1.amazonaws.com" - }, - "mx-central-1" : { }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "portal.sso.sa-east-1.amazonaws.com" - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "portal.sso.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "portal.sso.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "portal.sso.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "portal.sso.us-west-2.amazonaws.com" - } - } - }, - "profile" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "profile-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "profile-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "profile-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "profile-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "profile-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "profile-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "proton" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "qbusiness" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "hostname" : "qbusiness.af-south-1.api.aws" - }, - "ap-east-1" : { - "hostname" : "qbusiness.ap-east-1.api.aws" - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "qbusiness.ap-northeast-1.api.aws" - }, - "ap-northeast-2" : { - "hostname" : "qbusiness.ap-northeast-2.api.aws" - }, - "ap-northeast-3" : { - "hostname" : "qbusiness.ap-northeast-3.api.aws" - }, - "ap-south-1" : { - "hostname" : "qbusiness.ap-south-1.api.aws" - }, - "ap-south-2" : { - "hostname" : "qbusiness.ap-south-2.api.aws" - }, - "ap-southeast-1" : { - "hostname" : "qbusiness.ap-southeast-1.api.aws" - }, - "ap-southeast-2" : { - "hostname" : "qbusiness.ap-southeast-2.api.aws" - }, - "ap-southeast-3" : { - "hostname" : "qbusiness.ap-southeast-3.api.aws" - }, - "ap-southeast-4" : { - "hostname" : "qbusiness.ap-southeast-4.api.aws" - }, - "ap-southeast-5" : { - "hostname" : "qbusiness.ap-southeast-5.api.aws" - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "hostname" : "qbusiness.ap-southeast-7.api.aws" - }, - "ca-central-1" : { - "hostname" : "qbusiness.ca-central-1.api.aws" - }, - "ca-west-1" : { - "hostname" : "qbusiness.ca-west-1.api.aws" - }, - "eu-central-1" : { - "hostname" : "qbusiness.eu-central-1.api.aws" - }, - "eu-central-2" : { - "hostname" : "qbusiness.eu-central-2.api.aws" - }, - "eu-north-1" : { - "hostname" : "qbusiness.eu-north-1.api.aws" - }, - "eu-south-1" : { - "hostname" : "qbusiness.eu-south-1.api.aws" - }, - "eu-south-2" : { - "hostname" : "qbusiness.eu-south-2.api.aws" - }, - "eu-west-1" : { - "hostname" : "qbusiness.eu-west-1.api.aws" - }, - "eu-west-2" : { - "hostname" : "qbusiness.eu-west-2.api.aws" - }, - "eu-west-3" : { - "hostname" : "qbusiness.eu-west-3.api.aws" - }, - "il-central-1" : { - "hostname" : "qbusiness.il-central-1.api.aws" - }, - "me-central-1" : { - "hostname" : "qbusiness.me-central-1.api.aws" - }, - "me-south-1" : { - "hostname" : "qbusiness.me-south-1.api.aws" - }, - "mx-central-1" : { - "hostname" : "qbusiness.mx-central-1.api.aws" - }, - "sa-east-1" : { - "hostname" : "qbusiness.sa-east-1.api.aws" - }, - "us-east-1" : { - "hostname" : "qbusiness.us-east-1.api.aws" - }, - "us-east-2" : { - "hostname" : "qbusiness.us-east-2.api.aws" - }, - "us-west-1" : { - "hostname" : "qbusiness.us-west-1.api.aws" - }, - "us-west-2" : { - "hostname" : "qbusiness.us-west-2.api.aws" - } - } - }, - "query.timestream" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "quicksight" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "ram" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ram-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ram-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ram-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "ram-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ram-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ram-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ram-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ram-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ram-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ram-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ram-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ram-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - } - } - }, - "rbin" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "rbin.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "rbin.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "rbin.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "rbin.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "rbin.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "rbin.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "rbin.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "rbin.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "rbin.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "rbin.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "rbin.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "rbin.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "rbin-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "rbin-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "rbin.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "rbin.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "rbin.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "rbin.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "rbin.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "rbin.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "rbin.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "rbin.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "rbin.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "rbin.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "rbin.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "rbin.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "rbin-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "rbin-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "rds" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "rds-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "rds-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "rds-fips.ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.ca-central-1.amazonaws.com" - }, - "rds-fips.ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.ca-west-1.amazonaws.com" - }, - "rds-fips.us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-east-1.amazonaws.com" - }, - "rds-fips.us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-east-2.amazonaws.com" - }, - "rds-fips.us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-west-1.amazonaws.com" - }, - "rds-fips.us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-west-2.amazonaws.com" - }, - "rds.ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rds-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rds.ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rds-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rds.us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rds-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rds.us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rds-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rds.us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rds-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rds.us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rds-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "sa-east-1" : { }, - "us-east-1" : { - "sslCommonName" : "{service}.{dnsSuffix}", - "variants" : [ { - "hostname" : "rds-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "rds-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "rds-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "rds-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rds-fips.us-west-2.amazonaws.com" - } - } - }, - "rds-data" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rds-data-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rds-data-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rds-data-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rds-data-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "rds-data-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "rds-data-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "rds-data-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "rds-data-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "redshift" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "redshift-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "redshift-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "redshift-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "redshift-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "redshift-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "redshift-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "redshift-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "redshift-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "redshift-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "redshift-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "redshift-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "redshift-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "redshift-serverless" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "rekognition" : { - "endpoints" : { - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "rekognition.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "rekognition.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "rekognition.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "rekognition.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "rekognition.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "rekognition-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rekognition-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rekognition.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "rekognition.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "rekognition.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "rekognition.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "rekognition.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "rekognition.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "rekognition-fips.ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.ca-central-1.amazonaws.com" - }, - "rekognition-fips.us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-east-1.amazonaws.com" - }, - "rekognition-fips.us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-east-2.amazonaws.com" - }, - "rekognition-fips.us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-west-1.amazonaws.com" - }, - "rekognition-fips.us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-west-2.amazonaws.com" - }, - "rekognition.ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rekognition-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rekognition.us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rekognition-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rekognition.us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rekognition-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rekognition.us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rekognition-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "rekognition.us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rekognition-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "rekognition-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rekognition-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rekognition.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "rekognition-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rekognition-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rekognition.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "rekognition-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rekognition-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rekognition.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "rekognition-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rekognition-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rekognition.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-west-2.amazonaws.com" - } - } - }, - "resiliencehub" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "resiliencehub.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "resiliencehub.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "resiliencehub.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "resiliencehub.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "resiliencehub.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "resiliencehub.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "resiliencehub.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "resiliencehub.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "resiliencehub.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "resiliencehub.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "resiliencehub.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "resiliencehub.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "resiliencehub.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "resiliencehub.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "resiliencehub.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "resiliencehub.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "resiliencehub.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "resiliencehub.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "resiliencehub.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "resiliencehub.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "resource-explorer-2" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "resource-explorer-2-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resource-explorer-2-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "resource-explorer-2-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resource-explorer-2-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "resource-explorer-2-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "resource-explorer-2-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "resource-explorer-2-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "resource-explorer-2-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "resource-explorer-2-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "resource-explorer-2-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "resource-explorer-2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resource-explorer-2-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "resource-explorer-2-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resource-explorer-2-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "resource-explorer-2-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resource-explorer-2-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "resource-explorer-2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resource-explorer-2-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - } - } - }, - "resource-groups" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "resource-groups-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "resource-groups-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "resource-groups-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "resource-groups-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "resource-groups-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "resource-groups-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "resource-groups-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "resource-groups-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "rolesanywhere" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "rolesanywhere-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "rolesanywhere-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "rolesanywhere-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "rolesanywhere-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "rolesanywhere-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "rolesanywhere-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "rolesanywhere-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "rolesanywhere-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "route53" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "route53.amazonaws.com", - "variants" : [ { - "hostname" : "route53-fips.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "route53-fips.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "route53-recovery-control-config" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "route53-recovery-control-config.us-west-2.amazonaws.com" - } - } - }, - "route53domains" : { - "endpoints" : { - "us-east-1" : { } - } - }, - "route53profiles" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "route53profiles.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "route53profiles.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "route53profiles.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "route53profiles.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "route53profiles.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "route53profiles.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "route53profiles.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "route53profiles.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "route53profiles.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "route53profiles.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "route53profiles.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "route53profiles-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "route53profiles-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "route53profiles.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "route53profiles.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "route53profiles.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "route53profiles.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "route53profiles.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "route53profiles.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "route53profiles.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "route53profiles.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "route53profiles.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "route53profiles.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "route53profiles.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "route53profiles.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "route53profiles-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "route53profiles-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "route53profiles-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "route53profiles-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "route53resolver" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "route53resolver.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "route53resolver.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "route53resolver.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "route53resolver.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "route53resolver.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "route53resolver.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "route53resolver.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "route53resolver.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "route53resolver.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "route53resolver.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "route53resolver.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "route53resolver.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "route53resolver.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "route53resolver-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53resolver.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "route53resolver-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "route53resolver-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53resolver.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "route53resolver-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "route53resolver.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "route53resolver.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "route53resolver.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "route53resolver.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "route53resolver.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "route53resolver.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "route53resolver.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "route53resolver.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "route53resolver.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "route53resolver.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "route53resolver.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "route53resolver.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "route53resolver.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "route53resolver-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53resolver.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "route53resolver-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "route53resolver-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53resolver.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "route53resolver-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "route53resolver-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53resolver.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "route53resolver-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "route53resolver-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53resolver.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "route53resolver-fips.us-west-2.amazonaws.com" - } - } - }, - "rum" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "runtime-v2-lex" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "runtime.lex" : { - "defaults" : { - "credentialScope" : { - "service" : "lex" - }, - "variants" : [ { - "hostname" : "runtime-fips.lex.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "runtime-fips.lex.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "runtime-fips.lex.us-east-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "runtime-fips.lex.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "runtime-fips.lex.us-west-2.amazonaws.com" - } - } - }, - "runtime.sagemaker" : { - "defaults" : { - "variants" : [ { - "hostname" : "runtime-fips.sagemaker.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "runtime-fips.sagemaker.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "runtime-fips.sagemaker.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "runtime-fips.sagemaker.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "runtime-fips.sagemaker.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "runtime-fips.sagemaker.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "runtime-fips.sagemaker.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "runtime-fips.sagemaker.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "runtime-fips.sagemaker.us-west-2.amazonaws.com" - } - } - }, - "s3" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}-fips.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.af-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "hostname" : "s3.ap-northeast-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3.dualstack.ap-northeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-northeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-northeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "hostname" : "s3.ap-southeast-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3.dualstack.ap-southeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "hostname" : "s3.ap-southeast-2.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3.dualstack.ap-southeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-southeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-southeast-4.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-southeast-5.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "s3.dualstack.ap-southeast-7.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "s3.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "s3-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-fips.dualstack.ca-central-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3.dualstack.ca-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "s3-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-fips.dualstack.ca-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3.dualstack.ca-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-central-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-north-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "hostname" : "s3.eu-west-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3.dualstack.eu-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "s3.dualstack.eu-west-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.il-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.me-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.me-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.mx-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "s3-external-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "s3-external-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ] - }, - "sa-east-1" : { - "hostname" : "s3.sa-east-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3.dualstack.sa-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "hostname" : "s3.us-east-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-east-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3.dualstack.us-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-east-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3.dualstack.us-east-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "hostname" : "s3.us-west-1.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3.dualstack.us-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "hostname" : "s3.us-west-2.amazonaws.com", - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-west-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3.dualstack.us-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - } - }, - "isRegionalized" : true, - "partitionEndpoint" : "aws-global" - }, - "s3-control" : { - "defaults" : { - "protocols" : [ "https" ], - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}-fips.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "s3-control.af-south-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.af-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "s3-control.ap-east-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "s3-control.ap-northeast-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-northeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "s3-control.ap-northeast-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-northeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "s3-control.ap-northeast-3.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-northeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "s3-control.ap-south-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "s3-control.ap-south-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "s3-control.ap-southeast-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-southeast-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "s3-control.ap-southeast-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-southeast-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "hostname" : "s3-control.ap-southeast-3.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-southeast-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "s3-control.ap-southeast-4.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.ap-southeast-4.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "s3-control.ca-central-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control-fips.dualstack.ca-central-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control.dualstack.ca-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.ca-central-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - }, - "ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "hostname" : "s3-control.ca-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control-fips.dualstack.ca-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control.dualstack.ca-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.ca-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "s3-control.eu-central-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "s3-control.eu-central-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-central-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "s3-control.eu-north-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-north-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "s3-control.eu-south-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "s3-control.eu-south-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-south-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "s3-control.eu-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "s3-control.eu-west-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "s3-control.eu-west-3.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.eu-west-3.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "s3-control.il-central-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.il-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "s3-control.me-central-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.me-central-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "s3-control.me-south-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.me-south-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "s3-control.sa-east-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.sa-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "s3-control.us-east-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-east-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-east-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "s3-control.us-east-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-east-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-east-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-east-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "s3-control.us-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "s3-control.us-west-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-west-2.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-west-2.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-west-2.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - } - } - }, - "s3-outposts" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "deprecated" : true - }, - "fips-us-east-1" : { - "deprecated" : true - }, - "fips-us-east-2" : { - "deprecated" : true - }, - "fips-us-west-1" : { - "deprecated" : true - }, - "fips-us-west-2" : { - "deprecated" : true - }, - "il-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - } - } - }, - "sagemaker-geospatial" : { - "endpoints" : { - "us-west-2" : { } - } - }, - "savingsplans" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "savingsplans.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "scheduler" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "schemas" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "sdb" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "v2" ] - }, - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "hostname" : "sdb.amazonaws.com" - }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "deprecated" : true - }, - "ca-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "deprecated" : true - }, - "eu-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "deprecated" : true - }, - "us-east-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "deprecated" : true - }, - "us-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "deprecated" : true - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "deprecated" : true - } - } - }, - "securityhub" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "securityhub.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "securityhub.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "securityhub.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "securityhub.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "securityhub.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "securityhub.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "securityhub.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "securityhub.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "securityhub.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "securityhub.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "securityhub.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "securityhub.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "securityhub.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "securityhub.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "securityhub.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "securityhub.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "securityhub.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "securityhub.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "securityhub.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "securityhub.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "securityhub.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "securityhub.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "securityhub.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "securityhub-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "securityhub-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "securityhub-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "securityhub-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "securityhub.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "securityhub.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "securityhub.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "securityhub.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "securityhub.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "securityhub-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securityhub.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "securityhub-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securityhub.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "securityhub-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securityhub.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "securityhub-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securityhub.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "securitylake" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "securitylake-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "securitylake-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "securitylake-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "securitylake-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "securitylake-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securitylake-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "securitylake-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securitylake-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "securitylake-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securitylake-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "securitylake-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securitylake-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - } - } - }, - "serverlessrepo" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-east-1" : { - "protocols" : [ "https" ] - }, - "ap-northeast-1" : { - "protocols" : [ "https" ] - }, - "ap-northeast-2" : { - "protocols" : [ "https" ] - }, - "ap-south-1" : { - "protocols" : [ "https" ] - }, - "ap-southeast-1" : { - "protocols" : [ "https" ] - }, - "ap-southeast-2" : { - "protocols" : [ "https" ] - }, - "ca-central-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "serverlessrepo-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { - "protocols" : [ "https" ] - }, - "eu-north-1" : { - "protocols" : [ "https" ] - }, - "eu-west-1" : { - "protocols" : [ "https" ] - }, - "eu-west-2" : { - "protocols" : [ "https" ] - }, - "eu-west-3" : { - "protocols" : [ "https" ] - }, - "me-south-1" : { - "protocols" : [ "https" ] - }, - "sa-east-1" : { - "protocols" : [ "https" ] - }, - "us-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "serverlessrepo-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "serverlessrepo-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "serverlessrepo-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "serverlessrepo-fips.us-west-2.amazonaws.com" - } - } - }, - "servicecatalog" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "servicecatalog-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "servicecatalog-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "servicecatalog-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "servicecatalog-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "servicecatalog-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "servicecatalog-fips.us-west-2.amazonaws.com" - } - } - }, - "servicecatalog-appregistry" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-appregistry-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "servicecatalog-appregistry-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-appregistry-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "servicecatalog-appregistry-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "servicecatalog-appregistry-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "servicecatalog-appregistry-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "servicecatalog-appregistry-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "servicecatalog-appregistry-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "servicediscovery" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "servicediscovery.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "servicediscovery.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "servicediscovery.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "servicediscovery.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "servicediscovery.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "servicediscovery.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "servicediscovery.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "servicediscovery.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-west-2.amazonaws.com" - } - } - }, - "servicequotas" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "shield" : { - "defaults" : { - "protocols" : [ "https" ], - "sslCommonName" : "shield.us-east-1.amazonaws.com" - }, - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "shield.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "shield-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "shield-fips.us-east-1.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "signer" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "signer-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "signer-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "signer-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "signer-fips.us-west-2.amazonaws.com" - }, - "fips-verification-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "verification.signer-fips.us-east-1.amazonaws.com" - }, - "fips-verification-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "verification.signer-fips.us-east-2.amazonaws.com" - }, - "fips-verification-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "verification.signer-fips.us-west-1.amazonaws.com" - }, - "fips-verification-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "verification.signer-fips.us-west-2.amazonaws.com" - }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "signer-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "signer-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "signer-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "signer-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "verification-af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "verification.signer.af-south-1.amazonaws.com" - }, - "verification-ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "verification.signer.ap-east-1.amazonaws.com" - }, - "verification-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "verification.signer.ap-northeast-1.amazonaws.com" - }, - "verification-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "verification.signer.ap-northeast-2.amazonaws.com" - }, - "verification-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "verification.signer.ap-south-1.amazonaws.com" - }, - "verification-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "verification.signer.ap-southeast-1.amazonaws.com" - }, - "verification-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "verification.signer.ap-southeast-2.amazonaws.com" - }, - "verification-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "verification.signer.ca-central-1.amazonaws.com" - }, - "verification-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "verification.signer.eu-central-1.amazonaws.com" - }, - "verification-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "verification.signer.eu-north-1.amazonaws.com" - }, - "verification-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "verification.signer.eu-south-1.amazonaws.com" - }, - "verification-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "verification.signer.eu-west-1.amazonaws.com" - }, - "verification-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "verification.signer.eu-west-2.amazonaws.com" - }, - "verification-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "verification.signer.eu-west-3.amazonaws.com" - }, - "verification-me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "verification.signer.me-south-1.amazonaws.com" - }, - "verification-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "verification.signer.sa-east-1.amazonaws.com" - }, - "verification-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "verification.signer.us-east-1.amazonaws.com" - }, - "verification-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "verification.signer.us-east-2.amazonaws.com" - }, - "verification-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "verification.signer.us-west-1.amazonaws.com" - }, - "verification-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "verification.signer.us-west-2.amazonaws.com" - } - } - }, - "simspaceweaver" : { - "endpoints" : { - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "sms-voice" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "sms-voice.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "sms-voice.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "sms-voice.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "sms-voice.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "sms-voice.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "sms-voice.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "sms-voice.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "sms-voice.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "sms-voice.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "sms-voice.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "sms-voice-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "sms-voice-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "sms-voice.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "sms-voice.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "sms-voice.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "sms-voice.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "sms-voice.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "sms-voice.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "sms-voice.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "sms-voice.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "sms-voice.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "sms-voice.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "sms-voice.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "sms-voice.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "sms-voice-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "sms-voice-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "sms-voice-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "sms-voice-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "snowball" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "snowball-fips.af-south-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.af-south-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-northeast-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-northeast-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-northeast-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-northeast-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-northeast-3.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-northeast-3.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-south-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-south-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-southeast-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-southeast-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-southeast-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-southeast-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "snowball-fips.ap-southeast-3.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ap-southeast-3.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "snowball-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "snowball-fips.eu-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.eu-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "snowball-fips.eu-north-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.eu-north-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "snowball-fips.eu-south-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.eu-south-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "snowball-fips.eu-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.eu-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "snowball-fips.eu-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.eu-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "snowball-fips.eu-west-3.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.eu-west-3.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.af-south-1.amazonaws.com" - }, - "fips-ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-east-1.amazonaws.com" - }, - "fips-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-northeast-1.amazonaws.com" - }, - "fips-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-northeast-2.amazonaws.com" - }, - "fips-ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-northeast-3.amazonaws.com" - }, - "fips-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-south-1.amazonaws.com" - }, - "fips-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-southeast-1.amazonaws.com" - }, - "fips-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-southeast-2.amazonaws.com" - }, - "fips-ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ap-southeast-3.amazonaws.com" - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.ca-central-1.amazonaws.com" - }, - "fips-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.eu-central-1.amazonaws.com" - }, - "fips-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.eu-north-1.amazonaws.com" - }, - "fips-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.eu-south-1.amazonaws.com" - }, - "fips-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.eu-west-1.amazonaws.com" - }, - "fips-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "deprecated" : true, - "hostname" : "snowball-fips.eu-west-2.amazonaws.com" - }, - "fips-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "deprecated" : true, - "hostname" : "snowball-fips.eu-west-3.amazonaws.com" - }, - "fips-il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.il-central-1.amazonaws.com" - }, - "fips-me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.me-central-1.amazonaws.com" - }, - "fips-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.sa-east-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "snowball-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "snowball-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "snowball-fips.il-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.il-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "snowball-fips.me-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.me-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "snowball-fips.sa-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.sa-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "snowball-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "snowball-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "snowball-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "snowball-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "sns" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "sns.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "sns.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "sns.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "sns.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "sns.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "sns.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "sns.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "sns.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "sns.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "sns.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "sns.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "sns.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "sns.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "sns.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "sns-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sns.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "sns.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "sns.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "sns.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "sns.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "sns.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "sns.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "sns.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "sns.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "sns-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "sns-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "sns-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "sns-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "sns-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "sns.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "sns.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "sns.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "sns.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "sns.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "sns-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sns.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "sns-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sns.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "sns-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sns.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "sns-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sns.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "sqs" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "sslCommonName" : "{region}.queue.{dnsSuffix}" - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "sqs.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "sqs.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "sqs.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "sqs.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "sqs.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "sqs.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "sqs.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "sqs.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "sqs.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "sqs.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "sqs.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "sqs.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "sqs.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "sqs-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sqs.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "sqs-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sqs.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "sqs.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "sqs.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "sqs.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "sqs.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "sqs.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "sqs.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "sqs.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "sqs.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "sqs-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "sqs-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "sqs-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "sqs-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "sqs-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "sqs-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "sqs.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "sqs.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "sqs.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "sqs.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "sqs.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "sslCommonName" : "queue.{dnsSuffix}", - "variants" : [ { - "hostname" : "sqs-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sqs.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "sqs-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sqs.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "sqs-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sqs.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "sqs-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sqs.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "ssm" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ssm-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "ssm-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ssm-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "ssm-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ssm-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ssm-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ssm-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ssm-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ssm-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ssm-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ssm-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ssm-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ssm-contacts" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ssm-contacts-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ssm-contacts-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ssm-contacts-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ssm-contacts-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ssm-contacts-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ssm-contacts-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ssm-contacts-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ssm-contacts-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ssm-incidents" : { - "endpoints" : { - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "ssm-incidents.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "ssm-incidents.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ssm-incidents-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-incidents-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-incidents.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "ssm-incidents.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "ssm-incidents.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ssm-incidents-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ssm-incidents-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ssm-incidents-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ssm-incidents-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ssm-incidents-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "ssm-incidents.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ssm-incidents-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-incidents-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-incidents.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ssm-incidents-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-incidents-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-incidents.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ssm-incidents-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-incidents-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-incidents.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ssm-incidents-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-incidents-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-incidents.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "ssm-quicksetup" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ssm-quicksetup-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ssm-quicksetup-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ssm-quicksetup-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ssm-quicksetup-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ssm-quicksetup-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ssm-quicksetup-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ssm-quicksetup-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ssm-quicksetup-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ssm-quicksetup-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ssm-quicksetup-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ssm-sap" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "ssm-sap.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "ssm-sap.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "ssm-sap-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-sap-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-sap.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "ssm-sap.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "ssm-sap-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "ssm-sap-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "ssm-sap-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "ssm-sap-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "ssm-sap-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "ssm-sap.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "ssm-sap.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "ssm-sap.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "ssm-sap.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "ssm-sap-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-sap-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-sap.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "ssm-sap-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-sap-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-sap.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "ssm-sap-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-sap-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-sap.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "ssm-sap-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ssm-sap-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ssm-sap.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "sso" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "states" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "states-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "states-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "states-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "states-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "states-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "states-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "states-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "states-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "states-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "states-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "states-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "states-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "storagegateway" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.ca-central-1.amazonaws.com" - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1-fips" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.ca-west-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-west-2.amazonaws.com" - } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" - }, - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "local" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "localhost:8000", - "protocols" : [ "http" ] - }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "sts" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "sts.amazonaws.com" - }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "sts-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "sts-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "sts-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "sts-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "sts-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "sts-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "sts-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "sts-fips.us-west-2.amazonaws.com" - } - }, - "partitionEndpoint" : "aws-global" - }, - "support" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "support.us-east-1.amazonaws.com" - } - }, - "partitionEndpoint" : "aws-global" - }, - "supportapp" : { - "endpoints" : { - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "swf" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "swf-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "swf-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "swf-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "swf-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "swf-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "swf-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "synthetics" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "synthetics.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "synthetics.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "synthetics.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "synthetics.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-3" : { - "variants" : [ { - "hostname" : "synthetics.ap-northeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "synthetics.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-2" : { - "variants" : [ { - "hostname" : "synthetics.ap-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "synthetics.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "synthetics.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-3" : { - "variants" : [ { - "hostname" : "synthetics.ap-southeast-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-4" : { - "variants" : [ { - "hostname" : "synthetics.ap-southeast-4.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-5" : { - "variants" : [ { - "hostname" : "synthetics.ap-southeast-5.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { - "variants" : [ { - "hostname" : "synthetics.ap-southeast-7.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "synthetics-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "synthetics-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.ca-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.ca-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "synthetics.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-2" : { - "variants" : [ { - "hostname" : "synthetics.eu-central-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "synthetics.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-1" : { - "variants" : [ { - "hostname" : "synthetics.eu-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "synthetics.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "synthetics.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "synthetics.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "synthetics.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "variants" : [ { - "hostname" : "synthetics.il-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-central-1" : { - "variants" : [ { - "hostname" : "synthetics.me-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "synthetics.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "mx-central-1" : { - "variants" : [ { - "hostname" : "synthetics.mx-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "synthetics.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "synthetics-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "synthetics-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "synthetics-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "synthetics-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "tagging" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "tax" : { - "endpoints" : { - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "tax.us-east-1.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "textract" : { - "endpoints" : { - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "textract.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "textract.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "textract.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "textract.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "textract-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "textract.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-south-2" : { - "variants" : [ { - "hostname" : "textract.eu-south-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "textract.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "textract.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "textract.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "textract-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "textract-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "textract-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "textract-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "textract-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "textract-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "textract-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "textract-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "textract-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "thinclient" : { - "endpoints" : { - "ap-south-1" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "tnb" : { - "endpoints" : { - "ap-northeast-2" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-south-2" : { }, - "eu-west-3" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "transcribe" : { - "defaults" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "fips.transcribe.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "transcribe.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-east-1" : { - "variants" : [ { - "hostname" : "transcribe.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "transcribe.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "transcribe.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "transcribe.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "transcribe.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "transcribe.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "fips.transcribe.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "transcribe.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "transcribe.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "transcribe.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "transcribe.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "transcribe.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-west-2.amazonaws.com" - }, - "me-south-1" : { - "variants" : [ { - "hostname" : "transcribe.me-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "transcribe.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transcribestreaming" : { - "endpoints" : { - "af-south-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.af-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "transcribestreaming.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "transcribestreaming.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "transcribestreaming-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribestreaming-fips.ca-central-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribestreaming.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "transcribestreaming.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "transcribestreaming-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "transcribestreaming-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "transcribestreaming-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "transcribestreaming-fips.us-west-2.amazonaws.com" - }, - "sa-east-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.sa-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "transcribestreaming-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribestreaming-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribestreaming.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "transcribestreaming-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribestreaming-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribestreaming.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "transcribestreaming-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribestreaming-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribestreaming.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transfer" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "transfer-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "transfer-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "transfer-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "transfer-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "transfer-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "transfer-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "transfer-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "transfer-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "transfer-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "transfer-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "transfer-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "transfer-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "translate" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "ap-east-1" : { - "variants" : [ { - "hostname" : "translate.ap-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-1" : { - "variants" : [ { - "hostname" : "translate.ap-northeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-northeast-2" : { - "variants" : [ { - "hostname" : "translate.ap-northeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-south-1" : { - "variants" : [ { - "hostname" : "translate.ap-south-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-1" : { - "variants" : [ { - "hostname" : "translate.ap-southeast-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ap-southeast-2" : { - "variants" : [ { - "hostname" : "translate.ap-southeast-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "translate.ca-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-central-1" : { - "variants" : [ { - "hostname" : "translate.eu-central-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-north-1" : { - "variants" : [ { - "hostname" : "translate.eu-north-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-1" : { - "variants" : [ { - "hostname" : "translate.eu-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-2" : { - "variants" : [ { - "hostname" : "translate.eu-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "eu-west-3" : { - "variants" : [ { - "hostname" : "translate.eu-west-3.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "translate-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "translate-fips.us-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "translate.us-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "translate-fips.us-east-1.amazonaws.com" - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "translate-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "translate-fips.us-east-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "translate.us-east-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-east-2-fips" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "translate-fips.us-east-2.amazonaws.com" - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "translate-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "translate-fips.us-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "translate.us-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-1-fips" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "translate-fips.us-west-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "translate-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "translate-fips.us-west-2.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "translate.us-west-2.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "translate-fips.us-west-2.amazonaws.com" - } - } - }, - "trustedadvisor" : { - "endpoints" : { - "ap-northeast-2" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "trustedadvisor-fips.us-east-1.api.aws" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "trustedadvisor-fips.us-east-2.api.aws" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "trustedadvisor-fips.us-west-2.api.aws" - }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-2" : { } - } - }, - "verifiedpermissions" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.ca-west-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "voice-chime" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "voice-chime-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1-fips" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "voice-chime-fips.ca-central-1.amazonaws.com" - }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "voice-chime-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "voice-chime-fips.us-east-1.amazonaws.com" - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "voice-chime-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2-fips" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "voice-chime-fips.us-west-2.amazonaws.com" - } - } - }, - "voiceid" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "hostname" : "voiceid-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "voiceid-fips.ca-central-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "voiceid-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "voiceid-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "voiceid-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "voiceid-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "vpc-lattice" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "waf" : { - "endpoints" : { - "aws" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "waf-fips.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "aws-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "waf-fips.amazonaws.com" - }, - "aws-global" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "waf.amazonaws.com", - "variants" : [ { - "hostname" : "waf-fips.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "aws-global-fips" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "waf-fips.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-global" - }, - "waf-regional" : { - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "waf-regional.af-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.af-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "waf-regional.ap-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "waf-regional.ap-northeast-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-northeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "waf-regional.ap-northeast-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-northeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "waf-regional.ap-northeast-3.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-northeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "waf-regional.ap-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "waf-regional.ap-south-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "waf-regional.ap-southeast-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-southeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "waf-regional.ap-southeast-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-southeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "hostname" : "waf-regional.ap-southeast-3.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-southeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "waf-regional.ap-southeast-4.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ap-southeast-4.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "waf-regional.ca-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "waf-regional.eu-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "waf-regional.eu-central-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-central-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "waf-regional.eu-north-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-north-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "waf-regional.eu-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "waf-regional.eu-south-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "waf-regional.eu-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "waf-regional.eu-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "waf-regional.eu-west-3.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.eu-west-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.af-south-1.amazonaws.com" - }, - "fips-ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-east-1.amazonaws.com" - }, - "fips-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-northeast-1.amazonaws.com" - }, - "fips-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-northeast-2.amazonaws.com" - }, - "fips-ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-northeast-3.amazonaws.com" - }, - "fips-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-south-1.amazonaws.com" - }, - "fips-ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-south-2.amazonaws.com" - }, - "fips-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-southeast-1.amazonaws.com" - }, - "fips-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-southeast-2.amazonaws.com" - }, - "fips-ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-southeast-3.amazonaws.com" - }, - "fips-ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ap-southeast-4.amazonaws.com" - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.ca-central-1.amazonaws.com" - }, - "fips-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-central-1.amazonaws.com" - }, - "fips-eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-central-2.amazonaws.com" - }, - "fips-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-north-1.amazonaws.com" - }, - "fips-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-south-1.amazonaws.com" - }, - "fips-eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-south-2.amazonaws.com" - }, - "fips-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-west-1.amazonaws.com" - }, - "fips-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-west-2.amazonaws.com" - }, - "fips-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.eu-west-3.amazonaws.com" - }, - "fips-il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.il-central-1.amazonaws.com" - }, - "fips-me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.me-central-1.amazonaws.com" - }, - "fips-me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.me-south-1.amazonaws.com" - }, - "fips-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.sa-east-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "waf-regional.il-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.il-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "waf-regional.me-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.me-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "waf-regional.me-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.me-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "waf-regional.sa-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.sa-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "waf-regional.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "waf-regional.us-east-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "waf-regional.us-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "waf-regional.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "wafv2" : { - "endpoints" : { - "af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "hostname" : "wafv2.af-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.af-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "hostname" : "wafv2.ap-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-east-2" : { }, - "ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "hostname" : "wafv2.ap-northeast-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-northeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "hostname" : "wafv2.ap-northeast-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-northeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "hostname" : "wafv2.ap-northeast-3.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-northeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "hostname" : "wafv2.ap-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "hostname" : "wafv2.ap-south-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "hostname" : "wafv2.ap-southeast-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-southeast-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "hostname" : "wafv2.ap-southeast-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-southeast-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "hostname" : "wafv2.ap-southeast-3.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-southeast-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "hostname" : "wafv2.ap-southeast-4.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-southeast-4.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-5" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "hostname" : "wafv2.ap-southeast-5.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-southeast-5.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ap-southeast-7" : { - "credentialScope" : { - "region" : "ap-southeast-7" - }, - "hostname" : "wafv2.ap-southeast-7.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ap-southeast-7.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "hostname" : "wafv2.ca-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ca-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "hostname" : "wafv2.ca-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.ca-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "hostname" : "wafv2.eu-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "hostname" : "wafv2.eu-central-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-central-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "hostname" : "wafv2.eu-north-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-north-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "hostname" : "wafv2.eu-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "hostname" : "wafv2.eu-south-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-south-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "hostname" : "wafv2.eu-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "hostname" : "wafv2.eu-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "hostname" : "wafv2.eu-west-3.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.eu-west-3.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-af-south-1" : { - "credentialScope" : { - "region" : "af-south-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.af-south-1.amazonaws.com" - }, - "fips-ap-east-1" : { - "credentialScope" : { - "region" : "ap-east-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-east-1.amazonaws.com" - }, - "fips-ap-northeast-1" : { - "credentialScope" : { - "region" : "ap-northeast-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-northeast-1.amazonaws.com" - }, - "fips-ap-northeast-2" : { - "credentialScope" : { - "region" : "ap-northeast-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-northeast-2.amazonaws.com" - }, - "fips-ap-northeast-3" : { - "credentialScope" : { - "region" : "ap-northeast-3" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-northeast-3.amazonaws.com" - }, - "fips-ap-south-1" : { - "credentialScope" : { - "region" : "ap-south-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-south-1.amazonaws.com" - }, - "fips-ap-south-2" : { - "credentialScope" : { - "region" : "ap-south-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-south-2.amazonaws.com" - }, - "fips-ap-southeast-1" : { - "credentialScope" : { - "region" : "ap-southeast-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-southeast-1.amazonaws.com" - }, - "fips-ap-southeast-2" : { - "credentialScope" : { - "region" : "ap-southeast-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-southeast-2.amazonaws.com" - }, - "fips-ap-southeast-3" : { - "credentialScope" : { - "region" : "ap-southeast-3" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-southeast-3.amazonaws.com" - }, - "fips-ap-southeast-4" : { - "credentialScope" : { - "region" : "ap-southeast-4" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-southeast-4.amazonaws.com" - }, - "fips-ap-southeast-5" : { - "credentialScope" : { - "region" : "ap-southeast-5" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-southeast-5.amazonaws.com" - }, - "fips-ap-southeast-7" : { - "credentialScope" : { - "region" : "ap-southeast-7" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ap-southeast-7.amazonaws.com" - }, - "fips-ca-central-1" : { - "credentialScope" : { - "region" : "ca-central-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ca-central-1.amazonaws.com" - }, - "fips-ca-west-1" : { - "credentialScope" : { - "region" : "ca-west-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.ca-west-1.amazonaws.com" - }, - "fips-eu-central-1" : { - "credentialScope" : { - "region" : "eu-central-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-central-1.amazonaws.com" - }, - "fips-eu-central-2" : { - "credentialScope" : { - "region" : "eu-central-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-central-2.amazonaws.com" - }, - "fips-eu-north-1" : { - "credentialScope" : { - "region" : "eu-north-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-north-1.amazonaws.com" - }, - "fips-eu-south-1" : { - "credentialScope" : { - "region" : "eu-south-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-south-1.amazonaws.com" - }, - "fips-eu-south-2" : { - "credentialScope" : { - "region" : "eu-south-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-south-2.amazonaws.com" - }, - "fips-eu-west-1" : { - "credentialScope" : { - "region" : "eu-west-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-west-1.amazonaws.com" - }, - "fips-eu-west-2" : { - "credentialScope" : { - "region" : "eu-west-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-west-2.amazonaws.com" - }, - "fips-eu-west-3" : { - "credentialScope" : { - "region" : "eu-west-3" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.eu-west-3.amazonaws.com" - }, - "fips-il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.il-central-1.amazonaws.com" - }, - "fips-me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.me-central-1.amazonaws.com" - }, - "fips-me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.me-south-1.amazonaws.com" - }, - "fips-mx-central-1" : { - "credentialScope" : { - "region" : "mx-central-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.mx-central-1.amazonaws.com" - }, - "fips-sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.sa-east-1.amazonaws.com" - }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { - "credentialScope" : { - "region" : "il-central-1" - }, - "hostname" : "wafv2.il-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.il-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-central-1" : { - "credentialScope" : { - "region" : "me-central-1" - }, - "hostname" : "wafv2.me-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.me-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "me-south-1" : { - "credentialScope" : { - "region" : "me-south-1" - }, - "hostname" : "wafv2.me-south-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.me-south-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "mx-central-1" : { - "credentialScope" : { - "region" : "mx-central-1" - }, - "hostname" : "wafv2.mx-central-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.mx-central-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "sa-east-1" : { - "credentialScope" : { - "region" : "sa-east-1" - }, - "hostname" : "wafv2.sa-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.sa-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "wafv2.us-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "wafv2.us-east-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "wafv2.us-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "wafv2.us-west-2.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "wellarchitected" : { - "endpoints" : { - "ap-east-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-north-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "me-south-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { }, - "us-east-2" : { }, - "us-west-1" : { }, - "us-west-2" : { } - } - }, - "wisdom" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "eu-central-1" : { }, - "eu-west-2" : { }, - "fips-ca-central-1" : { - "deprecated" : true - }, - "fips-us-east-1" : { - "deprecated" : true - }, - "fips-us-west-2" : { - "deprecated" : true - }, - "ui-ap-northeast-1" : { }, - "ui-ap-northeast-2" : { }, - "ui-ap-southeast-1" : { }, - "ui-ap-southeast-2" : { }, - "ui-ca-central-1" : { }, - "ui-eu-central-1" : { }, - "ui-eu-west-2" : { }, - "ui-us-east-1" : { }, - "ui-us-west-2" : { }, - "us-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - } - } - }, - "workdocs" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "eu-west-1" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "workdocs-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "workdocs-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "workdocs-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "workdocs-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "workmail" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "eu-west-1" : { }, - "us-east-1" : { }, - "us-west-2" : { } - } - }, - "workspaces" : { - "endpoints" : { - "af-south-1" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "workspaces-web" : { - "endpoints" : { - "ap-northeast-1" : { }, - "ap-south-1" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ca-central-1" : { }, - "eu-central-1" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "workspaces-web-fips.us-east-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "workspaces-web-fips.us-west-2.amazonaws.com" - }, - "us-east-1" : { - "variants" : [ { - "hostname" : "workspaces-web-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "workspaces-web-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "xray" : { - "endpoints" : { - "af-south-1" : { }, - "ap-east-1" : { }, - "ap-east-2" : { }, - "ap-northeast-1" : { }, - "ap-northeast-2" : { }, - "ap-northeast-3" : { }, - "ap-south-1" : { }, - "ap-south-2" : { }, - "ap-southeast-1" : { }, - "ap-southeast-2" : { }, - "ap-southeast-3" : { }, - "ap-southeast-4" : { }, - "ap-southeast-5" : { }, - "ap-southeast-6" : { }, - "ap-southeast-7" : { }, - "ca-central-1" : { }, - "ca-west-1" : { }, - "eu-central-1" : { }, - "eu-central-2" : { }, - "eu-north-1" : { }, - "eu-south-1" : { }, - "eu-south-2" : { }, - "eu-west-1" : { }, - "eu-west-2" : { }, - "eu-west-3" : { }, - "fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "deprecated" : true, - "hostname" : "xray-fips.us-east-1.amazonaws.com" - }, - "fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "deprecated" : true, - "hostname" : "xray-fips.us-east-2.amazonaws.com" - }, - "fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "deprecated" : true, - "hostname" : "xray-fips.us-west-1.amazonaws.com" - }, - "fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "deprecated" : true, - "hostname" : "xray-fips.us-west-2.amazonaws.com" - }, - "il-central-1" : { }, - "me-central-1" : { }, - "me-south-1" : { }, - "mx-central-1" : { }, - "sa-east-1" : { }, - "us-east-1" : { - "variants" : [ { - "hostname" : "xray-fips.us-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-east-2" : { - "variants" : [ { - "hostname" : "xray-fips.us-east-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-1" : { - "variants" : [ { - "hostname" : "xray-fips.us-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-west-2" : { - "variants" : [ { - "hostname" : "xray-fips.us-west-2.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - }, { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "dnsSuffix" : "amazonaws.com.cn", - "partition" : "aws-cn", - "partitionName" : "AWS China", - "regionRegex" : "^cn\\-\\w+\\-\\d+$", - "regions" : { - "cn-north-1" : { - "description" : "China (Beijing)" - }, - "cn-northwest-1" : { - "description" : "China (Ningxia)" - } - }, - "services" : { - "access-analyzer" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "access-analyzer.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "access-analyzer.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "account" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "account.cn-northwest-1.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "acm" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "acm-pca" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "airflow" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "api.ecr" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "api.ecr.cn-north-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "ecr.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "api.ecr.cn-northwest-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "ecr.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "api.pricing" : { - "defaults" : { - "credentialScope" : { - "service" : "pricing" - } - }, - "endpoints" : { - "cn-northwest-1" : { } - } - }, - "api.sagemaker" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "api.tunneling.iot" : { - "defaults" : { - "variants" : [ { - "dnsSuffix" : "amazonaws.com.cn", - "hostname" : "api.tunneling.iot-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - }, { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "api.iot-tunneling-fips.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "api.iot-tunneling.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "apigateway" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "appconfig" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "appconfigdata" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "applicationinsights" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "applicationinsights.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "applicationinsights.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "appmesh" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "appmesh.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "appmesh.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "appsync" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "appsync.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "appsync.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "athena" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "athena.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "athena.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "autoscaling-plans" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "backup" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "batch" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "budgets" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "budgets.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "cassandra" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "ce" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "ce.cn-northwest-1.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "cloudcontrolapi" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "cloudformation" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "cloudfront" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "cloudfront.cn-northwest-1.amazonaws.com.cn", - "protocols" : [ "http", "https" ] - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "cloudtrail" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "codebuild" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "codecommit" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "codedeploy" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "codepipeline" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "cognito-identity" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "cognito-identity.cn-north-1.amazonaws.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "compute-optimizer" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "compute-optimizer.cn-north-1.amazonaws.com.cn" - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "compute-optimizer.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "config" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "cur" : { - "endpoints" : { - "cn-northwest-1" : { } - } - }, - "data-ats.iot" : { - "defaults" : { - "credentialScope" : { - "service" : "iotdata" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "data.ats.iot.cn-north-1.amazonaws.com.cn", - "protocols" : [ "https" ] - }, - "cn-northwest-1" : { } - } - }, - "data.iot" : { - "defaults" : { - "credentialScope" : { - "service" : "iotdata" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "data.jobs.iot" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "databrew" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "datasync" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "datasync.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "datasync.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "datazone" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "datazone.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "datazone.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "dax" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "directconnect" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "dlm" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "dlm.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "dlm.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "dms" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "docdb" : { - "endpoints" : { - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "rds.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "ds" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "dynamodb" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "ebs" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "ec2" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "ecs" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "eks-auth" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "eks-auth.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "eks-auth.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "elasticache" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "elasticbeanstalk" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "elasticbeanstalk.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "fips-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn" - }, - "fips-cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "elasticloadbalancing" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "elasticmapreduce" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "emr-containers" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "emr-serverless" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "entitlement.marketplace" : { - "endpoints" : { - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "entitlement-marketplace.cn-northwest-1.amazonaws.com.cn", - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "entitlement-marketplace.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "es" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "aos.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "aos.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "events" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "events.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "events.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "firehose" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "firehose.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "firehose.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "fms" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "fsx" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "gamelift" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "gameliftstreams" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "gameliftstreams.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "gameliftstreams.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "glacier" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "glue" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "glue.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "glue.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "greengrass" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { } - }, - "isRegionalized" : true - }, - "guardduty" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - }, - "isRegionalized" : true - }, - "health" : { - "defaults" : { - "protocols" : [ "https" ], - "sslCommonName" : "health.cn-northwest-1.amazonaws.com.cn" - }, - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "global.health.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "iam" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "iam.cn-north-1.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "identitystore" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "inspector2" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "internetmonitor" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "internetmonitor.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "internetmonitor.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "iot" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "iotanalytics" : { - "endpoints" : { - "cn-north-1" : { } - } - }, - "iotevents" : { - "endpoints" : { - "cn-north-1" : { } - } - }, - "ioteventsdata" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "data.iotevents.cn-north-1.amazonaws.com.cn" - } - } - }, - "iotsecuredtunneling" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "iotsitewise" : { - "endpoints" : { - "cn-north-1" : { } - } - }, - "iottwinmaker" : { - "endpoints" : { - "api-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "api.iottwinmaker.cn-north-1.amazonaws.com.cn" - }, - "cn-north-1" : { }, - "data-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "data.iottwinmaker.cn-north-1.amazonaws.com.cn" - } - } - }, - "kafka" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "kafkaconnect" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "kendra-ranking" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "kendra-ranking.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "kendra-ranking.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "kinesis" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "kinesisanalytics" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "kinesisvideo" : { - "endpoints" : { - "cn-north-1" : { } - } - }, - "kms" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "lakeformation" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "lakeformation.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "lakeformation.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "lambda" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "lambda.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "lambda.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "license-manager" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "license-manager-linux-subscriptions" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "logs" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "logs.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "logs.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "mediaconvert" : { - "endpoints" : { - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "mediaconvert.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "memory-db" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "metering.marketplace" : { - "defaults" : { - "credentialScope" : { - "service" : "aws-marketplace" - } - }, - "endpoints" : { - "cn-northwest-1" : { } - } - }, - "metrics.sagemaker" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "monitoring" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "mq" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "neptune" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "rds.cn-north-1.amazonaws.com.cn" - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "rds.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "network-firewall" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "notifications" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "notifications.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "notifications.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "oam" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "oidc" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "oidc.cn-north-1.amazonaws.com.cn" - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "oidc.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "organizations" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "organizations.cn-northwest-1.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "personalize" : { - "endpoints" : { - "cn-north-1" : { } - } - }, - "pi" : { - "endpoints" : { - "cn-north-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "pipes" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "polly" : { - "endpoints" : { - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "polly.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "portal.sso" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "portal.sso.cn-north-1.amazonaws.com.cn" - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "portal.sso.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "qbusiness" : { - "defaults" : { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "variants" : [ { - "dnsSuffix" : "api.amazonwebservices.com.cn", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "hostname" : "qbusiness.cn-north-1.api.amazonwebservices.com.cn" - }, - "cn-northwest-1" : { - "hostname" : "qbusiness.cn-northwest-1.api.amazonwebservices.com.cn" - } - } - }, - "quicksight" : { - "endpoints" : { - "cn-north-1" : { } - } - }, - "ram" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - } - } - }, - "rbin" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "rbin.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "rbin.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "rds" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "redshift" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "redshift-serverless" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "resource-groups" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "rolesanywhere" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "route53" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "route53.amazonaws.com.cn" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-cn-global" - }, - "route53profiles" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "route53resolver" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "route53resolver.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "route53resolver.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "runtime.sagemaker" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "s3" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com.cn", - "hostname" : "{service}.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.cn-north-1.amazonaws.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "s3.dualstack.cn-northwest-1.amazonaws.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "s3-control" : { - "defaults" : { - "protocols" : [ "https" ], - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com.cn", - "hostname" : "{service}.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "s3-control.cn-north-1.amazonaws.com.cn", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.cn-north-1.amazonaws.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "s3-control.cn-northwest-1.amazonaws.com.cn", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control.dualstack.cn-northwest-1.amazonaws.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "savingsplans" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "savingsplans.cn-north-1.amazonaws.com.cn" - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "savingsplans.cn-northwest-1.amazonaws.com.cn" - } - }, - "isRegionalized" : true - }, - "scheduler" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "schemas" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - } ] - } - } - }, - "securityhub" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "serverlessrepo" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { - "protocols" : [ "https" ] - }, - "cn-northwest-1" : { - "protocols" : [ "https" ] - } - } - }, - "servicecatalog" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "servicediscovery" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "servicediscovery.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "servicediscovery.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "servicequotas" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "signer" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { }, - "verification-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "verification.signer.cn-north-1.amazonaws.com.cn" - }, - "verification-cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "verification.signer.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "snowball" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "snowball-fips.cn-north-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "snowball-fips.cn-northwest-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "fips-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.cn-north-1.amazonaws.com.cn" - }, - "fips-cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "sns" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "sns.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "sns.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "sqs" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "sslCommonName" : "{region}.queue.{dnsSuffix}" - }, - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "sqs.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "sqs.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "ssm" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "sso" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "states" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "states.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "states.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "storagegateway" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" - }, - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "sts" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "support" : { - "endpoints" : { - "aws-cn-global" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "support.cn-north-1.amazonaws.com.cn" - } - }, - "partitionEndpoint" : "aws-cn-global" - }, - "swf" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "synthetics" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "synthetics.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "synthetics.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "tagging" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "transcribe" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "cn.transcribe.cn-north-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "transcribe.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "cn.transcribe.cn-northwest-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "transcribe.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transcribestreaming" : { - "endpoints" : { - "cn-north-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.cn-north-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - }, - "cn-northwest-1" : { - "variants" : [ { - "hostname" : "transcribestreaming.cn-northwest-1.api.amazonwebservices.com.cn", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transfer" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "verifiedpermissions" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - }, - "waf-regional" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "waf-regional.cn-north-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "waf-regional-fips.cn-north-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "waf-regional.cn-northwest-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "waf-regional-fips.cn-northwest-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "fips-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.cn-north-1.amazonaws.com.cn" - }, - "fips-cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "wafv2" : { - "endpoints" : { - "cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "hostname" : "wafv2.cn-north-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "wafv2-fips.cn-north-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "wafv2.cn-northwest-1.amazonaws.com.cn", - "variants" : [ { - "hostname" : "wafv2-fips.cn-northwest-1.amazonaws.com.cn", - "tags" : [ "fips" ] - } ] - }, - "fips-cn-north-1" : { - "credentialScope" : { - "region" : "cn-north-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.cn-north-1.amazonaws.com.cn" - }, - "fips-cn-northwest-1" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.cn-northwest-1.amazonaws.com.cn" - } - } - }, - "workspaces" : { - "endpoints" : { - "cn-northwest-1" : { } - } - }, - "xray" : { - "endpoints" : { - "cn-north-1" : { }, - "cn-northwest-1" : { } - } - } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "{service}.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "dnsSuffix" : "amazonaws.com", - "partition" : "aws-us-gov", - "partitionName" : "AWS GovCloud (US)", - "regionRegex" : "^us\\-gov\\-\\w+\\-\\d+$", - "regions" : { - "us-gov-east-1" : { - "description" : "AWS GovCloud (US-East)" - }, - "us-gov-west-1" : { - "description" : "AWS GovCloud (US-West)" - } - }, - "services" : { - "access-analyzer" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "access-analyzer.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "access-analyzer.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "access-analyzer.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "access-analyzer.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "access-analyzer.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "access-analyzer.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "access-analyzer.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "access-analyzer.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "access-analyzer.us-gov-west-1.amazonaws.com" - } - } - }, - "acm" : { - "defaults" : { - "variants" : [ { - "hostname" : "acm.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "acm.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "acm.us-gov-west-1.amazonaws.com" - } - } - }, - "acm-pca" : { - "defaults" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "acm-pca.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "acm-pca.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "acm-pca.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "acm-pca.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "acm-pca.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "aoss" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "api.detective" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "api.detective-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "api.detective-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "detective-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "detective.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "api.detective-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "api.ecr" : { - "defaults" : { - "variants" : [ { - "hostname" : "ecr-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "dkr-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ecr-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "dkr-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "ecr-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-dkr-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-gov-east-1.amazonaws.com" - }, - "fips-dkr-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-gov-west-1.amazonaws.com" - }, - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ecr-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "api.ecr.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ecr-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ecr.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "api.ecr.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "ecr-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ecr-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "ecr.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "api.sagemaker" : { - "defaults" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "api-fips.sagemaker.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "api-fips.sagemaker.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1-fips-secondary" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "api.sagemaker.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1-secondary" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "api.sagemaker.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "api.tunneling.iot" : { - "defaults" : { - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "api.tunneling.iot-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "api.iot-tunneling-fips.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "api.aws", - "hostname" : "api.iot-tunneling.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "api.iot-tunneling-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "api.iot-tunneling.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "apigateway" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "appconfig" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "appconfig.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "appconfig.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "appconfig.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "appconfig.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "appconfigdata" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "appconfigdata.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "appconfigdata.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "appconfigdata.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "appconfigdata.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "application-autoscaling.us-gov-east-1.amazonaws.com", - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "application-autoscaling.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "deprecated" : true, - "hostname" : "application-autoscaling.us-gov-east-1.amazonaws.com", - "protocols" : [ "http", "https" ] - }, - "us-gov-west-1" : { - "hostname" : "application-autoscaling.us-gov-west-1.amazonaws.com", - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "application-autoscaling.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "deprecated" : true, - "hostname" : "application-autoscaling.us-gov-west-1.amazonaws.com", - "protocols" : [ "http", "https" ] - } - } - }, - "applicationinsights" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "applicationinsights-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "applicationinsights-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "applicationinsights-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "applicationinsights.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "appstream2" : { - "defaults" : { - "credentialScope" : { - "service" : "appstream" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "appstream2-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "appstream2-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "appstream2-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "appstream2-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "appstream2-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "aps" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "athena" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "athena-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "athena-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "athena-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "athena-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "athena-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "athena.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "autoscaling" : { - "defaults" : { - "variants" : [ { - "hostname" : "autoscaling.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "protocols" : [ "http", "https" ] - }, - "us-gov-west-1" : { - "protocols" : [ "http", "https" ] - } - } - }, - "autoscaling-plans" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "autoscaling-plans.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "deprecated" : true, - "hostname" : "autoscaling-plans.us-gov-east-1.amazonaws.com", - "protocols" : [ "http", "https" ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "autoscaling-plans.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "deprecated" : true, - "hostname" : "autoscaling-plans.us-gov-west-1.amazonaws.com", - "protocols" : [ "http", "https" ] - } - } - }, - "backup" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "backup-gateway" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "batch" : { - "defaults" : { - "variants" : [ { - "hostname" : "batch.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "batch.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "batch.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "batch.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "batch.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "bedrock" : { - "endpoints" : { - "bedrock-fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "bedrock-fips.us-gov-east-1.amazonaws.com" - }, - "bedrock-fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "bedrock-fips.us-gov-west-1.amazonaws.com" - }, - "bedrock-runtime-fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "bedrock-runtime-fips.us-gov-east-1.amazonaws.com" - }, - "bedrock-runtime-fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "bedrock-runtime-fips.us-gov-west-1.amazonaws.com" - }, - "bedrock-runtime-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "bedrock-runtime.us-gov-east-1.amazonaws.com" - }, - "bedrock-runtime-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "bedrock-runtime.us-gov-west-1.amazonaws.com" - }, - "bedrock-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "bedrock.us-gov-east-1.amazonaws.com" - }, - "bedrock-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "bedrock.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "cassandra" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "cassandra.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "cassandra.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "cassandra.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "cassandra.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "cassandra.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "cassandra.us-gov-west-1.amazonaws.com" - } - } - }, - "cloudcontrolapi" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "cloudcontrolapi-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "cloudcontrolapi-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cloudcontrolapi-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cloudcontrolapi.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "clouddirectory" : { - "endpoints" : { - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "clouddirectory.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "clouddirectory.us-gov-west-1.amazonaws.com" - } - } - }, - "cloudformation" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "cloudformation.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "cloudformation.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "cloudformation.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "cloudformation.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "cloudformation.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "cloudformation.us-gov-west-1.amazonaws.com" - } - } - }, - "cloudhsm" : { - "endpoints" : { - "us-gov-west-1" : { } - } - }, - "cloudhsmv2" : { - "defaults" : { - "credentialScope" : { - "service" : "cloudhsm" - } - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "cloudhsmv2.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "cloudtrail" : { - "defaults" : { - "variants" : [ { - "hostname" : "cloudtrail.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "cloudtrail.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "cloudtrail.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "codebuild" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "codebuild-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "codebuild-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "codebuild-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "codebuild-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "codecommit" : { - "endpoints" : { - "fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "codecommit-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "codecommit-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "codecommit-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "codedeploy" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "codedeploy-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "codedeploy-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "codedeploy-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "codedeploy-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "codepipeline" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "codepipeline-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "codepipeline-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "codepipeline-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "codestar-connections" : { - "endpoints" : { - "us-gov-east-1" : { } - } - }, - "cognito-identity" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "cognito-identity-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "cognito-identity.us-gov-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "cognito-identity-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-identity-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-identity.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "cognito-idp" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "cognito-idp-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "cognito-idp.us-gov-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "cognito-idp-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "cognito-idp-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "cognito-idp.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "comprehend" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "comprehend-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "comprehend-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "comprehend-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "comprehend.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "comprehendmedical" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "comprehendmedical-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "comprehendmedical-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "compute-optimizer" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "compute-optimizer-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "compute-optimizer-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "config" : { - "defaults" : { - "variants" : [ { - "hostname" : "config.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "config.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "config.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "config.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "config.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "connect" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "connect.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "connect.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "controltower" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "controltower-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "controltower-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "controltower-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "controltower-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "data-ats.iot" : { - "defaults" : { - "credentialScope" : { - "service" : "iotdata" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "data.iot" : { - "defaults" : { - "credentialScope" : { - "service" : "iotdata" - }, - "protocols" : [ "https" ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "service" : "iotdata" - }, - "deprecated" : true, - "hostname" : "data.iot-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "data.iot-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "data.jobs.iot" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "data.jobs.iot-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "data.jobs.iot-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "databrew" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "databrew.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "databrew.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "datasync" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "datasync-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "datasync-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "datasync-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "datasync.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "datazone" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "datazone.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "datazone.us-gov-west-1.api.aws" - } - } - }, - "directconnect" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "directconnect-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "directconnect-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "directconnect-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "dlm" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "dlm-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "dlm.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "dlm.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "dlm-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "dlm.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "dlm.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "dlm.us-gov-west-1.amazonaws.com" - } - } - }, - "dms" : { - "defaults" : { - "variants" : [ { - "hostname" : "dms.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "dms" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "dms.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "dms-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "dms.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "dms.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "dms.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "dms.us-gov-west-1.amazonaws.com" - } - } - }, - "docdb" : { - "endpoints" : { - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "rds.us-gov-west-1.amazonaws.com" - } - } - }, - "drs" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "drs-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "drs-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "drs-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "drs-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ds" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "dynamodb" : { - "defaults" : { - "variants" : [ { - "hostname" : "dynamodb.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "dynamodb-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "dynamodb-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "dynamodb-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "ebs" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "ec2" : { - "defaults" : { - "variants" : [ { - "hostname" : "ec2.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "ec2.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "ec2.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "ec2.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "ec2.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "ecs" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "ecs-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ecs-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "ecs-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "ecs-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "eks.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "eks.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "eks.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "eks.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "eks.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "eks-auth" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "eks-auth.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "eks-auth.us-gov-west-1.api.aws" - } - } - }, - "elasticache" : { - "defaults" : { - "variants" : [ { - "hostname" : "elasticache.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "elasticache.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "elasticache.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "elasticache.us-gov-west-1.amazonaws.com" - } - } - }, - "elasticbeanstalk" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "elasticbeanstalk.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "elasticbeanstalk.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticbeanstalk.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "elasticbeanstalk.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "elasticbeanstalk.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "elasticbeanstalk.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticbeanstalk.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "elasticbeanstalk.us-gov-west-1.amazonaws.com" - } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "elasticloadbalancing" : { - "defaults" : { - "variants" : [ { - "hostname" : "elasticloadbalancing.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "elasticloadbalancing.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "elasticloadbalancing.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "elasticloadbalancing.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "elasticloadbalancing.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "elasticmapreduce" : { - "defaults" : { - "variants" : [ { - "hostname" : "elasticmapreduce.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticmapreduce.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "elasticmapreduce.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "elasticmapreduce.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "email" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "email-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "email-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "email-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "email-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "emr-containers" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "emr-containers.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "emr-containers.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "emr-containers.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "emr-containers.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "emr-serverless" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "emr-serverless.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "emr-serverless.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "emr-serverless.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "emr-serverless.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "es" : { - "endpoints" : { - "fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "es-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "aos.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "es-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "es-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "aos.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "es-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "es-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "events" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "events.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "events.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "events.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "events.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "firehose" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "firehose-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "firehose-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "firehose-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "firehose-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "fms" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "fms-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "fms-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "fms-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "fsx" : { - "endpoints" : { - "fips-prod-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-gov-east-1.amazonaws.com" - }, - "fips-prod-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-gov-west-1.amazonaws.com" - }, - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-gov-west-1.amazonaws.com" - }, - "prod-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "prod-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "fsx-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "fsx-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "gameliftstreams" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "gameliftstreams.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "gameliftstreams.us-gov-west-1.api.aws" - } - } - }, - "geo" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "geo-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "geo-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "glacier" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "glacier.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "glacier.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "glacier.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "glacier.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "glue" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "glue-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "glue-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "glue-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "glue-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "glue.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "glue-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "glue-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "glue.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "greengrass" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "dataplane-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "greengrass-ats.iot.us-gov-east-1.amazonaws.com" - }, - "dataplane-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "greengrass-ats.iot.us-gov-west-1.amazonaws.com" - }, - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "greengrass.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "greengrass.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "greengrass.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "greengrass.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - }, - "isRegionalized" : true - }, - "guardduty" : { - "defaults" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "guardduty.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "guardduty.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "guardduty.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "guardduty.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "guardduty.us-gov-west-1.amazonaws.com" - } - }, - "isRegionalized" : true - }, - "health" : { - "defaults" : { - "protocols" : [ "https" ], - "sslCommonName" : "health.us-gov-west-1.amazonaws.com" - }, - "endpoints" : { - "aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "global.health.us-gov.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "health-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "health-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iam" : { - "endpoints" : { - "aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "iam.us-gov.amazonaws.com", - "variants" : [ { - "hostname" : "iam.us-gov.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "aws-us-gov-global-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "iam.us-gov.amazonaws.com" - }, - "iam-govcloud" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "iam.us-gov.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "iam-govcloud-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "iam.us-gov.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-us-gov-global" - }, - "identitystore" : { - "defaults" : { - "variants" : [ { - "hostname" : "identitystore.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "identitystore.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "identitystore.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "identitystore.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "identitystore.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ingest.timestream" : { - "endpoints" : { - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "ingest.timestream.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ingest.timestream.us-gov-west-1.amazonaws.com" - } - } - }, - "inspector" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "inspector-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "inspector-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "inspector-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "inspector-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "inspector2" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "inspector2-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "inspector2-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "inspector2-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "inspector2-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "internetmonitor" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "internetmonitor.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "internetmonitor.us-gov-west-1.api.aws" - } - } - }, - "iot" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "deprecated" : true, - "hostname" : "iot-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "deprecated" : true, - "hostname" : "iot-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "iot-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "iot-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotevents" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "iotevents-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "iotevents-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ioteventsdata" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "data.iotevents-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "data.iotevents.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "data.iotevents-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotsecuredtunneling" : { - "defaults" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iotsitewise" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "iotsitewise-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "iotsitewise-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "iottwinmaker" : { - "endpoints" : { - "api-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "api.iottwinmaker.us-gov-west-1.amazonaws.com" - }, - "data-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "data.iottwinmaker.us-gov-west-1.amazonaws.com" - }, - "fips-api-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "api.iottwinmaker-fips.us-gov-west-1.amazonaws.com" - }, - "fips-data-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "data.iottwinmaker-fips.us-gov-west-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "iottwinmaker-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "iottwinmaker-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kafka" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "kafka.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "kafka.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "kafka.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "kafka.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "kafka.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kafka.us-gov-west-1.amazonaws.com" - } - } - }, - "kendra" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kendra-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "kendra-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kendra-ranking" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "kendra-ranking.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "kendra-ranking.us-gov-west-1.api.aws" - } - } - }, - "kinesis" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "kinesis.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kinesis.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "kinesis.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "kinesis.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "kinesis.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "kinesis.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kinesisanalytics" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kinesisanalytics-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "kinesisanalytics-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kinesisvideo" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "kinesisvideo-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kinesisvideo-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "kinesisvideo-fips.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "kinesisvideo-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "kinesisvideo-fips.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "kinesisvideo-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "kms" : { - "endpoints" : { - "ProdFips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "lakeformation" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "lakeformation-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "lakeformation-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "lakeformation-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lakeformation-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "lakeformation.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "lakeformation-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lakeformation-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "lakeformation.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "lambda" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "lambda-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "lambda-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "lambda-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lambda.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "lambda-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "lambda.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "license-manager" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "license-manager-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "license-manager-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "license-manager-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "license-manager-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "license-manager-linux-subscriptions" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "license-manager-user-subscriptions" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "logs" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "logs.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "logs.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "logs.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "logs.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "logs.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "m2" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "deprecated" : true - }, - "fips-us-gov-west-1" : { - "deprecated" : true - }, - "us-gov-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - } - } - }, - "managedblockchain" : { - "endpoints" : { - "us-gov-west-1" : { } - } - }, - "mediaconvert" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "mediaconvert.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "mediaconvert.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "mediaconvert.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "mediaconvert.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - } - } - }, - "meetings-chime" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "meetings-chime-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "meetings-chime-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "meetings-chime-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "meetings-chime-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "memory-db" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "metering.marketplace" : { - "defaults" : { - "credentialScope" : { - "service" : "aws-marketplace" - } - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "metering-marketplace.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "metrics.sagemaker" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "mgn" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "mgn-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "mgn-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "mgn-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "mgn-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "models-v2-lex" : { - "endpoints" : { - "us-gov-west-1" : { } - } - }, - "models.lex" : { - "defaults" : { - "credentialScope" : { - "service" : "lex" - }, - "variants" : [ { - "hostname" : "models-fips.lex.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "models-fips.lex.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "models-fips.lex.us-gov-west-1.amazonaws.com" - } - } - }, - "monitoring" : { - "defaults" : { - "variants" : [ { - "hostname" : "monitoring.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "monitoring.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "monitoring.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "monitoring.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "monitoring.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "mq" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "mq-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "mq-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "mq-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "mq-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "neptune" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "rds.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "rds.us-gov-west-1.amazonaws.com" - } - } - }, - "network-firewall" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "network-firewall-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "network-firewall-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "network-firewall-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "networkmanager" : { - "endpoints" : { - "aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "networkmanager.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "networkmanager.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "networkmanager.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "networkmanager.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "fips-aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "networkmanager.us-gov-west-1.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-us-gov-global" - }, - "notifications" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "notifications.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "notifications.us-gov-west-1.api.aws" - } - } - }, - "oam" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "oidc" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "oidc.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "oidc.us-gov-west-1.amazonaws.com" - } - } - }, - "organizations" : { - "endpoints" : { - "aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "organizations.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "organizations.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "organizations.us-gov-west-1.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-us-gov-global" - }, - "outposts" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "outposts.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "outposts.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "outposts.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "outposts.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "participant.connect" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "participant.connect.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "participant.connect.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "pi" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "pi-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "pi-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "pi-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "pi-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "pi.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "pinpoint" : { - "defaults" : { - "credentialScope" : { - "service" : "mobiletargeting" - } - }, - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "pinpoint-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "pinpoint.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "pinpoint-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "polly" : { - "endpoints" : { - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "polly-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "polly-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "polly-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "polly.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "portal.sso" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "portal.sso.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "portal.sso.us-gov-west-1.amazonaws.com" - } - } - }, - "qbusiness" : { - "defaults" : { - "dnsSuffix" : "api.aws", - "variants" : [ { - "dnsSuffix" : "api.aws", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "hostname" : "qbusiness.us-gov-east-1.api.aws" - }, - "us-gov-west-1" : { - "hostname" : "qbusiness.us-gov-west-1.api.aws" - } - } - }, - "query.timestream" : { - "endpoints" : { - "us-gov-west-1" : { } - } - }, - "quicksight" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "ram" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "ram.us-gov-east-1.amazonaws.com", - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ramus-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "ram.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "ram.us-gov-west-1.amazonaws.com", - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "hostname" : "ram.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "ramus-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ram.us-gov-west-1.amazonaws.com" - } - } - }, - "rbin" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rbin-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rbin.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "rds" : { - "defaults" : { - "variants" : [ { - "hostname" : "rds.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "rds.us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "rds.us-gov-east-1.amazonaws.com" - }, - "rds.us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "rds.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "rds.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "rds.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "rds.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "rds.us-gov-west-1.amazonaws.com" - } - } - }, - "redshift" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "redshift.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "redshift.us-gov-west-1.amazonaws.com" - } - } - }, - "redshift-serverless" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "redshift-serverless-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "redshift-serverless-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "rekognition" : { - "endpoints" : { - "rekognition-fips.us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com" - }, - "rekognition.us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "rekognition-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "rekognition.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "rekognition-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "resiliencehub" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "resiliencehub-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "resiliencehub-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "resiliencehub-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resiliencehub-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "resiliencehub.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "resiliencehub-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "resiliencehub-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "resiliencehub.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "resource-groups" : { - "defaults" : { - "variants" : [ { - "hostname" : "resource-groups.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "resource-groups.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "resource-groups.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "resource-groups.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "resource-groups.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "rolesanywhere" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "rolesanywhere-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "rolesanywhere-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "rolesanywhere-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "rolesanywhere-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "route53" : { - "endpoints" : { - "aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "route53.us-gov.amazonaws.com", - "variants" : [ { - "hostname" : "route53.us-gov.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "fips-aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "route53.us-gov.amazonaws.com" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-us-gov-global" - }, - "route53profiles" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "route53profiles-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "route53profiles-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "route53profiles.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "route53resolver" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "route53resolver.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "route53resolver.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "deprecated" : true, - "hostname" : "route53resolver.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "route53resolver.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "route53resolver.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - }, { - "hostname" : "route53resolver.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "deprecated" : true, - "hostname" : "route53resolver.us-gov-west-1.amazonaws.com" - } - } - }, - "rum" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "runtime-v2-lex" : { - "endpoints" : { - "us-gov-west-1" : { } - } - }, - "runtime.lex" : { - "defaults" : { - "credentialScope" : { - "service" : "lex" - }, - "variants" : [ { - "hostname" : "runtime-fips.lex.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "runtime-fips.lex.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "runtime-fips.lex.us-gov-west-1.amazonaws.com" - } - } - }, - "runtime.sagemaker" : { - "defaults" : { - "variants" : [ { - "hostname" : "runtime.sagemaker.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "runtime.sagemaker.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "runtime.sagemaker.us-gov-west-1.amazonaws.com" - } - } - }, - "s3" : { - "defaults" : { - "signatureVersions" : [ "s3", "s3v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}-fips.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "hostname" : "s3.us-gov-east-1.amazonaws.com", - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "s3-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3.dualstack.us-gov-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "hostname" : "s3.us-gov-west-1.amazonaws.com", - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "s3-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3.dualstack.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "s3-control" : { - "defaults" : { - "protocols" : [ "https" ], - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}-fips.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack", "fips" ] - }, { - "dnsSuffix" : "amazonaws.com", - "hostname" : "{service}.dualstack.{region}.{dnsSuffix}", - "tags" : [ "dualstack" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "s3-control.us-gov-east-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-gov-east-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-gov-east-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-gov-east-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "s3-control.us-gov-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-gov-west-1.amazonaws.com", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-gov-west-1.amazonaws.com", - "signatureVersions" : [ "s3v4" ] - } - } - }, - "s3-outposts" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "deprecated" : true - }, - "fips-us-gov-west-1" : { - "deprecated" : true - }, - "us-gov-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - } - } - }, - "scheduler" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "schemas" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "deprecated" : true - }, - "us-gov-west-1" : { - "variants" : [ { - "tags" : [ "dualstack" ] - }, { - "tags" : [ "dualstack", "fips" ] - }, { - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "deprecated" : true - } - } - }, - "securityhub" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "securityhub-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "securityhub-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "securityhub-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securityhub.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "securityhub-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securityhub.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "securitylake" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "securitylake.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securitylake.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "securitylake.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "securitylake.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "securitylake.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "securitylake.us-gov-west-1.amazonaws.com" - } - } - }, - "serverlessrepo" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "us-gov-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "serverlessrepo.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "serverlessrepo.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "serverlessrepo.us-gov-west-1.amazonaws.com" - } - } - }, - "servicecatalog" : { - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "servicecatalog-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "servicecatalog-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "servicecatalog-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "servicecatalog-appregistry" : { - "defaults" : { - "variants" : [ { - "hostname" : "servicecatalog-appregistry.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "servicediscovery" : { - "endpoints" : { - "servicediscovery" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "servicediscovery-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "servicediscovery-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "servicediscovery-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "servicediscovery-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "servicediscovery.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "servicediscovery-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "servicequotas" : { - "defaults" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "servicequotas.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "servicequotas.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "servicequotas.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "servicequotas.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "servicequotas.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "signer" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "signer-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "signer-fips.us-gov-west-1.amazonaws.com" - }, - "fips-verification-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "verification.signer-fips.us-gov-east-1.amazonaws.com" - }, - "fips-verification-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "verification.signer-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "signer-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "signer-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "verification-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "verification.signer.us-gov-east-1.amazonaws.com" - }, - "verification-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "verification.signer.us-gov-west-1.amazonaws.com" - } - } - }, - "simspaceweaver" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "simspaceweaver.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "simspaceweaver.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "simspaceweaver.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "simspaceweaver.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "sms-voice" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "sms-voice-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "sms-voice-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "sms-voice-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "sms-voice-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "sms-voice.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "snowball" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "snowball-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "snowball-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "snowball-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "snowball-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "snowball.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "sns" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "sns.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "sns.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "sns.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "sns.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "sqs" : { - "defaults" : { - "variants" : [ { - "hostname" : "sqs.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "sqs.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "protocols" : [ "http", "https" ], - "sslCommonName" : "{region}.queue.{dnsSuffix}", - "variants" : [ { - "hostname" : "sqs.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "ssm" : { - "defaults" : { - "variants" : [ { - "hostname" : "ssm.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "ssm.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "ssm.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "ssm.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "ssm.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "sso" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "sso.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "sso.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "sso.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "sso.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "sso.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "sso.us-gov-west-1.amazonaws.com" - } - } - }, - "states" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "states-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "states.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "states-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "states.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "storagegateway" : { - "endpoints" : { - "fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" - }, - "variants" : [ { - "hostname" : "streams.dynamodb.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "sts" : { - "defaults" : { - "variants" : [ { - "hostname" : "sts.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "sts.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "sts.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "sts.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "sts.us-gov-west-1.amazonaws.com" - } - } - }, - "support" : { - "endpoints" : { - "aws-us-gov-global" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "support.us-gov-west-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "support.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "support.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - }, - "partitionEndpoint" : "aws-us-gov-global" - }, - "swf" : { - "endpoints" : { - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "swf.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "swf.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-east-1-fips" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "swf.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "swf.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "swf.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "swf.us-gov-west-1.amazonaws.com" - } - } - }, - "synthetics" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "synthetics-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "synthetics-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "synthetics-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "synthetics-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "synthetics.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "tagging" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "textract" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "textract-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "textract-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "textract-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "textract-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "textract-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "textract.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transcribe" : { - "defaults" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "fips.transcribe.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribe-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribe.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transcribestreaming" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "transcribestreaming-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "transcribestreaming-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "transcribestreaming-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribestreaming-fips.us-gov-east-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribestreaming.us-gov-east-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "transcribestreaming-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "transcribestreaming-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "transcribestreaming.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - } - } - }, - "transfer" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "transfer-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "transfer-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "transfer-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "transfer-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "translate" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "translate-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - }, { - "hostname" : "translate-fips.us-gov-west-1.api.aws", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "translate.us-gov-west-1.api.aws", - "tags" : [ "dualstack" ] - } ] - }, - "us-gov-west-1-fips" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "translate-fips.us-gov-west-1.amazonaws.com" - } - } - }, - "verifiedpermissions" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "verifiedpermissions-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "verifiedpermissions-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "waf-regional" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "waf-regional-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "waf-regional.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "waf-regional.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "waf-regional-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "wafv2" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "wafv2-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "wafv2.us-gov-east-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "wafv2.us-gov-west-1.amazonaws.com", - "variants" : [ { - "hostname" : "wafv2-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "wellarchitected" : { - "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } - } - }, - "workspaces" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - }, - "xray" : { - "endpoints" : { - "fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "deprecated" : true, - "hostname" : "xray-fips.us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "deprecated" : true, - "hostname" : "xray-fips.us-gov-west-1.amazonaws.com" - }, - "us-gov-east-1" : { - "variants" : [ { - "hostname" : "xray-fips.us-gov-east-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - }, - "us-gov-west-1" : { - "variants" : [ { - "hostname" : "xray-fips.us-gov-west-1.amazonaws.com", - "tags" : [ "fips" ] - } ] - } - } - } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "c2s.ic.gov", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "dnsSuffix" : "c2s.ic.gov", - "partition" : "aws-iso", - "partitionName" : "AWS ISO (US)", - "regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$", - "regions" : { - "us-iso-east-1" : { - "description" : "US ISO East" - }, - "us-iso-west-1" : { - "description" : "US ISO WEST" - } - }, - "services" : { - "acm" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "agreement-marketplace" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "agreement-marketplace-fips.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "agreement-marketplace-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "api.ecr" : { - "endpoints" : { - "us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "api.ecr.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "hostname" : "api.ecr.us-iso-west-1.c2s.ic.gov" - } - } - }, - "api.pricing" : { - "defaults" : { - "credentialScope" : { - "service" : "pricing" - } - }, - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "api.sagemaker" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "apigateway" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "appconfig" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "appconfigdata" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "athena" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "autoscaling" : { - "endpoints" : { - "us-iso-east-1" : { - "protocols" : [ "http", "https" ] - }, - "us-iso-west-1" : { } - } - }, - "backup" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "batch" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "bedrock" : { - "endpoints" : { - "bedrock-runtime-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "bedrock-runtime.us-iso-east-1.c2s.ic.gov" - }, - "bedrock-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "bedrock.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { } - } - }, - "budgets" : { - "endpoints" : { - "aws-iso-global" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "budgets.c2s.ic.gov" - }, - "us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "budgets.c2s.ic.gov" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-global" - }, - "ce" : { - "endpoints" : { - "aws-iso-global" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "ce.us-iso-east-1.c2s.ic.gov" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-global" - }, - "cloudcontrolapi" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "cloudformation" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "cloudtrail" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "codebuild" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "codedeploy" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "comprehend" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "comprehend-fips.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "comprehend-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "config" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "config-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "config-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "config-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "config-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "datapipeline" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "datasync" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "datasync-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "datasync-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "datasync-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "directconnect" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "dlm" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "dms" : { - "defaults" : { - "variants" : [ { - "hostname" : "dms.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "dms" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "dms.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "dms-fips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "dms.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-east-1-fips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "dms.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1-fips" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "dms.us-iso-west-1.c2s.ic.gov" - } - } - }, - "ds" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "dynamodb" : { - "endpoints" : { - "us-iso-east-1" : { - "protocols" : [ "http", "https" ] - }, - "us-iso-west-1" : { } - } - }, - "ebs" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "ec2" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "ecs" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "elasticache" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "elasticloadbalancing" : { - "endpoints" : { - "us-iso-east-1" : { - "protocols" : [ "http", "https" ] - }, - "us-iso-west-1" : { } - } - }, - "elasticmapreduce" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "protocols" : [ "https" ], - "variants" : [ { - "hostname" : "elasticmapreduce.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "es" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "events" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "firehose" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "fsx" : { - "endpoints" : { - "fips-prod-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "fsx-fips.us-iso-east-1.c2s.ic.gov" - }, - "prod-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "fsx-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "fsx-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { } - } - }, - "glacier" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "glacier-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "glacier-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "glue" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "guardduty" : { - "defaults" : { - "protocols" : [ "https" ] - }, - "endpoints" : { - "us-iso-east-1" : { } - }, - "isRegionalized" : true - }, - "health" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "iam" : { - "endpoints" : { - "aws-iso-global" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "iam.us-iso-east-1.c2s.ic.gov" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-global" - }, - "kinesis" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "kinesisanalytics" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "kinesisvideo" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "kms" : { - "endpoints" : { - "ProdFips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-east-1-fips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1-fips" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-iso-west-1.c2s.ic.gov" - } - } - }, - "lakeformation" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "lambda" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "license-manager" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "logs" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "medialive" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "medialive-fips.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "medialive-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "mediapackage" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "metrics.sagemaker" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "monitoring" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "network-firewall" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "oam" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "organizations" : { - "endpoints" : { - "aws-iso-global" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "organizations.us-iso-east-1.c2s.ic.gov" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-global" - }, - "outposts" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "pi" : { - "endpoints" : { - "us-iso-east-1" : { - "protocols" : [ "https" ] - }, - "us-iso-west-1" : { - "protocols" : [ "https" ] - } - } - }, - "ram" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "rbin" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "rds" : { - "endpoints" : { - "rds.us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "rds.us-iso-east-1.c2s.ic.gov" - }, - "rds.us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "rds.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "rds.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-east-1-fips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "rds.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "rds.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1-fips" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "rds.us-iso-west-1.c2s.ic.gov" - } - } - }, - "redshift" : { - "endpoints" : { - "us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "redshift.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "hostname" : "redshift.us-iso-west-1.c2s.ic.gov" - } - } - }, - "resource-groups" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "route53" : { - "endpoints" : { - "aws-iso-global" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "route53.c2s.ic.gov" - } - }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-global" - }, - "route53resolver" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "runtime.sagemaker" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "s3" : { - "defaults" : { - "signatureVersions" : [ "s3v4" ] - }, - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-iso-east-1.c2s.ic.gov", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-iso-west-1.c2s.ic.gov", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - } - } - }, - "s3-control" : { - "defaults" : { - "protocols" : [ "https" ], - "signatureVersions" : [ "s3v4" ] - }, - "endpoints" : { - "us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "s3-control.us-iso-east-1.c2s.ic.gov", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-iso-east-1.c2s.ic.gov", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-iso-east-1.c2s.ic.gov", - "tags" : [ "dualstack" ] - } ] - }, - "us-iso-east-1-fips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-iso-east-1.c2s.ic.gov", - "signatureVersions" : [ "s3v4" ] - }, - "us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "hostname" : "s3-control.us-iso-west-1.c2s.ic.gov", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-iso-west-1.c2s.ic.gov", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-iso-west-1.c2s.ic.gov", - "tags" : [ "dualstack" ] - } ] - }, - "us-iso-west-1-fips" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-iso-west-1.c2s.ic.gov", - "signatureVersions" : [ "s3v4" ] - } - } - }, - "s3-outposts" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "deprecated" : true - }, - "us-iso-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - } - } - }, - "scheduler" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "us-iso-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-iso-east-1-fips" : { - "deprecated" : true - }, - "us-iso-west-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1-fips" : { - "deprecated" : true - } - } - }, - "securityhub" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "servicediscovery" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "servicequotas" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "snowball" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "sns" : { - "endpoints" : { - "us-iso-east-1" : { - "protocols" : [ "http", "https" ] - }, - "us-iso-west-1" : { } - } - }, - "sqs" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "protocols" : [ "http", "https" ], - "variants" : [ { - "hostname" : "sqs.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "sqs.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "ssm" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "states" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "states-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "states-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "states-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "states-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] + }, + "elasticmapreduce": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "storagegateway" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" + }, + "emr-serverless": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "sts" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "support" : { - "endpoints" : { - "aws-iso-global" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "hostname" : "support.us-iso-east-1.c2s.ic.gov" + "es": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "partitionEndpoint" : "aws-iso-global" - }, - "swf" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "swf-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "swf-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] + "events": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "synthetics" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "tagging" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - }, - "textract" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "transcribe" : { - "defaults" : { - "protocols" : [ "https" ] }, - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "fips.transcribe.us-iso-east-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "fips.transcribe.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] + "firehose": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "transcribestreaming" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "translate" : { - "defaults" : { - "protocols" : [ "https" ] }, - "endpoints" : { - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "translate-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-east-1-fips" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "translate-fips.us-iso-east-1.c2s.ic.gov" + "glue": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "wafv2" : { - "endpoints" : { - "us-iso-east-1" : { } - } - }, - "workspaces" : { - "endpoints" : { - "fips-us-iso-east-1" : { - "credentialScope" : { - "region" : "us-iso-east-1" - }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-iso-east-1.c2s.ic.gov" - }, - "fips-us-iso-west-1" : { - "credentialScope" : { - "region" : "us-iso-west-1" - }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-iso-west-1.c2s.ic.gov" - }, - "us-iso-east-1" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-iso-east-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-iso-west-1" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-iso-west-1.c2s.ic.gov", - "tags" : [ "fips" ] - } ] + }, + "kinesis": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "xray" : { - "endpoints" : { - "us-iso-east-1" : { }, - "us-iso-west-1" : { } - } - } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "sc2s.sgov.gov", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "dnsSuffix" : "sc2s.sgov.gov", - "partition" : "aws-iso-b", - "partitionName" : "AWS ISOB (US)", - "regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$", - "regions" : { - "us-isob-east-1" : { - "description" : "US ISOB East (Ohio)" - }, - "us-isob-west-1" : { - "description" : "US ISOB West" - } - }, - "services" : { - "api.ecr" : { - "endpoints" : { - "us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" + }, + "kms": { + "endpoints": { + "ProdFips": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.eu-isoe-west-1.cloud.adc-e.uk" }, - "hostname" : "api.ecr.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-west-1" : { } - } - }, - "api.pricing" : { - "defaults" : { - "credentialScope" : { - "service" : "pricing" + "eu-isoe-west-1": { + "variants": [ + { + "hostname": "kms-fips.eu-isoe-west-1.cloud.adc-e.uk", + "tags": ["fips"] + } + ] + }, + "eu-isoe-west-1-fips": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "deprecated": true, + "hostname": "kms-fips.eu-isoe-west-1.cloud.adc-e.uk" + } } }, - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "api.sagemaker" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "apigateway" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "appconfig" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "appconfigdata" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] - }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "athena" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "lakeformation": { + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "backup" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "batch" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "budgets" : { - "endpoints" : { - "aws-iso-b-global" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "budgets.global.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "budgets.global.sc2s.sgov.gov" + "lambda": { + "endpoints": { + "eu-isoe-west-1": { + "variants": [ + { + "hostname": "lambda.eu-isoe-west-1.api.cloud-aws.adc-e.uk", + "tags": ["dualstack"] + } + ] + } } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-b-global" - }, - "ce" : { - "endpoints" : { - "aws-iso-b-global" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "ce.us-isob-east-1.sc2s.sgov.gov" + "license-manager": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-b-global" - }, - "cloudcontrolapi" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "cloudformation" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "cloudtrail" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "cloudtrail-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "cloudtrail-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "codebuild" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "codedeploy" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "config" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "config-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "config-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "datasync" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "directconnect" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "dlm" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "dms" : { - "defaults" : { - "variants" : [ { - "hostname" : "dms.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "endpoints" : { - "dms" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "dms.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "dms-fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "dms.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-east-1-fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-west-1" : { } - } - }, - "ds" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "ds-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "ds-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] + "logs": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "dynamodb" : { - "defaults" : { - "protocols" : [ "http", "https" ] }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "ebs" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "ec2" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "monitoring": { + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "ecs" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "oam": { + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "elasticache" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-isob-east-1.sc2s.sgov.gov" + "organizations": { + "endpoints": { + "aws-iso-e-global": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "organizations.eu-isoe-west-1.cloud.adc-e.uk" + } }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] + "isRegionalized": false, + "partitionEndpoint": "aws-iso-e-global" + }, + "pi": { + "endpoints": { + "eu-isoe-west-1": { + "protocols": ["https"] + } } - } - }, - "elasticloadbalancing" : { - "endpoints" : { - "us-isob-east-1" : { - "protocols" : [ "https" ] - }, - "us-isob-west-1" : { } - } - }, - "elasticmapreduce" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "elasticmapreduce.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "elasticmapreduce.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "es" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "events" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "firehose" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "fsx" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "glacier" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "glacier-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "glacier-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] + }, + "pipes": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "glue" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "guardduty" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "health" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "iam" : { - "endpoints" : { - "aws-iso-b-global" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "iam.us-isob-east-1.sc2s.sgov.gov" + }, + "ram": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-b-global" - }, - "kinesis" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "kinesisanalytics" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "kms" : { - "endpoints" : { - "ProdFips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-east-1-fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-west-1" : { } - } - }, - "lakeformation" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "lambda" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "license-manager" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "logs" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "medialive" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "medialive-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "medialive-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] + "rbin": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "mediapackage" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "metering.marketplace" : { - "defaults" : { - "credentialScope" : { - "service" : "aws-marketplace" + }, + "rds": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "metrics.sagemaker" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "monitoring" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "network-firewall" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "oam" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "organizations" : { - "endpoints" : { - "aws-iso-b-global" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "organizations.us-isob-east-1.sc2s.sgov.gov" + "redshift": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-b-global" - }, - "outposts" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "pi" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "ram" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "rbin" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "rbin-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "rbin-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "rds" : { - "endpoints" : { - "rds.us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "rds.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "rds.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-east-1-fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "rds.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-west-1" : { } - } - }, - "redshift" : { - "endpoints" : { - "us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "redshift.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-west-1" : { } - } - }, - "resource-groups" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "route53" : { - "endpoints" : { - "aws-iso-b-global" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "route53.sc2s.sgov.gov" + "redshift-serverless": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-b-global" - }, - "route53resolver" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "runtime.sagemaker" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "s3" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "s3v4" ] - }, - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "s3-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "s3-fips.dualstack.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "s3-control" : { - "defaults" : { - "protocols" : [ "https" ], - "signatureVersions" : [ "s3v4" ] - }, - "endpoints" : { - "us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "s3-control.us-isob-east-1.sc2s.sgov.gov", - "signatureVersions" : [ "s3v4" ], - "variants" : [ { - "hostname" : "s3-control-fips.dualstack.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "dualstack", "fips" ] - }, { - "hostname" : "s3-control-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - }, { - "hostname" : "s3-control.dualstack.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "dualstack" ] - } ] - }, - "us-isob-east-1-fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "s3-control-fips.us-isob-east-1.sc2s.sgov.gov", - "signatureVersions" : [ "s3v4" ] + "resource-groups": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "s3-outposts" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "deprecated" : true + }, + "route53": { + "endpoints": { + "aws-iso-e-global": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "route53.cloud.adc-e.uk" + } }, - "us-isob-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] + "isRegionalized": false, + "partitionEndpoint": "aws-iso-e-global" + }, + "route53profiles": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "scheduler" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "us-isob-east-1" : { - "variants" : [ { - "tags" : [ "fips" ] - } ] - }, - "us-isob-east-1-fips" : { - "deprecated" : true + }, + "route53resolver": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "s3": { + "defaults": { + "protocols": ["http", "https"], + "signatureVersions": ["s3v4"] }, - "us-isob-west-1" : { } - } - }, - "securityhub" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "servicediscovery" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "servicequotas" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "snowball" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "sns" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "sqs" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "sslCommonName" : "{region}.queue.{dnsSuffix}" - }, - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "sqs.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "ssm" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "states" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "states-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "states-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "storagegateway" : { - "endpoints" : { - "fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov" + "savingsplans": { + "endpoints": { + "aws-iso-e-global": { + "credentialScope": { + "region": "eu-isoe-west-1" + }, + "hostname": "savingsplans.cloud.adc-e.uk" + } }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] + "isRegionalized": false, + "partitionEndpoint": "aws-iso-e-global" + }, + "scheduler": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "schemas": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "secretsmanager": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "servicecatalog": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "servicediscovery": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "servicequotas": { + "defaults": { + "protocols": ["https"] }, - "us-isob-east-1-fips" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov" + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" + }, + "sns": { + "defaults": { + "protocols": ["http", "https"] }, - "protocols" : [ "http", "https" ] + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "sts" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "support" : { - "endpoints" : { - "aws-iso-b-global" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "hostname" : "support.us-isob-east-1.sc2s.sgov.gov" + "sqs": { + "defaults": { + "protocols": ["http", "https"], + "sslCommonName": "{region}.queue.{dnsSuffix}" + }, + "endpoints": { + "eu-isoe-west-1": {} } }, - "partitionEndpoint" : "aws-iso-b-global" - }, - "swf" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" - }, - "deprecated" : true, - "hostname" : "swf-fips.us-isob-east-1.sc2s.sgov.gov" - }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "swf-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isob-west-1" : { } - } - }, - "synthetics" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "tagging" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - }, - "wafv2" : { - "endpoints" : { - "us-isob-east-1" : { } - } - }, - "workspaces" : { - "endpoints" : { - "fips-us-isob-east-1" : { - "credentialScope" : { - "region" : "us-isob-east-1" + "ssm": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "states": { + "endpoints": { + "eu-isoe-west-1": {} + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" }, - "deprecated" : true, - "hostname" : "workspaces-fips.us-isob-east-1.sc2s.sgov.gov" + "protocols": ["http", "https"] }, - "us-isob-east-1" : { - "variants" : [ { - "hostname" : "workspaces-fips.us-isob-east-1.sc2s.sgov.gov", - "tags" : [ "fips" ] - } ] + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "xray" : { - "endpoints" : { - "us-isob-east-1" : { }, - "us-isob-west-1" : { } - } - } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "cloud.adc-e.uk", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "dnsSuffix" : "cloud.adc-e.uk", - "partition" : "aws-iso-e", - "partitionName" : "AWS ISOE (Europe)", - "regionRegex" : "^eu\\-isoe\\-\\w+\\-\\d+$", - "regions" : { - "eu-isoe-west-1" : { - "description" : "EU ISOE West" - } - }, - "services" : { - "access-analyzer" : { - "endpoints" : { - "eu-isoe-west-1" : { - "variants" : [ { - "hostname" : "access-analyzer.eu-isoe-west-1.api.cloud-aws.adc-e.uk", - "tags" : [ "dualstack" ] - } ] + }, + "sts": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "acm" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "acm-pca" : { - "defaults" : { - "protocols" : [ "https" ] }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "api.ecr" : { - "endpoints" : { - "eu-isoe-west-1" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "hostname" : "api.ecr.eu-isoe-west-1.cloud.adc-e.uk" + "swf": { + "endpoints": { + "eu-isoe-west-1": {} } - } - }, - "api.pricing" : { - "defaults" : { - "credentialScope" : { - "service" : "pricing" + }, + "synthetics": { + "endpoints": { + "eu-isoe-west-1": {} } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "apigateway" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "appconfig" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "appconfigdata" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "tagging": { + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "athena" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "trustedadvisor": { + "endpoints": { + "eu-isoe-west-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "batch" : { - "endpoints" : { - "eu-isoe-west-1" : { } + "xray": { + "endpoints": { + "eu-isoe-west-1": {} + } + } + } + }, + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "csp.hci.ic.gov", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "dnsSuffix": "csp.hci.ic.gov", + "partition": "aws-iso-f", + "partitionName": "AWS ISOF", + "regionRegex": "^us\\-isof\\-\\w+\\-\\d+$", + "regions": { + "us-isof-east-1": { + "description": "US ISOF EAST" + }, + "us-isof-south-1": { + "description": "US ISOF SOUTH" } }, - "budgets" : { - "endpoints" : { - "aws-iso-e-global" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" + "services": { + "access-analyzer": { + "endpoints": { + "us-isof-east-1": { + "variants": [ + { + "hostname": "access-analyzer.us-isof-east-1.api.aws.hci.ic.gov", + "tags": ["dualstack"] + } + ] }, - "hostname" : "budgets.global.cloud.adc-e.uk" + "us-isof-south-1": { + "variants": [ + { + "hostname": "access-analyzer.us-isof-south-1.api.aws.hci.ic.gov", + "tags": ["dualstack"] + } + ] + } + } + }, + "acm": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "acm-pca": { + "defaults": { + "protocols": ["https"] }, - "eu-isoe-west-1" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "hostname" : "budgets.global.cloud.adc-e.uk" + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-e-global" - }, - "cloudcontrolapi" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "cloudformation" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "cloudtrail" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "cloudtrail-data" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "codedeploy" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "compute-optimizer" : { - "endpoints" : { - "eu-isoe-west-1" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" + "api.ecr": { + "endpoints": { + "us-isof-east-1": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "hostname": "api.ecr.us-isof-east-1.csp.hci.ic.gov" }, - "hostname" : "compute-optimizer.eu-isoe-west-1.cloud.adc-e.uk" + "us-isof-south-1": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "api.ecr.us-isof-south-1.csp.hci.ic.gov" + } + } + }, + "api.pricing": { + "defaults": { + "credentialScope": { + "service": "pricing" + } + }, + "endpoints": { + "us-isof-south-1": {} } - } - }, - "config" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "cost-optimization-hub" : { - "endpoints" : { - "eu-isoe-west-1" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "hostname" : "cost-optimization-hub.eu-isoe-west-1.cloud.adc-e.uk" + }, + "api.sagemaker": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "directconnect" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "dlm" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "dms" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "ds" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "dynamodb" : { - "defaults" : { - "protocols" : [ "http", "https" ] }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "ebs" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "ec2" : { - "defaults" : { - "protocols" : [ "https" ] + "appconfig": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "ecs" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "appconfigdata": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "elasticache" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "eu-isoe-west-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.eu-isoe-west-1.cloud.adc-e.uk", - "tags" : [ "fips" ] - } ] + "application-autoscaling": { + "defaults": { + "protocols": ["http", "https"] }, - "fips-eu-isoe-west-1" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.eu-isoe-west-1.cloud.adc-e.uk" + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "elasticloadbalancing" : { - "defaults" : { - "protocols" : [ "https" ] }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "elasticmapreduce" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "emr-serverless" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "es" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "events" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "firehose" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "glue" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "kinesis" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "kms" : { - "endpoints" : { - "ProdFips" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-isoe-west-1.cloud.adc-e.uk" - }, - "eu-isoe-west-1" : { - "variants" : [ { - "hostname" : "kms-fips.eu-isoe-west-1.cloud.adc-e.uk", - "tags" : [ "fips" ] - } ] - }, - "eu-isoe-west-1-fips" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.eu-isoe-west-1.cloud.adc-e.uk" + "arc-zonal-shift": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "lakeformation" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "lambda" : { - "endpoints" : { - "eu-isoe-west-1" : { - "variants" : [ { - "hostname" : "lambda.eu-isoe-west-1.api.cloud-aws.adc-e.uk", - "tags" : [ "dualstack" ] - } ] + }, + "athena": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "license-manager" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "logs" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "monitoring" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "oam" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "organizations" : { - "endpoints" : { - "aws-iso-e-global" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "hostname" : "organizations.eu-isoe-west-1.cloud.adc-e.uk" + }, + "autoscaling": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-e-global" - }, - "pi" : { - "endpoints" : { - "eu-isoe-west-1" : { - "protocols" : [ "https" ] + "backup": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "pipes" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "ram" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "rbin" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "rds" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "redshift" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "redshift-serverless" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "resource-groups" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "route53" : { - "endpoints" : { - "aws-iso-e-global" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" + }, + "batch": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "budgets": { + "endpoints": { + "aws-iso-f-global": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "budgets.global.csp.hci.ic.gov" }, - "hostname" : "route53.cloud.adc-e.uk" + "us-isof-south-1": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "budgets.global.csp.hci.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-f-global" + }, + "ce": { + "endpoints": { + "aws-iso-f-global": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "ce.us-isof-south-1.csp.hci.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-f-global" + }, + "cloudcontrolapi": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-e-global" - }, - "route53profiles" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "route53resolver" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "s3" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "s3v4" ] + "cloudformation": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "savingsplans" : { - "endpoints" : { - "aws-iso-e-global" : { - "credentialScope" : { - "region" : "eu-isoe-west-1" - }, - "hostname" : "savingsplans.cloud.adc-e.uk" + "cloudtrail": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-e-global" - }, - "scheduler" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "schemas" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "servicecatalog" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "servicediscovery" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "servicequotas" : { - "defaults" : { - "protocols" : [ "https" ] + "cloudtrail-data": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "sns" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "codebuild": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "sqs" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "sslCommonName" : "{region}.queue.{dnsSuffix}" + "codedeploy": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "ssm" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "states" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" - }, - "protocols" : [ "http", "https" ] + "codepipeline": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "comprehend": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "compute-optimizer": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "compute-optimizer.us-isof-south-1.csp.hci.ic.gov" + } + } + }, + "config": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "cost-optimization-hub": { + "endpoints": { + "us-isof-south-1": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "cost-optimization-hub.us-isof-south-1.csp.hci.ic.gov" + } + } }, - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "sts" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "swf" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "synthetics" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "tagging" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "trustedadvisor" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - }, - "xray" : { - "endpoints" : { - "eu-isoe-west-1" : { } - } - } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "csp.hci.ic.gov", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "dnsSuffix" : "csp.hci.ic.gov", - "partition" : "aws-iso-f", - "partitionName" : "AWS ISOF", - "regionRegex" : "^us\\-isof\\-\\w+\\-\\d+$", - "regions" : { - "us-isof-east-1" : { - "description" : "US ISOF EAST" - }, - "us-isof-south-1" : { - "description" : "US ISOF SOUTH" - } - }, - "services" : { - "access-analyzer" : { - "endpoints" : { - "us-isof-east-1" : { - "variants" : [ { - "hostname" : "access-analyzer.us-isof-east-1.api.aws.hci.ic.gov", - "tags" : [ "dualstack" ] - } ] - }, - "us-isof-south-1" : { - "variants" : [ { - "hostname" : "access-analyzer.us-isof-south-1.api.aws.hci.ic.gov", - "tags" : [ "dualstack" ] - } ] + "directconnect": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "acm" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "acm-pca" : { - "defaults" : { - "protocols" : [ "https" ] }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "api.ecr" : { - "endpoints" : { - "us-isof-east-1" : { - "credentialScope" : { - "region" : "us-isof-east-1" + "dlm": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "dms": { + "endpoints": { + "dms": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "variants": [ + { + "hostname": "dms.us-isof-east-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] }, - "hostname" : "api.ecr.us-isof-east-1.csp.hci.ic.gov" + "dms-fips": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "hostname": "dms.us-isof-east-1.csp.hci.ic.gov" + }, + "us-isof-east-1": { + "variants": [ + { + "hostname": "dms.us-isof-east-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-isof-east-1-fips": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "hostname": "dms.us-isof-east-1.csp.hci.ic.gov" + }, + "us-isof-south-1": { + "variants": [ + { + "hostname": "dms.us-isof-south-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-isof-south-1-fips": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "deprecated": true, + "hostname": "dms.us-isof-south-1.csp.hci.ic.gov" + } + } + }, + "ds": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "dynamodb": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "ebs": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "ec2": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "ecs": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "eks": { + "defaults": { + "protocols": ["http", "https"] }, - "us-isof-south-1" : { - "credentialScope" : { - "region" : "us-isof-south-1" + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "elasticache": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "elasticfilesystem": { + "endpoints": { + "fips-us-isof-east-1": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-isof-east-1.csp.hci.ic.gov" + }, + "fips-us-isof-south-1": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "deprecated": true, + "hostname": "elasticfilesystem-fips.us-isof-south-1.csp.hci.ic.gov" }, - "hostname" : "api.ecr.us-isof-south-1.csp.hci.ic.gov" + "us-isof-east-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-isof-east-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-isof-south-1": { + "variants": [ + { + "hostname": "elasticfilesystem-fips.us-isof-south-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + } } - } - }, - "api.pricing" : { - "defaults" : { - "credentialScope" : { - "service" : "pricing" + }, + "elasticloadbalancing": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "endpoints" : { - "us-isof-south-1" : { } - } - }, - "api.sagemaker" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "appconfig" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "appconfigdata" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "application-autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "elasticmapreduce": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "arc-zonal-shift" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "athena" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "autoscaling" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "es": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "backup" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "batch" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "budgets" : { - "endpoints" : { - "aws-iso-f-global" : { - "credentialScope" : { - "region" : "us-isof-south-1" + "events": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "firehose": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "fsx": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "glue": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "guardduty": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + }, + "isRegionalized": true + }, + "iam": { + "endpoints": { + "aws-iso-f-global": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "iam.us-isof-south-1.csp.hci.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-f-global" + }, + "kinesis": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "kms": { + "endpoints": { + "ProdFips": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-isof-east-1.csp.hci.ic.gov" + }, + "us-isof-east-1": { + "variants": [ + { + "hostname": "kms-fips.us-isof-east-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-isof-east-1-fips": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-isof-east-1.csp.hci.ic.gov" }, - "hostname" : "budgets.global.csp.hci.ic.gov" - }, - "us-isof-south-1" : { - "credentialScope" : { - "region" : "us-isof-south-1" + "us-isof-south-1": { + "variants": [ + { + "hostname": "kms-fips.us-isof-south-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] }, - "hostname" : "budgets.global.csp.hci.ic.gov" + "us-isof-south-1-fips": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "deprecated": true, + "hostname": "kms-fips.us-isof-south-1.csp.hci.ic.gov" + } } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-f-global" - }, - "ce" : { - "endpoints" : { - "aws-iso-f-global" : { - "credentialScope" : { - "region" : "us-isof-south-1" + "lakeformation": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "lambda": { + "endpoints": { + "us-isof-east-1": { + "variants": [ + { + "hostname": "lambda.us-isof-east-1.api.aws.hci.ic.gov", + "tags": ["dualstack"] + } + ] }, - "hostname" : "ce.us-isof-south-1.csp.hci.ic.gov" + "us-isof-south-1": { + "variants": [ + { + "hostname": "lambda.us-isof-south-1.api.aws.hci.ic.gov", + "tags": ["dualstack"] + } + ] + } } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-f-global" - }, - "cloudcontrolapi" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "cloudformation" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "cloudtrail" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "cloudtrail-data" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "codebuild" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "codedeploy" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "codepipeline" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "comprehend" : { - "defaults" : { - "protocols" : [ "https" ] + "license-manager": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "compute-optimizer" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "hostname" : "compute-optimizer.us-isof-south-1.csp.hci.ic.gov" + "logs": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "config" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "cost-optimization-hub" : { - "endpoints" : { - "us-isof-south-1" : { - "credentialScope" : { - "region" : "us-isof-south-1" + }, + "metrics.sagemaker": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "monitoring": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "oam": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "organizations": { + "endpoints": { + "aws-iso-f-global": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "organizations.us-isof-south-1.csp.hci.ic.gov" + } + }, + "isRegionalized": false, + "partitionEndpoint": "aws-iso-f-global" + }, + "pi": { + "endpoints": { + "us-isof-east-1": { + "protocols": ["https"] }, - "hostname" : "cost-optimization-hub.us-isof-south-1.csp.hci.ic.gov" + "us-isof-south-1": { + "protocols": ["https"] + } } - } - }, - "directconnect" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "dlm" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "dms" : { - "endpoints" : { - "dms" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "variants" : [ { - "hostname" : "dms.us-isof-east-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "dms-fips" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-isof-east-1.csp.hci.ic.gov" - }, - "us-isof-east-1" : { - "variants" : [ { - "hostname" : "dms.us-isof-east-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isof-east-1-fips" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "hostname" : "dms.us-isof-east-1.csp.hci.ic.gov" - }, - "us-isof-south-1" : { - "variants" : [ { - "hostname" : "dms.us-isof-south-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isof-south-1-fips" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "deprecated" : true, - "hostname" : "dms.us-isof-south-1.csp.hci.ic.gov" + }, + "pipes": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "ds" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "dynamodb" : { - "defaults" : { - "protocols" : [ "http", "https" ] }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "ebs" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "ec2" : { - "defaults" : { - "protocols" : [ "https" ] + "quicksight": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "ecs" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "eks" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "ram": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "elasticache" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "elasticfilesystem" : { - "endpoints" : { - "fips-us-isof-east-1" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-isof-east-1.csp.hci.ic.gov" - }, - "fips-us-isof-south-1" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "deprecated" : true, - "hostname" : "elasticfilesystem-fips.us-isof-south-1.csp.hci.ic.gov" - }, - "us-isof-east-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-isof-east-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isof-south-1" : { - "variants" : [ { - "hostname" : "elasticfilesystem-fips.us-isof-south-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] + "rbin": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "elasticloadbalancing" : { - "defaults" : { - "protocols" : [ "https" ] }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "elasticmapreduce" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "es" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "events" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "firehose" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "fsx" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "glue" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "guardduty" : { - "defaults" : { - "protocols" : [ "https" ] + "rds": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } + "redshift": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "isRegionalized" : true - }, - "iam" : { - "endpoints" : { - "aws-iso-f-global" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "hostname" : "iam.us-isof-south-1.csp.hci.ic.gov" + "redshift-serverless": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-f-global" - }, - "kinesis" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "kms" : { - "endpoints" : { - "ProdFips" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-isof-east-1.csp.hci.ic.gov" - }, - "us-isof-east-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-isof-east-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] + "rekognition": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "resource-groups": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "route53": { + "endpoints": { + "aws-iso-f-global": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "route53.csp.hci.ic.gov" + } }, - "us-isof-east-1-fips" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-isof-east-1.csp.hci.ic.gov" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-f-global" + }, + "route53profiles": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "route53resolver": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "runtime.sagemaker": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "s3": { + "defaults": { + "protocols": ["http", "https"], + "signatureVersions": ["s3v4"] }, - "us-isof-south-1" : { - "variants" : [ { - "hostname" : "kms-fips.us-isof-south-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "savingsplans": { + "endpoints": { + "aws-iso-f-global": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "hostname": "savingsplans.csp.hci.ic.gov" + } }, - "us-isof-south-1-fips" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "deprecated" : true, - "hostname" : "kms-fips.us-isof-south-1.csp.hci.ic.gov" + "isRegionalized": false, + "partitionEndpoint": "aws-iso-f-global" + }, + "scheduler": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "lakeformation" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "lambda" : { - "endpoints" : { - "us-isof-east-1" : { - "variants" : [ { - "hostname" : "lambda.us-isof-east-1.api.aws.hci.ic.gov", - "tags" : [ "dualstack" ] - } ] - }, - "us-isof-south-1" : { - "variants" : [ { - "hostname" : "lambda.us-isof-south-1.api.aws.hci.ic.gov", - "tags" : [ "dualstack" ] - } ] + }, + "schemas": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "license-manager" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "logs" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "metrics.sagemaker" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "monitoring" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "oam" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "organizations" : { - "endpoints" : { - "aws-iso-f-global" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "hostname" : "organizations.us-isof-south-1.csp.hci.ic.gov" + }, + "secretsmanager": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-f-global" - }, - "pi" : { - "endpoints" : { - "us-isof-east-1" : { - "protocols" : [ "https" ] + "servicediscovery": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "servicequotas": { + "defaults": { + "protocols": ["https"] }, - "us-isof-south-1" : { - "protocols" : [ "https" ] + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "pipes" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "quicksight" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "ram" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "rbin" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "rds" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "redshift" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "redshift-serverless" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "rekognition" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "resource-groups" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "route53" : { - "endpoints" : { - "aws-iso-f-global" : { - "credentialScope" : { - "region" : "us-isof-south-1" + }, + "sns": { + "defaults": { + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "sqs": { + "defaults": { + "protocols": ["http", "https"], + "sslCommonName": "{region}.queue.{dnsSuffix}" + }, + "endpoints": { + "fips-us-isof-east-1": { + "credentialScope": { + "region": "us-isof-east-1" + }, + "deprecated": true, + "hostname": "sqs.us-isof-east-1.csp.hci.ic.gov" + }, + "fips-us-isof-south-1": { + "credentialScope": { + "region": "us-isof-south-1" + }, + "deprecated": true, + "hostname": "sqs.us-isof-south-1.csp.hci.ic.gov" }, - "hostname" : "route53.csp.hci.ic.gov" + "us-isof-east-1": { + "variants": [ + { + "hostname": "sqs.us-isof-east-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + }, + "us-isof-south-1": { + "variants": [ + { + "hostname": "sqs.us-isof-south-1.csp.hci.ic.gov", + "tags": ["fips"] + } + ] + } } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-f-global" - }, - "route53profiles" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "route53resolver" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "runtime.sagemaker" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "s3" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "signatureVersions" : [ "s3v4" ] - }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "savingsplans" : { - "endpoints" : { - "aws-iso-f-global" : { - "credentialScope" : { - "region" : "us-isof-south-1" + "ssm": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "states": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "streams.dynamodb": { + "defaults": { + "credentialScope": { + "service": "dynamodb" }, - "hostname" : "savingsplans.csp.hci.ic.gov" + "protocols": ["http", "https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } }, - "isRegionalized" : false, - "partitionEndpoint" : "aws-iso-f-global" - }, - "scheduler" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "schemas" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "secretsmanager" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "servicediscovery" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "servicequotas" : { - "defaults" : { - "protocols" : [ "https" ] + "sts": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "sns" : { - "defaults" : { - "protocols" : [ "http", "https" ] + "swf": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "sqs" : { - "defaults" : { - "protocols" : [ "http", "https" ], - "sslCommonName" : "{region}.queue.{dnsSuffix}" - }, - "endpoints" : { - "fips-us-isof-east-1" : { - "credentialScope" : { - "region" : "us-isof-east-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-isof-east-1.csp.hci.ic.gov" - }, - "fips-us-isof-south-1" : { - "credentialScope" : { - "region" : "us-isof-south-1" - }, - "deprecated" : true, - "hostname" : "sqs.us-isof-south-1.csp.hci.ic.gov" - }, - "us-isof-east-1" : { - "variants" : [ { - "hostname" : "sqs.us-isof-east-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] - }, - "us-isof-south-1" : { - "variants" : [ { - "hostname" : "sqs.us-isof-south-1.csp.hci.ic.gov", - "tags" : [ "fips" ] - } ] + "synthetics": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} } - } - }, - "ssm" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "states" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "streams.dynamodb" : { - "defaults" : { - "credentialScope" : { - "service" : "dynamodb" + }, + "tagging": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "textract": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } + }, + "transcribe": { + "defaults": { + "protocols": ["https"] }, - "protocols" : [ "http", "https" ] + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "sts" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "swf" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "synthetics" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "tagging" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "textract" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "transcribe" : { - "defaults" : { - "protocols" : [ "https" ] + "transcribestreaming": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "transcribestreaming" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "translate" : { - "defaults" : { - "protocols" : [ "https" ] + "translate": { + "defaults": { + "protocols": ["https"] + }, + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } }, - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } - } - }, - "trustedadvisor" : { - "endpoints" : { - "us-isof-south-1" : { } - } - }, - "xray" : { - "endpoints" : { - "us-isof-east-1" : { }, - "us-isof-south-1" : { } + "trustedadvisor": { + "endpoints": { + "us-isof-south-1": {} + } + }, + "xray": { + "endpoints": { + "us-isof-east-1": {}, + "us-isof-south-1": {} + } } } - } - }, { - "defaults" : { - "hostname" : "{service}.{region}.{dnsSuffix}", - "protocols" : [ "https" ], - "signatureVersions" : [ "v4" ], - "variants" : [ { - "dnsSuffix" : "amazonaws.eu", - "hostname" : "{service}-fips.{region}.{dnsSuffix}", - "tags" : [ "fips" ] - } ] - }, - "dnsSuffix" : "amazonaws.eu", - "partition" : "aws-eusc", - "partitionName" : "AWS EUSC", - "regionRegex" : "^eusc\\-(de)\\-\\w+\\-\\d+$", - "regions" : { - "eusc-de-east-1" : { - "description" : "EU (Germany)" - } }, - "services" : { } - } ], - "version" : 3 -} \ No newline at end of file + { + "defaults": { + "hostname": "{service}.{region}.{dnsSuffix}", + "protocols": ["https"], + "signatureVersions": ["v4"], + "variants": [ + { + "dnsSuffix": "amazonaws.eu", + "hostname": "{service}-fips.{region}.{dnsSuffix}", + "tags": ["fips"] + } + ] + }, + "dnsSuffix": "amazonaws.eu", + "partition": "aws-eusc", + "partitionName": "AWS EUSC", + "regionRegex": "^eusc\\-(de)\\-\\w+\\-\\d+$", + "regions": { + "eusc-de-east-1": { + "description": "EU (Germany)" + } + }, + "services": {} + } + ], + "version": 3 +} diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml index 1b4f89ad477..acdc2ca24d0 100644 --- a/core/retries-spi/pom.xml +++ b/core/retries-spi/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/retries/pom.xml b/core/retries/pom.xml index d8cd29d35a7..3ed88835e54 100644 --- a/core/retries/pom.xml +++ b/core/retries/pom.xml @@ -21,7 +21,7 @@ core software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 0de4fae53c5..7b91409f385 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 025569358c7..5011c741f6d 100644 --- a/http-client-spi/pom.xml +++ b/http-client-spi/pom.xml @@ -22,7 +22,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 3d9e392a8e1..e99198727a8 100644 --- a/http-clients/apache-client/pom.xml +++ b/http-clients/apache-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT apache-client diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml index 8005053e218..fe55293f4da 100644 --- a/http-clients/apache5-client/pom.xml +++ b/http-clients/apache5-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT apache5-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index bbdd569d958..eff6be607fe 100644 --- a/http-clients/aws-crt-client/pom.xml +++ b/http-clients/aws-crt-client/pom.xml @@ -21,7 +21,7 @@ http-clients software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 4f70fab7ded..1b5508724a5 100644 --- a/http-clients/netty-nio-client/pom.xml +++ b/http-clients/netty-nio-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 844e1ceabfc..22bc760f29b 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 3c14ebf79ef..6b30d2a9c2b 100644 --- a/http-clients/url-connection-client/pom.xml +++ b/http-clients/url-connection-client/pom.xml @@ -20,7 +20,7 @@ http-clients software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 920872263f3..c8d0e2d5b2e 100644 --- a/metric-publishers/cloudwatch-metric-publisher/pom.xml +++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk metric-publishers - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml index 6b0c668d6a9..c249d0b8b36 100644 --- a/metric-publishers/emf-metric-logging-publisher/pom.xml +++ b/metric-publishers/emf-metric-logging-publisher/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk metric-publishers - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT emf-metric-logging-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 73e66d48961..5dea48d5b4d 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 649cf97f3de..d1b1417f25a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs @@ -103,8 +103,8 @@ ${project.version} - 2.38.4 - 2.38.3 + 2.38.7 + 2.38.6 2.19.4 2.19.4 2.19.4 diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 79098afa04f..24a9e238d0d 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../pom.xml release-scripts diff --git a/scripts/changelog/util.py b/scripts/changelog/util.py index 1815d8b282e..42468c786ac 100644 --- a/scripts/changelog/util.py +++ b/scripts/changelog/util.py @@ -31,7 +31,11 @@ def load_release_changes(fn): def load_unreleased_changes(d): if not os.path.exists(d): return None - return ReleaseChanges(None, date.today().isoformat(), load_unreleased_entries(d)) + return ReleaseChanges( + None, + # date.today().isoformat(), TODO uncomment and remove hardcoded date + "2025-11-12", + load_unreleased_entries(d)) def load_unreleased_entries(d): entries = [] diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 7d8f0741be4..364b5b5822b 100644 --- a/services-custom/dynamodb-enhanced/pom.xml +++ b/services-custom/dynamodb-enhanced/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services-custom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT dynamodb-enhanced AWS Java SDK :: DynamoDB :: Enhanced Client diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml index fcb0fa4a8f5..790d3570dbd 100644 --- a/services-custom/iam-policy-builder/pom.xml +++ b/services-custom/iam-policy-builder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml iam-policy-builder diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 5ae35d12dcf..a904c623dca 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml index 543ea79e6ba..fed5efde840 100644 --- a/services-custom/s3-event-notifications/pom.xml +++ b/services-custom/s3-event-notifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml s3-event-notifications diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml index 16c693050fc..a37e6acf915 100644 --- a/services-custom/s3-transfer-manager/pom.xml +++ b/services-custom/s3-transfer-manager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml s3-transfer-manager diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 3a86ba22bf8..cef1ff395d7 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/account/pom.xml b/services/account/pom.xml index df75bedf017..c8f6313d396 100644 --- a/services/account/pom.xml +++ b/services/account/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT account AWS Java SDK :: Services :: Account diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 03e90488072..c6f2e0344e1 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 48b94ad60be..e887c936af7 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml index dd56198390d..89803a50e36 100644 --- a/services/aiops/pom.xml +++ b/services/aiops/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT aiops AWS Java SDK :: Services :: AI Ops diff --git a/services/amp/pom.xml b/services/amp/pom.xml index cdfea13fef7..6f132919fdb 100644 --- a/services/amp/pom.xml +++ b/services/amp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT amp AWS Java SDK :: Services :: Amp diff --git a/services/amp/src/main/resources/codegen-resources/service-2.json b/services/amp/src/main/resources/codegen-resources/service-2.json index 2b60efa0a10..adebb38c910 100644 --- a/services/amp/src/main/resources/codegen-resources/service-2.json +++ b/services/amp/src/main/resources/codegen-resources/service-2.json @@ -108,7 +108,7 @@ {"shape":"InternalServerException"}, {"shape":"ServiceQuotaExceededException"} ], - "documentation":"

The CreateRuleGroupsNamespace operation creates a rule groups namespace within a workspace. A rule groups namespace is associated with exactly one rules file. A workspace can have multiple rule groups namespaces.

Use this operation only to create new rule groups namespaces. To update an existing rule groups namespace, use PutRuleGroupsNamespace.

", + "documentation":"

The CreateRuleGroupsNamespace operation creates a rule groups namespace within a workspace. A rule groups namespace is associated with exactly one rules file. A workspace can have multiple rule groups namespaces.

The combined length of a rule group namespace and a rule group name cannot exceed 721 UTF-8 bytes.

Use this operation only to create new rule groups namespaces. To update an existing rule groups namespace, use PutRuleGroupsNamespace.

", "idempotent":true }, "CreateScraper":{ @@ -129,7 +129,7 @@ {"shape":"InternalServerException"}, {"shape":"ServiceQuotaExceededException"} ], - "documentation":"

The CreateScraper operation creates a scraper to collect metrics. A scraper pulls metrics from Prometheus-compatible sources within an Amazon EKS cluster, and sends them to your Amazon Managed Service for Prometheus workspace. Scrapers are flexible, and can be configured to control what metrics are collected, the frequency of collection, what transformations are applied to the metrics, and more.

An IAM role will be created for you that Amazon Managed Service for Prometheus uses to access the metrics in your cluster. You must configure this role with a policy that allows it to scrape metrics from your cluster. For more information, see Configuring your Amazon EKS cluster in the Amazon Managed Service for Prometheus User Guide.

The scrapeConfiguration parameter contains the base-64 encoded YAML configuration for the scraper.

When creating a scraper, the service creates a Network Interface in each Availability Zone that are passed into CreateScraper through subnets. These network interfaces are used to connect to the Amazon EKS cluster within the VPC for scraping metrics.

For more information about collectors, including what metrics are collected, and how to configure the scraper, see Using an Amazon Web Services managed collector in the Amazon Managed Service for Prometheus User Guide.

", + "documentation":"

The CreateScraper operation creates a scraper to collect metrics. A scraper pulls metrics from Prometheus-compatible sources and sends them to your Amazon Managed Service for Prometheus workspace. You can configure scrapers to collect metrics from Amazon EKS clusters, Amazon MSK clusters, or from VPC-based sources that support DNS-based service discovery. Scrapers are flexible, and can be configured to control what metrics are collected, the frequency of collection, what transformations are applied to the metrics, and more.

An IAM role will be created for you that Amazon Managed Service for Prometheus uses to access the metrics in your source. You must configure this role with a policy that allows it to scrape metrics from your source. For Amazon EKS sources, see Configuring your Amazon EKS cluster in the Amazon Managed Service for Prometheus User Guide.

The scrapeConfiguration parameter contains the base-64 encoded YAML configuration for the scraper.

When creating a scraper, the service creates a Network Interface in each Availability Zone that are passed into CreateScraper through subnets. These network interfaces are used to connect to your source within the VPC for scraping metrics.

For more information about collectors, including what metrics are collected, and how to configure the scraper, see Using an Amazon Web Services managed collector in the Amazon Managed Service for Prometheus User Guide.

", "idempotent":true }, "CreateWorkspace":{ @@ -697,7 +697,7 @@ {"shape":"InternalServerException"}, {"shape":"ServiceQuotaExceededException"} ], - "documentation":"

Updates an existing rule groups namespace within a workspace. A rule groups namespace is associated with exactly one rules file. A workspace can have multiple rule groups namespaces.

Use this operation only to update existing rule groups namespaces. To create a new rule groups namespace, use CreateRuleGroupsNamespace.

You can't use this operation to add tags to an existing rule groups namespace. Instead, use TagResource.

", + "documentation":"

Updates an existing rule groups namespace within a workspace. A rule groups namespace is associated with exactly one rules file. A workspace can have multiple rule groups namespaces.

The combined length of a rule group namespace and a rule group name cannot exceed 721 UTF-8 bytes.

Use this operation only to update existing rule groups namespaces. To create a new rule groups namespace, use CreateRuleGroupsNamespace.

You can't use this operation to add tags to an existing rule groups namespace. Instead, use TagResource.

", "idempotent":true }, "TagResource":{ @@ -1445,7 +1445,7 @@ }, "source":{ "shape":"Source", - "documentation":"

The Amazon EKS cluster from which the scraper will collect metrics.

" + "documentation":"

The Amazon EKS or Amazon Web Services cluster from which the scraper will collect metrics.

" }, "destination":{ "shape":"Destination", @@ -3383,6 +3383,10 @@ "eksConfiguration":{ "shape":"EksConfiguration", "documentation":"

The Amazon EKS cluster from which a scraper collects metrics.

" + }, + "vpcConfiguration":{ + "shape":"VpcConfiguration", + "documentation":"

The Amazon VPC configuration for the Prometheus collector when connecting to Amazon MSK clusters. This configuration enables secure, private network connectivity between the collector and your Amazon MSK cluster within your Amazon VPC.

" } }, "documentation":"

The source of collected metrics for a scraper.

", @@ -3813,6 +3817,24 @@ "OTHER" ] }, + "VpcConfiguration":{ + "type":"structure", + "required":[ + "securityGroupIds", + "subnetIds" + ], + "members":{ + "securityGroupIds":{ + "shape":"SecurityGroupIds", + "documentation":"

The security group IDs that control network access for the Prometheus collector. These security groups must allow the collector to communicate with your Amazon MSK cluster on the required ports.

" + }, + "subnetIds":{ + "shape":"SubnetIds", + "documentation":"

The subnet IDs where the Prometheus collector will be deployed. The subnets must be in the same Amazon VPC as your Amazon MSK cluster and have network connectivity to the cluster.

" + } + }, + "documentation":"

The Amazon VPC configuration that specifies the network settings for a Prometheus collector to securely connect to Amazon MSK clusters. This configuration includes the security groups and subnets that control network access and placement for the collector.

" + }, "WorkspaceAlias":{ "type":"string", "documentation":"

A user-assigned workspace alias.

", diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index a6123a6674d..8a251b8b2f8 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 94763f6805b..ad468999568 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml index 8e6df468a4b..5a1fe01c68c 100644 --- a/services/amplifyuibuilder/pom.xml +++ b/services/amplifyuibuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT amplifyuibuilder AWS Java SDK :: Services :: Amplify UI Builder diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index f3e6e328999..783bf05dcce 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 685ac9c9113..3660d82d948 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 7119a831833..8bb787b46a7 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 1b931348d49..9b16cb58893 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml index 6dd4572182b..5fdf264f9e9 100644 --- a/services/appconfigdata/pom.xml +++ b/services/appconfigdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appconfigdata AWS Java SDK :: Services :: App Config Data diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml index aa084a24660..3e223eee9b2 100644 --- a/services/appfabric/pom.xml +++ b/services/appfabric/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appfabric AWS Java SDK :: Services :: App Fabric diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 31b6a7585fb..1fc28850ca6 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 045d0dd232a..5d92b7e8847 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 3acf0a14f9f..61dee52b43f 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml index 610f6b90c1b..269a33b0409 100644 --- a/services/applicationcostprofiler/pom.xml +++ b/services/applicationcostprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT applicationcostprofiler AWS Java SDK :: Services :: Application Cost Profiler diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 602f41bd8c3..f37f52e2d7f 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 714c7a0a66c..d9be324c57d 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml index 75d429700e2..26945aec153 100644 --- a/services/applicationsignals/pom.xml +++ b/services/applicationsignals/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT applicationsignals AWS Java SDK :: Services :: Application Signals diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 4d0ad2080bc..11b628c1d34 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml index 9c5fe6df8d9..8191108bb4c 100644 --- a/services/apprunner/pom.xml +++ b/services/apprunner/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT apprunner AWS Java SDK :: Services :: App Runner diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 5bafb8603ac..76290b5daed 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 40e9ca8ad14..5ce9c24eb7b 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT appsync diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml index 59e6dba3309..49282d1d122 100644 --- a/services/arcregionswitch/pom.xml +++ b/services/arcregionswitch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT arcregionswitch AWS Java SDK :: Services :: ARC Region Switch diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml index dae7c25bb16..f13b7974eae 100644 --- a/services/arczonalshift/pom.xml +++ b/services/arczonalshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT arczonalshift AWS Java SDK :: Services :: ARC Zonal Shift diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml index 6e42d6962e0..731a16ae9e2 100644 --- a/services/artifact/pom.xml +++ b/services/artifact/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT artifact AWS Java SDK :: Services :: Artifact diff --git a/services/athena/pom.xml b/services/athena/pom.xml index cc4bbd23ea2..51ca7bb7e1b 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml index 802f45861f4..85939d71b01 100644 --- a/services/auditmanager/pom.xml +++ b/services/auditmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT auditmanager AWS Java SDK :: Services :: Audit Manager diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 953aeeeb4b4..ac95e31b775 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2babf49acc3..a1d1aa88a3a 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml index b8ab4d3eb40..920a07118d8 100644 --- a/services/b2bi/pom.xml +++ b/services/b2bi/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT b2bi AWS Java SDK :: Services :: B2 Bi diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 6f22734c1b6..b61fa9029c2 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml index f6a8ab83228..b050a6f350f 100644 --- a/services/backupgateway/pom.xml +++ b/services/backupgateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT backupgateway AWS Java SDK :: Services :: Backup Gateway diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml index 7f20a87bdc7..c5838bc0fbe 100644 --- a/services/backupsearch/pom.xml +++ b/services/backupsearch/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT backupsearch AWS Java SDK :: Services :: Backup Search diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 6cabb4d3d3a..203a28cd320 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml index ac841476ce4..7280f309ba1 100644 --- a/services/bcmdashboards/pom.xml +++ b/services/bcmdashboards/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bcmdashboards AWS Java SDK :: Services :: BCM Dashboards diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml index f2ec235c344..345a333ee28 100644 --- a/services/bcmdataexports/pom.xml +++ b/services/bcmdataexports/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bcmdataexports AWS Java SDK :: Services :: BCM Data Exports diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml index 4988528ee5f..b25a4163f5d 100644 --- a/services/bcmpricingcalculator/pom.xml +++ b/services/bcmpricingcalculator/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bcmpricingcalculator AWS Java SDK :: Services :: BCM Pricing Calculator diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml index 2191344d6c9..217a0795673 100644 --- a/services/bcmrecommendedactions/pom.xml +++ b/services/bcmrecommendedactions/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bcmrecommendedactions AWS Java SDK :: Services :: BCM Recommended Actions diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml index 125c74ad08d..031076c45c3 100644 --- a/services/bedrock/pom.xml +++ b/services/bedrock/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrock AWS Java SDK :: Services :: Bedrock diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml index abf235cad49..81bf6a6d0e8 100644 --- a/services/bedrockagent/pom.xml +++ b/services/bedrockagent/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockagent AWS Java SDK :: Services :: Bedrock Agent diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml index 146775970bd..7b2b8072c0a 100644 --- a/services/bedrockagentcore/pom.xml +++ b/services/bedrockagentcore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockagentcore AWS Java SDK :: Services :: Bedrock Agent Core diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml index 77e14ce8308..5c9b16976f9 100644 --- a/services/bedrockagentcorecontrol/pom.xml +++ b/services/bedrockagentcorecontrol/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockagentcorecontrol AWS Java SDK :: Services :: Bedrock Agent Core Control diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml index c6ace5caefb..3802021268e 100644 --- a/services/bedrockagentruntime/pom.xml +++ b/services/bedrockagentruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockagentruntime AWS Java SDK :: Services :: Bedrock Agent Runtime diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml index 8933052bd30..a9e6827995f 100644 --- a/services/bedrockdataautomation/pom.xml +++ b/services/bedrockdataautomation/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockdataautomation AWS Java SDK :: Services :: Bedrock Data Automation diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml index 3a968ca3bb3..4e3572774f1 100644 --- a/services/bedrockdataautomationruntime/pom.xml +++ b/services/bedrockdataautomationruntime/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockdataautomationruntime AWS Java SDK :: Services :: Bedrock Data Automation Runtime diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml index a9eeff800d5..57d3c6d1d0d 100644 --- a/services/bedrockruntime/pom.xml +++ b/services/bedrockruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT bedrockruntime AWS Java SDK :: Services :: Bedrock Runtime diff --git a/services/billing/pom.xml b/services/billing/pom.xml index cbad09c6653..c15e40edba6 100644 --- a/services/billing/pom.xml +++ b/services/billing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT billing AWS Java SDK :: Services :: Billing diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml index f9212ba16d6..10f395a3eac 100644 --- a/services/billingconductor/pom.xml +++ b/services/billingconductor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT billingconductor AWS Java SDK :: Services :: Billingconductor diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 4e7d7bcaab4..c721ad57c48 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 8509cb7bb29..be82c13100c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml index 70d9313a671..84f57d35ef2 100644 --- a/services/chatbot/pom.xml +++ b/services/chatbot/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chatbot AWS Java SDK :: Services :: Chatbot diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 8fe6a6443db..c80126bfad9 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml index 557cd5d7379..adb7f583395 100644 --- a/services/chimesdkidentity/pom.xml +++ b/services/chimesdkidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chimesdkidentity AWS Java SDK :: Services :: Chime SDK Identity diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml index 58322b67b52..759c2bc3237 100644 --- a/services/chimesdkmediapipelines/pom.xml +++ b/services/chimesdkmediapipelines/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chimesdkmediapipelines AWS Java SDK :: Services :: Chime SDK Media Pipelines diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml index cf11b23e3a2..0bc4ac8e644 100644 --- a/services/chimesdkmeetings/pom.xml +++ b/services/chimesdkmeetings/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chimesdkmeetings AWS Java SDK :: Services :: Chime SDK Meetings diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml index 257c01bdbad..f3b25fe3aa4 100644 --- a/services/chimesdkmessaging/pom.xml +++ b/services/chimesdkmessaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chimesdkmessaging AWS Java SDK :: Services :: Chime SDK Messaging diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml index 5f21e36c63f..9577bc1dfe8 100644 --- a/services/chimesdkvoice/pom.xml +++ b/services/chimesdkvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT chimesdkvoice AWS Java SDK :: Services :: Chime SDK Voice diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml index 8a3c47d251b..421c22b2b71 100644 --- a/services/cleanrooms/pom.xml +++ b/services/cleanrooms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cleanrooms AWS Java SDK :: Services :: Clean Rooms diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml index daad7867ef0..f43368923d3 100644 --- a/services/cleanroomsml/pom.xml +++ b/services/cleanroomsml/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cleanroomsml AWS Java SDK :: Services :: Clean Rooms ML diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 30a7a1a35aa..c507f89aef7 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 cloud9 diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml index a3408f951fc..c8caba06c37 100644 --- a/services/cloudcontrol/pom.xml +++ b/services/cloudcontrol/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudcontrol AWS Java SDK :: Services :: Cloud Control diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 83430557e2c..fb0aa6e97fc 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index fb49cd40328..db7b04dcd24 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index d81e736df4b..8feeefe3840 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml index 821e533c5f7..321a09a318a 100644 --- a/services/cloudfrontkeyvaluestore/pom.xml +++ b/services/cloudfrontkeyvaluestore/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudfrontkeyvaluestore AWS Java SDK :: Services :: Cloud Front Key Value Store diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index e946f400987..cba7c210fb2 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index c06376a1caa..7139c442793 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index c2b1656e070..2d59155a5e6 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index a7e0cecc314..8bf5acec8d6 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index facfb774790..a9f7ac63bdd 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml index 1eb5013673c..e719eaa4d5d 100644 --- a/services/cloudtraildata/pom.xml +++ b/services/cloudtraildata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudtraildata AWS Java SDK :: Services :: Cloud Trail Data diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 759a9d7efda..ef78765fce0 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index fe6d4769c4c..daace69bf29 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index f58ff4ea65d..8726f3811dc 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index cf1ba15283a..8665ca44aba 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index ac50683222a..3bf80709cd2 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml index aff680d7cf1..6a473959595 100644 --- a/services/codecatalyst/pom.xml +++ b/services/codecatalyst/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codecatalyst AWS Java SDK :: Services :: Code Catalyst diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index ad6e5da7847..94a2b373fa1 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml index 1452862585c..407bf072e7b 100644 --- a/services/codeconnections/pom.xml +++ b/services/codeconnections/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codeconnections AWS Java SDK :: Services :: Code Connections diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 45942b62980..b93fd10152c 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 5fa23687c32..b47f01f898f 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index a5a984ac58a..64b08b6c8bc 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml index 5cba35f3145..9964e6218e3 100644 --- a/services/codegurusecurity/pom.xml +++ b/services/codegurusecurity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codegurusecurity AWS Java SDK :: Services :: Code Guru Security diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index c2a3914daf6..a076fd6e89f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index e1769aec5fe..3cace5fc57b 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 9d52419c134..7dd47b6ebb7 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 18dc0382d1c..5e64a98fe0c 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 3d5856faa22..6185f3178a1 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 5134b2be2cf..eee0f610cc5 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f917b5c727c..414b06155c1 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index aaad3173511..1ae3ba837a2 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 4aa9a1f44c6..18e0ff5a56f 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 50909377d8a..e3e23b9ca80 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 075cd99114d..690243092ab 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connect/src/main/resources/codegen-resources/service-2.json b/services/connect/src/main/resources/codegen-resources/service-2.json index 2348ae51b1a..6a731809e22 100644 --- a/services/connect/src/main/resources/codegen-resources/service-2.json +++ b/services/connect/src/main/resources/codegen-resources/service-2.json @@ -6566,11 +6566,24 @@ }, "PeriodicSessionDuration":{ "shape":"AccessTokenDuration", - "documentation":"

The short lived session duration configuration for users logged in to Amazon Connect, in minutes. This value determines the maximum possible time before an agent is authenticated. For more information, see Configure the session duration in the Amazon Connect Administrator Guide.

" + "documentation":"

The short lived session duration configuration for users logged in to Amazon Connect, in minutes. This value determines the maximum possible time before an agent is authenticated. For more information, see Configure the session duration in the Amazon Connect Administrator Guide.

", + "deprecated":true, + "deprecatedMessage":"PeriodicSessionDuration is deprecated. Use SessionInactivityDuration instead.", + "deprecatedSince":"10/31/2025" }, "MaxSessionDuration":{ "shape":"RefreshTokenDuration", "documentation":"

The long lived session duration for users logged in to Amazon Connect, in minutes. After this time period, users must log in again. For more information, see Configure the session duration in the Amazon Connect Administrator Guide.

" + }, + "SessionInactivityDuration":{ + "shape":"InactivityDuration", + "documentation":"

The period, in minutes, before an agent is automatically signed out of the contact center when they go inactive.

", + "box":true + }, + "SessionInactivityHandlingEnabled":{ + "shape":"Boolean", + "documentation":"

Determines if automatic logout on user inactivity is enabled.

", + "box":true } }, "documentation":"

This API is in preview release for Amazon Connect and is subject to change. To request access to this API, contact Amazon Web Services Support.

Information about an authentication profile. An authentication profile is a resource that stores the authentication settings for users in your contact center. You use authentication profiles to set up IP address range restrictions and session timeouts. For more information, see Set IP address restrictions or session timeouts.

" @@ -16114,6 +16127,12 @@ } } }, + "InactivityDuration":{ + "type":"integer", + "box":true, + "max":720, + "min":15 + }, "InboundAdditionalRecipients":{ "type":"structure", "members":{ @@ -26457,6 +26476,19 @@ "PeriodicSessionDuration":{ "shape":"AccessTokenDuration", "documentation":"

The short lived session duration configuration for users logged in to Amazon Connect, in minutes. This value determines the maximum possible time before an agent is authenticated. For more information, For more information on how to configure IP addresses, see Configure session timeouts in the Amazon Connect Administrator Guide.

", + "box":true, + "deprecated":true, + "deprecatedMessage":"PeriodicSessionDuration is deprecated. Use SessionInactivityDuration instead.", + "deprecatedSince":"10/31/2025" + }, + "SessionInactivityDuration":{ + "shape":"InactivityDuration", + "documentation":"

The period, in minutes, before an agent is automatically signed out of the contact center when they go inactive.

", + "box":true + }, + "SessionInactivityHandlingEnabled":{ + "shape":"Boolean", + "documentation":"

Determines if automatic logout on user inactivity is enabled.

", "box":true } } diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml index a6955e88884..c8f77a605b6 100644 --- a/services/connectcampaigns/pom.xml +++ b/services/connectcampaigns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT connectcampaigns AWS Java SDK :: Services :: Connect Campaigns diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml index 5dfcb06ecd9..02bfd16d756 100644 --- a/services/connectcampaignsv2/pom.xml +++ b/services/connectcampaignsv2/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT connectcampaignsv2 AWS Java SDK :: Services :: Connect Campaigns V2 diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml index 55b66869f9e..ac45f909018 100644 --- a/services/connectcases/pom.xml +++ b/services/connectcases/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT connectcases AWS Java SDK :: Services :: Connect Cases diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index 64060695b14..ba618dda8df 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 9086a661945..2538cf2ef10 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml index b54b8a81d3e..97c58a8bafe 100644 --- a/services/controlcatalog/pom.xml +++ b/services/controlcatalog/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT controlcatalog AWS Java SDK :: Services :: Control Catalog diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml index 885e24c59ed..db6599fb6a2 100644 --- a/services/controltower/pom.xml +++ b/services/controltower/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT controltower AWS Java SDK :: Services :: Control Tower diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 42aea0bd538..adfa410a243 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 7212f9890eb..0ad635b8692 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 costexplorer diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml index adce0a8039a..25f065510b3 100644 --- a/services/costoptimizationhub/pom.xml +++ b/services/costoptimizationhub/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT costoptimizationhub AWS Java SDK :: Services :: Cost Optimization Hub diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index 7ed3e061a44..836e15543be 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 0072721f0ea..63250d088dd 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databasemigration/src/main/resources/codegen-resources/paginators-1.json b/services/databasemigration/src/main/resources/codegen-resources/paginators-1.json index bd5b3166197..05c920c20a1 100644 --- a/services/databasemigration/src/main/resources/codegen-resources/paginators-1.json +++ b/services/databasemigration/src/main/resources/codegen-resources/paginators-1.json @@ -96,11 +96,23 @@ "output_token": "Marker", "limit_key": "MaxRecords" }, + "DescribeMetadataModelChildren": { + "input_token": "Marker", + "output_token": "Marker", + "limit_key": "MaxRecords", + "result_key": "MetadataModelChildren" + }, "DescribeMetadataModelConversions": { "input_token": "Marker", "output_token": "Marker", "limit_key": "MaxRecords" }, + "DescribeMetadataModelCreations": { + "input_token": "Marker", + "output_token": "Marker", + "limit_key": "MaxRecords", + "result_key": "Requests" + }, "DescribeMetadataModelExportsAsScript": { "input_token": "Marker", "output_token": "Marker", diff --git a/services/databasemigration/src/main/resources/codegen-resources/service-2.json b/services/databasemigration/src/main/resources/codegen-resources/service-2.json index 22af05bb58e..0c19df24e47 100644 --- a/services/databasemigration/src/main/resources/codegen-resources/service-2.json +++ b/services/databasemigration/src/main/resources/codegen-resources/service-2.json @@ -56,6 +56,36 @@ ], "documentation":"

End of support notice: On May 20, 2026, Amazon Web Services will end support for Amazon Web Services DMS Fleet Advisor;. After May 20, 2026, you will no longer be able to access the Amazon Web Services DMS Fleet Advisor; console or Amazon Web Services DMS Fleet Advisor; resources. For more information, see Amazon Web Services DMS Fleet Advisor end of support.

Starts the analysis of up to 20 source databases to recommend target engines for each source database. This is a batch version of StartRecommendations.

The result of analysis of each source database is reported individually in the response. Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.

" }, + "CancelMetadataModelConversion":{ + "name":"CancelMetadataModelConversion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CancelMetadataModelConversionMessage"}, + "output":{"shape":"CancelMetadataModelConversionResponse"}, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"InvalidResourceStateFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Cancels a single metadata model conversion operation that was started with StartMetadataModelConversion.

" + }, + "CancelMetadataModelCreation":{ + "name":"CancelMetadataModelCreation", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CancelMetadataModelCreationMessage"}, + "output":{"shape":"CancelMetadataModelCreationResponse"}, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"InvalidResourceStateFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Cancels a single metadata model creation operation that was started with StartMetadataModelCreation.

" + }, "CancelReplicationTaskAssessmentRun":{ "name":"CancelReplicationTaskAssessmentRun", "http":{ @@ -764,6 +794,20 @@ ], "documentation":"

Returns a paginated list of instance profiles for your account in the current region.

" }, + "DescribeMetadataModel":{ + "name":"DescribeMetadataModel", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeMetadataModelMessage"}, + "output":{"shape":"DescribeMetadataModelResponse"}, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Gets detailed information about the specified metadata model, including its definition and corresponding converted objects in the target database if applicable.

" + }, "DescribeMetadataModelAssessments":{ "name":"DescribeMetadataModelAssessments", "http":{ @@ -777,6 +821,20 @@ ], "documentation":"

Returns a paginated list of metadata model assessments for your account in the current region.

" }, + "DescribeMetadataModelChildren":{ + "name":"DescribeMetadataModelChildren", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeMetadataModelChildrenMessage"}, + "output":{"shape":"DescribeMetadataModelChildrenResponse"}, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Gets a list of child metadata models for the specified metadata model in the database hierarchy.

" + }, "DescribeMetadataModelConversions":{ "name":"DescribeMetadataModelConversions", "http":{ @@ -790,6 +848,20 @@ ], "documentation":"

Returns a paginated list of metadata model conversions for a migration project.

" }, + "DescribeMetadataModelCreations":{ + "name":"DescribeMetadataModelCreations", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeMetadataModelCreationsMessage"}, + "output":{"shape":"DescribeMetadataModelCreationsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Returns a paginated list of metadata model creation requests for a migration project.

" + }, "DescribeMetadataModelExportsAsScript":{ "name":"DescribeMetadataModelExportsAsScript", "http":{ @@ -1083,6 +1155,21 @@ ], "documentation":"

Saves a copy of a database migration assessment report to your Amazon S3 bucket. DMS can save your assessment report as a comma-separated value (CSV) or a PDF file.

" }, + "GetTargetSelectionRules":{ + "name":"GetTargetSelectionRules", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetTargetSelectionRulesMessage"}, + "output":{"shape":"GetTargetSelectionRulesResponse"}, + "errors":[ + {"shape":"ResourceNotFoundFault"}, + {"shape":"InvalidResourceStateFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Converts source selection rules into their target counterparts for schema conversion operations.

" + }, "ImportCertificate":{ "name":"ImportCertificate", "http":{ @@ -1483,6 +1570,22 @@ ], "documentation":"

Converts your source database objects to a format compatible with the target database.

" }, + "StartMetadataModelCreation":{ + "name":"StartMetadataModelCreation", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartMetadataModelCreationMessage"}, + "output":{"shape":"StartMetadataModelCreationResponse"}, + "errors":[ + {"shape":"ResourceAlreadyExistsFault"}, + {"shape":"ResourceNotFoundFault"}, + {"shape":"ResourceQuotaExceededFault"}, + {"shape":"AccessDeniedFault"} + ], + "documentation":"

Creates source metadata model of the given type with the specified properties for schema conversion operations.

This action supports only these directions: from SQL Server to Aurora PostgreSQL, or from SQL Server to RDS for PostgreSQL.

" + }, "StartMetadataModelExportAsScript":{ "name":"StartMetadataModelExportAsScript", "http":{ @@ -1882,6 +1985,52 @@ }, "Boolean":{"type":"boolean"}, "BooleanOptional":{"type":"boolean"}, + "CancelMetadataModelConversionMessage":{ + "type":"structure", + "required":[ + "MigrationProjectIdentifier", + "RequestIdentifier" + ], + "members":{ + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + }, + "RequestIdentifier":{ + "shape":"String", + "documentation":"

The identifier for the metadata model conversion operation to cancel. This operation was initiated by StartMetadataModelConversion.

" + } + } + }, + "CancelMetadataModelConversionResponse":{ + "type":"structure", + "members":{ + "Request":{"shape":"SchemaConversionRequest"} + } + }, + "CancelMetadataModelCreationMessage":{ + "type":"structure", + "required":[ + "MigrationProjectIdentifier", + "RequestIdentifier" + ], + "members":{ + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + }, + "RequestIdentifier":{ + "shape":"String", + "documentation":"

The identifier for the metadata model creation operation to cancel. This operation was initiated by StartMetadataModelCreation.

" + } + } + }, + "CancelMetadataModelCreationResponse":{ + "type":"structure", + "members":{ + "Request":{"shape":"SchemaConversionRequest"} + } + }, "CancelReplicationTaskAssessmentRunMessage":{ "type":"structure", "required":["ReplicationTaskAssessmentRunArn"], @@ -4286,6 +4435,49 @@ } } }, + "DescribeMetadataModelChildrenMessage":{ + "type":"structure", + "required":[ + "SelectionRules", + "MigrationProjectIdentifier", + "Origin" + ], + "members":{ + "SelectionRules":{ + "shape":"String", + "documentation":"

The JSON string that specifies which metadata model's children to retrieve. Only one selection rule with \"rule-action\": \"explicit\" can be provided. For more information, see Selection Rules in the DMS User Guide.

" + }, + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + }, + "Origin":{ + "shape":"OriginTypeValue", + "documentation":"

Specifies whether to retrieve metadata from the source or target tree. Valid values: SOURCE | TARGET

" + }, + "Marker":{ + "shape":"String", + "documentation":"

Specifies the unique pagination token that indicates where the next page should start. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

" + }, + "MaxRecords":{ + "shape":"IntegerOptional", + "documentation":"

The maximum number of metadata model children to include in the response. If more items exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.

" + } + } + }, + "DescribeMetadataModelChildrenResponse":{ + "type":"structure", + "members":{ + "Marker":{ + "shape":"String", + "documentation":"

Specifies the unique pagination token that makes it possible to display the next page of metadata model children. If a marker is returned, there are more metadata model children available.

" + }, + "MetadataModelChildren":{ + "shape":"MetadataModelReferenceList", + "documentation":"

A list of child metadata models.

" + } + } + }, "DescribeMetadataModelConversionsMessage":{ "type":"structure", "required":["MigrationProjectIdentifier"], @@ -4321,6 +4513,41 @@ } } }, + "DescribeMetadataModelCreationsMessage":{ + "type":"structure", + "required":["MigrationProjectIdentifier"], + "members":{ + "Filters":{ + "shape":"FilterList", + "documentation":"

Filters applied to the metadata model creation requests described in the form of key-value pairs. The supported filters are request-id and status.

" + }, + "Marker":{ + "shape":"String", + "documentation":"

Specifies the unique pagination token that makes it possible to display the next page of metadata model creation requests. If Marker is returned by a previous response, there are more metadata model creation requests available.

" + }, + "MaxRecords":{ + "shape":"IntegerOptional", + "documentation":"

The maximum number of metadata model creation requests to include in the response. If more requests exist than the specified MaxRecords value, a pagination token is provided in the response so that you can retrieve the remaining results.

" + }, + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + } + } + }, + "DescribeMetadataModelCreationsResponse":{ + "type":"structure", + "members":{ + "Marker":{ + "shape":"String", + "documentation":"

Specifies the unique pagination token that makes it possible to display the next page of metadata model creation requests. If Marker is returned, there are more metadata model creation requests available.

" + }, + "Requests":{ + "shape":"SchemaConversionRequestList", + "documentation":"

A list of metadata model creation requests. The ExportSqlDetails field will never be populated for the DescribeMetadataModelCreations operation.

" + } + } + }, "DescribeMetadataModelExportsAsScriptMessage":{ "type":"structure", "required":["MigrationProjectIdentifier"], @@ -4426,6 +4653,49 @@ } } }, + "DescribeMetadataModelMessage":{ + "type":"structure", + "required":[ + "SelectionRules", + "MigrationProjectIdentifier", + "Origin" + ], + "members":{ + "SelectionRules":{ + "shape":"String", + "documentation":"

The JSON string that specifies which metadata model to retrieve. Only one selection rule with \"rule-action\": \"explicit\" can be provided. For more information, see Selection Rules in the DMS User Guide.

" + }, + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + }, + "Origin":{ + "shape":"OriginTypeValue", + "documentation":"

Specifies whether to retrieve metadata from the source or target tree. Valid values: SOURCE | TARGET

" + } + } + }, + "DescribeMetadataModelResponse":{ + "type":"structure", + "members":{ + "MetadataModelName":{ + "shape":"String", + "documentation":"

The name of the metadata model.

" + }, + "MetadataModelType":{ + "shape":"String", + "documentation":"

The type of the metadata model.

" + }, + "TargetMetadataModels":{ + "shape":"MetadataModelReferenceList", + "documentation":"

A list of counterpart metadata models in the target. This field is populated only when Origin is SOURCE and after the object has been converted by DMS Schema Conversion.

" + }, + "Definition":{ + "shape":"String", + "documentation":"

The SQL text of the metadata model. This field might not be populated for some metadata models.

" + } + } + }, "DescribeMigrationProjectsMessage":{ "type":"structure", "members":{ @@ -5759,6 +6029,32 @@ }, "documentation":"

Settings in JSON format for the source GCP MySQL endpoint.

" }, + "GetTargetSelectionRulesMessage":{ + "type":"structure", + "required":[ + "MigrationProjectIdentifier", + "SelectionRules" + ], + "members":{ + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + }, + "SelectionRules":{ + "shape":"String", + "documentation":"

The JSON string representing the source selection rules for conversion. Selection rules must contain only supported metadata model types. For more information, see Selection Rules in the DMS User Guide.

" + } + } + }, + "GetTargetSelectionRulesResponse":{ + "type":"structure", + "members":{ + "TargetSelectionRules":{ + "shape":"String", + "documentation":"

The JSON string representing the counterpart selection rules in the target.

" + } + } + }, "IBMDb2Settings":{ "type":"structure", "members":{ @@ -6404,6 +6700,35 @@ "json-unformatted" ] }, + "MetadataModelProperties":{ + "type":"structure", + "members":{ + "StatementProperties":{ + "shape":"StatementProperties", + "documentation":"

The properties of the statement.

" + } + }, + "documentation":"

The properties of metadata model in JSON format. This object is a Union. Only one member of this object can be specified or returned.

", + "union":true + }, + "MetadataModelReference":{ + "type":"structure", + "members":{ + "MetadataModelName":{ + "shape":"String", + "documentation":"

The name of the metadata model.

" + }, + "SelectionRules":{ + "shape":"String", + "documentation":"

The JSON string representing metadata model location.

" + } + }, + "documentation":"

A reference to a metadata model, including its name and selection rules for location identification.

" + }, + "MetadataModelReferenceList":{ + "type":"list", + "member":{"shape":"MetadataModelReference"} + }, "MicrosoftSQLServerSettings":{ "type":"structure", "members":{ @@ -9913,6 +10238,42 @@ } } }, + "StartMetadataModelCreationMessage":{ + "type":"structure", + "required":[ + "MigrationProjectIdentifier", + "SelectionRules", + "MetadataModelName", + "Properties" + ], + "members":{ + "MigrationProjectIdentifier":{ + "shape":"MigrationProjectIdentifier", + "documentation":"

The migration project name or Amazon Resource Name (ARN).

" + }, + "SelectionRules":{ + "shape":"String", + "documentation":"

The JSON string that specifies the location where the metadata model will be created. Selection rules must specify a single schema. For more information, see Selection Rules in the DMS User Guide.

" + }, + "MetadataModelName":{ + "shape":"String", + "documentation":"

The name of the metadata model.

" + }, + "Properties":{ + "shape":"MetadataModelProperties", + "documentation":"

The properties of metadata model in JSON format. This object is a Union. Only one member of this object can be specified or returned.

" + } + } + }, + "StartMetadataModelCreationResponse":{ + "type":"structure", + "members":{ + "RequestIdentifier":{ + "shape":"String", + "documentation":"

The identifier for the metadata model creation operation.

" + } + } + }, "StartMetadataModelExportAsScriptMessage":{ "type":"structure", "required":[ @@ -10235,6 +10596,17 @@ "reload-target" ] }, + "StatementProperties":{ + "type":"structure", + "required":["Definition"], + "members":{ + "Definition":{ + "shape":"String", + "documentation":"

The SQL text of the statement.

" + } + }, + "documentation":"

The properties of the statement for metadata model creation.

" + }, "StopDataMigrationMessage":{ "type":"structure", "required":["DataMigrationIdentifier"], @@ -10420,9 +10792,9 @@ "TablePreparationMode":{ "type":"string", "enum":[ - "do-nothing", + "drop-tables-on-target", "truncate", - "drop-tables-on-target" + "do-nothing" ] }, "TableStatistics":{ diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 2bbb28ec523..e13d8405cb7 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 55ea253bf46..22434b62150 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index bfa7f827e20..e45de35fc73 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 6756e34c80e..1652b979803 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml index e04a5e85149..cdb3cf7bc48 100644 --- a/services/datazone/pom.xml +++ b/services/datazone/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT datazone AWS Java SDK :: Services :: Data Zone diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 9c8b5fc66b4..420cfc198cd 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml index a0992ae08fe..bf92ac222c0 100644 --- a/services/deadline/pom.xml +++ b/services/deadline/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT deadline AWS Java SDK :: Services :: Deadline diff --git a/services/detective/pom.xml b/services/detective/pom.xml index cfd35cc8291..b59a2f84647 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index d92d88275df..f84e035e16f 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index b638f9a9ae8..5e8d03f8925 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 988b8e0d5db..acf398680b3 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index a7db51cc36e..1d2c3c93441 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml index f5b6fdc5e49..b3a59abac7d 100644 --- a/services/directoryservicedata/pom.xml +++ b/services/directoryservicedata/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT directoryservicedata AWS Java SDK :: Services :: Directory Service Data diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index f32600d6171..b374f6f23b6 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 0a5477a8a0a..8ad8e847f0a 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml index ad0002aa7c7..68fb6e766f4 100644 --- a/services/docdbelastic/pom.xml +++ b/services/docdbelastic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT docdbelastic AWS Java SDK :: Services :: Doc DB Elastic diff --git a/services/drs/pom.xml b/services/drs/pom.xml index 6da669c4218..807a577699a 100644 --- a/services/drs/pom.xml +++ b/services/drs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT drs AWS Java SDK :: Services :: Drs diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml index c459817b7bb..d76fcbfb427 100644 --- a/services/dsql/pom.xml +++ b/services/dsql/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT dsql AWS Java SDK :: Services :: DSQL diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index e71439d91cc..066e246c823 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 49801f109a4..5d92666af79 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 7167688f1c7..b703f1a9ff5 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index d32907f0d05..1ffcc349ac9 100644 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -5121,6 +5121,16 @@ "output":{"shape":"GetHostReservationPurchasePreviewResult"}, "documentation":"

Preview a reservation purchase with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation.

This is a preview of the PurchaseHostReservation action and does not result in the offering being purchased.

" }, + "GetImageAncestry":{ + "name":"GetImageAncestry", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetImageAncestryRequest"}, + "output":{"shape":"GetImageAncestryResult"}, + "documentation":"

Retrieves the ancestry chain of the specified AMI, tracing its lineage back to the root AMI. For more information, see AMI ancestry in Amazon EC2 User Guide.

" + }, "GetImageBlockPublicAccessState":{ "name":"GetImageBlockPublicAccessState", "http":{ @@ -36578,6 +36588,30 @@ } } }, + "GetImageAncestryRequest":{ + "type":"structure", + "required":["ImageId"], + "members":{ + "ImageId":{ + "shape":"ImageId", + "documentation":"

The ID of the AMI whose ancestry you want to trace.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

" + } + } + }, + "GetImageAncestryResult":{ + "type":"structure", + "members":{ + "ImageAncestryEntries":{ + "shape":"ImageAncestryEntryList", + "documentation":"

A list of entries in the AMI ancestry chain, from the specified AMI to the root AMI.

", + "locationName":"imageAncestryEntrySet" + } + } + }, "GetImageBlockPublicAccessStateRequest":{ "type":"structure", "members":{ @@ -39303,6 +39337,44 @@ }, "documentation":"

Describes an image.

" }, + "ImageAncestryEntry":{ + "type":"structure", + "members":{ + "CreationDate":{ + "shape":"MillisecondDateTime", + "documentation":"

The date and time when this AMI was created.

", + "locationName":"creationDate" + }, + "ImageId":{ + "shape":"ImageId", + "documentation":"

The ID of this AMI.

", + "locationName":"imageId" + }, + "ImageOwnerAlias":{ + "shape":"String", + "documentation":"

The owner alias (amazon | aws-backup-vault | aws-marketplace ) of this AMI, if one is assigned. Otherwise, the value is null.

", + "locationName":"imageOwnerAlias" + }, + "SourceImageId":{ + "shape":"ImageId", + "documentation":"

The ID of the parent AMI.

", + "locationName":"sourceImageId" + }, + "SourceImageRegion":{ + "shape":"String", + "documentation":"

The Amazon Web Services Region of the parent AMI.

", + "locationName":"sourceImageRegion" + } + }, + "documentation":"

Information about a single AMI in the ancestry chain and its source (parent) AMI.

" + }, + "ImageAncestryEntryList":{ + "type":"list", + "member":{ + "shape":"ImageAncestryEntry", + "locationName":"item" + } + }, "ImageAttribute":{ "type":"structure", "members":{ diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index b45760d5bd9..a2be21f1388 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 7bdc3feb745..ecb42a6d864 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index cb8efa1d125..f956dbca6b1 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index af048602fae..fe47701c493 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 76ca983cdc5..674414554f9 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 803e52b6949..eb0436bcc48 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml index 879990d974c..1c3c085d9dd 100644 --- a/services/eksauth/pom.xml +++ b/services/eksauth/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT eksauth AWS Java SDK :: Services :: EKS Auth diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index bff65b4be1f..c87c134d047 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 52a175694f1..a1bbbfbdb46 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 7f5cea71160..58db05ddf97 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 77c6a0259ff..a32317a2977 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json index 47943a88036..81354972fb9 100644 --- a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json @@ -453,7 +453,7 @@ {"shape":"RuleNotFoundException"}, {"shape":"UnsupportedProtocolException"} ], - "documentation":"

Describes the specified rules or the rules for the specified listener. You must specify either a listener or one or more rules.

" + "documentation":"

Describes the specified rules or the rules for the specified listener. You must specify either a listener or rules.

" }, "DescribeSSLPolicies":{ "name":"DescribeSSLPolicies", @@ -998,7 +998,7 @@ }, "TargetGroupArn":{ "shape":"TargetGroupArn", - "documentation":"

The Amazon Resource Name (ARN) of the target group. Specify only when Type is forward and you want to route to a single target group. To route to one or more target groups, use ForwardConfig instead.

" + "documentation":"

The Amazon Resource Name (ARN) of the target group. Specify only when Type is forward and you want to route to a single target group. To route to multiple target groups, you must use ForwardConfig instead.

" }, "AuthenticateOidcConfig":{ "shape":"AuthenticateOidcActionConfig", @@ -1022,10 +1022,14 @@ }, "ForwardConfig":{ "shape":"ForwardActionConfig", - "documentation":"

Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when Type is forward. If you specify both ForwardConfig and TargetGroupArn, you can specify only one target group using ForwardConfig and it must be the same target group specified in TargetGroupArn.

" + "documentation":"

Information for creating an action that distributes requests among multiple target groups. Specify only when Type is forward.

If you specify both ForwardConfig and TargetGroupArn, you can specify only one target group using ForwardConfig and it must be the same target group specified in TargetGroupArn.

" + }, + "JwtValidationConfig":{ + "shape":"JwtValidationActionConfig", + "documentation":"

[HTTPS listeners] Information for validating JWT access tokens in client requests. Specify only when Type is jwt-validation.

" } }, - "documentation":"

Information about an action.

Each rule must include exactly one of the following types of actions: forward, fixed-response, or redirect, and it must be the last action to be performed.

" + "documentation":"

Information about an action.

Each rule must include exactly one of the following routing actions: forward, fixed-response, or redirect, and it must be the last action to be performed.

Optionally, a rule for an HTTPS listener can also include one of the following user authentication actions: authenticate-oidc, authenticate-cognito, or jwt-validation.

" }, "ActionOrder":{ "type":"integer", @@ -1039,7 +1043,8 @@ "authenticate-oidc", "authenticate-cognito", "redirect", - "fixed-response" + "fixed-response", + "jwt-validation" ] }, "Actions":{ @@ -2512,7 +2517,7 @@ "members":{ "TargetGroups":{ "shape":"TargetGroupList", - "documentation":"

The target groups. For Network Load Balancers, you can specify a single target group.

" + "documentation":"

The target groups.

" }, "TargetGroupStickinessConfig":{ "shape":"TargetGroupStickinessConfig", @@ -2803,6 +2808,71 @@ "documentation":"

An IPAM pool is a collection of IP address CIDRs. IPAM pools enable you to organize your IP addresses according to your routing and security needs.

" }, "IsDefault":{"type":"boolean"}, + "JwtValidationActionAdditionalClaim":{ + "type":"structure", + "required":[ + "Format", + "Name", + "Values" + ], + "members":{ + "Format":{ + "shape":"JwtValidationActionAdditionalClaimFormatEnum", + "documentation":"

The format of the claim value.

" + }, + "Name":{ + "shape":"JwtValidationActionAdditionalClaimName", + "documentation":"

The name of the claim. You can't specify exp, iss, nbf, or iat because we validate them by default.

" + }, + "Values":{ + "shape":"JwtValidationActionAdditionalClaimValues", + "documentation":"

The claim value. The maximum size of the list is 10. Each value can be up to 256 characters in length. If the format is space-separated-values, the values can't include spaces.

" + } + }, + "documentation":"

Information about an additional claim to validate.

" + }, + "JwtValidationActionAdditionalClaimFormatEnum":{ + "type":"string", + "enum":[ + "single-string", + "string-array", + "space-separated-values" + ] + }, + "JwtValidationActionAdditionalClaimName":{"type":"string"}, + "JwtValidationActionAdditionalClaimValue":{"type":"string"}, + "JwtValidationActionAdditionalClaimValues":{ + "type":"list", + "member":{"shape":"JwtValidationActionAdditionalClaimValue"} + }, + "JwtValidationActionAdditionalClaims":{ + "type":"list", + "member":{"shape":"JwtValidationActionAdditionalClaim"} + }, + "JwtValidationActionConfig":{ + "type":"structure", + "required":[ + "JwksEndpoint", + "Issuer" + ], + "members":{ + "JwksEndpoint":{ + "shape":"JwtValidationActionJwksEndpoint", + "documentation":"

The JSON Web Key Set (JWKS) endpoint. This endpoint contains JSON Web Keys (JWK) that are used to validate signatures from the provider.

This must be a full URL, including the HTTPS protocol, the domain, and the path. The maximum length is 256 characters.

" + }, + "Issuer":{ + "shape":"JwtValidationActionIssuer", + "documentation":"

The issuer of the JWT. The maximum length is 256 characters.

" + }, + "AdditionalClaims":{ + "shape":"JwtValidationActionAdditionalClaims", + "documentation":"

Additional claims to validate. The maximum size of the list is 10. We validate the exp, iss, nbf, and iat claims by default.

" + } + }, + "documentation":"

Information about a JSON Web Token (JWT) validation action.

" + }, + "JwtValidationActionIssuer":{"type":"string"}, + "JwtValidationActionJwksEndpoint":{"type":"string"}, "LastModifiedTime":{"type":"timestamp"}, "Limit":{ "type":"structure", @@ -4073,7 +4143,7 @@ }, "EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic":{ "shape":"EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum", - "documentation":"

Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink. The default is on.

" + "documentation":"

Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through Amazon Web Services PrivateLink. Applies only if the load balancer has an associated security group. The default is on.

" } } }, @@ -4482,7 +4552,7 @@ }, "DurationSeconds":{ "shape":"TargetGroupStickinessDurationSeconds", - "documentation":"

The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.

" + "documentation":"

[Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.

" } }, "documentation":"

Information about the target group stickiness for a rule.

" @@ -4517,7 +4587,7 @@ }, "Reason":{ "shape":"TargetHealthReasonEnum", - "documentation":"

The reason code.

If the target state is healthy, a reason code is not provided.

If the target state is initial, the reason code can be one of the following values:

If the target state is unhealthy, the reason code can be one of the following values:

If the target state is unused, the reason code can be one of the following values:

If the target state is draining, the reason code can be the following value:

If the target state is unavailable, the reason code can be the following value:

" + "documentation":"

The reason code.

If the target state is healthy, a reason code is not provided.

If the target state is initial, the reason code can be one of the following values:

If the target state is unhealthy, the reason code can be one of the following values:

If the target state is unused, the reason code can be one of the following values:

If the target state is draining, the reason code can be the following value:

If the target state is unavailable, the reason code can be the following value:

" }, "Description":{ "shape":"Description", diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 4e9f7483ebf..38dacdc0328 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 563494cbaed..e46e9f37159 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 5f3b896514d..704737331a4 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml index 9bef6b20d22..47115d0b039 100644 --- a/services/emrcontainers/pom.xml +++ b/services/emrcontainers/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT emrcontainers AWS Java SDK :: Services :: EMR Containers diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml index 8e985dc0416..92e757f4c33 100644 --- a/services/emrserverless/pom.xml +++ b/services/emrserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT emrserverless AWS Java SDK :: Services :: EMR Serverless diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml index 4a0b8eb4a1d..2d18e23e330 100644 --- a/services/entityresolution/pom.xml +++ b/services/entityresolution/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT entityresolution AWS Java SDK :: Services :: Entity Resolution diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 7b1f830d290..ca9005d0d05 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml index 135ff7c0ee6..7364313bf25 100644 --- a/services/evidently/pom.xml +++ b/services/evidently/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT evidently AWS Java SDK :: Services :: Evidently diff --git a/services/evs/pom.xml b/services/evs/pom.xml index 51e76d45d94..e1dde7152c7 100644 --- a/services/evs/pom.xml +++ b/services/evs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT evs AWS Java SDK :: Services :: Evs diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml index 48f07e5e5d3..e78e9bed2cb 100644 --- a/services/finspace/pom.xml +++ b/services/finspace/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT finspace AWS Java SDK :: Services :: Finspace diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml index 53c6a9f6c4a..64aff8ede36 100644 --- a/services/finspacedata/pom.xml +++ b/services/finspacedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT finspacedata AWS Java SDK :: Services :: Finspace Data diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index df0680cb809..777a3ab552e 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fis/pom.xml b/services/fis/pom.xml index 452cf7fb125..891b22ac6e9 100644 --- a/services/fis/pom.xml +++ b/services/fis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT fis AWS Java SDK :: Services :: Fis diff --git a/services/fms/pom.xml b/services/fms/pom.xml index c465a0948b9..5d5565d8252 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c77992b55a7..68793179189 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 67040d3ff72..08c5dc41ac1 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 3ec17bc047c..27e7a8c7ff6 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml index b27f2aee3fe..e05fab130ee 100644 --- a/services/freetier/pom.xml +++ b/services/freetier/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT freetier AWS Java SDK :: Services :: Free Tier diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index af1594dc19f..737cae9a059 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index cffce109305..5b00cd075a4 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml index 4044ac0cfe1..f8aafe02d7b 100644 --- a/services/gameliftstreams/pom.xml +++ b/services/gameliftstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT gameliftstreams AWS Java SDK :: Services :: Game Lift Streams diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml index d0e46855a2c..d575bcc9111 100644 --- a/services/geomaps/pom.xml +++ b/services/geomaps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT geomaps AWS Java SDK :: Services :: Geo Maps diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml index b3b932db5bb..f86266c02d9 100644 --- a/services/geoplaces/pom.xml +++ b/services/geoplaces/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT geoplaces AWS Java SDK :: Services :: Geo Places diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml index f50c4b60c5f..6ad5bdb45c2 100644 --- a/services/georoutes/pom.xml +++ b/services/georoutes/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT georoutes AWS Java SDK :: Services :: Geo Routes diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 00034f75530..c94ba84dc39 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 3c7f9262151..1851d4099e4 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index c4f375cd08b..aada8256e99 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 glue diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml index ece5e0aaf1d..87934b4e30c 100644 --- a/services/grafana/pom.xml +++ b/services/grafana/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT grafana AWS Java SDK :: Services :: Grafana diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index d7b58f799b9..584c0a5eb56 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml index 28752ef72f2..b901970d506 100644 --- a/services/greengrassv2/pom.xml +++ b/services/greengrassv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT greengrassv2 AWS Java SDK :: Services :: Greengrass V2 diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 227b3912c29..51ffec2b879 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index f933d09d9ae..c6eb3130a67 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 4b4d52900bc..266daf62c9b 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml index 1d0b6611f1d..8ac0a1e57db 100644 --- a/services/healthlake/pom.xml +++ b/services/healthlake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT healthlake AWS Java SDK :: Services :: Health Lake diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 55f1862bdf5..932d5fd8a58 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index c62f69b2c81..80f04ec4488 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 43239fb84b0..6fb816bfeff 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 46413048a7d..7ad4550f904 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml index 7e3162a1dcf..fcb1e58dc4d 100644 --- a/services/inspector2/pom.xml +++ b/services/inspector2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT inspector2 AWS Java SDK :: Services :: Inspector2 diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml index 4982f5762df..2d07f182212 100644 --- a/services/inspectorscan/pom.xml +++ b/services/inspectorscan/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT inspectorscan AWS Java SDK :: Services :: Inspector Scan diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml index 23cc2872b0f..287e67592c0 100644 --- a/services/internetmonitor/pom.xml +++ b/services/internetmonitor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT internetmonitor AWS Java SDK :: Services :: Internet Monitor diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml index 6c43d4b6c2c..0caa9732260 100644 --- a/services/invoicing/pom.xml +++ b/services/invoicing/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT invoicing AWS Java SDK :: Services :: Invoicing diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 2ae8ad72c55..6d843b7adc3 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 07e2c408714..93c9abd0f71 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 4ec65b39308..4574bdb00c2 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml index 3510080bcc5..914292bb0de 100644 --- a/services/iotdeviceadvisor/pom.xml +++ b/services/iotdeviceadvisor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotdeviceadvisor AWS Java SDK :: Services :: Iot Device Advisor diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 4727aad89b7..b01a3b607cc 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 2fa5e699536..94a89892881 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml index 9ea8849d817..bf6f91ded52 100644 --- a/services/iotfleetwise/pom.xml +++ b/services/iotfleetwise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotfleetwise AWS Java SDK :: Services :: Io T Fleet Wise diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 4c71e4b78cf..3f9b0f3b73c 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml index 364dc50d42b..493ed4b470f 100644 --- a/services/iotmanagedintegrations/pom.xml +++ b/services/iotmanagedintegrations/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotmanagedintegrations AWS Java SDK :: Services :: IoT Managed Integrations diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index e6da1275e64..0e2cb598e05 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 7b9c1ecf063..c0fd2d26ca2 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d081af47760..10242c0109b 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml index 3700b6d4162..8a381e6d2a2 100644 --- a/services/iottwinmaker/pom.xml +++ b/services/iottwinmaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iottwinmaker AWS Java SDK :: Services :: Io T Twin Maker diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml index 6966b15970d..de572cdc51a 100644 --- a/services/iotwireless/pom.xml +++ b/services/iotwireless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT iotwireless AWS Java SDK :: Services :: IoT Wireless diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index c0e83eeb520..dc7e398f71e 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml index b2f213c760a..890f7268a4e 100644 --- a/services/ivschat/pom.xml +++ b/services/ivschat/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ivschat AWS Java SDK :: Services :: Ivschat diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml index 4cfa5cf9abb..99b1e3001bd 100644 --- a/services/ivsrealtime/pom.xml +++ b/services/ivsrealtime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ivsrealtime AWS Java SDK :: Services :: IVS Real Time diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index aa2bb2a4103..a6ebe63d495 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml index 8c8dfe1dcab..f44066ccd9d 100644 --- a/services/kafkaconnect/pom.xml +++ b/services/kafkaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kafkaconnect AWS Java SDK :: Services :: Kafka Connect diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 7bc42487c61..4fa2233a3ed 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml index 7b0c03cfcb3..8bdbb14d542 100644 --- a/services/kendraranking/pom.xml +++ b/services/kendraranking/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kendraranking AWS Java SDK :: Services :: Kendra Ranking diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml index 10dda2b68c4..3be730ec96f 100644 --- a/services/keyspaces/pom.xml +++ b/services/keyspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT keyspaces AWS Java SDK :: Services :: Keyspaces diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml index 17bd997f700..481a9d3b19c 100644 --- a/services/keyspacesstreams/pom.xml +++ b/services/keyspacesstreams/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT keyspacesstreams AWS Java SDK :: Services :: Keyspaces Streams diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 47aa19ca707..489de8bb1fc 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 4109904f081..a9bdd0666ec 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 57662fb3a36..eb8a591b6c9 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index faf443f57a7..ea1795e6e60 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 302944ba2cc..b5075c65d47 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index ed55ab70815..541f445881f 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 603203dd88e..2e7896e8108 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml index bdf9bb78306..b5989c47e7c 100644 --- a/services/kinesisvideowebrtcstorage/pom.xml +++ b/services/kinesisvideowebrtcstorage/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kinesisvideowebrtcstorage AWS Java SDK :: Services :: Kinesis Video Web RTC Storage diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 854037461a8..97a11d93a30 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index f809cd378b1..9aceddd44b1 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 6e6d1e532a5..b03b10704ea 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml index 3d4ab53ee37..db110f63ad0 100644 --- a/services/launchwizard/pom.xml +++ b/services/launchwizard/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT launchwizard AWS Java SDK :: Services :: Launch Wizard diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 32d3fa1faff..607c8d7ebe0 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml index c45ddda1f30..c68f48a8f80 100644 --- a/services/lexmodelsv2/pom.xml +++ b/services/lexmodelsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lexmodelsv2 AWS Java SDK :: Services :: Lex Models V2 diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index df8f6f3f36a..785e93dc1a3 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml index 4472ecd81ea..d618cd30c5b 100644 --- a/services/lexruntimev2/pom.xml +++ b/services/lexruntimev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lexruntimev2 AWS Java SDK :: Services :: Lex Runtime V2 diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 3404a22a137..601e17e8487 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml index 4ff4a3e7dc3..dc06be49814 100644 --- a/services/licensemanagerlinuxsubscriptions/pom.xml +++ b/services/licensemanagerlinuxsubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT licensemanagerlinuxsubscriptions AWS Java SDK :: Services :: License Manager Linux Subscriptions diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml index a20342eaf4d..20d11316765 100644 --- a/services/licensemanagerusersubscriptions/pom.xml +++ b/services/licensemanagerusersubscriptions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT licensemanagerusersubscriptions AWS Java SDK :: Services :: License Manager User Subscriptions diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index ceeb4de84f5..f2022dfb894 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/location/pom.xml b/services/location/pom.xml index b5ac743acb9..637ad1bb462 100644 --- a/services/location/pom.xml +++ b/services/location/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT location AWS Java SDK :: Services :: Location diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml index 877430dfd40..6b3682ca155 100644 --- a/services/lookoutequipment/pom.xml +++ b/services/lookoutequipment/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT lookoutequipment AWS Java SDK :: Services :: Lookout Equipment diff --git a/services/m2/pom.xml b/services/m2/pom.xml index bffc206871c..46d520cd256 100644 --- a/services/m2/pom.xml +++ b/services/m2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT m2 AWS Java SDK :: Services :: M2 diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index dec5f404577..3fd47c2944f 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 5de184fb80d..5f5a7c53b35 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml index 906ef5aa1ef..2c100fe3b64 100644 --- a/services/mailmanager/pom.xml +++ b/services/mailmanager/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mailmanager AWS Java SDK :: Services :: Mail Manager diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 4c230f09337..33598430ccf 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml index 36839cf46fd..af8b51e753e 100644 --- a/services/managedblockchainquery/pom.xml +++ b/services/managedblockchainquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT managedblockchainquery AWS Java SDK :: Services :: Managed Blockchain Query diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml index 14689775ec8..a5f76d9f839 100644 --- a/services/marketplaceagreement/pom.xml +++ b/services/marketplaceagreement/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplaceagreement AWS Java SDK :: Services :: Marketplace Agreement diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 0f87fe8dd82..befd04434e8 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index ccd9d3cb1b6..9cb9ceecd96 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml index 6c6854c18b6..9884476f430 100644 --- a/services/marketplacedeployment/pom.xml +++ b/services/marketplacedeployment/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplacedeployment AWS Java SDK :: Services :: Marketplace Deployment diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 259e61eef5d..bca5e0de127 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 7aebe6c581a..c126327a27a 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml index d44d38dcafe..8e0e5d99178 100644 --- a/services/marketplacereporting/pom.xml +++ b/services/marketplacereporting/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT marketplacereporting AWS Java SDK :: Services :: Marketplace Reporting diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index e494fd307fc..c944ecb6ad9 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 9830e945054..7f3c193dc64 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index b936eda6a33..e65e1d0ed7f 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 5a4cd559ad1..1e204ae3ca9 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml index d6647926e05..a5d96fbaf46 100644 --- a/services/mediapackagev2/pom.xml +++ b/services/mediapackagev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mediapackagev2 AWS Java SDK :: Services :: Media Package V2 diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index ce935132c4b..d8e963cc3aa 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 65e9ae5bfb3..e543764ee20 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 52386f054d4..a943103b17e 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 4fed797524b..74388ac1618 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml index 0336aa17d50..6d21a225c1f 100644 --- a/services/medicalimaging/pom.xml +++ b/services/medicalimaging/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT medicalimaging AWS Java SDK :: Services :: Medical Imaging diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml index 134dc044ce7..22dea26b6dc 100644 --- a/services/memorydb/pom.xml +++ b/services/memorydb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT memorydb AWS Java SDK :: Services :: Memory DB diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml index e6bee08730d..50c4b03e888 100644 --- a/services/mgn/pom.xml +++ b/services/mgn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mgn AWS Java SDK :: Services :: Mgn diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 84052fff5e1..3f5b1b422cd 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 71257d09fa3..1bc65abe4c6 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml index 2f9bedbbc40..ae248f84e4a 100644 --- a/services/migrationhuborchestrator/pom.xml +++ b/services/migrationhuborchestrator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT migrationhuborchestrator AWS Java SDK :: Services :: Migration Hub Orchestrator diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml index 7eff69d5257..a85773ac32d 100644 --- a/services/migrationhubrefactorspaces/pom.xml +++ b/services/migrationhubrefactorspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT migrationhubrefactorspaces AWS Java SDK :: Services :: Migration Hub Refactor Spaces diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml index 96b51115870..09fb14b2d51 100644 --- a/services/migrationhubstrategy/pom.xml +++ b/services/migrationhubstrategy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT migrationhubstrategy AWS Java SDK :: Services :: Migration Hub Strategy diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml index 488b0e54f14..2a08601c227 100644 --- a/services/mpa/pom.xml +++ b/services/mpa/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mpa AWS Java SDK :: Services :: MPA diff --git a/services/mq/pom.xml b/services/mq/pom.xml index cf03151bcd0..9fa2d6241c4 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 39fd6cc35bc..4f10146e65f 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index b5505f38f74..d9d616b539e 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index a2961f496cb..e3ef5284454 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml index 01f478eb806..843a5bbfd5d 100644 --- a/services/neptunedata/pom.xml +++ b/services/neptunedata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT neptunedata AWS Java SDK :: Services :: Neptunedata diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml index 0fcae1429c6..790eb5d626d 100644 --- a/services/neptunegraph/pom.xml +++ b/services/neptunegraph/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT neptunegraph AWS Java SDK :: Services :: Neptune Graph diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index d8033ba5a23..359d30c7c48 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml index 48e2fad90be..2fc0ba965a2 100644 --- a/services/networkflowmonitor/pom.xml +++ b/services/networkflowmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT networkflowmonitor AWS Java SDK :: Services :: Network Flow Monitor diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 9fa74e17145..70590da2eae 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml index c31da72b8f4..57ede10c5db 100644 --- a/services/networkmonitor/pom.xml +++ b/services/networkmonitor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT networkmonitor AWS Java SDK :: Services :: Network Monitor diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml index 9a9f9c06edb..631bfd16482 100644 --- a/services/notifications/pom.xml +++ b/services/notifications/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT notifications AWS Java SDK :: Services :: Notifications diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml index 4395e714dcf..18ac40e8b01 100644 --- a/services/notificationscontacts/pom.xml +++ b/services/notificationscontacts/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT notificationscontacts AWS Java SDK :: Services :: Notifications Contacts diff --git a/services/oam/pom.xml b/services/oam/pom.xml index 5d0f3448804..63405299222 100644 --- a/services/oam/pom.xml +++ b/services/oam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT oam AWS Java SDK :: Services :: OAM diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml index edcbeb48eea..1f06d32833d 100644 --- a/services/observabilityadmin/pom.xml +++ b/services/observabilityadmin/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT observabilityadmin AWS Java SDK :: Services :: Observability Admin diff --git a/services/odb/pom.xml b/services/odb/pom.xml index 4152de6158d..c413c486161 100644 --- a/services/odb/pom.xml +++ b/services/odb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT odb AWS Java SDK :: Services :: Odb diff --git a/services/omics/pom.xml b/services/omics/pom.xml index 3306e3479db..6c7b47cce1c 100644 --- a/services/omics/pom.xml +++ b/services/omics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT omics AWS Java SDK :: Services :: Omics diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml index a3d950f34ae..2ccbf2966c7 100644 --- a/services/opensearch/pom.xml +++ b/services/opensearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT opensearch AWS Java SDK :: Services :: Open Search diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml index 3b0ece77436..a32cf8b58e5 100644 --- a/services/opensearchserverless/pom.xml +++ b/services/opensearchserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT opensearchserverless AWS Java SDK :: Services :: Open Search Serverless diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index e6e16107a9a..24885ac661a 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/osis/pom.xml b/services/osis/pom.xml index abf87592716..72d577de773 100644 --- a/services/osis/pom.xml +++ b/services/osis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT osis AWS Java SDK :: Services :: OSIS diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index de583ae0ecb..e03f2590511 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml index 78d6f9518da..278aa4a4bf8 100644 --- a/services/panorama/pom.xml +++ b/services/panorama/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT panorama AWS Java SDK :: Services :: Panorama diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml index 5c7725f44c5..27ff42adddb 100644 --- a/services/partnercentralselling/pom.xml +++ b/services/partnercentralselling/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT partnercentralselling AWS Java SDK :: Services :: Partner Central Selling diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml index abe9bf666a7..49a85a8478b 100644 --- a/services/paymentcryptography/pom.xml +++ b/services/paymentcryptography/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT paymentcryptography AWS Java SDK :: Services :: Payment Cryptography diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml index a2afb478f95..5b6ce712293 100644 --- a/services/paymentcryptographydata/pom.xml +++ b/services/paymentcryptographydata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT paymentcryptographydata AWS Java SDK :: Services :: Payment Cryptography Data diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml index 7bb44e17e18..e5e6f433dc3 100644 --- a/services/pcaconnectorad/pom.xml +++ b/services/pcaconnectorad/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pcaconnectorad AWS Java SDK :: Services :: Pca Connector Ad diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml index 8842b5b84ad..097b591821f 100644 --- a/services/pcaconnectorscep/pom.xml +++ b/services/pcaconnectorscep/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pcaconnectorscep AWS Java SDK :: Services :: Pca Connector Scep diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml index 5f2016eb96d..ac289a0d600 100644 --- a/services/pcs/pom.xml +++ b/services/pcs/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pcs AWS Java SDK :: Services :: PCS diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 09bd4a08dfe..d0888fefd38 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index d6f66b2077e..a885012bbee 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index fd7e6187b44..890cd467f01 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 45c4dd3d539..8dd34433fdb 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 533f37b7949..09005f09fd1 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 37fc7deb696..487047e86d4 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 2022d6a81fa..ec0c50f45d0 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml index 74a55c030cd..3b7f20b459f 100644 --- a/services/pinpointsmsvoicev2/pom.xml +++ b/services/pinpointsmsvoicev2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pinpointsmsvoicev2 AWS Java SDK :: Services :: Pinpoint SMS Voice V2 diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml index 3eb1ffa19d8..9d0402f20e4 100644 --- a/services/pipes/pom.xml +++ b/services/pipes/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT pipes AWS Java SDK :: Services :: Pipes diff --git a/services/polly/pom.xml b/services/polly/pom.xml index d5845f55641..306eb294f79 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index c998422da29..011866914a9 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index e14348b4eec..96675b7332d 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 pricing diff --git a/services/proton/pom.xml b/services/proton/pom.xml index 7ec174e8dd1..275a39101c8 100644 --- a/services/proton/pom.xml +++ b/services/proton/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT proton AWS Java SDK :: Services :: Proton diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml index 3ad2b5e0382..ea2678f0762 100644 --- a/services/qapps/pom.xml +++ b/services/qapps/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT qapps AWS Java SDK :: Services :: Q Apps diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml index bb05a5e2d68..282a9f31699 100644 --- a/services/qbusiness/pom.xml +++ b/services/qbusiness/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT qbusiness AWS Java SDK :: Services :: Q Business diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml index 73097ddf4f0..bd79dc566d2 100644 --- a/services/qconnect/pom.xml +++ b/services/qconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT qconnect AWS Java SDK :: Services :: Q Connect diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 90ec65b5125..4c07be146ff 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 79884be005f..37b3df0a7dc 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml index 422dccea892..e7d856bba8e 100644 --- a/services/rbin/pom.xml +++ b/services/rbin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rbin AWS Java SDK :: Services :: Rbin diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 2d7449b9525..84f0ac04809 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index b62a9c08d26..074b8dd8fa0 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 81c986c255e..3d97a8eaa77 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshift/src/main/resources/codegen-resources/service-2.json b/services/redshift/src/main/resources/codegen-resources/service-2.json index 345bf9db2b2..b2c86870d7e 100644 --- a/services/redshift/src/main/resources/codegen-resources/service-2.json +++ b/services/redshift/src/main/resources/codegen-resources/service-2.json @@ -1780,6 +1780,25 @@ ], "documentation":"

Returns a database user name and temporary password with temporary authorization to log in to an Amazon Redshift database. The database user is mapped 1:1 to the source Identity and Access Management (IAM) identity. For more information about IAM identities, see IAM Identities (users, user groups, and roles) in the Amazon Web Services Identity and Access Management User Guide.

The Identity and Access Management (IAM) identity that runs this operation must have an IAM policy attached that allows access to all necessary actions and resources. For more information about permissions, see Using identity-based policies (IAM policies) in the Amazon Redshift Cluster Management Guide.

" }, + "GetIdentityCenterAuthToken":{ + "name":"GetIdentityCenterAuthToken", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetIdentityCenterAuthTokenRequest"}, + "output":{ + "shape":"GetIdentityCenterAuthTokenResponse", + "resultWrapper":"GetIdentityCenterAuthTokenResult" + }, + "errors":[ + {"shape":"ClusterNotFoundFault"}, + {"shape":"InvalidClusterStateFault"}, + {"shape":"UnsupportedOperationFault"}, + {"shape":"RedshiftInvalidParameterFault"} + ], + "documentation":"

Generates an encrypted authentication token that propagates the caller's Amazon Web Services IAM Identity Center identity to Amazon Redshift clusters. This API extracts the Amazon Web Services IAM Identity Center identity from enhanced credentials and creates a secure token that Amazon Redshift drivers can use for authentication.

The token is encrypted using Key Management Service (KMS) and can only be decrypted by the specified Amazon Redshift clusters. The token contains the caller's Amazon Web Services IAM Identity Center identity information and is valid for a limited time period.

This API is exclusively for use with Amazon Web Services IAM Identity Center enhanced credentials. If the caller is not using enhanced credentials with embedded Amazon Web Services IAM Identity Center identity, the API will return an error.

" + }, "GetReservedNodeExchangeConfigurationOptions":{ "name":"GetReservedNodeExchangeConfigurationOptions", "http":{ @@ -3543,6 +3562,13 @@ "locationName":"ClusterIamRole" } }, + "ClusterIdentifierList":{ + "type":"list", + "member":{ + "shape":"String", + "locationName":"ClusterIdentifier" + } + }, "ClusterList":{ "type":"list", "member":{ @@ -7215,6 +7241,31 @@ } } }, + "GetIdentityCenterAuthTokenRequest":{ + "type":"structure", + "required":["ClusterIds"], + "members":{ + "ClusterIds":{ + "shape":"ClusterIdentifierList", + "documentation":"

A list of cluster identifiers that the generated token can be used with. The token will be scoped to only allow authentication to the specified clusters.

Constraints:

" + } + }, + "documentation":"

The request parameters for GetIdentityCenterAuthToken.

" + }, + "GetIdentityCenterAuthTokenResponse":{ + "type":"structure", + "members":{ + "Token":{ + "shape":"SensitiveString", + "documentation":"

The encrypted authentication token containing the caller's Amazon Web Services IAM Identity Center identity information. This token is encrypted using Key Management Service and can only be decrypted by the specified Amazon Redshift clusters. Use this token with Amazon Redshift drivers to authenticate using your Amazon Web Services IAM Identity Center identity.

" + }, + "ExpirationTime":{ + "shape":"TStamp", + "documentation":"

The time (UTC) when the token expires. After this timestamp, the token will no longer be valid for authentication.

" + } + }, + "documentation":"

The response from GetIdentityCenterAuthToken containing the encrypted authentication token and expiration time.

" + }, "GetReservedNodeExchangeConfigurationOptionsInputMessage":{ "type":"structure", "required":["ActionType"], @@ -9709,6 +9760,17 @@ }, "exception":true }, + "RedshiftInvalidParameterFault":{ + "type":"structure", + "members":{}, + "documentation":"

The request contains one or more invalid parameters. This error occurs when required parameters are missing, parameter values are outside acceptable ranges, or parameter formats are incorrect.

", + "error":{ + "code":"RedshiftInvalidParameter", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, "ReferenceLink":{ "type":"structure", "members":{ diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index f7e01304ef5..4775c9fde99 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml index ed82374d151..c6c5c275d3a 100644 --- a/services/redshiftserverless/pom.xml +++ b/services/redshiftserverless/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT redshiftserverless AWS Java SDK :: Services :: Redshift Serverless diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index a2a9f44045d..9fbfd6b8eeb 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml index ca9ed890b7a..06a5cfd17e3 100644 --- a/services/repostspace/pom.xml +++ b/services/repostspace/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT repostspace AWS Java SDK :: Services :: Repostspace diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml index 5b07bfa18ad..6688bbffa65 100644 --- a/services/resiliencehub/pom.xml +++ b/services/resiliencehub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT resiliencehub AWS Java SDK :: Services :: Resiliencehub diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml index 7b9d03d503d..4b35fa7b3e5 100644 --- a/services/resourceexplorer2/pom.xml +++ b/services/resourceexplorer2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT resourceexplorer2 AWS Java SDK :: Services :: Resource Explorer 2 diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index d5efcc113ba..7c6057735ba 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 2a26c4e025e..253372035ab 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml index a62546b0846..c7ac6cd4b3f 100644 --- a/services/rolesanywhere/pom.xml +++ b/services/rolesanywhere/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rolesanywhere AWS Java SDK :: Services :: Roles Anywhere diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 200e644644e..a9c2052a941 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 70243fe90df..d0ff95836de 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml index b37b42216dc..f81d20f6821 100644 --- a/services/route53profiles/pom.xml +++ b/services/route53profiles/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53profiles AWS Java SDK :: Services :: Route53 Profiles diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml index 534f50cd8d7..a1f969427e8 100644 --- a/services/route53recoverycluster/pom.xml +++ b/services/route53recoverycluster/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53recoverycluster AWS Java SDK :: Services :: Route53 Recovery Cluster diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml index 7c7a0096628..f1af951bd7d 100644 --- a/services/route53recoverycontrolconfig/pom.xml +++ b/services/route53recoverycontrolconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53recoverycontrolconfig AWS Java SDK :: Services :: Route53 Recovery Control Config diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml index 9b610d67b45..9c87dd1c193 100644 --- a/services/route53recoveryreadiness/pom.xml +++ b/services/route53recoveryreadiness/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53recoveryreadiness AWS Java SDK :: Services :: Route53 Recovery Readiness diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 6c6edfeb9a7..1eb1a67f6ca 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/rtbfabric/pom.xml b/services/rtbfabric/pom.xml index e7b94054826..f482997c512 100644 --- a/services/rtbfabric/pom.xml +++ b/services/rtbfabric/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rtbfabric AWS Java SDK :: Services :: RTB Fabric diff --git a/services/rum/pom.xml b/services/rum/pom.xml index 44fc53be718..5cf58b4cbfe 100644 --- a/services/rum/pom.xml +++ b/services/rum/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT rum AWS Java SDK :: Services :: RUM diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f984ab4fa29..2039b9fe510 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 727ee1fccde..ac4a4f0bcec 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 7a8ac144e0f..edbd1298585 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml index 7084db106b3..1b0da413e07 100644 --- a/services/s3tables/pom.xml +++ b/services/s3tables/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT s3tables AWS Java SDK :: Services :: S3 Tables diff --git a/services/s3tables/src/main/resources/codegen-resources/service-2.json b/services/s3tables/src/main/resources/codegen-resources/service-2.json index 92b6f30305a..096dd2140c6 100644 --- a/services/s3tables/src/main/resources/codegen-resources/service-2.json +++ b/services/s3tables/src/main/resources/codegen-resources/service-2.json @@ -146,6 +146,25 @@ "documentation":"

Deletes the encryption configuration for a table bucket.

Permissions

You must have the s3tables:DeleteTableBucketEncryption permission to use this operation.

", "idempotent":true }, + "DeleteTableBucketMetricsConfiguration":{ + "name":"DeleteTableBucketMetricsConfiguration", + "http":{ + "method":"DELETE", + "requestUri":"/buckets/{tableBucketARN}/metrics", + "responseCode":204 + }, + "input":{"shape":"DeleteTableBucketMetricsConfigurationRequest"}, + "errors":[ + {"shape":"InternalServerErrorException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ConflictException"}, + {"shape":"BadRequestException"} + ], + "documentation":"

Deletes the metrics configuration for a table bucket.

Permissions

You must have the s3tables:DeleteTableBucketMetricsConfiguration permission to use this operation.

", + "idempotent":true + }, "DeleteTableBucketPolicy":{ "name":"DeleteTableBucketPolicy", "http":{ @@ -287,6 +306,26 @@ "documentation":"

Gets details about a maintenance configuration for a given table bucket. For more information, see Amazon S3 table bucket maintenance in the Amazon Simple Storage Service User Guide.

Permissions

You must have the s3tables:GetTableBucketMaintenanceConfiguration permission to use this operation.

", "readonly":true }, + "GetTableBucketMetricsConfiguration":{ + "name":"GetTableBucketMetricsConfiguration", + "http":{ + "method":"GET", + "requestUri":"/buckets/{tableBucketARN}/metrics", + "responseCode":200 + }, + "input":{"shape":"GetTableBucketMetricsConfigurationRequest"}, + "output":{"shape":"GetTableBucketMetricsConfigurationResponse"}, + "errors":[ + {"shape":"InternalServerErrorException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ConflictException"}, + {"shape":"BadRequestException"} + ], + "documentation":"

Gets the metrics configuration for a table bucket.

Permissions

You must have the s3tables:GetTableBucketMetricsConfiguration permission to use this operation.

", + "readonly":true + }, "GetTableBucketPolicy":{ "name":"GetTableBucketPolicy", "http":{ @@ -526,6 +565,25 @@ ], "documentation":"

Creates a new maintenance configuration or replaces an existing maintenance configuration for a table bucket. For more information, see Amazon S3 table bucket maintenance in the Amazon Simple Storage Service User Guide.

Permissions

You must have the s3tables:PutTableBucketMaintenanceConfiguration permission to use this operation.

" }, + "PutTableBucketMetricsConfiguration":{ + "name":"PutTableBucketMetricsConfiguration", + "http":{ + "method":"PUT", + "requestUri":"/buckets/{tableBucketARN}/metrics", + "responseCode":204 + }, + "input":{"shape":"PutTableBucketMetricsConfigurationRequest"}, + "errors":[ + {"shape":"InternalServerErrorException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ConflictException"}, + {"shape":"BadRequestException"} + ], + "documentation":"

Sets the metrics configuration for a table bucket.

Permissions

You must have the s3tables:PutTableBucketMetricsConfiguration permission to use this operation.

", + "idempotent":true + }, "PutTableBucketPolicy":{ "name":"PutTableBucketPolicy", "http":{ @@ -870,6 +928,18 @@ } } }, + "DeleteTableBucketMetricsConfigurationRequest":{ + "type":"structure", + "required":["tableBucketARN"], + "members":{ + "tableBucketARN":{ + "shape":"TableBucketARN", + "documentation":"

The Amazon Resource Name (ARN) of the table bucket.

", + "location":"uri", + "locationName":"tableBucketARN" + } + } + }, "DeleteTableBucketPolicyRequest":{ "type":"structure", "required":["tableBucketARN"], @@ -1097,6 +1167,32 @@ } } }, + "GetTableBucketMetricsConfigurationRequest":{ + "type":"structure", + "required":["tableBucketARN"], + "members":{ + "tableBucketARN":{ + "shape":"TableBucketARN", + "documentation":"

The Amazon Resource Name (ARN) of the table bucket.

", + "location":"uri", + "locationName":"tableBucketARN" + } + } + }, + "GetTableBucketMetricsConfigurationResponse":{ + "type":"structure", + "required":["tableBucketARN"], + "members":{ + "tableBucketARN":{ + "shape":"TableBucketARN", + "documentation":"

The Amazon Resource Name (ARN) of the table bucket.

" + }, + "id":{ + "shape":"String", + "documentation":"

The unique identifier of the metrics configuration.

" + } + } + }, "GetTableBucketPolicyRequest":{ "type":"structure", "required":["tableBucketARN"], @@ -1911,6 +2007,18 @@ } } }, + "PutTableBucketMetricsConfigurationRequest":{ + "type":"structure", + "required":["tableBucketARN"], + "members":{ + "tableBucketARN":{ + "shape":"TableBucketARN", + "documentation":"

The Amazon Resource Name (ARN) of the table bucket.

", + "location":"uri", + "locationName":"tableBucketARN" + } + } + }, "PutTableBucketPolicyRequest":{ "type":"structure", "required":[ diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml index 9167d81c9e4..ccfa1fa5386 100644 --- a/services/s3vectors/pom.xml +++ b/services/s3vectors/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT s3vectors AWS Java SDK :: Services :: S3 Vectors diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index cff26a84b80..ce12f2d4457 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemaker/src/main/resources/codegen-resources/service-2.json b/services/sagemaker/src/main/resources/codegen-resources/service-2.json index df871a7abfc..4461e9aaa7c 100644 --- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json +++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json @@ -4974,7 +4974,7 @@ "type":"string", "max":2048, "min":1, - "pattern":"arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:algorithm/[\\S]{1,2048}" + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:algorithm/[\\S]{1,2048}" }, "AlgorithmImage":{ "type":"string", @@ -8850,6 +8850,7 @@ "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.p6-b200.48xlarge", + "ml.trn2.3xlarge", "ml.trn2.48xlarge", "ml.c6i.large", "ml.c6i.xlarge", @@ -9470,7 +9471,7 @@ "type":"string", "max":2048, "min":1, - "pattern":"arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:code-repository/[\\S]{1,2048}" + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:code-repository/[\\S]{1,2048}" }, "CodeRepositoryContains":{ "type":"string", @@ -13039,8 +13040,7 @@ "required":[ "TrainingJobName", "RoleArn", - "OutputDataConfig", - "StoppingCondition" + "OutputDataConfig" ], "members":{ "TrainingJobName":{ @@ -19342,8 +19342,6 @@ "ModelArtifacts", "TrainingJobStatus", "SecondaryStatus", - "AlgorithmSpecification", - "ResourceConfig", "StoppingCondition", "CreationTime" ], @@ -31204,7 +31202,7 @@ "type":"string", "max":258, "min":20, - "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:ml-reservation/.*" + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z0-9\\-]{1,14}/.*" }, "MlTools":{ "type":"string", @@ -32322,7 +32320,7 @@ "type":"string", "max":2048, "min":1, - "pattern":"arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:model-package/[\\S]{1,2048}" + "pattern":"arn:arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:model-package/[\\S]{1,2048}" }, "ModelPackageArnList":{ "type":"list", @@ -32332,7 +32330,6 @@ }, "ModelPackageContainerDefinition":{ "type":"structure", - "required":["Image"], "members":{ "ContainerHostname":{ "shape":"ContainerHostname", @@ -32436,7 +32433,7 @@ "type":"string", "max":2048, "min":1, - "pattern":"arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:model-package-group/[\\S]{1,2048}" + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:model-package-group/[\\S]{1,2048}" }, "ModelPackageGroupSortBy":{ "type":"string", @@ -37099,7 +37096,7 @@ "type":"string", "max":2048, "min":1, - "pattern":"arn:aws(-cn|-us-gov|-iso-f)?:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:project/[\\S]{1,2048}" + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]{9,16}:[0-9]{12}:project/[\\S]{1,2048}" }, "ProjectEntityName":{ "type":"string", diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index e1f6e835b9e..2264cbfd215 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml index a294fb87a3f..d483c1cb0a6 100644 --- a/services/sagemakeredge/pom.xml +++ b/services/sagemakeredge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sagemakeredge AWS Java SDK :: Services :: Sagemaker Edge diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index afde734823b..521f2a4a395 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml index 2212f237daa..04b13da60db 100644 --- a/services/sagemakergeospatial/pom.xml +++ b/services/sagemakergeospatial/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sagemakergeospatial AWS Java SDK :: Services :: Sage Maker Geospatial diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml index 1018f7bbd66..c14e1cc1b73 100644 --- a/services/sagemakermetrics/pom.xml +++ b/services/sagemakermetrics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sagemakermetrics AWS Java SDK :: Services :: Sage Maker Metrics diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index bbb28e12eac..1f9d62d2cc5 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 059c9863406..b87ec6206a9 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml index 25ba2795381..f2ce64104cf 100644 --- a/services/scheduler/pom.xml +++ b/services/scheduler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT scheduler AWS Java SDK :: Services :: Scheduler diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index fd28916f60f..3fee9f0fe58 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index af96a7d97a6..0adafbfc3f2 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 61519ff05d3..d5b3b24d936 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml index 6c7ea5e9def..b7a84008e35 100644 --- a/services/securityir/pom.xml +++ b/services/securityir/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT securityir AWS Java SDK :: Services :: Security IR diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml index 233a98a399f..f88e927837f 100644 --- a/services/securitylake/pom.xml +++ b/services/securitylake/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT securitylake AWS Java SDK :: Services :: Security Lake diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index d338a5acbff..99fb71d8f95 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 04e2eaf6d72..19662314956 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 990c10af38c..be198893b16 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 65aab7dc90b..8df477de52e 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 8811e19bbbb..c525eb64d7a 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index a0a596d9942..d7e58117962 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 313db9bf082..533a0c61c45 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 845dc3abdb0..95967d7521d 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index c954d033f89..378e08cc5d9 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index d4fe6abe424..7c47d7d4f5b 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml index 71f998335cc..76f01d36b17 100644 --- a/services/simspaceweaver/pom.xml +++ b/services/simspaceweaver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT simspaceweaver AWS Java SDK :: Services :: Sim Space Weaver diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 382bd4ccb55..74fb0ea4531 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml index 66a9e4f121f..6e55feaec75 100644 --- a/services/snowdevicemanagement/pom.xml +++ b/services/snowdevicemanagement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT snowdevicemanagement AWS Java SDK :: Services :: Snow Device Management diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 4324a663d28..94ed5c03c00 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml index 0ae53038081..e8fe8434d0d 100644 --- a/services/socialmessaging/pom.xml +++ b/services/socialmessaging/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT socialmessaging AWS Java SDK :: Services :: Social Messaging diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b910a756397..89ebfb7c7f5 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 9c2eb49b7b3..65e2d3fa795 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml index e3f10ac9561..923aad66863 100644 --- a/services/ssmcontacts/pom.xml +++ b/services/ssmcontacts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssmcontacts AWS Java SDK :: Services :: SSM Contacts diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml index 28560dfe4e2..190cbd8043c 100644 --- a/services/ssmguiconnect/pom.xml +++ b/services/ssmguiconnect/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssmguiconnect AWS Java SDK :: Services :: SSM Gui Connect diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml index 1ecbfefeddd..47687dc235a 100644 --- a/services/ssmincidents/pom.xml +++ b/services/ssmincidents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssmincidents AWS Java SDK :: Services :: SSM Incidents diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml index d76a458156b..2be35962a92 100644 --- a/services/ssmquicksetup/pom.xml +++ b/services/ssmquicksetup/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssmquicksetup AWS Java SDK :: Services :: SSM Quick Setup diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml index b563ad8591c..709cc4d1f19 100644 --- a/services/ssmsap/pom.xml +++ b/services/ssmsap/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssmsap AWS Java SDK :: Services :: Ssm Sap diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 910b69a303a..3df5a8c8ca3 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 359be75da25..18cd925a245 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 1940133d893..80c907091a6 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index d7e6a117ab3..cbedbc876ed 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 1541f1a035d..8a67181dffa 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml index 78461c406bb..bc6cec8d68b 100644 --- a/services/supplychain/pom.xml +++ b/services/supplychain/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT supplychain AWS Java SDK :: Services :: Supply Chain diff --git a/services/support/pom.xml b/services/support/pom.xml index 51bfe3575a4..de196b2d10e 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml index d901642d9d7..82927c06c98 100644 --- a/services/supportapp/pom.xml +++ b/services/supportapp/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT supportapp AWS Java SDK :: Services :: Support App diff --git a/services/swf/pom.xml b/services/swf/pom.xml index ac454447d85..b4463d23643 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index bc9368ce690..e03fc093b21 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml index 7eb5ffbc414..7e7cb4ab7ae 100644 --- a/services/taxsettings/pom.xml +++ b/services/taxsettings/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT taxsettings AWS Java SDK :: Services :: Tax Settings diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 067a6ce4b78..500fb2fcf14 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml index f0d04c2b6d1..d725a82df4f 100644 --- a/services/timestreaminfluxdb/pom.xml +++ b/services/timestreaminfluxdb/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT timestreaminfluxdb AWS Java SDK :: Services :: Timestream Influx DB diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 3b23db176bc..a76fcbd0f9f 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 303d2a55ffd..9f5afaa5af1 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml index 977a108b790..58bdf04441f 100644 --- a/services/tnb/pom.xml +++ b/services/tnb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT tnb AWS Java SDK :: Services :: Tnb diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index fa0f8de0fbf..73c4224caba 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index bd1790bdc24..b478ccfdaa2 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 34afa0b120c..dba1500a4b4 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 91846e2f200..be2fa7d3dcc 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 translate diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml index 3add412af4b..28efcb22612 100644 --- a/services/trustedadvisor/pom.xml +++ b/services/trustedadvisor/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT trustedadvisor AWS Java SDK :: Services :: Trusted Advisor diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml index 3e0af01e7c2..c1c8ffb3955 100644 --- a/services/verifiedpermissions/pom.xml +++ b/services/verifiedpermissions/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT verifiedpermissions AWS Java SDK :: Services :: Verified Permissions diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml index bb00f5ea64c..9d3f7a518ef 100644 --- a/services/voiceid/pom.xml +++ b/services/voiceid/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT voiceid AWS Java SDK :: Services :: Voice ID diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml index cdddfcdbc83..b0b2e8fca9b 100644 --- a/services/vpclattice/pom.xml +++ b/services/vpclattice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT vpclattice AWS Java SDK :: Services :: VPC Lattice diff --git a/services/waf/pom.xml b/services/waf/pom.xml index bedd0796870..9be5219b7a5 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 1776b994994..77c5da3853c 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml index af6d4e85282..00625aea69d 100644 --- a/services/wellarchitected/pom.xml +++ b/services/wellarchitected/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT wellarchitected AWS Java SDK :: Services :: Well Architected diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml index b0ecca266cc..47477fc4aac 100644 --- a/services/wisdom/pom.xml +++ b/services/wisdom/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT wisdom AWS Java SDK :: Services :: Wisdom diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index b825a0b1c01..b3cce8db918 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index bb5726f13de..329e3bc1230 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index d38b9578713..ee9a333581a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index e9a09f332d7..56c895cd091 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml index be5efc3ffc6..4507b457a1d 100644 --- a/services/workspacesinstances/pom.xml +++ b/services/workspacesinstances/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT workspacesinstances AWS Java SDK :: Services :: Workspaces Instances diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml index 75b54a0b13e..f58e5d5cf26 100644 --- a/services/workspacesthinclient/pom.xml +++ b/services/workspacesthinclient/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT workspacesthinclient AWS Java SDK :: Services :: Work Spaces Thin Client diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml index 302fdcd1270..0d029e3595a 100644 --- a/services/workspacesweb/pom.xml +++ b/services/workspacesweb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT workspacesweb AWS Java SDK :: Services :: Work Spaces Web diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 70bdb1dd971..047f1d8768a 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml index 53246756b81..88f1bd1403d 100644 --- a/test/architecture-tests/pom.xml +++ b/test/architecture-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml index 3281b75e4e0..c8ee0818943 100644 --- a/test/auth-tests/pom.xml +++ b/test/auth-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml index 6b530e8f265..d25710e5a59 100644 --- a/test/bundle-logging-bridge-binding-test/pom.xml +++ b/test/bundle-logging-bridge-binding-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml index a8506afca8f..67dea8fc9de 100644 --- a/test/bundle-shading-tests/pom.xml +++ b/test/bundle-shading-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 3c6a0e7e4ff..755202ad2cb 100644 --- a/test/codegen-generated-classes-test/pom.xml +++ b/test/codegen-generated-classes-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml index cfa01a2bcbf..fdff2bac81b 100644 --- a/test/crt-unavailable-tests/pom.xml +++ b/test/crt-unavailable-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml index 9c5be443701..b6e4ae91ed0 100644 --- a/test/http-client-benchmarks/pom.xml +++ b/test/http-client-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 13bb19260cc..8e44e8174db 100644 --- a/test/http-client-tests/pom.xml +++ b/test/http-client-tests/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 79b41e935c2..70f227124f2 100644 --- a/test/module-path-tests/pom.xml +++ b/test/module-path-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml index 3524c5f29c9..4401132cfa5 100644 --- a/test/old-client-version-compatibility-test/pom.xml +++ b/test/old-client-version-compatibility-test/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 0157d8288c6..d1ef02e9799 100644 --- a/test/protocol-tests-core/pom.xml +++ b/test/protocol-tests-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 19538ce41a6..3440d8c70e0 100644 --- a/test/protocol-tests/pom.xml +++ b/test/protocol-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml index 8eb3012f8fb..e315d5d60f4 100644 --- a/test/region-testing/pom.xml +++ b/test/region-testing/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml index dca0ed32c97..df72a316581 100644 --- a/test/ruleset-testing-core/pom.xml +++ b/test/ruleset-testing-core/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml index ac54f2cf7d5..df64f1f31eb 100644 --- a/test/s3-benchmarks/pom.xml +++ b/test/s3-benchmarks/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml index 1dd3a326bf8..b46904dfc85 100644 --- a/test/s3-tests/pom.xml +++ b/test/s3-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 2e7d272223a..56984ec285e 100644 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml index e5700624565..80e6bfcd273 100644 --- a/test/sdk-native-image-test/pom.xml +++ b/test/sdk-native-image-test/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 9e41e081edc..eeebfb3c6f2 100644 --- a/test/service-test-utils/pom.xml +++ b/test/service-test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 51d0921c19c..0573052fad9 100644 --- a/test/stability-tests/pom.xml +++ b/test/stability-tests/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index bc622d239cf..933ac282f18 100644 --- a/test/test-utils/pom.xml +++ b/test/test-utils/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 16001a3784c..8a5f9380ca7 100644 --- a/test/tests-coverage-reporting/pom.xml +++ b/test/tests-coverage-reporting/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml index 5f12b58583e..b854f999f91 100644 --- a/test/v2-migration-tests/pom.xml +++ b/test/v2-migration-tests/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../.. diff --git a/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenNoCompileTest.java b/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenNoCompileTest.java index f4c50969c9c..62c717b31ee 100644 --- a/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenNoCompileTest.java +++ b/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenNoCompileTest.java @@ -15,6 +15,8 @@ package software.amazon.awssdk.v2migrationtests; +import static software.amazon.awssdk.v2migrationtests.TestUtils.assertTwoDirectoriesHaveSameStructure; +import static software.amazon.awssdk.v2migrationtests.TestUtils.normalizeImports; import static software.amazon.awssdk.v2migrationtests.TestUtils.replaceVersion; import java.io.File; @@ -50,6 +52,8 @@ static void setUp() throws IOException { @Test @EnabledIf("versionAvailable") void mavenProject_shouldConvert() throws IOException { - verifyTransformation(); + runTransformation(); + normalizeImports(mavenActual); + assertTwoDirectoriesHaveSameStructure(mavenActual, mavenExpected); } } diff --git a/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenTestBase.java b/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenTestBase.java index a859c879f63..2ef55122f5d 100644 --- a/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenTestBase.java +++ b/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/MavenTestBase.java @@ -47,7 +47,7 @@ protected static void deleteTempDirectories() throws IOException { FileUtils.deleteDirectory(mavenExpected.toFile()); } - protected static void verifyTransformation() throws IOException { + protected static void runTransformation() throws IOException { String recipeCmd = "-Drewrite.activeRecipes=software.amazon.awssdk.v2migration.AwsSdkJavaV1ToV2"; List rewriteArgs = new ArrayList<>(); // pin version since updates have broken tests @@ -57,6 +57,10 @@ protected static void verifyTransformation() throws IOException { run(mavenActual, rewriteArgs.toArray(new String[0])); FileUtils.deleteDirectory(mavenActual.resolve("target").toFile()); + } + + protected static void verifyTransformation() throws IOException { + runTransformation(); assertTwoDirectoriesHaveSameStructure(mavenActual, mavenExpected); } diff --git a/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/TestUtils.java b/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/TestUtils.java index 601f18f005b..1896de3be2f 100644 --- a/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/TestUtils.java +++ b/test/v2-migration-tests/src/test/java/software/amazon/awssdk/v2migrationtests/TestUtils.java @@ -20,9 +20,8 @@ import java.io.IOException; import java.io.InputStream; import java.io.UncheckedIOException; -import java.net.HttpURLConnection; -import java.net.Proxy; -import java.net.URI; +import java.util.ArrayList; +import java.util.Collections; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; @@ -129,6 +128,45 @@ public static String toFileTreeString(Path root) { return sb.toString(); } + public static void normalizeImports(Path directory) throws IOException { + try (Stream paths = Files.walk(directory)) { + paths.filter(p -> p.toString().endsWith(".java")) + .forEach(TestUtils::normalizeFileImports); + } + } + + private static void normalizeFileImports(Path file) { + try { + List lines = Files.readAllLines(file); + int importStart = -1; + int importEnd = -1; + List imports = new ArrayList<>(); + + for (int i = 0; i < lines.size(); i++) { + String line = lines.get(i); + if (line.startsWith("import ")) { + if (importStart == -1) { + importStart = i; + } + importEnd = i; + imports.add(line); + } else if (importStart != -1 && line.startsWith("public class ")) { + break; + } + } + + if (importStart != -1) { + Collections.sort(imports); + List result = new ArrayList<>(lines.subList(0, importStart)); + result.addAll(imports); + result.addAll(lines.subList(importEnd + 1, lines.size())); + Files.write(file, result); + } + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + public static Result run(Path dir, String... args) { ProcessBuilder processBuilder = new ProcessBuilder(args); processBuilder.redirectErrorStream(true); diff --git a/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3EnDateTime.java b/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3EnDateTime.java index ecab91a6b76..7f8e1f98fbd 100644 --- a/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3EnDateTime.java +++ b/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3EnDateTime.java @@ -14,11 +14,11 @@ */ package foo.bar; +import org.joda.time.DateTime; +import software.amazon.awssdk.eventnotifications.s3.model.GlacierEventData; +import software.amazon.awssdk.eventnotifications.s3.model.RestoreEventData; import software.amazon.awssdk.eventnotifications.s3.model.S3EventNotification; import software.amazon.awssdk.eventnotifications.s3.model.S3EventNotificationRecord; -import software.amazon.awssdk.eventnotifications.s3.model.RestoreEventData; -import software.amazon.awssdk.eventnotifications.s3.model.GlacierEventData; -import org.joda.time.DateTime; public class S3EnDateTime { @@ -37,4 +37,4 @@ public void parseEvent(String jsonInput) { } } -} \ No newline at end of file +} diff --git a/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3Transforms.java b/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3Transforms.java index e2bd389664d..2b20f4b9270 100644 --- a/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3Transforms.java +++ b/test/v2-migration-tests/src/test/resources/software/amazon/awssdk/v2migrationtests/maven-nocompile/after/src/main/java/foo/bar/S3Transforms.java @@ -18,6 +18,10 @@ import com.amazonaws.HttpMethod; import com.amazonaws.services.s3.model.SSEAwsKeyManagementParams; import com.amazonaws.services.s3.model.SSECustomerKey; +import java.io.ByteArrayInputStream; +import java.io.InputStream; +import java.net.URL; +import java.util.Date; import software.amazon.awssdk.core.async.AsyncRequestBody; import software.amazon.awssdk.services.s3.S3Client; import software.amazon.awssdk.services.s3.model.AccessControlPolicy; @@ -30,11 +34,6 @@ import software.amazon.awssdk.transfer.s3.S3TransferManager; import software.amazon.awssdk.transfer.s3.model.UploadRequest; -import java.io.ByteArrayInputStream; -import java.io.InputStream; -import java.net.URL; -import java.util.Date; - public class S3Transforms { S3Client s3; diff --git a/third-party/pom.xml b/third-party/pom.xml index 73c45c54913..20b3beb9e1e 100644 --- a/third-party/pom.xml +++ b/third-party/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT third-party diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml index fbaaa7bb167..c551b1156dc 100644 --- a/third-party/third-party-jackson-core/pom.xml +++ b/third-party/third-party-jackson-core/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml index 36f746f9c6c..8cebfbda20d 100644 --- a/third-party/third-party-jackson-dataformat-cbor/pom.xml +++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml index 2d15291701a..35aa84f5913 100644 --- a/third-party/third-party-slf4j-api/pom.xml +++ b/third-party/third-party-slf4j-api/pom.xml @@ -20,7 +20,7 @@ third-party software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml index 437707ff2f4..3808e99c689 100644 --- a/utils-lite/pom.xml +++ b/utils-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT utils-lite AWS Java SDK :: Utils Lite diff --git a/utils/pom.xml b/utils/pom.xml index 6824085b6ad..0973cb16a12 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT 4.0.0 diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml index 831d044a33f..25aa3bc02ef 100644 --- a/v2-migration/pom.xml +++ b/v2-migration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.38.5-SNAPSHOT + 2.38.8-SNAPSHOT ../pom.xml