diff --git a/download-endpoints.exs b/download-endpoints.exs new file mode 100644 index 00000000..c97ae63f --- /dev/null +++ b/download-endpoints.exs @@ -0,0 +1,17 @@ +Mix.install([ + :req +]) + +File.write!( + "priv/endpoints.exs", + inspect( + Req.get!( + "https://raw.githubusercontent.com/boto/botocore/refs/heads/develop/botocore/data/endpoints.json" + ).body + |> Jason.decode!(), + limit: :infinity, + printable_limit: :infinity + ) +) + +System.cmd("mix", ["format"]) diff --git a/priv/endpoints.exs b/priv/endpoints.exs index 41ccebbd..ef7df0e7 100644 --- a/priv/endpoints.exs +++ b/priv/endpoints.exs @@ -1,84 +1,57 @@ -# Note that these lists are the CONTROL regions (since those are where we can hit the API), -# not the MEDIA regions. -# See https://docs.aws.amazon.com/general/latest/gr/chime-sdk.htm -chime_identity_regions = [ - "eu-central-1", - "us-east-1" -] - -chime_meeting_regions = [ - "ap-south-1", - "ap-south-2", - "ap-northeast-1", - "ap-northeast-2", - "ap-southeast-1", - "ap-southeast-2", - "ca-central-1", - "eu-central-1", - "eu-west-2", - "il-central-1", - "us-gov-east-1", - "us-gov-west-1", - "us-east-1", - "us-west-2" -] - -chime_media_pipeline_regions = [ - "ap-southeast-1", - "eu-central-1", - "us-east-1", - "us-west-2" -] - -chime_messaging_regions = [ - "eu-central-1", - "us-east-1" -] - -chime_voice_regions = [ - "ap-nottheast-1", - "ap-nottheast-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" -] - %{ "partitions" => [ %{ "defaults" => %{ "hostname" => "{service}.{region}.{dnsSuffix}", "protocols" => ["https"], - "signatureVersions" => ["v4"] + "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|af|ap|sa|ca|me)\\-\\w+\\-\\d+$", + "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-northeast-1" => %{"description" => "Asia Pacific (Tokyo)"}, "ap-northeast-2" => %{"description" => "Asia Pacific (Seoul)"}, - "ap-east-1" => %{"description" => "Asia Pacific (Hong Kong)"}, + "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)"}, - "ca-central-1" => %{"description" => "Canada (Montreal)"}, - "ca-west-1" => %{"description" => "Canada (Calgary)"}, - "eu-central-1" => %{"description" => "EU (Frankfurt)"}, - "eu-west-1" => %{"description" => "EU (Ireland)"}, - "eu-west-2" => %{"description" => "EU (London)"}, - "eu-west-3" => %{"description" => "EU (Paris)"}, - "eu-north-1" => %{"description" => "EU (Stockholm)"}, - "eu-south-1" => %{"description" => "EU (Milan)"}, - "eu-south-2" => %{"description" => "EU (Spain)"}, + "ap-southeast-4" => %{"description" => "Asia Pacific (Melbourne)"}, + "ap-southeast-5" => %{"description" => "Asia Pacific (Malaysia)"}, + "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)"}, "sa-east-1" => %{"description" => "South America (Sao Paulo)"}, "us-east-1" => %{"description" => "US East (N. Virginia)"}, @@ -87,470 +60,1247 @@ chime_voice_regions = [ "us-west-2" => %{"description" => "US West (Oregon)"} }, "services" => %{ - "personalize" => %{ + "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-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"]} + ] + }, + "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"]}] + }, + "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"]} + ] + } + } + }, + "voiceid" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-west-1" => %{}, - "eu-central-1" => %{} + "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"]} + ] + } } }, - "personalize-events" => %{ + "glue" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "ap-northeast-1" => %{}, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "glue-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "glue-fips.us-east-1.amazonaws.com" + }, "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "glue-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "glue-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "glue-fips.us-west-1.amazonaws.com" + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-5" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "glue-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "glue-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "glue-fips.us-east-2.amazonaws.com" + }, "eu-central-1" => %{} } }, - "personalize-runtime" => %{ + "secretsmanager" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-west-1" => %{ + "variants" => [ + %{"tags" => ["dualstack"]}, + %{"tags" => ["dualstack", "fips"]}, + %{"tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ca-west-1-fips" => %{"deprecated" => true}, + "ca-central-1-fips" => %{"deprecated" => true}, + "ap-northeast-3" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ap-southeast-4" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "af-south-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-east-1" => %{ + "variants" => [ + %{"tags" => ["dualstack"]}, + %{"tags" => ["dualstack", "fips"]}, + %{"tags" => ["fips"]} + ] + }, + "ap-south-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ap-southeast-5" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-west-1-fips" => %{"deprecated" => true}, + "ap-southeast-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-east-2-fips" => %{"deprecated" => true}, + "eu-west-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ap-east-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "sa-east-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-west-2-fips" => %{"deprecated" => true}, + "il-central-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-south-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-west-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ca-central-1" => %{ + "variants" => [ + %{"tags" => ["dualstack"]}, + %{"tags" => ["dualstack", "fips"]}, + %{"tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-west-3" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-north-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-central-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-west-2" => %{ + "variants" => [ + %{"tags" => ["dualstack"]}, + %{"tags" => ["dualstack", "fips"]}, + %{"tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-east-2" => %{ + "variants" => [ + %{"tags" => ["dualstack"]}, + %{"tags" => ["dualstack", "fips"]}, + %{"tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"tags" => ["dualstack"]}, + %{"tags" => ["dualstack", "fips"]}, + %{"tags" => ["fips"]} + ] + }, + "ap-south-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "me-south-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "me-central-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-south-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-east-1-fips" => %{"deprecated" => true}, + "eu-central-1" => %{"variants" => [%{"tags" => ["dualstack"]}]} + } + }, + "cloudformation" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "cloudformation-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "cloudformation-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "cloudformation-fips.us-west-1.amazonaws.com" + }, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "cloudformation-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "cloudformation-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "cloudformation-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "cloudformation-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "cloudformation-fips.us-east-1.amazonaws.com" + }, "eu-central-1" => %{} } }, - "bedrock" => %{ + "migrationhub-orchestrator" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, "eu-central-1" => %{}, + "eu-west-1" => %{}, "eu-west-2" => %{}, "us-east-1" => %{}, "us-west-2" => %{} } }, - "bedrock-runtime" => %{ - "defaults" => %{"credentialScope" => %{"service" => "bedrock"}}, + "cost-optimization-hub" => %{ + "endpoints" => %{ + "us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "cost-optimization-hub.us-east-1.amazonaws.com" + } + } + }, + "cleanrooms" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-west-1" => %{}, "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "cleanrooms-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "cleanrooms-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } } }, - "bedrock-agent" => %{ - "defaults" => %{"credentialScope" => %{"service" => "bedrock"}}, + "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" => %{} } }, - "bedrock-agent-runtime" => %{ - "defaults" => %{"credentialScope" => %{"service" => "bedrock"}}, + "inspector2" => %{ "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-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" + }, + "me-south-1" => %{}, "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "connect" => %{ + "mediastore" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, - "ap-southeast-1" => %{}, + "ap-northeast-2" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-west-1" => %{}, "eu-west-2" => %{}, "us-east-1" => %{}, "us-west-2" => %{} } }, - "codeartifact" => %{ + "lookoutvision" => %{ "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-central-1" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-northeast-1" => %{}, - "ap-south-1" => %{} + "us-west-2" => %{} } }, - "firehose" => %{ + "appstream2" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "appstream"}, + "protocols" => ["https"] + }, "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" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "organizations" => %{ - "endpoints" => %{ - "aws-global" => %{ + "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"}, - "hostname" => "organizations.us-east-1.amazonaws.com" + "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" } - }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" - }, - "serverlessrepo" => %{ - "defaults" => %{"protocols" => ["https"]}, - "endpoints" => %{ - "ap-northeast-1" => %{"protocols" => ["https"]}, - "ap-northeast-2" => %{"protocols" => ["https"]}, - "ap-south-1" => %{"protocols" => ["https"]}, - "ap-south-2" => %{"protocols" => ["https"]}, - "ap-southeast-1" => %{"protocols" => ["https"]}, - "ap-southeast-2" => %{"protocols" => ["https"]}, - "ca-central-1" => %{"protocols" => ["https"]}, - "eu-central-1" => %{"protocols" => ["https"]}, - "eu-west-1" => %{"protocols" => ["https"]}, - "eu-west-2" => %{"protocols" => ["https"]}, - "eu-north-1" => %{"protocols" => ["https"]}, - "sa-east-1" => %{"protocols" => ["https"]}, - "us-east-1" => %{"protocols" => ["https"]}, - "us-east-2" => %{"protocols" => ["https"]}, - "us-west-1" => %{"protocols" => ["https"]}, - "us-west-2" => %{"protocols" => ["https"]} } }, - "elasticache" => %{ + "kafka" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "kafka-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "kafka-fips.us-east-1.amazonaws.com" + }, "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "kafka-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "kafka-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "kafka-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "kafka-fips.us-west-1.amazonaws.com" + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-east-1" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-5" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "kafka-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "kafka-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "kafka-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "kafka-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "kafka-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "kafka-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} } }, - "config" => %{ + "rekognition" => %{ "endpoints" => %{ - "af-south-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "rekognition-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "rekognition-fips.ca-central-1.amazonaws.com" + }, "eu-central-1" => %{}, + "eu-south-2" => %{}, "eu-west-1" => %{}, "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "mobiletargeting" => %{ - "endpoints" => %{ + "il-central-1" => %{}, + "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" => %{ - "hostname" => "pinpoint.us-east-1.amazonaws.com" + "variants" => [ + %{"hostname" => "rekognition-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "rekognition-fips.us-east-1.amazonaws.com" }, "us-east-2" => %{ - "hostname" => "pinpoint.us-east-2.amazonaws.com" + "variants" => [ + %{"hostname" => "rekognition-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "rekognition-fips.us-east-2.amazonaws.com" }, "us-west-1" => %{ - "hostname" => "pinpoint.us-west-1.amazonaws.com" + "variants" => [ + %{"hostname" => "rekognition-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "rekognition-fips.us-west-1.amazonaws.com" }, "us-west-2" => %{ - "hostname" => "pinpoint.us-west-2.amazonaws.com" + "variants" => [ + %{"hostname" => "rekognition-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] }, - "ap-south-1" => %{ - "hostname" => "pinpoint.ap-south-1.amazonaws.com" + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "rekognition-fips.us-west-2.amazonaws.com" + } + } + }, + "lookoutequipment" => %{ + "endpoints" => %{"ap-northeast-2" => %{}, "eu-west-1" => %{}, "us-east-1" => %{}} + }, + "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"]} + ] }, - "ap-south-2" => %{ - "hostname" => "pinpoint.ap-south-2.amazonaws.com" + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "codecommit-fips.ca-central-1.amazonaws.com" }, - "ap-northeast-1" => %{ - "hostname" => "pinpoint.ap-northeast-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" }, - "ap-northeast-2" => %{ - "hostname" => "pinpoint.ap-northeast-2.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"]} + ] }, - "ap-southeast-1" => %{ - "hostname" => "pinpoint.ap-southeast-1.amazonaws.com" + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "codecommit-fips.us-east-1.amazonaws.com" }, - "ap-southeast-2" => %{ - "hostname" => "pinpoint.ap-southeast-2.amazonaws.com" + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "codecommit-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] }, - "ca-central-1" => %{ - "hostname" => "pinpoint.ca-central-1.amazonaws.com" + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "codecommit-fips.us-east-2.amazonaws.com" }, - "eu-central-1" => %{ - "hostname" => "pinpoint.eu-central-1.amazonaws.com" + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "codecommit-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] }, - "eu-west-1" => %{ - "hostname" => "pinpoint.eu-west-1.amazonaws.com" + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "codecommit-fips.us-west-1.amazonaws.com" }, - "eu-west-2" => %{ - "hostname" => "pinpoint.eu-west-2.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" } } }, - "pinpoint" => %{ - "defaults" => %{"credentialScope" => %{"service" => "mobiletargeting"}}, + "iot" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, + "ap-south-1" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "iot-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "eu-central-1" => %{}, + "eu-north-1" => %{}, "eu-west-1" => %{}, - "eu-west-2" => %{} + "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"]} + ] + } } }, - "iam" => %{ + "organizations" => %{ "endpoints" => %{ "aws-global" => %{ "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "iam.amazonaws.com" + "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" }, - "gamelift" => %{ + "iotfleetwise" => %{ + "endpoints" => %{"ap-south-1" => %{}, "eu-central-1" => %{}, "us-east-1" => %{}} + }, + "kinesisvideo" => %{ "endpoints" => %{ + "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, "ca-central-1" => %{}, "eu-central-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" => %{} } }, - "snowball" => %{ + "app-integrations" => %{ "endpoints" => %{ "af-south-1" => %{}, "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, + "ap-northeast-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, "ca-central-1" => %{}, "eu-central-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" => %{} } }, - "glacier" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, + "identitystore" => %{ "endpoints" => %{ + "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "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" => %{}, - "eu-north-1" => %{}, + "il-central-1" => %{}, + "me-central-1" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, "us-west-1" => %{}, "us-west-2" => %{} } }, - "ingest.timestream" => %{ - "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-west-1" => %{} - } - }, - "query.timestream" => %{ - "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-west-1" => %{} - } - }, - "translate" => %{ - "defaults" => %{"protocols" => ["https"]}, + "runtime.sagemaker" => %{ + "defaults" => %{ + "variants" => [ + %{"hostname" => "runtime-fips.sagemaker.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "runtime-fips.sagemaker.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "runtime-fips.sagemaker.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-1" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "runtime-fips.sagemaker.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "runtime-fips.sagemaker.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "runtime-fips.sagemaker.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "runtime-fips.sagemaker.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "runtime-fips.sagemaker.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "runtime-fips.sagemaker.us-east-1.amazonaws.com" + }, "eu-central-1" => %{} } }, - "acm" => %{ + "marketplacecommerceanalytics" => %{"endpoints" => %{"us-east-1" => %{}}}, + "drs" => %{ "endpoints" => %{ + "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "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" => %{}, - "eu-north-1" => %{}, + "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" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "elasticmapreduce" => %{ - "defaults" => %{ - "protocols" => ["http", "https"], - "sslCommonName" => "{region}.{service}.{dnsSuffix}" - }, + "contact-lens" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{"sslCommonName" => "{service}.{region}.{dnsSuffix}"}, - "eu-west-1" => %{}, + "eu-central-1" => %{}, "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{"sslCommonName" => "{service}.{region}.{dnsSuffix}"}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "workdocs" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{} } }, - "marketplacecommerceanalytics" => %{"endpoints" => %{"us-east-1" => %{}}}, - "logs" => %{ + "backup" => %{ "endpoints" => %{ + "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "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" => %{}, - "eu-north-1" => %{}, + "il-central-1" => %{}, + "me-central-1" => %{}, "me-south-1" => %{}, "sa-east-1" => %{}, "us-east-1" => %{}, @@ -559,242 +1309,858 @@ chime_voice_regions = [ "us-west-2" => %{} } }, - "kinesis" => %{ + "monitoring" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, "endpoints" => %{ - "ap-northeast-1" => %{}, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "monitoring-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "monitoring-fips.us-east-1.amazonaws.com" + }, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "monitoring-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "monitoring-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "monitoring-fips.us-west-1.amazonaws.com" + }, "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "monitoring-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "monitoring-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "monitoring-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" => %{}, - "ca-west-1" => %{}, "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-south-1" => %{}, "eu-west-1" => %{}, "eu-west-2" => %{}, "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "neptune" => %{ - "endpoints" => %{ - "eu-west-1" => %{ - "credentialScope" => %{"region" => "eu-west-1"}, - "hostname" => "rds.eu-west-1.amazonaws.com" + "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" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "rds.us-east-1.amazonaws.com" + "variants" => [ + %{"hostname" => "databrew-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] }, "us-east-2" => %{ - "credentialScope" => %{"region" => "us-east-2"}, - "hostname" => "rds.us-east-2.amazonaws.com" + "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" => %{ - "credentialScope" => %{"region" => "us-west-2"}, - "hostname" => "rds.us-west-2.amazonaws.com" + "variants" => [ + %{"hostname" => "databrew-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] } } }, - "events" => %{ + "auditmanager" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, "ca-central-1" => %{}, - "ca-west-1" => %{}, "eu-central-1" => %{}, "eu-west-1" => %{}, "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-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" + } } }, - "scheduler" => %{ + "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"]}] + } + } + }, + "pinpoint" => %{ + "defaults" => %{"credentialScope" => %{"service" => "mobiletargeting"}}, "endpoints" => %{ "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, + "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" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-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"]} + ] + } } }, - "guardduty" => %{ - "defaults" => %{"protocols" => ["https"]}, + "runtime.lex" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "lex"}, + "variants" => [ + %{"hostname" => "runtime-fips.lex.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, "endpoints" => %{ "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, "eu-central-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" => %{} - }, - "isRegionalized" => true - }, - "importexport" => %{ - "endpoints" => %{ - "aws-global" => %{ - "credentialScope" => %{"region" => "us-east-1", "service" => "IngestionService"}, - "hostname" => "importexport.amazonaws.com", - "signatureVersions" => ["v2", "v4"] + "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" } - }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" + } }, - "greengrass" => %{ + "acm-pca" => %{ "defaults" => %{"protocols" => ["https"]}, "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "acm-pca-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "acm-pca-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "acm-pca-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-northeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} - }, - "isRegionalized" => true - }, - "sns" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{ + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "acm-pca-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "acm-pca-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "acm-pca-fips.us-west-1.amazonaws.com" + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-5" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "acm-pca-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "acm-pca-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "acm-pca-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "acm-pca-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, "me-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "acm-pca-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "acm-pca-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} } }, - "health" => %{"endpoints" => %{"us-east-1" => %{}}}, - "glue" => %{ + "iam" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} - } + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "iam.amazonaws.com", + "variants" => [%{"hostname" => "iam-fips.amazonaws.com", "tags" => ["fips"]}] + }, + "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" }, - "lightsail" => %{ + "sms-voice" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "sms-voice-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "sms-voice-fips.us-east-1.amazonaws.com" + }, "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "sms-voice-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "sms-voice-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "sms-voice-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "sms-voice-fips.us-west-1.amazonaws.com" + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, "eu-west-2" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "sms-voice-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "sms-voice-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "sms-voice-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "sms-voice-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} } }, - "polly" => %{ + "cognito-idp" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "cognito-idp-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "cognito-idp-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-northeast-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-northeast-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-southeast-4.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "cognito-idp-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.ap-south-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-southeast-2.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.eu-west-2.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.ap-east-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.sa-east-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.il-central-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"]} + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.ca-central-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-southeast-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.eu-west-3.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.eu-north-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-idp.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.ca-west-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.ap-south-2.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.me-south-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.me-central-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.eu-south-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "cognito-idp-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "cognito-idp.eu-central-1.amazonaws.com", "tags" => ["dualstack"]} + ] + } + } + }, + "kinesisanalytics" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "kinesisanalytics-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "kinesisanalytics-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "kinesisanalytics-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "kinesisanalytics-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "kinesisanalytics-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "kinesisanalytics-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "kinesisanalytics-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "kinesisanalytics-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "kinesisanalytics-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "kinesisanalytics-fips.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "kinesisanalytics-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "kinesisanalytics-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} } }, - "lambda" => %{ + "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" + } + } + }, + "sso" => %{ "endpoints" => %{ "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "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" => %{}, - "eu-north-1" => %{}, + "il-central-1" => %{}, + "me-central-1" => %{}, + "me-south-1" => %{}, "sa-east-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, @@ -802,87 +2168,240 @@ chime_voice_regions = [ "us-west-2" => %{} } }, - "dynamodb" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, + "ingest.timestream" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, "eu-central-1" => %{}, "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, - "local" => %{ + "ingest-fips-us-east-1" => %{ "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "localhost:8000", - "protocols" => ["http"] + "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"] + } + ] }, - "sa-east-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, - "us-west-1" => %{}, "us-west-2" => %{} } }, - "streams.dynamodb" => %{ - "defaults" => %{ - "credentialScope" => %{"service" => "dynamodb"}, - "protocols" => ["http", "https"] - }, + "rds" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, + "rds-fips.ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "rds-fips.ca-west-1.amazonaws.com" + }, "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "rds-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "rds-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "rds-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "rds-fips.us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "rds-fips.us-east-2.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "sslCommonName" => "{service}.{dnsSuffix}", + "variants" => [ + %{"hostname" => "rds-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "rds-fips.us-west-1.amazonaws.com" + }, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, + "rds-fips.us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "rds-fips.us-west-1.amazonaws.com" + }, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "rds-fips.us-east-2.amazonaws.com" + }, "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "rds-fips.us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "rds-fips.us-east-1.amazonaws.com" + }, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "rds-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "rds.us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "rds-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "rds.us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "rds-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "rds-fips.ca-central-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"]} + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, "eu-north-1" => %{}, - "local" => %{ + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "rds-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "rds-fips.us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "rds-fips.us-west-2.amazonaws.com" + }, + "rds.ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "rds-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "rds-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "rds-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "rds-fips.ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "rds-fips.ca-central-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "rds.us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "rds-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-1-fips" => %{ "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "localhost:8000", - "protocols" => ["http"] + "deprecated" => true, + "hostname" => "rds-fips.us-east-1.amazonaws.com" }, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "eu-central-1" => %{}, + "rds.ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "rds-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + } } }, - "fms" => %{ - "defaults" => %{"protocols" => ["https"]}, - "endpoints" => %{"us-east-1" => %{}, "us-west-2" => %{}} - }, - "es" => %{ + "amplifybackend" => %{ "endpoints" => %{ "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "ap-northeast-3" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, "ca-central-1" => %{}, - "ca-west-1" => %{}, "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-south-1" => %{}, "eu-west-1" => %{}, "eu-west-2" => %{}, "eu-west-3" => %{}, - "eu-north-1" => %{}, + "me-south-1" => %{}, "sa-east-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, @@ -890,246 +2409,150 @@ chime_voice_regions = [ "us-west-2" => %{} } }, - "aoss" => %{ + "billingconductor" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "session.qldb" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} - } - }, - "shield" => %{ - "defaults" => %{ - "protocols" => ["https"], - "sslCommonName" => "Shield.us-east-1.amazonaws.com" + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "billingconductor.us-east-1.amazonaws.com" + } }, - "endpoints" => %{"us-east-1" => %{}}, - "isRegionalized" => false + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" }, - "monitoring" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, + "ssm" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ssm-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ssm-fips.us-east-1.amazonaws.com" + }, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "me-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "clouddirectory" => %{ - "endpoints" => %{ - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} - } - }, - "workspaces" => %{ - "endpoints" => %{ + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ssm-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "ssm-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ssm-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ssm-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, "eu-west-2" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} - } - }, - "elasticloadbalancing" => %{ - "defaults" => %{"protocols" => ["https"]}, - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, "eu-west-1" => %{}, - "eu-west-2" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "ssm-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "mturk-requester" => %{ - "endpoints" => %{ - "sandbox" => %{"hostname" => "mturk-requester-sandbox.us-east-1.amazonaws.com"}, - "us-east-1" => %{} - }, - "isRegionalized" => false - }, - "sagemaker" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} - } - }, - "devicefarm" => %{"endpoints" => %{"us-west-2" => %{}}}, - "athena" => %{ - "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" => %{} - } - }, - "api.mediatailor" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ssm-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{} - } - }, - "mobileanalytics" => %{"endpoints" => %{"us-east-1" => %{}}}, - "api.pricing" => %{ - "defaults" => %{"credentialScope" => %{"service" => "pricing"}}, - "endpoints" => %{"ap-south-1" => %{}, "us-east-1" => %{}} - }, - "mediaconvert" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ssm-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "ssm-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "ssm-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ssm-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} } }, - "resource-groups" => %{ + "api.iotdeviceadvisor" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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" + } } }, "metering.marketplace" => %{ "defaults" => %{"credentialScope" => %{"service" => "aws-marketplace"}}, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, + "af-south-1" => %{}, "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-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" => %{} - } - }, - "ivs" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{ "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "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" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, + "il-central-1" => %{}, + "me-central-1" => %{}, + "me-south-1" => %{}, "sa-east-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, @@ -1137,130 +2560,539 @@ chime_voice_regions = [ "us-west-2" => %{} } }, - "ec2" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "opsworks-cm" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-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" => %{} - } + "private-networks" => %{ + "endpoints" => %{"us-east-1" => %{}, "us-east-2" => %{}, "us-west-2" => %{}} }, - "ce" => %{ + "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" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "s3-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "s3-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.ap-northeast-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"]} + ] + }, + "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-3" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.ap-northeast-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "s3-fips.ca-central-1.amazonaws.com" + }, "aws-global" => %{ "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "ce.us-east-1.amazonaws.com" + "hostname" => "s3.amazonaws.com", + "signatureVersions" => ["s3", "s3v4"] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.ap-southeast-4.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "s3-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.ap-south-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.ap-southeast-5.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"] + } + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.eu-west-2.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.ap-east-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "hostname" => "s3.sa-east-1.amazonaws.com", + "signatureVersions" => ["s3", "s3v4"], + "variants" => [ + %{"hostname" => "s3.dualstack.sa-east-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.il-central-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"]} + ] + }, + "s3-external-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "s3-external-1.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"] + } + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.ap-southeast-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.eu-west-3.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.eu-north-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "hostname" => "s3.ap-southeast-1.amazonaws.com", + "signatureVersions" => ["s3", "s3v4"], + "variants" => [ + %{ + "hostname" => "s3.dualstack.ap-southeast-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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.ap-south-2.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.me-south-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.me-central-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "s3-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "s3.dualstack.eu-south-1.amazonaws.com", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "s3-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{ + "hostname" => "s3.dualstack.eu-central-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] } }, - "isRegionalized" => false, + "isRegionalized" => true, "partitionEndpoint" => "aws-global" }, - "bcm-data-exports" => %{ + "elasticbeanstalk" => %{ "endpoints" => %{ - "aws-global" => %{ + "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"] + } + ] + }, + "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-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"}, - "hostname" => "bcm-data-exports.us-east-1.api.aws" + "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-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"]} + ] } - }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" - }, - "ds" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} } }, - "autoscaling-plans" => %{ + "health" => %{ "defaults" => %{ - "credentialScope" => %{"service" => "autoscaling-plans"}, - "hostname" => "autoscaling.{region}.amazonaws.com", - "protocols" => ["http", "https"] + "protocols" => ["https"], + "sslCommonName" => "health.us-east-1.amazonaws.com" }, "endpoints" => %{ - "ap-southeast-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} - } + "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" }, - "apigateway" => %{ + "backup-gateway" => %{ "endpoints" => %{ "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "ap-northeast-3" => %{}, "ap-south-1" => %{}, - "ap-south-2" => %{}, "ap-southeast-1" => %{}, "ap-southeast-2" => %{}, "ca-central-1" => %{}, - "ca-west-1" => %{}, "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-south-1" => %{}, "eu-west-1" => %{}, "eu-west-2" => %{}, "eu-west-3" => %{}, - "eu-north-1" => %{}, + "me-south-1" => %{}, "sa-east-1" => %{}, "us-east-1" => %{}, "us-east-2" => %{}, @@ -1268,2023 +3100,23353 @@ chime_voice_regions = [ "us-west-2" => %{} } }, - "route53" => %{ - "endpoints" => %{ - "aws-global" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "route53.amazonaws.com" - } - }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" - }, - "kms" => %{ + "arc-zonal-shift" => %{ "endpoints" => %{ "af-south-1" => %{}, + "ap-east-1" => %{}, "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "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" => %{}, - "eu-north-1" => %{}, + "il-central-1" => %{}, "me-central-1" => %{}, "me-south-1" => %{}, "sa-east-1" => %{}, "us-east-1" => %{}, - "us-east-1-fips" => %{ - "hostname" => "kms-fips.us-east-1.amazonaws.com", - "credentialScope" => %{"region" => "us-east-1"} - }, "us-east-2" => %{}, "us-west-1" => %{}, "us-west-2" => %{} } }, - "elastictranscoder" => %{ + "compute-optimizer" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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" + } } }, - "entitlement.marketplace" => %{ - "defaults" => %{"credentialScope" => %{"service" => "aws-marketplace"}}, - "endpoints" => %{"us-east-1" => %{}} - }, - "sms" => %{ + "datasync" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-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" => %{} + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "datasync-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "datasync-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "datasync-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "datasync.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "datasync-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "datasync.eu-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "datasync.sa-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "datasync.il-central-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"]} + ] + }, + "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"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "datasync.eu-west-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "datasync.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "datasync.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-southeast-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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "datasync.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "datasync.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "datasync.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "datasync-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "datasync.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "datasync-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "datasync.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } } }, - "rds" => %{ + "storagegateway" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, "ap-northeast-2" => %{}, - "ap-east-1" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "storagegateway-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "storagegateway-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.us-west-1.amazonaws.com" + }, "ap-southeast-2" => %{}, - "ap-southeast-3" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-south-1" => %{}, - "eu-west-1" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.us-east-2.amazonaws.com" + }, "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "storagegateway-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, "eu-west-3" => %{}, "eu-north-1" => %{}, - "me-central-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "storagegateway-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "storagegateway-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "storagegateway-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, "me-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{"sslCommonName" => "{service}.{dnsSuffix}"}, + "me-central-1" => %{}, + "eu-south-1" => %{}, "us-east-1-fips" => %{ - "sslCommonName" => "{service}.{dnsSuffix}", - "hostname" => "rds-fips.us-east-1.amazonaws.com", - "credentialScope" => %{"region" => "us-east-1"} + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.us-east-1.amazonaws.com" }, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "eu-central-1" => %{} } }, - "cognito-sync" => %{ + "pi" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "pi-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "pi-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "pi-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "pi-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.ap-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-southeast-5" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "il-central-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.il-central-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"]}] + }, + "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"]} + ] + }, + "ap-southeast-3" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.eu-north-1.api.aws", "tags" => ["dualstack"]}] + }, + "eu-central-2" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "pi.ap-southeast-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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.ap-south-2.api.aws", "tags" => ["dualstack"]}] + }, + "me-south-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.me-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "me-central-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.me-central-1.api.aws", "tags" => ["dualstack"]}] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "pi-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.eu-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "pi-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "pi.eu-central-1.api.aws", "tags" => ["dualstack"]}] + } + } + }, + "ebs" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ebs-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ebs-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ebs-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "ebs-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ebs-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ebs-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "ebs-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ebs-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ebs-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "ebs-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "ebs-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ebs-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" => %{} + } + }, + "cur" => %{"endpoints" => %{"us-east-1" => %{}}}, + "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" => %{} + } + }, + "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" + }, + "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" + }, + "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" + } + } + }, + "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" => %{}, + "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" => %{} + } + }, + "rum" => %{ + "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" => %{}, + "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" => %{}, + "me-central-1" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "lookoutmetrics" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "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" => %{} + } + }, + "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" => %{} + } + }, + "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" => %{} + } + }, + "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" + }, + "account" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "account.us-east-1.amazonaws.com" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "verifiedpermissions" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "verifiedpermissions-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "verifiedpermissions-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "verifiedpermissions-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "verifiedpermissions-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "verifiedpermissions-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "verifiedpermissions-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "verifiedpermissions-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "verifiedpermissions-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "verifiedpermissions-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "verifiedpermissions-fips.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "verifiedpermissions-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "verifiedpermissions-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "opsworks-cm" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "kms" => %{ + "endpoints" => %{ + "eu-north-1-fips" => %{ + "credentialScope" => %{"region" => "eu-north-1"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-north-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-northeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-northeast-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-east-1-fips" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-east-1.amazonaws.com" + }, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "kms-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "kms-fips.ca-central-1.amazonaws.com" + }, + "me-south-1-fips" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "deprecated" => true, + "hostname" => "kms-fips.me-south-1.amazonaws.com" + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-northeast-3.amazonaws.com", "tags" => ["fips"]} + ] + }, + "sa-east-1-fips" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "deprecated" => true, + "hostname" => "kms-fips.sa-east-1.amazonaws.com" + }, + "ap-northeast-2-fips" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-northeast-2.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-southeast-4.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-west-3-fips" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-west-3.amazonaws.com" + }, + "ap-south-2-fips" => %{ + "credentialScope" => %{"region" => "ap-south-2"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-south-2.amazonaws.com" + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.af-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-southeast-5.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "kms-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-southeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-3-fips" => %{ + "credentialScope" => %{"region" => "ap-northeast-3"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-northeast-3.amazonaws.com" + }, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "kms-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-5-fips" => %{ + "credentialScope" => %{"region" => "ap-southeast-5"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-southeast-5.amazonaws.com" + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.sa-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ProdFips" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-central-2.amazonaws.com" + }, + "me-central-1-fips" => %{ + "credentialScope" => %{"region" => "me-central-1"}, + "deprecated" => true, + "hostname" => "kms-fips.me-central-1.amazonaws.com" + }, + "ap-southeast-1-fips" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-southeast-1.amazonaws.com" + }, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "kms-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.il-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-south-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-south-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-west-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-south-2-fips" => %{ + "credentialScope" => %{"region" => "eu-south-2"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-south-2.amazonaws.com" + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-central-2-fips" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-central-2.amazonaws.com" + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-southeast-3.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-west-1-fips" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-west-1.amazonaws.com" + }, + "ap-southeast-4-fips" => %{ + "credentialScope" => %{"region" => "ap-southeast-4"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-southeast-4.amazonaws.com" + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-west-3.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-north-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-southeast-3-fips" => %{ + "credentialScope" => %{"region" => "ap-southeast-3"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-southeast-3.amazonaws.com" + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-central-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1-fips" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-south-1.amazonaws.com" + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-southeast-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-south-1-fips" => %{ + "credentialScope" => %{"region" => "eu-south-1"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-south-1.amazonaws.com" + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "kms-fips.ap-south-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.me-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.me-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-south-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "kms-fips.us-east-1.amazonaws.com" + }, + "ap-southeast-2-fips" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-southeast-2.amazonaws.com" + }, + "il-central-1-fips" => %{ + "credentialScope" => %{"region" => "il-central-1"}, + "deprecated" => true, + "hostname" => "kms-fips.il-central-1.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.eu-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-west-2-fips" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "deprecated" => true, + "hostname" => "kms-fips.eu-west-2.amazonaws.com" + }, + "ap-northeast-1-fips" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "deprecated" => true, + "hostname" => "kms-fips.ap-northeast-1.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" => %{} + } + }, + "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"]} + ] + } + } + }, + "route53resolver" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "route53resolver-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "route53resolver-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "route53resolver-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "route53resolver-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "route53resolver-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "route53resolver-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "route53resolver-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "route53resolver-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "route53resolver-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "route53resolver-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "route53resolver-fips.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "route53resolver-fips.us-east-1.amazonaws.com" + }, + "eu-central-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"]}]} + } + }, + "tax" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "tax.us-east-1.amazonaws.com" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "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"]} + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "polly.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "polly.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [%{"hostname" => "polly.eu-north-1.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-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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "codecatalyst" => %{ + "endpoints" => %{"aws-global" => %{"hostname" => "codecatalyst.global.api.aws"}}, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "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" => %{} + } + }, + "catalog.marketplace" => %{"endpoints" => %{"us-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" => %{} + } + }, + "resiliencehub" => %{ + "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" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "ce" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "ce.us-east-1.amazonaws.com" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "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"]} + ] + } + } + }, + "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" => %{} + } + }, + "snowball" => %{ + "endpoints" => %{ + "fips-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.eu-west-1.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "snowball-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ap-northeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ap-northeast-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.ap-northeast-1.amazonaws.com" + }, + "fips-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.eu-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ap-northeast-3.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.ca-central-1.amazonaws.com" + }, + "fips-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "deprecated" => true, + "hostname" => "snowball-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-northeast-3" => %{ + "credentialScope" => %{"region" => "ap-northeast-3"}, + "deprecated" => true, + "hostname" => "snowball-fips.ap-northeast-3.amazonaws.com" + }, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ap-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ap-southeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.eu-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-east-1" => %{}, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.sa-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "il-central-1" => %{}, + "fips-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "deprecated" => true, + "hostname" => "snowball-fips.ap-southeast-2.amazonaws.com" + }, + "eu-west-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.eu-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.ap-south-1.amazonaws.com" + }, + "fips-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "deprecated" => true, + "hostname" => "snowball-fips.eu-west-3.amazonaws.com" + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.eu-west-3.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-north-1" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "deprecated" => true, + "hostname" => "snowball-fips.sa-east-1.amazonaws.com" + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.ap-southeast-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "snowball-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.eu-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "deprecated" => true, + "hostname" => "snowball-fips.eu-west-2.amazonaws.com" + } + } + }, + "aps" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "ap-northeast-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ap-northeast-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "ap-south-1" => %{"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"]}]}, + "eu-west-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "eu-west-3" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "sa-east-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-east-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-east-2" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "us-west-2" => %{"variants" => [%{"tags" => ["dualstack"]}]} + } + }, + "appconfigdata" => %{ + "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" => %{} + } + }, + "cloudhsm" => %{"endpoints" => %{"us-east-1" => %{}}}, + "wafv2" => %{ + "endpoints" => %{ + "fips-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-west-1.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.us-east-1.amazonaws.com" + }, + "fips-af-south-1" => %{ + "credentialScope" => %{"region" => "af-south-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.af-south-1.amazonaws.com" + }, + "fips-ap-southeast-3" => %{ + "credentialScope" => %{"region" => "ap-southeast-3"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-southeast-3.amazonaws.com" + }, + "fips-il-central-1" => %{ + "credentialScope" => %{"region" => "il-central-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.il-central-1.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "fips-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-northeast-1.amazonaws.com" + }, + "fips-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-central-1.amazonaws.com" + }, + "fips-ap-southeast-4" => %{ + "credentialScope" => %{"region" => "ap-southeast-4"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-southeast-4.amazonaws.com" + }, + "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"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ca-central-1.amazonaws.com" + }, + "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"]} + ] + }, + "fips-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-northeast-3" => %{ + "credentialScope" => %{"region" => "ap-northeast-3"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-northeast-3.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.us-west-1.amazonaws.com" + }, + "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-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-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "hostname" => "wafv2.ap-southeast-2.amazonaws.com", + "variants" => [ + %{"hostname" => "wafv2-fips.ap-southeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ap-east-1" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-east-1.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "fips-ap-southeast-5" => %{ + "credentialScope" => %{"region" => "ap-southeast-5"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-southeast-5.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"]} + ] + }, + "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"]} + ] + }, + "fips-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-southeast-2.amazonaws.com" + }, + "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"]} + ] + }, + "fips-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-south-1.amazonaws.com" + }, + "fips-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-west-3.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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-me-central-1" => %{ + "credentialScope" => %{"region" => "me-central-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.me-central-1.amazonaws.com" + }, + "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"]} + ] + }, + "fips-eu-south-2" => %{ + "credentialScope" => %{"region" => "eu-south-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-south-2.amazonaws.com" + }, + "fips-ap-south-2" => %{ + "credentialScope" => %{"region" => "ap-south-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ap-south-2.amazonaws.com" + }, + "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"]} + ] + }, + "fips-eu-central-2" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-central-2.amazonaws.com" + }, + "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"]} + ] + }, + "fips-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.sa-east-1.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.ca-west-1.amazonaws.com" + }, + "fips-eu-north-1" => %{ + "credentialScope" => %{"region" => "eu-north-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-north-1.amazonaws.com" + }, + "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"]} + ] + }, + "fips-eu-south-1" => %{ + "credentialScope" => %{"region" => "eu-south-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-south-1.amazonaws.com" + }, + "fips-me-south-1" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "deprecated" => true, + "hostname" => "wafv2-fips.me-south-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.us-east-2.amazonaws.com" + }, + "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"]} + ] + }, + "fips-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "deprecated" => true, + "hostname" => "wafv2-fips.eu-west-2.amazonaws.com" + } + } + }, + "servicecatalog-appregistry" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "servicecatalog-appregistry-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "servicecatalog-appregistry-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "servicecatalog-appregistry-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "servicecatalog-appregistry-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "servicecatalog-appregistry-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "servicecatalog-appregistry-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "servicecatalog-appregistry-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "servicecatalog-appregistry-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "ivs" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "us-east-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" => %{} + } + }, + "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" + } + } + }, + "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-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"}, + "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"}, + "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"} + } + }, + "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" => %{} + } + }, + "servicediscovery" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-northeast-2.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-northeast-1.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "servicediscovery-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "servicediscovery-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-northeast-3.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-southeast-4.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.af-south-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"]} + ] + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-southeast-5.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "servicediscovery-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-southeast-2.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "servicediscovery-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.eu-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.ap-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.sa-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "servicediscovery-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.il-central-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"]} + ] + }, + "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"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-southeast-3.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.eu-west-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.eu-central-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{ + "hostname" => "servicediscovery.ap-southeast-1.api.aws", + "tags" => ["dualstack"] + } + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "servicediscovery-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "servicediscovery.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "quicksight" => %{ + "endpoints" => %{ + "af-south-1" => %{}, + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ap-southeast-3" => %{}, + "api" => %{}, + "ca-central-1" => %{}, + "eu-central-1" => %{}, + "eu-central-2" => %{}, + "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-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" => %{}, + "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"]} + ] + } + } + }, + "mobileanalytics" => %{"endpoints" => %{"us-east-1" => %{}}}, + "machinelearning" => %{"endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}}}, + "supportapp" => %{ + "endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{}} + }, + "license-manager" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "license-manager-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "license-manager-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "license-manager-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "license-manager-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "fms" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "fips-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "deprecated" => true, + "hostname" => "fms-fips.eu-west-1.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "fms-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "fms-fips.us-east-1.amazonaws.com" + }, + "fips-af-south-1" => %{ + "credentialScope" => %{"region" => "af-south-1"}, + "deprecated" => true, + "hostname" => "fms-fips.af-south-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ap-northeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ap-northeast-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "deprecated" => true, + "hostname" => "fms-fips.ap-northeast-1.amazonaws.com" + }, + "fips-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "deprecated" => true, + "hostname" => "fms-fips.eu-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "fms-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "fips-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "deprecated" => true, + "hostname" => "fms-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "deprecated" => true, + "hostname" => "fms-fips.ap-southeast-1.amazonaws.com" + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.af-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "fms-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ap-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ap-southeast-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ap-east-1" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "deprecated" => true, + "hostname" => "fms-fips.ap-east-1.amazonaws.com" + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "fms-fips.eu-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ap-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.sa-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "fips-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "deprecated" => true, + "hostname" => "fms-fips.ap-southeast-2.amazonaws.com" + }, + "eu-west-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.eu-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "deprecated" => true, + "hostname" => "fms-fips.ap-south-1.amazonaws.com" + }, + "fips-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "deprecated" => true, + "hostname" => "fms-fips.eu-west-3.amazonaws.com" + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "fms-fips.eu-west-3.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "fms-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "deprecated" => true, + "hostname" => "fms-fips.sa-east-1.amazonaws.com" + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ap-southeast-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "fms-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.me-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "fms-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.eu-south-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-eu-south-1" => %{ + "credentialScope" => %{"region" => "eu-south-1"}, + "deprecated" => true, + "hostname" => "fms-fips.eu-south-1.amazonaws.com" + }, + "fips-me-south-1" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "deprecated" => true, + "hostname" => "fms-fips.me-south-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "fms-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "fms-fips.eu-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "deprecated" => true, + "hostname" => "fms-fips.eu-west-2.amazonaws.com" + } + } + }, + "swf" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "swf-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "swf-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "swf-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "swf-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "swf-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "swf-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "swf-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "swf-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "swf-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "swf-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "swf-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "swf-fips.us-east-2.amazonaws.com" + }, + "eu-central-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"]} + ] + } + } + }, + "cloudcontrolapi" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "cloudcontrolapi-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "cloudcontrolapi-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "cloudcontrolapi-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "cloudcontrolapi-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.eu-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.sa-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.il-central-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"]} + ] + }, + "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"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.eu-west-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-southeast-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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "cloudcontrolapi-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "cloudcontrolapi-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "cloudcontrolapi.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "session.qldb" => %{ + "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" => %{}, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "session.qldb-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "session.qldb-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "session.qldb-fips.us-west-2.amazonaws.com" + }, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "session.qldb-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "session.qldb-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "session.qldb-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"]} + ] + } + } + }, + "resource-groups" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "resource-groups-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "resource-groups-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "resource-groups-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "resource-groups-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "resource-groups-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "resource-groups-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "resource-groups-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "resource-groups-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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-west-1" => %{}, + "eu-west-2" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "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" + } + } + }, + "api.sagemaker" => %{ + "defaults" => %{ + "variants" => [ + %{"hostname" => "api-fips.sagemaker.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "api-fips.sagemaker.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "api-fips.sagemaker.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "api-fips.sagemaker.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "api-fips.sagemaker.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "api-fips.sagemaker.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "api-fips.sagemaker.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "api-fips.sagemaker.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "api-fips.sagemaker.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "transcribe" => %{ + "defaults" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "fips.transcribe.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, + "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" => %{ + "variants" => [ + %{"hostname" => "fips.transcribe.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" => "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" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "fips.transcribe.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "fips.transcribe.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "fips.transcribe.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "fips.transcribe.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "elasticmapreduce" => %{ + "defaults" => %{ + "protocols" => ["https"], + "sslCommonName" => "{region}.{service}.{dnsSuffix}" + }, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "elasticmapreduce-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "elasticmapreduce-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticmapreduce-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "elasticmapreduce-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "sslCommonName" => "{service}.{region}.{dnsSuffix}", + "variants" => [ + %{ + "hostname" => "elasticmapreduce-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "elasticmapreduce-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticmapreduce-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticmapreduce-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticmapreduce-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + }, + %{"hostname" => "elasticmapreduce.us-east-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticmapreduce-fips.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "elasticmapreduce-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "elasticmapreduce-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{"sslCommonName" => "{service}.{region}.{dnsSuffix}"} + } + }, + "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"] + } + ] + } + } + }, + "tagging" => %{ + "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" => %{} + } + }, + "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-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"}, + "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"]} + ] + }, + "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"]} + ] + } + } + }, + "redshift" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "redshift-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "redshift-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "redshift-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "redshift-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "redshift-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "redshift-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "redshift-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "redshift-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "redshift-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "redshift-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "redshift-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "redshift-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" => %{} + } + }, + "groundstation" => %{ + "endpoints" => %{ + "af-south-1" => %{}, + "ap-northeast-2" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-west-1" => %{}, + "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" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "groundstation-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "groundstation-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "groundstation-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "managedblockchain-query" => %{"endpoints" => %{"us-east-1" => %{}}}, + "rbin" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "rbin-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "rbin-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "rbin-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [%{"hostname" => "rbin.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "rbin-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [%{"hostname" => "rbin.ap-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [%{"hostname" => "rbin.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "variants" => [%{"hostname" => "rbin.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "variants" => [%{"hostname" => "rbin.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "rbin.il-central-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"]}] + }, + "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"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [%{"hostname" => "rbin.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "variants" => [%{"hostname" => "rbin.eu-north-1.api.aws", "tags" => ["dualstack"]}] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "rbin.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "rbin.ap-southeast-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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "variants" => [%{"hostname" => "rbin.ap-south-2.api.aws", "tags" => ["dualstack"]}] + }, + "me-south-1" => %{ + "variants" => [%{"hostname" => "rbin.me-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "rbin.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "rbin-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [%{"hostname" => "rbin.eu-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "rbin-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "rbin.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "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" + }, + "api.ecr-public" => %{ + "endpoints" => %{ + "us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "api.ecr-public.us-east-1.amazonaws.com" + }, + "us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "api.ecr-public.us-west-2.amazonaws.com" + } + } + }, + "es" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "aos.ap-northeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "aos.us-west-1.api.aws", "tags" => ["dualstack"]}, + %{"hostname" => "es-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "aos.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "aos.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "aos.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [%{"hostname" => "aos.af-south-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"]} + ] + }, + "ap-south-1" => %{ + "variants" => [%{"hostname" => "aos.ap-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "aos.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "es-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "aos.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "es-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{ + "variants" => [%{"hostname" => "aos.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "variants" => [%{"hostname" => "aos.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "variants" => [%{"hostname" => "aos.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "es-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{ + "variants" => [%{"hostname" => "aos.il-central-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"]}] + }, + "ca-central-1" => %{ + "variants" => [%{"hostname" => "aos.ca-central-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "aos.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [%{"hostname" => "aos.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "variants" => [%{"hostname" => "aos.eu-north-1.api.aws", "tags" => ["dualstack"]}] + }, + "fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "es-fips.us-west-1.amazonaws.com" + }, + "eu-central-2" => %{ + "variants" => [%{"hostname" => "aos.eu-central-2.api.aws", "tags" => ["dualstack"]}] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "aos.us-west-2.api.aws", "tags" => ["dualstack"]}, + %{"hostname" => "es-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "aos.ap-southeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "aos.us-east-2.api.aws", "tags" => ["dualstack"]}, + %{"hostname" => "es-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [%{"hostname" => "aos.ca-west-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-south-2" => %{ + "variants" => [%{"hostname" => "aos.ap-south-2.api.aws", "tags" => ["dualstack"]}] + }, + "me-south-1" => %{ + "variants" => [%{"hostname" => "aos.me-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "me-central-1" => %{ + "variants" => [%{"hostname" => "aos.me-central-1.api.aws", "tags" => ["dualstack"]}] + }, + "eu-south-1" => %{ + "variants" => [%{"hostname" => "aos.eu-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "es-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [%{"hostname" => "aos.eu-central-1.api.aws", "tags" => ["dualstack"]}] + } + } + }, + "ssm-sap" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ssm-sap-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ssm-sap-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ssm-sap-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "ssm-sap-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ssm-sap-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ssm-sap-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "ssm-sap-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ssm-sap-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ssm-sap-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ssm-sap-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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"]} + ] + } + } + }, + "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"] + } + ] + } + } + }, + "apigateway" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "apigateway-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "apigateway-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "apigateway-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "apigateway-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "apigateway-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "apigateway-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "apigateway-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "apigateway-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "apigateway-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "apigateway-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "apigateway-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "apigateway-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "email" => %{ + "endpoints" => %{ + "af-south-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" => "email-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" => "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-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"]} + ] + } + } + }, + "cassandra" => %{ + "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" => %{}, + "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-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"]} + ] + } + } + }, + "datazone" => %{ + "defaults" => %{ + "dnsSuffix" => "api.aws", + "variants" => [ + %{ + "dnsSuffix" => "api.aws", + "hostname" => "{service}-fips.{region}.{dnsSuffix}", + "tags" => ["fips"] + } + ] + }, + "endpoints" => %{ + "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-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"}, + "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-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"}, + "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"]} + ] + } + } + }, + "api.detective" => %{ + "defaults" => %{"protocols" => ["https"]}, + "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" => %{ + "variants" => [ + %{ + "hostname" => "api.detective-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "api.detective-fips.ca-central-1.amazonaws.com" + }, + "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-south-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "eu-west-3" => %{}, + "il-central-1" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "api.detective-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "api.detective-fips.us-west-2.amazonaws.com" + } + } + }, + "events" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "events-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "events-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "events-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "events-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "events-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "events-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "events-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "events-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "opsworks" => %{ + "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" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "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"]} + ] + } + } + }, + "support" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "support.us-east-1.amazonaws.com" + } + }, + "partitionEndpoint" => "aws-global" + }, + "datapipeline" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-west-2" => %{} + } + }, + "appsync" => %{ + "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" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "applicationinsights" => %{ + "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" => %{}, + "il-central-1" => %{}, + "me-central-1" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-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" => %{}, + "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"]} + ] + } + } + }, + "macie2" => %{ + "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" => %{}, + "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" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "macie2-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "macie2-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "macie2-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "macie2-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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" + }, + "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" + }, + "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" + } + } + }, + "finspace-api" => %{ + "endpoints" => %{ + "ca-central-1" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-2" => %{} + } + }, + "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" + } + } + }, + "data.jobs.iot" => %{ + "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.jobs.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" => "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-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"]} + ] + } + } + }, + "comprehend" => %{ + "defaults" => %{"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" => %{}, + "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"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "comprehend-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "comprehend-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "signer" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "signer-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "signer-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "verification-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "hostname" => "verification.signer.sa-east-1.amazonaws.com" + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "signer-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "verification-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "hostname" => "verification.signer.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-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "hostname" => "verification.signer-fips.us-east-2.amazonaws.com" + }, + "verification-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "hostname" => "verification.signer.ap-northeast-1.amazonaws.com" + }, + "af-south-1" => %{}, + "verification-me-south-1" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "hostname" => "verification.signer.me-south-1.amazonaws.com" + }, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "signer-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "verification-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "hostname" => "verification.signer.ap-northeast-2.amazonaws.com" + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "signer-fips.us-west-1.amazonaws.com" + }, + "verification-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "hostname" => "verification.signer.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "verification-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "hostname" => "verification.signer.ap-south-1.amazonaws.com" + }, + "eu-west-1" => %{}, + "verification-eu-north-1" => %{ + "credentialScope" => %{"region" => "eu-north-1"}, + "hostname" => "verification.signer.eu-north-1.amazonaws.com" + }, + "verification-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "hostname" => "verification.signer.ap-southeast-2.amazonaws.com" + }, + "ca-central-1" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "verification-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "hostname" => "verification.signer.eu-west-3.amazonaws.com" + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "signer-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "verification-ap-east-1" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "hostname" => "verification.signer.ap-east-1.amazonaws.com" + }, + "ap-southeast-1" => %{}, + "verification-af-south-1" => %{ + "credentialScope" => %{"region" => "af-south-1"}, + "hostname" => "verification.signer.af-south-1.amazonaws.com" + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "signer-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "verification-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "hostname" => "verification.signer.ap-southeast-1.amazonaws.com" + }, + "verification-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "hostname" => "verification.signer.ca-central-1.amazonaws.com" + }, + "fips-verification-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "verification.signer-fips.us-west-2.amazonaws.com" + }, + "verification-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "hostname" => "verification.signer.eu-central-1.amazonaws.com" + }, + "verification-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "verification.signer.us-west-2.amazonaws.com" + }, + "me-south-1" => %{}, + "fips-verification-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "verification.signer-fips.us-east-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "verification-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "verification.signer.us-east-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "signer-fips.us-east-2.amazonaws.com" + }, + "verification-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "hostname" => "verification.signer.eu-west-2.amazonaws.com" + }, + "eu-central-1" => %{}, + "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" + } + } + }, + "waf-regional" => %{ + "endpoints" => %{ + "fips-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-west-1.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.us-east-1.amazonaws.com" + }, + "fips-af-south-1" => %{ + "credentialScope" => %{"region" => "af-south-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.af-south-1.amazonaws.com" + }, + "fips-ap-southeast-3" => %{ + "credentialScope" => %{"region" => "ap-southeast-3"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-southeast-3.amazonaws.com" + }, + "fips-il-central-1" => %{ + "credentialScope" => %{"region" => "il-central-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.il-central-1.amazonaws.com" + }, + "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"] + } + ] + }, + "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"]} + ] + }, + "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"] + } + ] + }, + "fips-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-northeast-1.amazonaws.com" + }, + "fips-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-central-1.amazonaws.com" + }, + "fips-ap-southeast-4" => %{ + "credentialScope" => %{"region" => "ap-southeast-4"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-southeast-4.amazonaws.com" + }, + "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"] + } + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ca-central-1.amazonaws.com" + }, + "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"] + } + ] + }, + "fips-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-northeast-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-northeast-3" => %{ + "credentialScope" => %{"region" => "ap-northeast-3"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-northeast-3.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.us-west-1.amazonaws.com" + }, + "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-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"] + } + ] + }, + "fips-ap-east-1" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-east-1.amazonaws.com" + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"] + } + ] + }, + "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"]} + ] + }, + "fips-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-southeast-2.amazonaws.com" + }, + "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"]} + ] + }, + "fips-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-south-1.amazonaws.com" + }, + "fips-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-west-3.amazonaws.com" + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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-me-central-1" => %{ + "credentialScope" => %{"region" => "me-central-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.me-central-1.amazonaws.com" + }, + "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"]} + ] + }, + "fips-eu-south-2" => %{ + "credentialScope" => %{"region" => "eu-south-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-south-2.amazonaws.com" + }, + "fips-ap-south-2" => %{ + "credentialScope" => %{"region" => "ap-south-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.ap-south-2.amazonaws.com" + }, + "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"] + } + ] + }, + "fips-eu-central-2" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-central-2.amazonaws.com" + }, + "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"]} + ] + }, + "fips-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.sa-east-1.amazonaws.com" + }, + "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"] + } + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"] + } + ] + }, + "fips-eu-north-1" => %{ + "credentialScope" => %{"region" => "eu-north-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-north-1.amazonaws.com" + }, + "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"]} + ] + }, + "fips-eu-south-1" => %{ + "credentialScope" => %{"region" => "eu-south-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-south-1.amazonaws.com" + }, + "fips-me-south-1" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.me-south-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.us-east-2.amazonaws.com" + }, + "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"] + } + ] + }, + "fips-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "deprecated" => true, + "hostname" => "waf-regional-fips.eu-west-2.amazonaws.com" + } + } + }, + "healthlake" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-2" => %{} + } + }, + "lightsail" => %{ + "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" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-2" => %{} + } + }, + "managedblockchain" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-southeast-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "us-east-1" => %{} + } + }, + "sagemaker-geospatial" => %{"endpoints" => %{"us-west-2" => %{}}}, + "streams.dynamodb" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "dynamodb"}, + "protocols" => ["http", "https"] + }, + "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" => %{}, + "local" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "localhost:8000", + "protocols" => ["http"] + }, + "me-central-1" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "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" => %{} + } + }, + "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"]} + ] + } + } + }, + "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" => %{}, + "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" => %{} + } + }, + "geo" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "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-2" => %{} + } + }, + "cloudfront" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "cloudfront.amazonaws.com", + "protocols" => ["http", "https"] + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "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" => %{} + } + }, + "bedrock" => %{ + "endpoints" => %{ + "bedrock-fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "bedrock-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-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "hostname" => "bedrock-runtime-fips.ca-central-1.amazonaws.com" + }, + "bedrock-fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "hostname" => "bedrock-fips.us-east-2.amazonaws.com" + }, + "bedrock-runtime-eu-central-2" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "hostname" => "bedrock-runtime.eu-central-2.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "bedrock-runtime-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "hostname" => "bedrock-runtime.ca-central-1.amazonaws.com" + }, + "ap-northeast-1" => %{}, + "bedrock-eu-central-2" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "hostname" => "bedrock.eu-central-2.amazonaws.com" + }, + "bedrock-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "hostname" => "bedrock.sa-east-1.amazonaws.com" + }, + "bedrock-runtime-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "hostname" => "bedrock-runtime.eu-west-3.amazonaws.com" + }, + "bedrock-runtime-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "hostname" => "bedrock-runtime.ap-south-1.amazonaws.com" + }, + "bedrock-runtime-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "hostname" => "bedrock-runtime.ap-northeast-2.amazonaws.com" + }, + "bedrock-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "hostname" => "bedrock.ap-northeast-1.amazonaws.com" + }, + "bedrock-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "hostname" => "bedrock.ap-southeast-1.amazonaws.com" + }, + "bedrock-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "hostname" => "bedrock.eu-west-3.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-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "hostname" => "bedrock.eu-west-2.amazonaws.com" + }, + "us-east-1" => %{}, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "bedrock-runtime-fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "bedrock-runtime-fips.us-east-1.amazonaws.com" + }, + "bedrock-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "hostname" => "bedrock.eu-central-1.amazonaws.com" + }, + "bedrock-runtime-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "bedrock-runtime.us-west-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "sa-east-1" => %{}, + "bedrock-runtime-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "hostname" => "bedrock-runtime.sa-east-1.amazonaws.com" + }, + "bedrock-runtime-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "hostname" => "bedrock-runtime.ap-northeast-1.amazonaws.com" + }, + "bedrock-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "bedrock.us-west-2.amazonaws.com" + }, + "eu-west-1" => %{}, + "bedrock-runtime-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "hostname" => "bedrock-runtime.eu-central-1.amazonaws.com" + }, + "bedrock-runtime-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "hostname" => "bedrock-runtime.ap-southeast-2.amazonaws.com" + }, + "ca-central-1" => %{}, + "bedrock-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "hostname" => "bedrock.ap-northeast-2.amazonaws.com" + }, + "bedrock-runtime-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "hostname" => "bedrock-runtime.us-east-2.amazonaws.com" + }, + "bedrock-fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "hostname" => "bedrock-fips.ca-central-1.amazonaws.com" + }, + "eu-west-3" => %{}, + "bedrock-runtime-fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "bedrock-runtime-fips.us-west-2.amazonaws.com" + }, + "eu-central-2" => %{}, + "bedrock-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "hostname" => "bedrock.eu-west-1.amazonaws.com" + }, + "bedrock-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "hostname" => "bedrock.ap-south-1.amazonaws.com" + }, + "us-west-2" => %{}, + "ap-southeast-1" => %{}, + "bedrock-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "hostname" => "bedrock.ap-southeast-2.amazonaws.com" + }, + "us-east-2" => %{}, + "bedrock-runtime-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "bedrock-runtime.us-east-1.amazonaws.com" + }, + "bedrock-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "hostname" => "bedrock.ca-central-1.amazonaws.com" + }, + "bedrock-runtime-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "hostname" => "bedrock-runtime.eu-west-1.amazonaws.com" + }, + "bedrock-fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "bedrock-fips.us-west-2.amazonaws.com" + }, + "eu-central-1" => %{}, + "bedrock-runtime-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "hostname" => "bedrock-runtime.ap-southeast-1.amazonaws.com" + }, + "bedrock-runtime-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "hostname" => "bedrock-runtime.eu-west-2.amazonaws.com" + } + } + }, + "rolesanywhere" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "rolesanywhere-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "rolesanywhere-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "rolesanywhere-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "rolesanywhere-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "rolesanywhere-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "rolesanywhere-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "rolesanywhere-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "rolesanywhere-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "dynamodb" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "dynamodb-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "dynamodb-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "dynamodb-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "dynamodb-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "local" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "localhost:8000", + "protocols" => ["http"] + }, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "dynamodb-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "dynamodb-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "dynamodb-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "dynamodb-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "dynamodb-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "dynamodb-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "dynamodb-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "dynamodb-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "sqs" => %{ + "defaults" => %{ + "protocols" => ["http", "https"], + "sslCommonName" => "{region}.queue.{dnsSuffix}" + }, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "sqs-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "sqs-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "sqs-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "sslCommonName" => "queue.{dnsSuffix}", + "variants" => [ + %{"hostname" => "sqs-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "sqs-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "sqs-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "sqs-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "sqs-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "elasticfilesystem" => %{ + "endpoints" => %{ + "fips-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-west-1.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.us-east-1.amazonaws.com" + }, + "fips-af-south-1" => %{ + "credentialScope" => %{"region" => "af-south-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.af-south-1.amazonaws.com" + }, + "fips-ap-southeast-3" => %{ + "credentialScope" => %{"region" => "ap-southeast-3"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-southeast-3.amazonaws.com" + }, + "fips-il-central-1" => %{ + "credentialScope" => %{"region" => "il-central-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.il-central-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-northeast-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-northeast-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-northeast-1.amazonaws.com" + }, + "fips-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-central-1.amazonaws.com" + }, + "fips-ap-southeast-4" => %{ + "credentialScope" => %{"region" => "ap-southeast-4"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-southeast-4.amazonaws.com" + }, + "ap-northeast-3" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-northeast-3.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-southeast-4.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-northeast-2.amazonaws.com" + }, + "fips-ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-southeast-1.amazonaws.com" + }, + "fips-ap-northeast-3" => %{ + "credentialScope" => %{"region" => "ap-northeast-3"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-northeast-3.amazonaws.com" + }, + "af-south-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.af-south-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-south-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-southeast-5.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-southeast-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ap-east-1" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-east-1.amazonaws.com" + }, + "eu-west-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.sa-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ap-southeast-5" => %{ + "credentialScope" => %{"region" => "ap-southeast-5"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-southeast-5.amazonaws.com" + }, + "il-central-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.il-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "eu-south-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-south-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-southeast-2.amazonaws.com" + }, + "eu-west-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-south-1.amazonaws.com" + }, + "fips-eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-west-3.amazonaws.com" + }, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-southeast-3.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-west-3.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-me-central-1" => %{ + "credentialScope" => %{"region" => "me-central-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.me-central-1.amazonaws.com" + }, + "eu-north-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-north-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-eu-south-2" => %{ + "credentialScope" => %{"region" => "eu-south-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-south-2.amazonaws.com" + }, + "fips-ap-south-2" => %{ + "credentialScope" => %{"region" => "ap-south-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ap-south-2.amazonaws.com" + }, + "eu-central-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-central-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-eu-central-2" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-central-2.amazonaws.com" + }, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.sa-east-1.amazonaws.com" + }, + "ap-southeast-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-southeast-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.ap-south-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "me-south-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.me-south-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "me-central-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.me-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.ca-west-1.amazonaws.com" + }, + "fips-eu-north-1" => %{ + "credentialScope" => %{"region" => "eu-north-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-north-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-south-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-eu-south-1" => %{ + "credentialScope" => %{"region" => "eu-south-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-south-1.amazonaws.com" + }, + "fips-me-south-1" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.me-south-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.eu-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "deprecated" => true, + "hostname" => "elasticfilesystem-fips.eu-west-2.amazonaws.com" + } + } + }, + "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-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"}, + "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"}, + "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"} + } + }, + "route53-recovery-control-config" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "route53-recovery-control-config.us-west-2.amazonaws.com" + } + } + }, + "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" => %{} + } + }, + "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" => %{} + } + }, + "mediaconvert" => %{ + "endpoints" => %{ + "af-south-1" => %{}, + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-northeast-3" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ap-southeast-4" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "mediaconvert-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" => "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" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "mediaconvert-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "mediaconvert-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "mediaconvert-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "mediaconvert-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "dms" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "dms-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "dms-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "dms-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "dms-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "dms-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "dms" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "dms-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "dms-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "dms-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "dms-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "dms-fips.us-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "dms-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "kinesis" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "kinesis-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "kinesis-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "kinesis-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "kinesis-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "kinesis-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "kinesis-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "kinesis-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "kinesis-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "eks" => %{ + "defaults" => %{ + "protocols" => ["http", "https"], + "variants" => [%{"hostname" => "fips.eks.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "fips.eks.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "fips.eks.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "fips.eks.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "fips.eks.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "fips.eks.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "fips.eks.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "fips.eks.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "fips.eks.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "ds" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ds-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ds-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ds-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "ds-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ds-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ds-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "ds-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ds-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ds-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "ds-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "ds-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ds-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "api.tunneling.iot" => %{ + "defaults" => %{ + "variants" => [ + %{ + "hostname" => "api.iot-tunneling-fips.{region}.{dnsSuffix}", + "tags" => ["dualstack", "fips"] + }, + %{"hostname" => "api.iot-tunneling.{region}.{dnsSuffix}", "tags" => ["dualstack"]}, + %{"hostname" => "api.tunneling.iot-fips.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, + "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"] + } + ] + }, + "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-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"] + } + ] + } + } + }, + "thinclient" => %{ + "endpoints" => %{ + "ap-south-1" => %{}, + "ca-central-1" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "us-east-1" => %{}, + "us-west-2" => %{} + } + }, + "fsx" => %{ + "endpoints" => %{ + "fips-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" + }, + "prod-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "fsx-fips.us-east-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"]} + ] + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "fsx-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "prod-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "fsx-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-prod-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "fsx-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "fsx-fips.ca-central-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-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "fsx-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "fips-prod-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "fsx-fips.us-east-2.amazonaws.com" + }, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "fsx-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-prod-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "fsx-fips.ca-west-1.amazonaws.com" + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "fsx-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "fsx-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "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-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "fsx-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-central-2" => %{}, + "prod-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "fsx-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "fsx-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "fsx-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "fsx-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "fsx-fips.ca-west-1.amazonaws.com" + }, + "fips-prod-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "fsx-fips.us-west-2.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "fsx-fips.us-east-2.amazonaws.com" + }, + "eu-central-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" => %{} + } + }, + "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" => %{} + } + }, + "agreement-marketplace" => %{"endpoints" => %{"us-east-1" => %{}}}, + "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"]} + ] + } + } + }, + "acm" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "acm-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "acm-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "acm-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "acm-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "acm-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "acm-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "acm-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "acm-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "acm-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "acm-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "acm-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "acm-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "metrics.sagemaker" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "metrics-fips.sagemaker.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "metrics-fips.sagemaker.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "metrics-fips.sagemaker.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "metrics-fips.sagemaker.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-1" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "metrics-fips.sagemaker.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "metrics-fips.sagemaker.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "metrics-fips.sagemaker.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "metrics-fips.sagemaker.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "metrics-fips.sagemaker.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "metrics-fips.sagemaker.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "metrics-fips.sagemaker.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "metrics-fips.sagemaker.us-east-1.amazonaws.com" + }, + "eu-central-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" => %{} + } + }, + "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"]} + ] + }, + "fips-aws-global" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "networkmanager-fips.us-west-2.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"]}]} + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "xray" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "xray-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "xray-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "xray-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "xray-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "xray-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "xray-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "xray-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "xray-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" + } + } + }, + "discovery" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "us-east-1" => %{}, + "us-west-2" => %{} + } + }, + "cloudtrail" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "cloudtrail-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "cloudtrail-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "cloudtrail-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "cloudtrail-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "cloudtrail-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "cloudtrail-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "cloudtrail-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "cloudtrail-fips.us-east-2.amazonaws.com" + }, + "eu-central-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" => %{}, + "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-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"]} + ] + } + } + }, + "redshift-serverless" => %{ + "endpoints" => %{ + "ap-east-1" => %{}, + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ap-southeast-3" => %{}, + "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-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" => %{}, + "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"] + } + ] + } + } + }, + "iottwinmaker" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "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" + }, + "api-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "hostname" => "api.iottwinmaker.eu-west-1.amazonaws.com" + }, + "data-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "data.iottwinmaker.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "ap-northeast-1" => %{}, + "api-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "api.iottwinmaker.us-east-1.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" + }, + "fips-data-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "data.iottwinmaker-fips.us-west-2.amazonaws.com" + }, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "iottwinmaker-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "data-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "hostname" => "data.iottwinmaker.ap-northeast-1.amazonaws.com" + }, + "api-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "api.iottwinmaker.us-west-2.amazonaws.com" + }, + "api-ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "hostname" => "api.iottwinmaker.ap-northeast-1.amazonaws.com" + }, + "data-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "data.iottwinmaker.us-west-2.amazonaws.com" + }, + "data-eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "hostname" => "data.iottwinmaker.eu-west-1.amazonaws.com" + }, + "fips-api-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "api.iottwinmaker-fips.us-west-2.amazonaws.com" + }, + "eu-west-1" => %{}, + "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-ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "hostname" => "api.iottwinmaker.ap-south-1.amazonaws.com" + }, + "data-ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "hostname" => "data.iottwinmaker.ap-southeast-2.amazonaws.com" + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "iottwinmaker-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "data-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "hostname" => "data.iottwinmaker.eu-central-1.amazonaws.com" + }, + "ap-southeast-1" => %{}, + "api-eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "hostname" => "api.iottwinmaker.eu-central-1.amazonaws.com" + }, + "fips-api-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "api.iottwinmaker-fips.us-east-1.amazonaws.com" + }, + "fips-data-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "data.iottwinmaker-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{}, + "data-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "hostname" => "data.iottwinmaker.ap-northeast-2.amazonaws.com" + }, + "api-ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "hostname" => "api.iottwinmaker.ap-northeast-2.amazonaws.com" + } + } + }, + "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" + }, + "budgets" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "budgets.amazonaws.com" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "importexport" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1", "service" => "IngestionService"}, + "hostname" => "importexport.amazonaws.com", + "signatureVersions" => ["v2", "v4"] + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "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" + } + } + }, + "controltower" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "controltower-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "controltower-fips.ca-west-1.amazonaws.com" + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "controltower-fips.ca-central-1.amazonaws.com" + }, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "controltower-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "controltower-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "controltower-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "controltower-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "controltower-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "controltower-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "controltower-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "controltower-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "controltower-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "kafkaconnect" => %{ + "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" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "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"]} + ] + } + } + }, + "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" => %{} + } + }, + "lambda" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "lambda-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "lambda-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "lambda.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "lambda-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [%{"hostname" => "lambda.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "variants" => [%{"hostname" => "lambda.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "variants" => [%{"hostname" => "lambda.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "lambda.il-central-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"]}] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "lambda.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [%{"hostname" => "lambda.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "lambda.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "lambda.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [%{"hostname" => "lambda.ca-west-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "lambda.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "lambda.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "lambda.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "lambda.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "lambda-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "lambda.eu-central-1.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"} + } + }, + "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" => %{} + } + }, + "sms" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "sms-fips.us-west-2.amazonaws.com" + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "sms-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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" => %{} + } + }, + "api.ecr" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "ecr-fips.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, + "endpoints" => %{ + "fips-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-dkr-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ecr-fips.us-west-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "credentialScope" => %{"region" => "ap-northeast-2"}, + "hostname" => "api.ecr.ap-northeast-2.amazonaws.com" + }, + "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"]} + ] + }, + "ap-northeast-1" => %{ + "credentialScope" => %{"region" => "ap-northeast-1"}, + "hostname" => "api.ecr.ap-northeast-1.amazonaws.com" + }, + "fips-dkr-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ecr-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-3" => %{ + "credentialScope" => %{"region" => "ap-northeast-3"}, + "hostname" => "api.ecr.ap-northeast-3.amazonaws.com" + }, + "ap-southeast-4" => %{ + "credentialScope" => %{"region" => "ap-southeast-4"}, + "hostname" => "api.ecr.ap-southeast-4.amazonaws.com" + }, + "af-south-1" => %{ + "credentialScope" => %{"region" => "af-south-1"}, + "hostname" => "api.ecr.af-south-1.amazonaws.com" + }, + "fips-dkr-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ecr-fips.us-east-2.amazonaws.com" + }, + "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"]} + ] + }, + "dkr-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "ecr-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ecr-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "credentialScope" => %{"region" => "ap-south-1"}, + "hostname" => "api.ecr.ap-south-1.amazonaws.com" + }, + "ap-southeast-5" => %{ + "credentialScope" => %{"region" => "ap-southeast-5"}, + "hostname" => "api.ecr.ap-southeast-5.amazonaws.com" + }, + "ap-southeast-2" => %{ + "credentialScope" => %{"region" => "ap-southeast-2"}, + "hostname" => "api.ecr.ap-southeast-2.amazonaws.com" + }, + "eu-west-2" => %{ + "credentialScope" => %{"region" => "eu-west-2"}, + "hostname" => "api.ecr.eu-west-2.amazonaws.com" + }, + "ap-east-1" => %{ + "credentialScope" => %{"region" => "ap-east-1"}, + "hostname" => "api.ecr.ap-east-1.amazonaws.com" + }, + "sa-east-1" => %{ + "credentialScope" => %{"region" => "sa-east-1"}, + "hostname" => "api.ecr.sa-east-1.amazonaws.com" + }, + "il-central-1" => %{ + "credentialScope" => %{"region" => "il-central-1"}, + "hostname" => "api.ecr.il-central-1.amazonaws.com" + }, + "eu-south-2" => %{ + "credentialScope" => %{"region" => "eu-south-2"}, + "hostname" => "api.ecr.eu-south-2.amazonaws.com" + }, + "eu-west-1" => %{ + "credentialScope" => %{"region" => "eu-west-1"}, + "hostname" => "api.ecr.eu-west-1.amazonaws.com" + }, + "ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "hostname" => "api.ecr.ca-central-1.amazonaws.com" + }, + "ap-southeast-3" => %{ + "credentialScope" => %{"region" => "ap-southeast-3"}, + "hostname" => "api.ecr.ap-southeast-3.amazonaws.com" + }, + "eu-west-3" => %{ + "credentialScope" => %{"region" => "eu-west-3"}, + "hostname" => "api.ecr.eu-west-3.amazonaws.com" + }, + "eu-north-1" => %{ + "credentialScope" => %{"region" => "eu-north-1"}, + "hostname" => "api.ecr.eu-north-1.amazonaws.com" + }, + "eu-central-2" => %{ + "credentialScope" => %{"region" => "eu-central-2"}, + "hostname" => "api.ecr.eu-central-2.amazonaws.com" + }, + "dkr-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "ecr-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-dkr-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ecr-fips.us-west-2.amazonaws.com" + }, + "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"]} + ] + }, + "ap-southeast-1" => %{ + "credentialScope" => %{"region" => "ap-southeast-1"}, + "hostname" => "api.ecr.ap-southeast-1.amazonaws.com" + }, + "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"]} + ] + }, + "ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "hostname" => "api.ecr.ca-west-1.amazonaws.com" + }, + "ap-south-2" => %{ + "credentialScope" => %{"region" => "ap-south-2"}, + "hostname" => "api.ecr.ap-south-2.amazonaws.com" + }, + "me-south-1" => %{ + "credentialScope" => %{"region" => "me-south-1"}, + "hostname" => "api.ecr.me-south-1.amazonaws.com" + }, + "me-central-1" => %{ + "credentialScope" => %{"region" => "me-central-1"}, + "hostname" => "api.ecr.me-central-1.amazonaws.com" + }, + "dkr-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "ecr-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "eu-south-1" => %{ + "credentialScope" => %{"region" => "eu-south-1"}, + "hostname" => "api.ecr.eu-south-1.amazonaws.com" + }, + "dkr-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "ecr-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ecr-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "credentialScope" => %{"region" => "eu-central-1"}, + "hostname" => "api.ecr.eu-central-1.amazonaws.com" + } + } + }, + "edge.sagemaker" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "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" + } + } + }, + "autoscaling" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "autoscaling-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "autoscaling-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "autoscaling-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "autoscaling-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "autoscaling-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "autoscaling-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "autoscaling-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "autoscaling-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "autoscaling-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "autoscaling-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "autoscaling-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "autoscaling-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "access-analyzer" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "access-analyzer-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "access-analyzer-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "access-analyzer-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "access-analyzer-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "access-analyzer-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "access-analyzer-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "access-analyzer-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "access-analyzer-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "access-analyzer-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "access-analyzer-fips.ca-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "access-analyzer-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "access-analyzer-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "directconnect" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "directconnect-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "directconnect-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "directconnect-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "directconnect-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "directconnect-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "directconnect-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "directconnect-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "directconnect-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "directconnect-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "directconnect-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "directconnect-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "directconnect-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "athena" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "athena-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "athena-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "athena.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "athena.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "athena.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "athena-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "athena.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "athena.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "athena-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "athena.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "athena.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "athena.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [%{"hostname" => "athena.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "variants" => [%{"hostname" => "athena.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "variants" => [%{"hostname" => "athena.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "athena.il-central-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"]}] + }, + "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"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "athena.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [%{"hostname" => "athena.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "athena.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "athena.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "athena.ap-southeast-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"]} + ] + }, + "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"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "athena.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "athena.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "athena.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "athena-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "athena.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "athena-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "athena.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "robomaker" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-southeast-1" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-2" => %{} + } + }, + "securityhub" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "securityhub-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "securityhub-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "securityhub-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "securityhub.eu-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.sa-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.il-central-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"]} + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "securityhub.eu-west-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "securityhub.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.ca-west-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "securityhub.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "securityhub-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "securityhub.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "ram" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ram-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ram-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ram-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "ram-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ram-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ram-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "ram-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ram-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ram-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "ram-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "ram-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ram-fips.us-east-2.amazonaws.com" + }, + "eu-central-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-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"]} + ] + } + } + }, + "sns" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "sns-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "sns-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "sns-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "sns-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "sns-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "sns-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "sns-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "sns-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "sns-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "sns-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "ec2" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ec2-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ec2-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "ec2.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "ec2.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "ec2-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{ + "variants" => [%{"hostname" => "ec2.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ec2-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [%{"hostname" => "ec2.ap-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "ec2.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [%{"hostname" => "ec2.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "variants" => [%{"hostname" => "ec2.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "variants" => [%{"hostname" => "ec2.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{ + "variants" => [%{"hostname" => "ec2.eu-west-1.api.aws", "tags" => ["dualstack"]}] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "ec2-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]}, + %{"hostname" => "ec2.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{ + "variants" => [%{"hostname" => "ec2.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "variants" => [%{"hostname" => "ec2.eu-north-1.api.aws", "tags" => ["dualstack"]}] + }, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ec2-fips.us-west-2.amazonaws.com", "tags" => ["fips"]}, + %{"hostname" => "ec2.us-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "ec2.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "ec2-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{ + "variants" => [%{"hostname" => "ec2.me-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "ec2-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [%{"hostname" => "ec2.eu-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ec2-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [%{"hostname" => "ec2.eu-central-1.api.aws", "tags" => ["dualstack"]}] + } + } + }, + "transfer" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "transfer-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "transfer-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "transfer-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "transfer-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "transfer-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "transfer-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" + } + } + }, + "network-firewall" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "network-firewall-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "network-firewall-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "network-firewall-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "network-firewall-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "network-firewall-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "synthetics" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "synthetics-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "synthetics-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "synthetics-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "synthetics-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "synthetics-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "synthetics-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" => "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"]} + ] + } + } + }, + "globalaccelerator" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "hostname" => "globalaccelerator-fips.us-west-2.amazonaws.com" + } + } + }, + "notifications-contacts" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "notifications-contacts.us-east-1.api.aws" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "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" => %{} + } + }, + "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"]} + ] + } + } + }, + "license-manager-user-subscriptions" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "license-manager-user-subscriptions-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "license-manager-user-subscriptions-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-user-subscriptions-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-user-subscriptions-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "license-manager-user-subscriptions-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-user-subscriptions-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "license-manager-user-subscriptions-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "license-manager-user-subscriptions-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "elasticache" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "elasticache-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "elasticache-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "elasticache-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "elasticache-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "elasticache-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "elasticache-fips.us-west-1.amazonaws.com" + }, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "elasticache-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "elasticache-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "elasticache-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" + } + } + }, + "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" => %{} + } + }, + "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" + } + } + }, + "workmail" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{}} + }, + "config" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "config-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "config-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "config-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "config-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "config-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "config-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "config-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "config-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "license-manager-linux-subscriptions" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "license-manager-linux-subscriptions-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "license-manager-linux-subscriptions-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => + "license-manager-linux-subscriptions-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => + "license-manager-linux-subscriptions-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "license-manager-linux-subscriptions-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => + "license-manager-linux-subscriptions-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => + "license-manager-linux-subscriptions-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "license-manager-linux-subscriptions-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "translate" => %{ + "defaults" => %{"protocols" => ["https"]}, + "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" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "translate-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "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"]} + ] + }, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "translate-fips.us-west-2.amazonaws.com" + } + } + }, + "lakeformation" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "lakeformation-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "lakeformation-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "lakeformation-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "lakeformation.eu-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.sa-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.il-central-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"]} + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "lakeformation.eu-west-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "lakeformation.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ca-west-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "lakeformation.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "lakeformation-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "lakeformation.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "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" => %{} + } + }, + "appconfig" => %{ + "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" => %{} + } + }, + "ivsrealtime" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-west-2" => %{} + } + }, + "sts" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "sts-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "sts.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "sts-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "sts-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "sts-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "sts-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "sts-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "sts-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "sts-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + }, + "partitionEndpoint" => "aws-global" + }, + "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" + } + } + }, + "codedeploy" => %{ + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "codedeploy-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "codedeploy-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "codedeploy-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "codedeploy-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "codedeploy-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "codedeploy-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "codedeploy-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "codedeploy-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" => %{ + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "ca-west-1-fips" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "s3-control-fips.ca-west-1.amazonaws.com", + "signatureVersions" => ["s3v4"] + }, + "ca-central-1-fips" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "s3-control-fips.ca-central-1.amazonaws.com", + "signatureVersions" => ["s3v4"] + }, + "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-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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "s3-control-fips.us-west-1.amazonaws.com", + "signatureVersions" => ["s3v4"] + }, + "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"] + } + ] + }, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "s3-control-fips.us-east-2.amazonaws.com", + "signatureVersions" => ["s3v4"] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "s3-control-fips.us-west-2.amazonaws.com", + "signatureVersions" => ["s3v4"] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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-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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "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"] + } + ] + }, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "s3-control-fips.us-east-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"] + } + ] + } + } + }, + "entitlement.marketplace" => %{ + "defaults" => %{"credentialScope" => %{"service" => "aws-marketplace"}}, + "endpoints" => %{"us-east-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" => %{}, + "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" => %{} + } + }, + "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" => %{} + } + }, + "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" => %{} + } + }, + "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-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"}, + "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"}, + "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"} + } + }, + "scheduler" => %{ + "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" => %{}, + "me-central-1" => %{}, + "me-south-1" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-1" => %{}, + "us-west-2" => %{} + } + }, + "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"]} + ] + } + } + }, + "oam" => %{ + "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" => %{} + } + }, + "devicefarm" => %{"endpoints" => %{"us-west-2" => %{}}}, + "aoss" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ca-central-1" => %{}, + "eu-central-1" => %{}, + "eu-central-2" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "eu-west-3" => %{}, + "sa-east-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "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" => %{} + } + }, + "apptest" => %{ + "endpoints" => %{ + "ap-southeast-2" => %{}, + "eu-central-1" => %{}, + "fips-us-east-1" => %{"deprecated" => true}, + "sa-east-1" => %{}, + "us-east-1" => %{"variants" => [%{"tags" => ["fips"]}]} + } + }, + "savingsplans" => %{ + "endpoints" => %{ + "aws-global" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "hostname" => "savingsplans.amazonaws.com" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-global" + }, + "ecs" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "ecs-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "ecs-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ecs-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ecs-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "ecs-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ecs-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ecs-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "ecs-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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"]} + ] + } + } + }, + "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" => %{} + } + }, + "resource-explorer-2" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "resource-explorer-2-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "resource-explorer-2-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "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"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "resource-explorer-2-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-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"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "resource-explorer-2-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "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"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "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"] + } + ] + }, + "ap-southeast-1" => %{}, + "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"] + } + ] + }, + "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"] + } + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "resource-explorer-2-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "resource-explorer-2-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" + } + } + }, + "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" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "emr-serverless-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" => "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" + }, + "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"]} + ] + } + } + }, + "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" => %{}, + "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"]} + ] + } + } + }, + "servicequotas" => %{ + "defaults" => %{"protocols" => ["https"]}, + "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" => %{} + } + }, + "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-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"}, + "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"}, + "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"]} + ] + } + } + }, + "iotthingsgraph" => %{ + "defaults" => %{"credentialScope" => %{"service" => "iotthingsgraph"}}, + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-southeast-2" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-west-2" => %{} + } + }, + "omics" => %{ + "endpoints" => %{ + "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"]} + ] + } + } + }, + "batch" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "fips.batch.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "fips.batch.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "fips.batch.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "fips.batch.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "fips.batch.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "fips.batch.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "fips.batch.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "fips.batch.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "fips.batch.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "firehose" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "firehose-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "firehose-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [ + %{"hostname" => "firehose.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "firehose-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{"hostname" => "firehose.eu-west-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{"hostname" => "firehose.sa-east-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "firehose.il-central-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"]} + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "firehose.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{"hostname" => "firehose.eu-west-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{"hostname" => "firehose.eu-north-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "firehose.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "firehose.ca-west-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{"hostname" => "firehose.ap-south-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-south-1" => %{ + "variants" => [ + %{"hostname" => "firehose.me-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "firehose.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{"hostname" => "firehose.eu-south-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "firehose-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "firehose.eu-central-1.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"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "securitylake-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "securitylake-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "securitylake-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "elasticloadbalancing" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "elasticloadbalancing-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "elasticloadbalancing-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticloadbalancing-fips.us-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticloadbalancing-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "elasticloadbalancing-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticloadbalancing-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "elasticloadbalancing-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "elasticloadbalancing-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "api.fleethub.iot" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "api.fleethub.iot-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "eu-central-1" => %{}, + "eu-north-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "api.fleethub.iot-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "api.fleethub.iot-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "api.fleethub.iot-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "api.fleethub.iot-fips.us-west-2.amazonaws.com" + }, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "api.fleethub.iot-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "api.fleethub.iot-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "api.fleethub.iot-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + } + } + }, + "codepipeline" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "codepipeline-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "codepipeline-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "codepipeline-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "codepipeline-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "codepipeline-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "codepipeline-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "codepipeline-fips.ca-central-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "codepipeline-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "codepipeline-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "codepipeline-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "application-autoscaling" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "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" => %{} + } + }, + "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"]} + ] + } + } + }, + "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" => %{} + } + }, + "guardduty" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "guardduty-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "guardduty-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-south-1" => %{}, + "us-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "guardduty-fips.us-west-1.amazonaws.com" + }, + "ap-southeast-2" => %{}, + "us-east-2-fips" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "guardduty-fips.us-east-2.amazonaws.com" + }, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "us-west-2-fips" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "guardduty-fips.us-west-2.amazonaws.com" + }, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "guardduty-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "guardduty-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "us-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "guardduty-fips.us-east-1.amazonaws.com" + }, + "eu-central-1" => %{} + }, + "isRegionalized" => true + }, + "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" => %{} + } + }, + "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"]} + ] + } + } + }, + "api.pricing" => %{ + "defaults" => %{"credentialScope" => %{"service" => "pricing"}}, + "endpoints" => %{"ap-south-1" => %{}, "eu-central-1" => %{}, "us-east-1" => %{}} + }, + "api.elastic-inference" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{ + "hostname" => "api.elastic-inference.ap-northeast-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "hostname" => "api.elastic-inference.ap-northeast-2.amazonaws.com" + }, + "eu-west-1" => %{"hostname" => "api.elastic-inference.eu-west-1.amazonaws.com"}, + "us-east-1" => %{"hostname" => "api.elastic-inference.us-east-1.amazonaws.com"}, + "us-east-2" => %{"hostname" => "api.elastic-inference.us-east-2.amazonaws.com"}, + "us-west-2" => %{"hostname" => "api.elastic-inference.us-west-2.amazonaws.com"} + } + }, + "route53domains" => %{"endpoints" => %{"us-east-1" => %{}}}, + "logs" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "logs-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "logs-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{"hostname" => "logs.ap-northeast-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"]} + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{"hostname" => "logs.ap-northeast-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{"hostname" => "logs.ap-northeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-central-1" => %{ + "credentialScope" => %{"region" => "ca-central-1"}, + "deprecated" => true, + "hostname" => "logs-fips.ca-central-1.amazonaws.com" + }, + "ap-southeast-4" => %{ + "variants" => [ + %{"hostname" => "logs.ap-southeast-4.api.aws", "tags" => ["dualstack"]} + ] + }, + "af-south-1" => %{ + "variants" => [%{"hostname" => "logs.af-south-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"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "logs-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [%{"hostname" => "logs.ap-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "ap-southeast-5" => %{ + "variants" => [ + %{"hostname" => "logs.ap-southeast-5.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{"hostname" => "logs.ap-southeast-2.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-2" => %{ + "variants" => [%{"hostname" => "logs.eu-west-2.api.aws", "tags" => ["dualstack"]}] + }, + "ap-east-1" => %{ + "variants" => [%{"hostname" => "logs.ap-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "sa-east-1" => %{ + "variants" => [%{"hostname" => "logs.sa-east-1.api.aws", "tags" => ["dualstack"]}] + }, + "il-central-1" => %{ + "variants" => [ + %{"hostname" => "logs.il-central-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"]}] + }, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "logs-fips.ca-central-1.amazonaws.com", "tags" => ["fips"]}, + %{"hostname" => "logs.ca-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{"hostname" => "logs.ap-southeast-3.api.aws", "tags" => ["dualstack"]} + ] + }, + "eu-west-3" => %{ + "variants" => [%{"hostname" => "logs.eu-west-3.api.aws", "tags" => ["dualstack"]}] + }, + "eu-north-1" => %{ + "variants" => [%{"hostname" => "logs.eu-north-1.api.aws", "tags" => ["dualstack"]}] + }, + "eu-central-2" => %{ + "variants" => [ + %{"hostname" => "logs.eu-central-2.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"]} + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{"hostname" => "logs.ap-southeast-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"]} + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{"hostname" => "logs-fips.ca-west-1.amazonaws.com", "tags" => ["fips"]}, + %{"hostname" => "logs.ca-west-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "ap-south-2" => %{ + "variants" => [%{"hostname" => "logs.ap-south-2.api.aws", "tags" => ["dualstack"]}] + }, + "me-south-1" => %{ + "variants" => [%{"hostname" => "logs.me-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "me-central-1" => %{ + "variants" => [ + %{"hostname" => "logs.me-central-1.api.aws", "tags" => ["dualstack"]} + ] + }, + "fips-ca-west-1" => %{ + "credentialScope" => %{"region" => "ca-west-1"}, + "deprecated" => true, + "hostname" => "logs-fips.ca-west-1.amazonaws.com" + }, + "eu-south-1" => %{ + "variants" => [%{"hostname" => "logs.eu-south-1.api.aws", "tags" => ["dualstack"]}] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "logs-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{"hostname" => "logs.eu-central-1.api.aws", "tags" => ["dualstack"]} + ] + } + } + }, + "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" => %{} + } + }, + "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"]}]} + } + }, + "connect-campaigns" => %{ + "endpoints" => %{ + "af-south-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"] + } + ] + } + } + }, + "trustedadvisor" => %{ + "endpoints" => %{ + "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" + } + } + }, + "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" + } + } + }, + "qldb" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "qldb-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" => "qldb-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "qldb-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "qldb-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "qldb-fips.us-west-2.amazonaws.com" + }, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "qldb-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "qldb-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "qldb-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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" => %{} + } + }, + "mq" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "mq-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "mq-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "mq-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "mq-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "mq-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "mq-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "mq-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "mq-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "cognito-identity" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "cognito-identity-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "cognito-identity-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-northeast-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"] + } + ] + }, + "ap-northeast-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-northeast-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-northeast-3" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-northeast-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-southeast-4" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-southeast-4.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "af-south-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.af-south-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"] + } + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "cognito-identity-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-south-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-southeast-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-southeast-2.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-west-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.eu-west-2.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-east-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-east-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "sa-east-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.sa-east-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "il-central-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.il-central-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"] + } + ] + }, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ca-central-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-southeast-3" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-southeast-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-west-3" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.eu-west-3.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-north-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.eu-north-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-central-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.eu-central-2.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"] + } + ] + }, + "ap-southeast-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-southeast-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"] + } + ] + }, + "ca-west-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ca-west-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "ap-south-2" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.ap-south-2.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "me-south-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.me-south-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "me-central-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.me-central-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "eu-south-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.eu-south-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + }, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "cognito-identity-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{ + "variants" => [ + %{ + "hostname" => "cognito-identity.eu-central-1.amazonaws.com", + "tags" => ["dualstack"] + } + ] + } + } + }, + "transcribestreaming" => %{ + "endpoints" => %{ + "af-south-1" => %{}, + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "transcribestreaming-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" => "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" => %{}, + "us-east-1" => %{ + "variants" => [ + %{ + "hostname" => "transcribestreaming-fips.us-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-east-2" => %{ + "variants" => [ + %{ + "hostname" => "transcribestreaming-fips.us-east-2.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "us-west-2" => %{ + "variants" => [ + %{ + "hostname" => "transcribestreaming-fips.us-west-2.amazonaws.com", + "tags" => ["fips"] + } + ] + } + } + }, + "ssm-incidents" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{ + "hostname" => "ssm-incidents-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-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" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "ssm-incidents-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "ssm-incidents-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "ssm-incidents-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "ssm-incidents-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "migrationhub-strategy" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "us-east-1" => %{}, + "us-west-2" => %{} + } + }, + "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" => %{} + } + }, + "frauddetector" => %{ + "endpoints" => %{ + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "eu-west-1" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "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" + }, + "states" => %{ + "endpoints" => %{ + "fips-us-west-2" => %{ + "credentialScope" => %{"region" => "us-west-2"}, + "deprecated" => true, + "hostname" => "states-fips.us-west-2.amazonaws.com" + }, + "fips-us-east-1" => %{ + "credentialScope" => %{"region" => "us-east-1"}, + "deprecated" => true, + "hostname" => "states-fips.us-east-1.amazonaws.com" + }, + "ap-northeast-2" => %{}, + "us-west-1" => %{ + "variants" => [ + %{"hostname" => "states-fips.us-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-northeast-1" => %{}, + "ap-northeast-3" => %{}, + "ap-southeast-4" => %{}, + "af-south-1" => %{}, + "us-east-1" => %{ + "variants" => [ + %{"hostname" => "states-fips.us-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "fips-us-west-1" => %{ + "credentialScope" => %{"region" => "us-west-1"}, + "deprecated" => true, + "hostname" => "states-fips.us-west-1.amazonaws.com" + }, + "ap-south-1" => %{}, + "ap-southeast-5" => %{}, + "ap-southeast-2" => %{}, + "eu-west-2" => %{}, + "ap-east-1" => %{}, + "sa-east-1" => %{}, + "il-central-1" => %{}, + "eu-south-2" => %{}, + "eu-west-1" => %{}, + "ca-central-1" => %{}, + "ap-southeast-3" => %{}, + "eu-west-3" => %{}, + "eu-north-1" => %{}, + "eu-central-2" => %{}, + "us-west-2" => %{ + "variants" => [ + %{"hostname" => "states-fips.us-west-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ap-southeast-1" => %{}, + "us-east-2" => %{ + "variants" => [ + %{"hostname" => "states-fips.us-east-2.amazonaws.com", "tags" => ["fips"]} + ] + }, + "ca-west-1" => %{}, + "ap-south-2" => %{}, + "me-south-1" => %{}, + "me-central-1" => %{}, + "eu-south-1" => %{}, + "fips-us-east-2" => %{ + "credentialScope" => %{"region" => "us-east-2"}, + "deprecated" => true, + "hostname" => "states-fips.us-east-2.amazonaws.com" + }, + "eu-central-1" => %{} + } + }, + "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" + } + } + }, + "mturk-requester" => %{ + "endpoints" => %{ + "sandbox" => %{"hostname" => "mturk-requester-sandbox.us-east-1.amazonaws.com"}, + "us-east-1" => %{} + }, + "isRegionalized" => false + }, + "greengrass" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "ap-northeast-1" => %{}, + "ap-northeast-2" => %{}, + "ap-south-1" => %{}, + "ap-southeast-1" => %{}, + "ap-southeast-2" => %{}, + "ca-central-1" => %{ + "variants" => [ + %{"hostname" => "greengrass-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" => "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 + }, + "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"]} + ] + } + } + }, + "projects.iot1click" => %{ + "endpoints" => %{ + "ap-northeast-1" => %{}, + "eu-central-1" => %{}, + "eu-west-1" => %{}, + "eu-west-2" => %{}, + "us-east-1" => %{}, + "us-east-2" => %{}, + "us-west-2" => %{} + } + }, + "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"] + } + ] + } + } + } + } + }, + %{ + "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" => %{ + "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"] + } + ] + } + } + }, + "glue" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "secretsmanager" => %{ + "endpoints" => %{ + "cn-north-1" => %{"variants" => [%{"tags" => ["dualstack"]}]}, + "cn-northwest-1" => %{"variants" => [%{"tags" => ["dualstack"]}]} + } + }, + "cloudformation" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "inspector2" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "kafka" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "codecommit" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "iot" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "organizations" => %{ + "endpoints" => %{ + "aws-cn-global" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "organizations.cn-northwest-1.amazonaws.com.cn" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-cn-global" + }, + "kinesisvideo" => %{"endpoints" => %{"cn-north-1" => %{}}}, + "identitystore" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "runtime.sagemaker" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "backup" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "monitoring" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "databrew" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "acm-pca" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "iam" => %{ + "endpoints" => %{ + "aws-cn-global" => %{ + "credentialScope" => %{"region" => "cn-north-1"}, + "hostname" => "iam.cn-north-1.amazonaws.com.cn" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-cn-global" + }, + "kinesisanalytics" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "sso" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "rds" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "ssm" => %{"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"] + } + ] + } + } + }, + "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"] + } + ] + } + } + }, + "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" + }, + "arc-zonal-shift" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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" + } + } + }, + "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"] + } + ] + } + } + }, + "storagegateway" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-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"] + } + ] + } + } + }, + "ebs" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "cur" => %{"endpoints" => %{"cn-northwest-1" => %{}}}, + "memory-db" => %{"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" + } + } + }, + "account" => %{ + "endpoints" => %{ + "aws-cn-global" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "account.cn-northwest-1.amazonaws.com.cn" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-cn-global" + }, + "kms" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "route53resolver" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "polly" => %{ + "endpoints" => %{ + "cn-northwest-1" => %{ + "variants" => [ + %{ + "hostname" => "polly.cn-northwest-1.api.amazonwebservices.com.cn", + "tags" => ["dualstack"] + } + ] + } + } + }, + "ioteventsdata" => %{ + "endpoints" => %{ + "cn-north-1" => %{ + "credentialScope" => %{"region" => "cn-north-1"}, + "hostname" => "data.iotevents.cn-north-1.amazonaws.com.cn" + } + } + }, + "autoscaling-plans" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "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" + }, + "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" + } + } + }, + "appconfigdata" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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" + } + } + }, + "schemas" => %{"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" + } + } + }, + "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" + } + } + }, + "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"] + } + ] + } + } + }, + "quicksight" => %{"endpoints" => %{"cn-north-1" => %{}}}, + "license-manager" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "fms" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "swf" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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"] + } + ] + } + } + }, + "emr-containers" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "data.iot" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "iotdata"}, + "protocols" => ["https"] + }, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "resource-groups" => %{"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" + } + } + }, + "api.sagemaker" => %{"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" + }, + "cn-northwest-1" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "cn.transcribe.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "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"] + } + ] + } + } + }, + "tagging" => %{"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" + } + } + }, + "redshift" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "iotanalytics" => %{"endpoints" => %{"cn-north-1" => %{}}}, + "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"] + } + ] + } + } + }, + "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"] + } + ] + } + } + }, + "apigateway" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "cassandra" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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" + } + } + }, + "events" => %{"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" + }, + "appsync" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "applicationinsights" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "workspaces" => %{"endpoints" => %{"cn-northwest-1" => %{}}}, + "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" + } + } + }, + "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"] + } + ] + } + } + }, + "data.jobs.iot" => %{"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" + } + } + }, + "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" + } + } + }, + "streams.dynamodb" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "dynamodb"}, + "protocols" => ["http", "https"] + }, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "gamelift" => %{"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" + }, + "rolesanywhere" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "dynamodb" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "sqs" => %{ + "defaults" => %{ + "protocols" => ["http", "https"], + "sslCommonName" => "{region}.queue.{dnsSuffix}" + }, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "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" + } + } + }, + "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" + } + } + }, + "dax" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "mediaconvert" => %{ + "endpoints" => %{ + "cn-northwest-1" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "mediaconvert.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "dms" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "kinesis" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "eks" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "ds" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "api.tunneling.iot" => %{ + "defaults" => %{ + "variants" => [ + %{ + "hostname" => "api.iot-tunneling-fips.{region}.{dnsSuffix}", + "tags" => ["dualstack", "fips"] + }, + %{"hostname" => "api.iot-tunneling.{region}.{dnsSuffix}", "tags" => ["dualstack"]}, + %{"hostname" => "api.tunneling.iot-fips.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, + "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"] + } + ] + } + } + }, + "fsx" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "acm" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "metrics.sagemaker" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "xray" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "cloudtrail" => %{"endpoints" => %{"cn-north-1" => %{}, "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" => %{} + } + }, + "redshift-serverless" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-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" + } + } + }, + "route53" => %{ + "endpoints" => %{ + "aws-cn-global" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "route53.amazonaws.com.cn" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-cn-global" + }, + "budgets" => %{ + "endpoints" => %{ + "aws-cn-global" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "budgets.amazonaws.com.cn" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-cn-global" + }, + "servicecatalog" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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"] + } + ] + } + } + }, + "sms" => %{"endpoints" => %{"cn-north-1" => %{}}}, + "api.ecr" => %{ + "endpoints" => %{ + "cn-north-1" => %{ + "credentialScope" => %{"region" => "cn-north-1"}, + "hostname" => "api.ecr.cn-north-1.amazonaws.com.cn" + }, + "cn-northwest-1" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "api.ecr.cn-northwest-1.amazonaws.com.cn" + } + } + }, + "autoscaling" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "access-analyzer" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "directconnect" => %{"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"] + } + ] + } + } + }, + "securityhub" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "ram" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "sns" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "ec2" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "transfer" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "network-firewall" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "synthetics" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "glacier" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "elasticache" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "config" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "license-manager-linux-subscriptions" => %{ + "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"] + } + ] + } + } + }, + "appconfig" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "sts" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "codedeploy" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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"] + } + ] + } + } + }, + "entitlement.marketplace" => %{ + "endpoints" => %{ + "cn-northwest-1" => %{ + "credentialScope" => %{"region" => "cn-northwest-1"}, + "hostname" => "entitlement-marketplace.cn-northwest-1.amazonaws.com.cn", + "protocols" => ["https"] + } + } + }, + "airflow" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "personalize" => %{"endpoints" => %{"cn-north-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" + } + } + }, + "oam" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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 + }, + "ecs" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "iotsitewise" => %{"endpoints" => %{"cn-north-1" => %{}}}, + "serverlessrepo" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "cn-north-1" => %{"protocols" => ["https"]}, + "cn-northwest-1" => %{"protocols" => ["https"]} + } + }, + "emr-serverless" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "servicequotas" => %{ + "defaults" => %{"protocols" => ["https"]}, + "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" + } + } + }, + "batch" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "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"] + } + ] + } + } + }, + "elasticloadbalancing" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "codepipeline" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "application-autoscaling" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + }, + "iotevents" => %{"endpoints" => %{"cn-north-1" => %{}}}, + "guardduty" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}, + "isRegionalized" => true + }, + "pipes" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "api.pricing" => %{ + "defaults" => %{"credentialScope" => %{"service" => "pricing"}}, + "endpoints" => %{"cn-northwest-1" => %{}} + }, + "logs" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "mq" => %{"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"] + } + ] + } + } + }, + "transcribestreaming" => %{"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"] + } + ] + } + } + }, + "codebuild" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "greengrass" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"cn-north-1" => %{}}, + "isRegionalized" => true + }, + "iotsecuredtunneling" => %{"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" => %{ + "dlm" => %{ + "endpoints" => %{ + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "dlm.us-gov-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "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.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "dlm.us-gov-west-1.amazonaws.com" + } + } + }, + "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"]} + ] + } + } + }, + "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} + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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" + } + } + }, + "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"] + } + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "rekognition-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" + } + } + }, + "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"]} + ] + } + } + }, + "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" + }, + "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"] + } + ] + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "backup" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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" + }, + "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"]} + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "sms-voice-fips.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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-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"] + } + ] + } + } + }, + "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"] + } + ] + } + } + }, + "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" + } + } + }, + "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" + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "metering.marketplace" => %{ + "defaults" => %{"credentialScope" => %{"service" => "aws-marketplace"}}, + "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}} + }, + "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"] + } + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "backup-gateway" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "arc-zonal-shift" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "ebs" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "memory-db" => %{"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" + } + } + }, + "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"] + } + ] + } + } + }, + "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" + } + } + }, + "route53resolver" => %{ + "endpoints" => %{ + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "route53resolver.us-gov-east-1.amazonaws.com", "tags" => ["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"]} + ] + }, + "us-gov-west-1-fips" => %{ + "deprecated" => true, + "hostname" => "route53resolver.us-gov-west-1.amazonaws.com" + } + } + }, + "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"]}]} + } + }, + "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"]} + ] + } + } + }, + "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"] + } + ] + } + } + }, + "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"] + } + } + }, + "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"] + } + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{ + "hostname" => "resiliencehub-fips.us-gov-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + } + } + }, + "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"]} + ] + } + } + }, + "wellarchitected" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "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"]} + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "snowball-fips.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"]} + ] + } + } + }, + "cloudhsm" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, + "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"]} + ] + } + } + }, + "servicecatalog-appregistry" => %{ + "defaults" => %{ + "variants" => [ + %{ + "hostname" => "servicecatalog-appregistry.{region}.{dnsSuffix}", + "tags" => ["fips"] + } + ] + }, + "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}} + }, + "schemas" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "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" + } + } + }, + "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"} + } + }, + "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" + } + } + }, + "quicksight" => %{"endpoints" => %{"api" => %{}, "us-gov-west-1" => %{}}}, + "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"]} + ] + } + } + }, + "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"] + } + ] + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "docdb" => %{ + "endpoints" => %{ + "us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "hostname" => "rds.us-gov-west-1.amazonaws.com" + } + } + }, + "api.sagemaker" => %{ + "defaults" => %{ + "variants" => [ + %{"hostname" => "api-fips.sagemaker.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, + "endpoints" => %{ + "us-gov-east-1" => %{}, + "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"]} + ] + } + } + }, + "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"]} + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "fips.transcribe.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"]} + ] + } + } + }, + "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"] + } + ] + } + } + }, + "tagging" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "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"} + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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"] + } + ] + } + } + }, + "apigateway" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"} + } + }, + "api.detective" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{ + "us-gov-east-1" => %{ + "variants" => [ + %{ + "hostname" => "api.detective-fips.us-gov-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] + }, + "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"] + } + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "api.detective-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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "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" + }, + "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" + } + } + }, + "applicationinsights" => %{ + "endpoints" => %{ + "us-gov-east-1" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "hostname" => "applicationinsights.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "hostname" => "applicationinsights.us-gov-west-1.amazonaws.com" + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"] + } + ] + } + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"] + } + ] + } + } + }, + "managedblockchain" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, + "streams.dynamodb" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "dynamodb"}, + "variants" => [ + %{"hostname" => "streams.dynamodb.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, + "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}} + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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" => %{} + } + }, + "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"] + } + ] + } + } + }, + "dynamodb" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "dynamodb.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, + "endpoints" => %{ + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "dynamodb.us-gov-east-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-gov-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "deprecated" => true, + "hostname" => "dynamodb.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "dynamodb.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "dynamodb.us-gov-west-1.amazonaws.com" + } + } + }, + "sqs" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "sqs.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, + "endpoints" => %{ + "us-gov-east-1" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "hostname" => "sqs.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "hostname" => "sqs.us-gov-west-1.amazonaws.com", + "protocols" => ["http", "https"], + "sslCommonName" => "{region}.queue.{dnsSuffix}" + } + } + }, + "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"] + } + ] + } + } + }, + "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"} + } + }, + "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"]} + ] + } + } + }, + "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" + } + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "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"]} + ] + } + } + }, + "api.tunneling.iot" => %{ + "defaults" => %{ + "variants" => [ + %{ + "hostname" => "api.iot-tunneling-fips.{region}.{dnsSuffix}", + "tags" => ["dualstack", "fips"] + }, + %{"hostname" => "api.iot-tunneling.{region}.{dnsSuffix}", "tags" => ["dualstack"]}, + %{"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.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"] + } + ] + } + } + }, + "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"]} + ] + } + } + }, + "models-v2-lex" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, + "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" + } } }, - "budgets" => %{ + "metrics.sagemaker" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "networkmanager" => %{ "endpoints" => %{ - "aws-global" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "budgets.amazonaws.com" + "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"]} + ] + }, + "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-global" - }, - "servicecatalog" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } + "partitionEndpoint" => "aws-us-gov-global" }, - "quicksight" => %{ + "xray" => %{ "endpoints" => %{ - "us-east-2" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-northeast-1" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "sa-east-1" => %{} + "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"]} + ] + } } }, "cloudtrail" => %{ + "defaults" => %{ + "variants" => [ + %{"hostname" => "cloudtrail.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } - }, - "opsworks" => %{ - "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-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" => %{} + "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"]} + ] + } } }, - "appstream2" => %{ + "data-ats.iot" => %{ "defaults" => %{ - "credentialScope" => %{"service" => "appstream"}, + "credentialScope" => %{"service" => "iotdata"}, "protocols" => ["https"] }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "machinelearning" => %{"endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}}}, - "ssm" => %{ + "redshift-serverless" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"] + } + ] + } } }, - "ssm-incidents" => %{ + "iottwinmaker" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"] + } + ] + } } }, - "ssm-contacts" => %{ + "route53" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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" + }, + "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" + } } }, - "servicediscovery" => %{ + "controltower" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-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" => %{} + "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" + } } }, - "dax" => %{ + "lambda" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-west-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "ecr" => %{ + "sms" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "fips-us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "sms-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "sms-fips.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + } } }, - "eks" => %{ + "runtime-v2-lex" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, + "api.ecr" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "ecr-fips.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + }, + "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"]} + ] + } } }, - "cognito-idp" => %{ + "meetings-chime" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "sa-east-1" => %{} + "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" + } } }, - "runtime.sagemaker" => %{ + "autoscaling" => %{ + "defaults" => %{ + "variants" => [ + %{"hostname" => "autoscaling.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "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" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{}, - "sa-east-1" => %{} + "us-gov-east-1" => %{"protocols" => ["http", "https"]}, + "us-gov-west-1" => %{"protocols" => ["http", "https"]} } }, - "a2i-runtime.sagemaker" => %{ + "access-analyzer" => %{ "endpoints" => %{ - "us-east-2" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-northeast-1" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{} + "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"]} + ] + }, + "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"]} + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "access-analyzer.us-gov-west-1.amazonaws.com" + } } }, - "cloudhsm" => %{ + "directconnect" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"] + } + ] + } } }, - "a4b" => %{"endpoints" => %{"us-east-1" => %{}}}, - "iot" => %{ - "defaults" => %{"credentialScope" => %{"service" => "execute-api"}}, + "athena" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "waf-regional" => %{ + "robomaker" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, + "securityhub" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "rekognition" => %{ + "ram" => %{ "endpoints" => %{ - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "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-1" => %{}, - "us-west-2" => %{} + "us-gov-east-1" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "hostname" => "ram.us-gov-east-1.amazonaws.com", + "variants" => [ + %{"hostname" => "ram.us-gov-east-1.amazonaws.com", "tags" => ["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" => [ + %{"hostname" => "ram.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "ram.us-gov-west-1.amazonaws.com" + } } }, - # Deprecated - will not work after 2024-06-29: - "chime" => %{ + "cloudhsmv2" => %{ + "defaults" => %{"credentialScope" => %{"service" => "cloudhsm"}}, "endpoints" => %{ - "aws-global" => %{ - "hostname" => "service.chime.aws.amazon.com", - "signatureVersions" => ["v2", "v3", "v4"] + "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"]} + ] } - }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" - }, - "chime-sdk-identity" => %{ - "defaults" => %{"signatureVersions" => ["v4"]}, - "endpoints" => - Enum.map( - chime_identity_regions, - &{&1, %{"hostname" => "identity-chime.#{&1}.amazonaws.com"}} - ) - |> Map.new() - }, - "chime-sdk-media-pipelines" => %{ - "defaults" => %{"signatureVersions" => ["v4"]}, - "endpoints" => - Enum.map( - chime_media_pipeline_regions, - &{&1, %{"hostname" => "media-pipelines-chime.#{&1}.amazonaws.com"}} - ) - |> Map.new() - }, - "chime-sdk-meetings" => %{ - "defaults" => %{"signatureVersions" => ["v4"]}, - "endpoints" => - Enum.map( - chime_meeting_regions, - &{&1, %{"hostname" => "meetings-chime.#{&1}.amazonaws.com"}} - ) - |> Map.new() - }, - "chime-sdk-messaging" => %{ - "defaults" => %{"signatureVersions" => ["v4"]}, - "endpoints" => - Enum.map( - chime_messaging_regions, - &{&1, %{"hostname" => "messaging-chime.#{&1}.amazonaws.com"}} - ) - |> Map.new() - }, - "chime-sdk-voice" => %{ - "defaults" => %{"signatureVersions" => ["v4"]}, - "endpoints" => - Enum.map( - chime_voice_regions, - &{&1, %{"hostname" => "voice-chime.#{&1}.amazonaws.com"}} - ) - |> Map.new() + } }, - "s3" => %{ - "defaults" => %{"protocols" => ["http", "https"], "signatureVersions" => ["s3v4"]}, + "sns" => %{ "endpoints" => %{ - "ap-northeast-1" => %{ - "hostname" => "s3.ap-northeast-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] - }, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{ - "hostname" => "s3.ap-southeast-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] - }, - "ap-southeast-2" => %{ - "hostname" => "s3.ap-southeast-2.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "fips-us-gov-east-1" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "deprecated" => true, + "hostname" => "sns.us-gov-east-1.amazonaws.com" }, - "ap-southeast-3" => %{ - "hostname" => "s3.ap-southeast-3.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "fips-us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "sns.us-gov-west-1.amazonaws.com" }, - "af-south-1" => %{ - "hostname" => "s3.af-south-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "sns.us-gov-east-1.amazonaws.com", "tags" => ["fips"]} + ] }, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-west-1" => %{ - "hostname" => "s3.eu-west-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "us-gov-west-1" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "sns.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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"]} + ] }, - "eu-south-1" => %{}, - "eu-south-2" => %{ - "hostname" => "s3.eu-south-2.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "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"]} + ] + } + } + }, + "transfer" => %{ + "endpoints" => %{ + "fips-us-gov-east-1" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "deprecated" => true, + "hostname" => "transfer-fips.us-gov-east-1.amazonaws.com" }, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "il-central-1" => %{}, - "me-central-1" => %{}, - "me-south-1" => %{}, - "s3-external-1" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "s3-external-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "fips-us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "transfer-fips.us-gov-west-1.amazonaws.com" }, - "sa-east-1" => %{ - "hostname" => "s3.sa-east-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.us-gov-east-1.amazonaws.com", "tags" => ["fips"]} + ] }, - "us-east-1-fips" => %{ - "hostname" => "s3-fips.us-east-1.amazonaws.com", - "credentialScope" => %{"region" => "us-east-1"} + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "transfer-fips.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + } + } + }, + "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" }, - "us-east-1" => %{ - "hostname" => "s3.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "fips-us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "network-firewall-fips.us-gov-west-1.amazonaws.com" }, - "us-east-2" => %{}, - "us-west-1" => %{ - "hostname" => "s3.us-west-1.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "us-gov-east-1" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.us-gov-east-1.amazonaws.com", + "tags" => ["fips"] + } + ] }, - "us-west-2" => %{ - "hostname" => "s3.us-west-2.amazonaws.com", - "signatureVersions" => ["s3", "s3v4"] + "us-gov-west-1" => %{ + "variants" => [ + %{ + "hostname" => "network-firewall-fips.us-gov-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] } - }, - "isRegionalized" => true, - "partitionEndpoint" => "us-east-1" + } }, - "elasticbeanstalk" => %{ + "synthetics" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "synthetics-fips.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + } } }, - "datapipeline" => %{ + "connect" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "medialive" => %{ + "glacier" => %{ "endpoints" => %{ - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "sa-east-1" => %{} + "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"]} + ] + } } }, - "discovery" => %{"endpoints" => %{"us-west-2" => %{}}}, - "application-autoscaling" => %{ + "license-manager-user-subscriptions" => %{ + "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}} + }, + "elasticache" => %{ "defaults" => %{ - "credentialScope" => %{"service" => "application-autoscaling"}, - "hostname" => "autoscaling.{region}.amazonaws.com", - "protocols" => ["http", "https"] + "variants" => [ + %{"hostname" => "elasticache.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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" + } } }, - "sts" => %{ - "defaults" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "sts.amazonaws.com" - }, + "simspaceweaver" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{ - "credentialScope" => %{"region" => "ap-northeast-2"}, - "hostname" => "sts.ap-northeast-2.amazonaws.com" - }, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-southeast-3" => %{}, - "aws-global" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-south-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "me-central-1" => %{}, - "me-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-1-fips" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "sts-fips.us-east-1.amazonaws.com" + "fips-us-gov-east-1" => %{ + "credentialScope" => %{"region" => "us-gov-east-1"}, + "deprecated" => true, + "hostname" => "simspaceweaver.us-gov-east-1.amazonaws.com" }, - "us-east-2" => %{}, - "us-east-2-fips" => %{ - "credentialScope" => %{"region" => "us-east-2"}, - "hostname" => "sts-fips.us-east-2.amazonaws.com" + "fips-us-gov-west-1" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "simspaceweaver.us-gov-west-1.amazonaws.com" }, - "us-west-1" => %{}, - "us-west-1-fips" => %{ - "credentialScope" => %{"region" => "us-west-1"}, - "hostname" => "sts-fips.us-west-1.amazonaws.com" + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "simspaceweaver.us-gov-east-1.amazonaws.com", "tags" => ["fips"]} + ] }, - "us-west-2" => %{}, - "us-west-2-fips" => %{ - "credentialScope" => %{"region" => "us-west-2"}, - "hostname" => "sts-fips.us-west-2.amazonaws.com" + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "simspaceweaver.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] } - }, - "partitionEndpoint" => "aws-global" + } }, - "sqs" => %{ + "config" => %{ "defaults" => %{ - "protocols" => ["http", "https"], - "sslCommonName" => "{region}.queue.{dnsSuffix}" + "variants" => [%{"hostname" => "config.{region}.{dnsSuffix}", "tags" => ["fips"]}] }, "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, - "fips-us-east-1" => %{}, - "fips-us-east-2" => %{}, - "fips-us-west-1" => %{}, - "fips-us-west-2" => %{}, - "me-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{"sslCommonName" => "queue.{dnsSuffix}"}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "comprehend" => %{ + "license-manager-linux-subscriptions" => %{ + "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}} + }, + "translate" => %{ "defaults" => %{"protocols" => ["https"]}, "endpoints" => %{ - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-northeast-1" => %{}, - "ca-central-1" => %{}, - "us-gov-west-1" => %{} + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "translate-fips.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "translate-fips.us-gov-west-1.amazonaws.com" + } } }, - "textract" => %{ - "defaults" => %{"protocols" => ["https"]}, + "lakeformation" => %{ "endpoints" => %{ - "us-east-2" => %{}, - "us-east-1" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{}, - "ca-central-1" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{} + "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"]} + ] + } } }, - "waf" => %{ + "appconfig" => %{ "endpoints" => %{ - "aws-global" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "waf.amazonaws.com" + "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"]} + ] } + } + }, + "sts" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "sts.{region}.{dnsSuffix}", "tags" => ["fips"]}] }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" + "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" + } + } }, - "codecommit" => %{ + "codedeploy" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-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" => %{} + "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" + } } }, - "cur" => %{"endpoints" => %{"us-east-1" => %{}}}, - "workmail" => %{ - "defaults" => %{"protocols" => ["https"]}, - "endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{}} + "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"] + } + } }, - "tagging" => %{ + "eks-auth" => %{ + "defaults" => %{ + "dnsSuffix" => "api.aws", + "variants" => [ + %{ + "dnsSuffix" => "api.aws", + "hostname" => "{service}-fips.{region}.{dnsSuffix}", + "tags" => ["fips"] + } + ] + }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"} } }, - "redshift" => %{ + "oam" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "aoss" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "ecs" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "email" => %{ + "iotsitewise" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{}, - "ca-central-1" => %{}, - "sa-east-1" => %{}, - "me-south-1" => %{} + "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"] + } + ] + } + } + }, + "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" + } } }, - "storagegateway" => %{ + "emr-serverless" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "kinesisanalytics" => %{ - "endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{}} - }, - "autoscaling" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, + "mgn" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "cloudhsmv2" => %{ - "defaults" => %{"credentialScope" => %{"service" => "cloudhsm"}}, + "servicequotas" => %{ + "defaults" => %{ + "protocols" => ["https"], + "variants" => [ + %{"hostname" => "servicequotas.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-north-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "runtime.lex" => %{ - "defaults" => %{"credentialScope" => %{"service" => "lex"}}, - "endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{}} - }, - "cloud9" => %{ + "kendra-ranking" => %{ + "defaults" => %{ + "dnsSuffix" => "api.aws", + "variants" => [ + %{ + "dnsSuffix" => "api.aws", + "hostname" => "{service}-fips.{region}.{dnsSuffix}", + "tags" => ["fips"] + } + ] + }, "endpoints" => %{ - "ap-southeast-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "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"} } }, - "data.iot" => %{ + "batch" => %{ "defaults" => %{ - "credentialScope" => %{"service" => "iotdata"}, - "protocols" => ["https"] + "variants" => [%{"hostname" => "batch.{region}.{dnsSuffix}", "tags" => ["fips"]}] }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "xray" => %{ + "firehose" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "mediastore" => %{ + "securitylake" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "us-gov-east-1" => %{ + "variants" => [ + %{"hostname" => "securitylake.us-gov-east-1.amazonaws.com", "tags" => ["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"]} + ] + }, + "us-gov-west-1-fips" => %{ + "credentialScope" => %{"region" => "us-gov-west-1"}, + "deprecated" => true, + "hostname" => "securitylake.us-gov-west-1.amazonaws.com" + } } }, - "acm-pca" => %{ - "defaults" => %{"protocols" => ["https"]}, + "kendra" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "fsx" => %{ + "elasticloadbalancing" => %{ + "defaults" => %{ + "variants" => [ + %{"hostname" => "elasticloadbalancing.{region}.{dnsSuffix}", "tags" => ["fips"]} + ] + }, "endpoints" => %{ - "us-east-2" => %{}, - "us-east-1" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{}, - "af-south-1" => %{}, - "ap-east-1" => %{}, - "ap-southeast-3" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-northeast-3" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-northeast-1" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-south-1" => %{}, - "eu-west-3" => %{}, - "eu-south-2" => %{}, - "eu-north-1" => %{}, - "eu-central-2" => %{}, - "me-south-1" => %{}, - "me-central-1" => %{}, - "sa-east-1" => %{}, - "us-gov-east-1" => %{}, - "us-gov-west-1" => %{} + "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"] + } + ] + } + } + }, + "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"] + } + ] + } + } + }, + "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"] + } } }, - "elasticfilesystem" => %{ + "iotevents" => %{ "endpoints" => %{ - "ap-northeast-2" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "secretsmanager" => %{ + "guardduty" => %{ + "defaults" => %{ + "protocols" => ["https"], + "variants" => [%{"hostname" => "guardduty.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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 + }, + "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"]} + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{"hostname" => "logs.us-gov-west-1.amazonaws.com", "tags" => ["fips"]} + ] + } } }, - "kinesisvideo" => %{ + "mq" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "mgh" => %{"endpoints" => %{"us-west-2" => %{}}}, - "support" => %{"endpoints" => %{"us-east-1" => %{}}}, - "codepipeline" => %{ + "cognito-identity" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-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" => %{} + "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-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"] + } + ] + } } }, - "dms" => %{ + "transcribestreaming" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"] + } + ] + }, + "us-gov-west-1" => %{ + "variants" => [ + %{ + "hostname" => "transcribestreaming-fips.us-gov-west-1.amazonaws.com", + "tags" => ["fips"] + } + ] + } } }, - "codedeploy" => %{ + "codestar-connections" => %{"endpoints" => %{"us-gov-east-1" => %{}}}, + "states" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "codestar" => %{ + "codebuild" => %{ "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-1" => %{}, - "us-west-2" => %{} + "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" + } } }, - "route53domains" => %{"endpoints" => %{"us-east-1" => %{}}}, - "states" => %{ + "greengrass" => %{ + "defaults" => %{"protocols" => ["https"]}, "endpoints" => %{ - "ap-east-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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 + }, + "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"] + } + ] + } + } + } + } + }, + %{ + "defaults" => %{ + "hostname" => "{service}.{region}.{dnsSuffix}", + "protocols" => ["https"], + "signatureVersions" => ["v4"], + "variants" => [ + %{ + "dnsSuffix" => "c2s.ic.gov", + "hostname" => "{service}-fips.{region}.{dnsSuffix}", + "tags" => ["fips"] } - }, - "ecs" => %{ + ] + }, + "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" => %{ + "dlm" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "glue" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "secretsmanager" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "cloudformation" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "organizations" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-central-2" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} - } + "aws-iso-global" => %{ + "credentialScope" => %{"region" => "us-iso-east-1"}, + "hostname" => "organizations.us-iso-east-1.c2s.ic.gov" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-iso-global" }, - "cognito-identity" => %{ + "runtime.sagemaker" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "monitoring" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "iam" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} - } + "aws-iso-global" => %{ + "credentialScope" => %{"region" => "us-iso-east-1"}, + "hostname" => "iam.us-iso-east-1.c2s.ic.gov" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-iso-global" }, - "directconnect" => %{ + "rds" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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" + } } }, - "cloudformation" => %{ + "ssm" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "s3" => %{ + "defaults" => %{"signatureVersions" => ["s3v4"]}, "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "inspector" => %{ + "health" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "arc-zonal-shift" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "datasync" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "cloudsearch" => %{ + "ebs" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "kms" => %{ "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" => %{} + "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" + } } }, - "batch" => %{ + "route53resolver" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "s3-outposts" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-north-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "fips-us-iso-east-1" => %{"deprecated" => true}, + "us-iso-east-1" => %{"variants" => [%{"tags" => ["fips"]}]} } }, + "snowball" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "appconfigdata" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "outposts" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "license-manager" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, "swf" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, + "cloudcontrolapi" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "resource-groups" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "api.sagemaker" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, "transcribe" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"us-iso-east-1" => %{}} + }, + "elasticmapreduce" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-east-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "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-gov-east-1" => %{}, - "us-gov-west-1" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "mediapackage" => %{ + "tagging" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "redshift" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-3" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-west-2" => %{} + "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" + } } }, - "models.lex" => %{ - "defaults" => %{"credentialScope" => %{"service" => "lex"}}, - "endpoints" => %{"eu-west-1" => %{}, "us-east-1" => %{}, "us-west-2" => %{}} - }, - "codebuild" => %{ + "rbin" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "ca-west-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-1-fips" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "codebuild-fips.us-east-1.amazonaws.com" + "fips-us-iso-east-1" => %{ + "credentialScope" => %{"region" => "us-iso-east-1"}, + "deprecated" => true, + "hostname" => "rbin-fips.us-iso-east-1.c2s.ic.gov" }, - "us-east-2" => %{}, - "us-east-2-fips" => %{ - "credentialScope" => %{"region" => "us-east-2"}, - "hostname" => "codebuild-fips.us-east-2.amazonaws.com" + "fips-us-iso-west-1" => %{ + "credentialScope" => %{"region" => "us-iso-west-1"}, + "deprecated" => true, + "hostname" => "rbin-fips.us-iso-west-1.c2s.ic.gov" }, - "us-west-1" => %{}, - "us-west-1-fips" => %{ - "credentialScope" => %{"region" => "us-west-1"}, - "hostname" => "codebuild-fips.us-west-1.amazonaws.com" + "us-iso-east-1" => %{ + "variants" => [ + %{"hostname" => "rbin-fips.us-iso-east-1.c2s.ic.gov", "tags" => ["fips"]} + ] }, - "us-west-2" => %{}, - "us-west-2-fips" => %{ - "credentialScope" => %{"region" => "us-west-2"}, - "hostname" => "codebuild-fips.us-west-2.amazonaws.com" + "us-iso-west-1" => %{ + "variants" => [ + %{"hostname" => "rbin-fips.us-iso-west-1.c2s.ic.gov", "tags" => ["fips"]} + ] } - } - }, - "cloudfront" => %{ - "endpoints" => %{ - "aws-global" => %{ - "credentialScope" => %{"region" => "us-east-1"}, - "hostname" => "cloudfront.amazonaws.com", - "protocols" => ["http", "https"] + } + }, + "es" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "textract" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "apigateway" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "events" => %{"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" } }, - "isRegionalized" => false, - "partitionEndpoint" => "aws-global" + "partitionEndpoint" => "aws-iso-global" }, - "qldb" => %{ + "datapipeline" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "workspaces" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "comprehend" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"us-iso-east-1" => %{}} + }, + "streams.dynamodb" => %{ + "defaults" => %{"credentialScope" => %{"service" => "dynamodb"}}, + "endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}} + }, + "bedrock" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "eu-west-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{} + "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" => %{} } }, - "places.geo" => %{ + "dynamodb" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-north-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "sa-east-1" => %{}, - "us-gov-west-1" => %{} + "us-iso-east-1" => %{"protocols" => ["http", "https"]}, + "us-iso-west-1" => %{} } }, - "maps.geo" => %{ + "sqs" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-north-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "sa-east-1" => %{}, - "us-gov-west-1" => %{} + "us-iso-east-1" => %{"protocols" => ["http", "https"]}, + "us-iso-west-1" => %{} } }, - "geofencing.geo" => %{ + "elasticfilesystem" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-north-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "sa-east-1" => %{}, - "us-gov-west-1" => %{} + "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"] + } + ] + } } }, - "tracking.geo" => %{ + "dms" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "dms.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-north-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "sa-east-1" => %{}, - "us-gov-west-1" => %{} + "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" + } } }, - "routes.geo" => %{ + "kinesis" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "eks" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}} + }, + "ds" => %{ "endpoints" => %{ - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-2" => %{}, - "eu-north-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "ap-northeast-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "sa-east-1" => %{}, - "us-gov-west-1" => %{} + "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"]} + ] + } } }, - "sso" => %{ + "fsx" => %{ "endpoints" => %{ - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"]} + ] + } } }, - "pipes" => %{ + "agreement-marketplace" => %{ "endpoints" => %{ - "af-south-1" => %{}, - "ap-northeast-1" => %{}, - "ap-northeast-2" => %{}, - "ap-east-1" => %{}, - "ap-south-1" => %{}, - "ap-south-2" => %{}, - "ap-southeast-1" => %{}, - "ap-southeast-2" => %{}, - "ap-southeast-3" => %{}, - "ca-central-1" => %{}, - "eu-central-1" => %{}, - "eu-west-1" => %{}, - "eu-west-2" => %{}, - "eu-west-3" => %{}, - "eu-north-1" => %{}, - "eu-south-1" => %{}, - "me-south-1" => %{}, - "sa-east-1" => %{}, - "us-east-1" => %{}, - "us-east-2" => %{}, - "us-west-1" => %{}, - "us-west-2" => %{} + "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"] + } + ] + } } - } - } - }, - %{ - "defaults" => %{ - "hostname" => "{service}.{region}.{dnsSuffix}", - "protocols" => ["https"], - "signatureVersions" => ["v4"] - }, - "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" => %{ - "personalize" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "personalize-runtime" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "personalize-events" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "elasticache" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "config" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "iam" => %{ + }, + "medialive" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "metrics.sagemaker" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "cloudtrail" => %{ "endpoints" => %{ - "aws-cn-global" => %{ - "credentialScope" => %{"region" => "cn-north-1"}, - "hostname" => "iam.cn-north-1.amazonaws.com.cn" + "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"]} + ] + } + } + }, + "route53" => %{ + "endpoints" => %{ + "aws-iso-global" => %{ + "credentialScope" => %{"region" => "us-iso-east-1"}, + "hostname" => "route53.c2s.ic.gov" } }, "isRegionalized" => false, - "partitionEndpoint" => "aws-cn-global" + "partitionEndpoint" => "aws-iso-global" }, - "snowball" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "glacier" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "lambda" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "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" + } + } }, - "elasticmapreduce" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "autoscaling" => %{ + "endpoints" => %{ + "us-iso-east-1" => %{"protocols" => ["http", "https"]}, + "us-iso-west-1" => %{} + } }, - "logs" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "kinesis" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "events" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, + "directconnect" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "athena" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "ram" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, "sns" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} - }, - "lambda" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "dynamodb" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} - }, - "streams.dynamodb" => %{ - "defaults" => %{ - "credentialScope" => %{"service" => "dynamodb"}, - "protocols" => ["http", "https"] - }, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "endpoints" => %{ + "us-iso-east-1" => %{"protocols" => ["http", "https"]}, + "us-iso-west-1" => %{} + } }, - "es" => %{"endpoints" => %{"cn-northwest-1" => %{}}}, - "aoss" => %{"endpoints" => %{"cn-northwest-1" => %{}}}, - "monitoring" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "ec2" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "synthetics" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "glacier" => %{ + "endpoints" => %{ + "us-iso-east-1" => %{"protocols" => ["http", "https"]}, + "us-iso-west-1" => %{} + } }, - "elasticloadbalancing" => %{ + "elasticache" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "config" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "translate" => %{ "defaults" => %{"protocols" => ["https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} - }, - "ec2" => %{ - "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "endpoints" => %{"us-iso-east-1" => %{}} }, - "apigateway" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "sms" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "rds" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "cloudtrail" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "ssm" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "ecr" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "iot" => %{ - "defaults" => %{"credentialScope" => %{"service" => "execute-api"}}, - "endpoints" => %{"cn-north-1" => %{}} + "appconfig" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "sts" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "codedeploy" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "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"] + } + } }, - "chime" => %{"endpoints" => %{"defaults" => %{}}}, - "s3" => %{ - "defaults" => %{"protocols" => ["http", "https"], "signatureVersions" => ["s3v4"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "mediapackage" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "scheduler" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "oam" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "ecs" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "firehose" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "elasticloadbalancing" => %{ + "endpoints" => %{ + "us-iso-east-1" => %{"protocols" => ["http", "https"]}, + "us-iso-west-1" => %{} + } }, - "elasticbeanstalk" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, "application-autoscaling" => %{ - "defaults" => %{ - "credentialScope" => %{"service" => "application-autoscaling"}, - "hostname" => "autoscaling.{region}.amazonaws.com", - "protocols" => ["http", "https"] - }, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} - }, - "sts" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "sqs" => %{ - "defaults" => %{ - "protocols" => ["http", "https"], - "sslCommonName" => "{region}.queue.{dnsSuffix}" - }, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} - }, - "tagging" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "redshift" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "storagegateway" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "autoscaling" => %{ "defaults" => %{"protocols" => ["http", "https"]}, - "endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}} + "endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}} }, - "data.iot" => %{ - "defaults" => %{ - "credentialScope" => %{"service" => "iotdata"}, - "protocols" => ["https"] - }, - "endpoints" => %{"cn-north-1" => %{}} + "guardduty" => %{ + "defaults" => %{"protocols" => ["https"]}, + "endpoints" => %{"us-iso-east-1" => %{}}, + "isRegionalized" => true }, - "codedeploy" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "ecs" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "cognito-identity" => %{"endpoints" => %{"cn-north-1" => %{}}}, - "directconnect" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "cloudformation" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}}, - "swf" => %{"endpoints" => %{"cn-north-1" => %{}, "cn-northwest-1" => %{}}} + "api.pricing" => %{ + "defaults" => %{"credentialScope" => %{"service" => "pricing"}}, + "endpoints" => %{"us-iso-east-1" => %{}} + }, + "logs" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "transcribestreaming" => %{"endpoints" => %{"us-iso-east-1" => %{}}}, + "states" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}}, + "codebuild" => %{"endpoints" => %{"us-iso-east-1" => %{}, "us-iso-west-1" => %{}}} } }, %{ "defaults" => %{ "hostname" => "{service}.{region}.{dnsSuffix}", "protocols" => ["https"], - "signatureVersions" => ["v4"] - }, - "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)"} + "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)"}}, "services" => %{ - "elasticache" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "fsx" => %{ + "dlm" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "secretsmanager" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "cloudformation" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "organizations" => %{ "endpoints" => %{ - "us-gov-east-1" => %{ - "credentialScope" => %{"region" => "us-gov-east-1"}, - "hostname" => "fsx-fips.us-gov-east-1.amazonaws.com" - }, - "us-gov-west-1" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "fsx-fips.us-gov-west-1.amazonaws.com" + "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" }, - "config" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, + "runtime.sagemaker" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "monitoring" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, "iam" => %{ "endpoints" => %{ - "aws-us-gov-global" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "iam.us-gov.amazonaws.com" + "aws-iso-b-global" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "hostname" => "iam.us-isob-east-1.sc2s.sgov.gov" } }, "isRegionalized" => false, - "partitionEndpoint" => "aws-us-gov-global" + "partitionEndpoint" => "aws-iso-b-global" }, - "snowball" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "glacier" => %{ + "rds" => %{ "endpoints" => %{ - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} + "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" + } } }, - "acm" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "elasticmapreduce" => %{ - "endpoints" => %{ - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} - } + "ssm" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "metering.marketplace" => %{ + "defaults" => %{"credentialScope" => %{"service" => "aws-marketplace"}}, + "endpoints" => %{"us-isob-east-1" => %{}} }, - "logs" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "kinesis" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "events" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "sns" => %{ + "s3" => %{ + "defaults" => %{"protocols" => ["http", "https"], "signatureVersions" => ["s3v4"]}, "endpoints" => %{ - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} + "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"]} + ] + } } }, - "polly" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, - "lambda" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "dynamodb" => %{ + "health" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "arc-zonal-shift" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "storagegateway" => %{ "endpoints" => %{ - "us-gov-east-1-fips" => %{ - "credentialScope" => %{"region" => "us-gov-east-1"}, - "hostname" => "dynamodb.us-gov-east-1.amazonaws.com" + "fips" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov" }, - "us-gov-west-1-fips" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "dynamodb.us-gov-west-1.amazonaws.com" + "us-isob-east-1" => %{ + "variants" => [ + %{ + "hostname" => "storagegateway-fips.us-isob-east-1.sc2s.sgov.gov", + "tags" => ["fips"] + } + ] }, - "us-gov-east-1" => %{}, - "us-gov-west-1" => %{} + "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"}}, + "ebs" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "kms" => %{ "endpoints" => %{ - "us-gov-east-1-fips" => %{ - "credentialScope" => %{"region" => "us-gov-east-1"}, - "hostname" => "dynamodb.us-gov-east-1.amazonaws.com" + "ProdFips" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "kms-fips.us-isob-east-1.sc2s.sgov.gov" }, - "us-gov-west-1-fips" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "dynamodb.us-gov-west-1.amazonaws.com" + "us-isob-east-1" => %{ + "variants" => [ + %{"hostname" => "kms-fips.us-isob-east-1.sc2s.sgov.gov", "tags" => ["fips"]} + ] }, - "us-gov-east-1" => %{}, - "us-gov-west-1" => %{} + "us-isob-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "kms-fips.us-isob-east-1.sc2s.sgov.gov" + } } }, - "es" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "aoss" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "monitoring" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "elasticloadbalancing" => %{ + "route53resolver" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "s3-outposts" => %{ "endpoints" => %{ - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} + "fips-us-isob-east-1" => %{"deprecated" => true}, + "us-isob-east-1" => %{"variants" => [%{"tags" => ["fips"]}]} } }, - "metering.marketplace" => %{ - "defaults" => %{"credentialScope" => %{"service" => "aws-marketplace"}}, - "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}} + "snowball" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "appconfigdata" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "outposts" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "license-manager" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "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"]} + ] + } + } }, - "ec2" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "apigateway" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "kms" => %{ + "cloudcontrolapi" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "resource-groups" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "api.sagemaker" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "elasticmapreduce" => %{ "endpoints" => %{ - "us-gov-east-1" => %{ - "hostname" => "kms-fips.us-gov-east-1.amazonaws.com", - "credentialScope" => %{"region" => "us-gov-east-1"} + "fips-us-isob-east-1" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "elasticmapreduce.us-isob-east-1.sc2s.sgov.gov" }, - "us-gov-west-1" => %{ - "hostname" => "kms-fips.us-gov-west-1.amazonaws.com", - "credentialScope" => %{"region" => "us-gov-west-1"} + "us-isob-east-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticmapreduce.us-isob-east-1.sc2s.sgov.gov", + "tags" => ["fips"] + } + ] } } }, - "sms" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "rds" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "cloudtrail" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "ssm" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "ecr" => %{ + "tagging" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "redshift" => %{ "endpoints" => %{ - "fips-us-gov-east-1" => %{ - "credentialScope" => %{"region" => "us-gov-east-1"}, - "hostname" => "ecr-fips.us-gov-east-1.amazonaws.com" + "us-isob-east-1" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "hostname" => "redshift.us-isob-east-1.sc2s.sgov.gov" + } + } + }, + "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" }, - "fips-us-gov-west_fips-1" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "ecr-fips.us-gov-west-1.amazonaws.com" + "us-isob-east-1" => %{ + "variants" => [ + %{"hostname" => "rbin-fips.us-isob-east-1.sc2s.sgov.gov", "tags" => ["fips"]} + ] + } + } + }, + "es" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "apigateway" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "events" => %{"endpoints" => %{"us-isob-east-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" + }, + "workspaces" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "streams.dynamodb" => %{ + "defaults" => %{ + "credentialScope" => %{"service" => "dynamodb"}, + "protocols" => ["http", "https"] + }, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "dynamodb" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "sqs" => %{ + "defaults" => %{ + "protocols" => ["http", "https"], + "sslCommonName" => "{region}.queue.{dnsSuffix}" + }, + "endpoints" => %{"us-isob-east-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" }, - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} + "us-isob-east-1" => %{ + "variants" => [ + %{ + "hostname" => "elasticfilesystem-fips.us-isob-east-1.sc2s.sgov.gov", + "tags" => ["fips"] + } + ] + } } }, - "cloudhsm" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, - "rekognition" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, - "chime" => %{"endpoints" => %{"defaults" => %{}}}, - "s3" => %{ - "defaults" => %{"signatureVersions" => ["s3", "s3v4"]}, + "dms" => %{ + "defaults" => %{ + "variants" => [%{"hostname" => "dms.{region}.{dnsSuffix}", "tags" => ["fips"]}] + }, "endpoints" => %{ - "fips-us-gov-east-1" => %{ - "credentialScope" => %{"region" => "us-gov-east-1"}, - "hostname" => "s3-fips.us-gov-east-1.amazonaws.com" + "dms" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "variants" => [ + %{"hostname" => "dms.us-isob-east-1.sc2s.sgov.gov", "tags" => ["fips"]} + ] }, - "fips-us-gov-west-1" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "s3-fips.us-gov-west-1.amazonaws.com" + "dms-fips" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "dms.us-isob-east-1.sc2s.sgov.gov" }, - "us-gov-east-1" => %{ - "hostname" => "s3-fips.us-gov-east-1.amazonaws.com", - "protocols" => ["http", "https"] + "us-isob-east-1" => %{ + "variants" => [ + %{"hostname" => "dms.us-isob-east-1.sc2s.sgov.gov", "tags" => ["fips"]} + ] }, - "us-gov-west-1" => %{ - "hostname" => "s3-fips.us-gov-west-1.amazonaws.com", - "protocols" => ["http", "https"] + "us-isob-east-1-fips" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "dms.us-isob-east-1.sc2s.sgov.gov" } } }, - "elasticbeanstalk" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "sts" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "sqs" => %{ + "kinesis" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "eks" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "ds" => %{ "endpoints" => %{ - "us-gov-east-1" => %{ - "protocols" => ["http", "https"], - "sslCommonName" => "{region}.queue.{dnsSuffix}" + "fips-us-isob-east-1" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "deprecated" => true, + "hostname" => "ds-fips.us-isob-east-1.sc2s.sgov.gov" }, - "us-gov-west-1" => %{ - "protocols" => ["http", "https"], - "sslCommonName" => "{region}.queue.{dnsSuffix}" + "us-isob-east-1" => %{ + "variants" => [ + %{"hostname" => "ds-fips.us-isob-east-1.sc2s.sgov.gov", "tags" => ["fips"]} + ] } } }, - "tagging" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "redshift" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "storagegateway" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "autoscaling" => %{ + "medialive" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "metrics.sagemaker" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "xray" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "cloudtrail" => %{ "endpoints" => %{ - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} + "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"] + } + ] + } } }, - "cloudhsmv2" => %{ - "defaults" => %{"credentialScope" => %{"service" => "cloudhsm"}}, - "endpoints" => %{"us-gov-east-1" => %{}, "us-gov-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" }, - "dms" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "codedeploy" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "ecs" => %{ + "budgets" => %{ "endpoints" => %{ - "fips-us-gov-east-1" => %{ - "credentialScope" => %{"region" => "us-gov-east-1"}, - "hostname" => "ecs-fips-us-gov-east-1.amazonaws.com" - }, - "fips-us-gov-west-1" => %{ - "credentialScope" => %{"region" => "us-gov-west-1"}, - "hostname" => "ecs-fips-us-gov-west-1.amazonaws.com" + "aws-iso-b-global" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "hostname" => "budgets.global.sc2s.sgov.gov" }, - "us-gov-east-1" => %{"protocols" => ["http", "https"]}, - "us-gov-west-1" => %{"protocols" => ["http", "https"]} + "us-isob-east-1" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "hostname" => "budgets.global.sc2s.sgov.gov" + } + }, + "isRegionalized" => false, + "partitionEndpoint" => "aws-iso-b-global" + }, + "lambda" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "api.ecr" => %{ + "endpoints" => %{ + "us-isob-east-1" => %{ + "credentialScope" => %{"region" => "us-isob-east-1"}, + "hostname" => "api.ecr.us-isob-east-1.sc2s.sgov.gov" + } } }, - "directconnect" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "cloudformation" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "swf" => %{"endpoints" => %{"us-gov-east-1" => %{}, "us-gov-west-1" => %{}}}, - "sagemaker" => %{"endpoints" => %{"us-gov-west-1" => %{}}}, - "sso" => %{ + "autoscaling" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "directconnect" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "ram" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "sns" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "ec2" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "synthetics" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "glacier" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "elasticache" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "config" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "appconfig" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "sts" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "codedeploy" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "s3-control" => %{ + "defaults" => %{"protocols" => ["https"], "signatureVersions" => ["s3v4"]}, "endpoints" => %{ - "us-gov-east-1" => %{}, - "us-gov-west-1" => %{} + "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"] + } } - } + }, + "mediapackage" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "scheduler" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "oam" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "ecs" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "firehose" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "elasticloadbalancing" => %{ + "endpoints" => %{"us-isob-east-1" => %{"protocols" => ["https"]}} + }, + "application-autoscaling" => %{ + "defaults" => %{"protocols" => ["http", "https"]}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "api.pricing" => %{ + "defaults" => %{"credentialScope" => %{"service" => "pricing"}}, + "endpoints" => %{"us-isob-east-1" => %{}} + }, + "logs" => %{"endpoints" => %{"us-isob-east-1" => %{}}}, + "states" => %{"endpoints" => %{"us-isob-east-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" => %{} + }, + %{ + "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" => %{}, + "services" => %{} } ], "version" => 3