github.com/aavshr/aws-sdk-go@v1.41.3/aws/endpoints/defaults.go (about) 1 // Code generated by aws/endpoints/v3model_codegen.go. DO NOT EDIT. 2 3 package endpoints 4 5 import ( 6 "regexp" 7 ) 8 9 // Partition identifiers 10 const ( 11 AwsPartitionID = "aws" // AWS Standard partition. 12 AwsCnPartitionID = "aws-cn" // AWS China partition. 13 AwsUsGovPartitionID = "aws-us-gov" // AWS GovCloud (US) partition. 14 AwsIsoPartitionID = "aws-iso" // AWS ISO (US) partition. 15 AwsIsoBPartitionID = "aws-iso-b" // AWS ISOB (US) partition. 16 ) 17 18 // AWS Standard partition's regions. 19 const ( 20 AfSouth1RegionID = "af-south-1" // Africa (Cape Town). 21 ApEast1RegionID = "ap-east-1" // Asia Pacific (Hong Kong). 22 ApNortheast1RegionID = "ap-northeast-1" // Asia Pacific (Tokyo). 23 ApNortheast2RegionID = "ap-northeast-2" // Asia Pacific (Seoul). 24 ApNortheast3RegionID = "ap-northeast-3" // Asia Pacific (Osaka). 25 ApSouth1RegionID = "ap-south-1" // Asia Pacific (Mumbai). 26 ApSoutheast1RegionID = "ap-southeast-1" // Asia Pacific (Singapore). 27 ApSoutheast2RegionID = "ap-southeast-2" // Asia Pacific (Sydney). 28 CaCentral1RegionID = "ca-central-1" // Canada (Central). 29 EuCentral1RegionID = "eu-central-1" // Europe (Frankfurt). 30 EuNorth1RegionID = "eu-north-1" // Europe (Stockholm). 31 EuSouth1RegionID = "eu-south-1" // Europe (Milan). 32 EuWest1RegionID = "eu-west-1" // Europe (Ireland). 33 EuWest2RegionID = "eu-west-2" // Europe (London). 34 EuWest3RegionID = "eu-west-3" // Europe (Paris). 35 MeSouth1RegionID = "me-south-1" // Middle East (Bahrain). 36 SaEast1RegionID = "sa-east-1" // South America (Sao Paulo). 37 UsEast1RegionID = "us-east-1" // US East (N. Virginia). 38 UsEast2RegionID = "us-east-2" // US East (Ohio). 39 UsWest1RegionID = "us-west-1" // US West (N. California). 40 UsWest2RegionID = "us-west-2" // US West (Oregon). 41 ) 42 43 // AWS China partition's regions. 44 const ( 45 CnNorth1RegionID = "cn-north-1" // China (Beijing). 46 CnNorthwest1RegionID = "cn-northwest-1" // China (Ningxia). 47 ) 48 49 // AWS GovCloud (US) partition's regions. 50 const ( 51 UsGovEast1RegionID = "us-gov-east-1" // AWS GovCloud (US-East). 52 UsGovWest1RegionID = "us-gov-west-1" // AWS GovCloud (US-West). 53 ) 54 55 // AWS ISO (US) partition's regions. 56 const ( 57 UsIsoEast1RegionID = "us-iso-east-1" // US ISO East. 58 ) 59 60 // AWS ISOB (US) partition's regions. 61 const ( 62 UsIsobEast1RegionID = "us-isob-east-1" // US ISOB East (Ohio). 63 ) 64 65 // DefaultResolver returns an Endpoint resolver that will be able 66 // to resolve endpoints for: AWS Standard, AWS China, AWS GovCloud (US), AWS ISO (US), and AWS ISOB (US). 67 // 68 // Use DefaultPartitions() to get the list of the default partitions. 69 func DefaultResolver() Resolver { 70 return defaultPartitions 71 } 72 73 // DefaultPartitions returns a list of the partitions the SDK is bundled 74 // with. The available partitions are: AWS Standard, AWS China, AWS GovCloud (US), AWS ISO (US), and AWS ISOB (US). 75 // 76 // partitions := endpoints.DefaultPartitions 77 // for _, p := range partitions { 78 // // ... inspect partitions 79 // } 80 func DefaultPartitions() []Partition { 81 return defaultPartitions.Partitions() 82 } 83 84 var defaultPartitions = partitions{ 85 awsPartition, 86 awscnPartition, 87 awsusgovPartition, 88 awsisoPartition, 89 awsisobPartition, 90 } 91 92 // AwsPartition returns the Resolver for AWS Standard. 93 func AwsPartition() Partition { 94 return awsPartition.Partition() 95 } 96 97 var awsPartition = partition{ 98 ID: "aws", 99 Name: "AWS Standard", 100 DNSSuffix: "amazonaws.com", 101 RegionRegex: regionRegex{ 102 Regexp: func() *regexp.Regexp { 103 reg, _ := regexp.Compile("^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$") 104 return reg 105 }(), 106 }, 107 Defaults: endpoint{ 108 Hostname: "{service}.{region}.{dnsSuffix}", 109 Protocols: []string{"https"}, 110 SignatureVersions: []string{"v4"}, 111 }, 112 Regions: regions{ 113 "af-south-1": region{ 114 Description: "Africa (Cape Town)", 115 }, 116 "ap-east-1": region{ 117 Description: "Asia Pacific (Hong Kong)", 118 }, 119 "ap-northeast-1": region{ 120 Description: "Asia Pacific (Tokyo)", 121 }, 122 "ap-northeast-2": region{ 123 Description: "Asia Pacific (Seoul)", 124 }, 125 "ap-northeast-3": region{ 126 Description: "Asia Pacific (Osaka)", 127 }, 128 "ap-south-1": region{ 129 Description: "Asia Pacific (Mumbai)", 130 }, 131 "ap-southeast-1": region{ 132 Description: "Asia Pacific (Singapore)", 133 }, 134 "ap-southeast-2": region{ 135 Description: "Asia Pacific (Sydney)", 136 }, 137 "ca-central-1": region{ 138 Description: "Canada (Central)", 139 }, 140 "eu-central-1": region{ 141 Description: "Europe (Frankfurt)", 142 }, 143 "eu-north-1": region{ 144 Description: "Europe (Stockholm)", 145 }, 146 "eu-south-1": region{ 147 Description: "Europe (Milan)", 148 }, 149 "eu-west-1": region{ 150 Description: "Europe (Ireland)", 151 }, 152 "eu-west-2": region{ 153 Description: "Europe (London)", 154 }, 155 "eu-west-3": region{ 156 Description: "Europe (Paris)", 157 }, 158 "me-south-1": region{ 159 Description: "Middle East (Bahrain)", 160 }, 161 "sa-east-1": region{ 162 Description: "South America (Sao Paulo)", 163 }, 164 "us-east-1": region{ 165 Description: "US East (N. Virginia)", 166 }, 167 "us-east-2": region{ 168 Description: "US East (Ohio)", 169 }, 170 "us-west-1": region{ 171 Description: "US West (N. California)", 172 }, 173 "us-west-2": region{ 174 Description: "US West (Oregon)", 175 }, 176 }, 177 Services: services{ 178 "a4b": service{ 179 180 Endpoints: endpoints{ 181 "us-east-1": endpoint{}, 182 }, 183 }, 184 "access-analyzer": service{ 185 186 Endpoints: endpoints{ 187 "af-south-1": endpoint{}, 188 "ap-east-1": endpoint{}, 189 "ap-northeast-1": endpoint{}, 190 "ap-northeast-2": endpoint{}, 191 "ap-northeast-3": endpoint{}, 192 "ap-south-1": endpoint{}, 193 "ap-southeast-1": endpoint{}, 194 "ap-southeast-2": endpoint{}, 195 "ca-central-1": endpoint{}, 196 "eu-central-1": endpoint{}, 197 "eu-north-1": endpoint{}, 198 "eu-south-1": endpoint{}, 199 "eu-west-1": endpoint{}, 200 "eu-west-2": endpoint{}, 201 "eu-west-3": endpoint{}, 202 "fips-ca-central-1": endpoint{ 203 Hostname: "access-analyzer-fips.ca-central-1.amazonaws.com", 204 CredentialScope: credentialScope{ 205 Region: "ca-central-1", 206 }, 207 }, 208 "fips-us-east-1": endpoint{ 209 Hostname: "access-analyzer-fips.us-east-1.amazonaws.com", 210 CredentialScope: credentialScope{ 211 Region: "us-east-1", 212 }, 213 }, 214 "fips-us-east-2": endpoint{ 215 Hostname: "access-analyzer-fips.us-east-2.amazonaws.com", 216 CredentialScope: credentialScope{ 217 Region: "us-east-2", 218 }, 219 }, 220 "fips-us-west-1": endpoint{ 221 Hostname: "access-analyzer-fips.us-west-1.amazonaws.com", 222 CredentialScope: credentialScope{ 223 Region: "us-west-1", 224 }, 225 }, 226 "fips-us-west-2": endpoint{ 227 Hostname: "access-analyzer-fips.us-west-2.amazonaws.com", 228 CredentialScope: credentialScope{ 229 Region: "us-west-2", 230 }, 231 }, 232 "me-south-1": endpoint{}, 233 "sa-east-1": endpoint{}, 234 "us-east-1": endpoint{}, 235 "us-east-2": endpoint{}, 236 "us-west-1": endpoint{}, 237 "us-west-2": endpoint{}, 238 }, 239 }, 240 "account": service{ 241 PartitionEndpoint: "aws-global", 242 IsRegionalized: boxedFalse, 243 244 Endpoints: endpoints{ 245 "aws-global": endpoint{ 246 Hostname: "account.us-east-1.amazonaws.com", 247 CredentialScope: credentialScope{ 248 Region: "us-east-1", 249 }, 250 }, 251 }, 252 }, 253 "acm": service{ 254 255 Endpoints: endpoints{ 256 "af-south-1": endpoint{}, 257 "ap-east-1": endpoint{}, 258 "ap-northeast-1": endpoint{}, 259 "ap-northeast-2": endpoint{}, 260 "ap-northeast-3": endpoint{}, 261 "ap-south-1": endpoint{}, 262 "ap-southeast-1": endpoint{}, 263 "ap-southeast-2": endpoint{}, 264 "ca-central-1": endpoint{}, 265 "ca-central-1-fips": endpoint{ 266 Hostname: "acm-fips.ca-central-1.amazonaws.com", 267 CredentialScope: credentialScope{ 268 Region: "ca-central-1", 269 }, 270 }, 271 "eu-central-1": endpoint{}, 272 "eu-north-1": endpoint{}, 273 "eu-south-1": endpoint{}, 274 "eu-west-1": endpoint{}, 275 "eu-west-2": endpoint{}, 276 "eu-west-3": endpoint{}, 277 "me-south-1": endpoint{}, 278 "sa-east-1": endpoint{}, 279 "us-east-1": endpoint{}, 280 "us-east-1-fips": endpoint{ 281 Hostname: "acm-fips.us-east-1.amazonaws.com", 282 CredentialScope: credentialScope{ 283 Region: "us-east-1", 284 }, 285 }, 286 "us-east-2": endpoint{}, 287 "us-east-2-fips": endpoint{ 288 Hostname: "acm-fips.us-east-2.amazonaws.com", 289 CredentialScope: credentialScope{ 290 Region: "us-east-2", 291 }, 292 }, 293 "us-west-1": endpoint{}, 294 "us-west-1-fips": endpoint{ 295 Hostname: "acm-fips.us-west-1.amazonaws.com", 296 CredentialScope: credentialScope{ 297 Region: "us-west-1", 298 }, 299 }, 300 "us-west-2": endpoint{}, 301 "us-west-2-fips": endpoint{ 302 Hostname: "acm-fips.us-west-2.amazonaws.com", 303 CredentialScope: credentialScope{ 304 Region: "us-west-2", 305 }, 306 }, 307 }, 308 }, 309 "acm-pca": service{ 310 Defaults: endpoint{ 311 Protocols: []string{"https"}, 312 }, 313 Endpoints: endpoints{ 314 "af-south-1": endpoint{}, 315 "ap-east-1": endpoint{}, 316 "ap-northeast-1": endpoint{}, 317 "ap-northeast-2": endpoint{}, 318 "ap-northeast-3": endpoint{}, 319 "ap-south-1": endpoint{}, 320 "ap-southeast-1": endpoint{}, 321 "ap-southeast-2": endpoint{}, 322 "ca-central-1": endpoint{}, 323 "eu-central-1": endpoint{}, 324 "eu-north-1": endpoint{}, 325 "eu-south-1": endpoint{}, 326 "eu-west-1": endpoint{}, 327 "eu-west-2": endpoint{}, 328 "eu-west-3": endpoint{}, 329 "fips-ca-central-1": endpoint{ 330 Hostname: "acm-pca-fips.ca-central-1.amazonaws.com", 331 CredentialScope: credentialScope{ 332 Region: "ca-central-1", 333 }, 334 }, 335 "fips-us-east-1": endpoint{ 336 Hostname: "acm-pca-fips.us-east-1.amazonaws.com", 337 CredentialScope: credentialScope{ 338 Region: "us-east-1", 339 }, 340 }, 341 "fips-us-east-2": endpoint{ 342 Hostname: "acm-pca-fips.us-east-2.amazonaws.com", 343 CredentialScope: credentialScope{ 344 Region: "us-east-2", 345 }, 346 }, 347 "fips-us-west-1": endpoint{ 348 Hostname: "acm-pca-fips.us-west-1.amazonaws.com", 349 CredentialScope: credentialScope{ 350 Region: "us-west-1", 351 }, 352 }, 353 "fips-us-west-2": endpoint{ 354 Hostname: "acm-pca-fips.us-west-2.amazonaws.com", 355 CredentialScope: credentialScope{ 356 Region: "us-west-2", 357 }, 358 }, 359 "me-south-1": endpoint{}, 360 "sa-east-1": endpoint{}, 361 "us-east-1": endpoint{}, 362 "us-east-2": endpoint{}, 363 "us-west-1": endpoint{}, 364 "us-west-2": endpoint{}, 365 }, 366 }, 367 "airflow": service{ 368 369 Endpoints: endpoints{ 370 "ap-northeast-1": endpoint{}, 371 "ap-northeast-2": endpoint{}, 372 "ap-south-1": endpoint{}, 373 "ap-southeast-1": endpoint{}, 374 "ap-southeast-2": endpoint{}, 375 "ca-central-1": endpoint{}, 376 "eu-central-1": endpoint{}, 377 "eu-north-1": endpoint{}, 378 "eu-west-1": endpoint{}, 379 "eu-west-2": endpoint{}, 380 "eu-west-3": endpoint{}, 381 "sa-east-1": endpoint{}, 382 "us-east-1": endpoint{}, 383 "us-east-2": endpoint{}, 384 "us-west-2": endpoint{}, 385 }, 386 }, 387 "amplify": service{ 388 389 Endpoints: endpoints{ 390 "ap-east-1": endpoint{}, 391 "ap-northeast-1": endpoint{}, 392 "ap-northeast-2": endpoint{}, 393 "ap-south-1": endpoint{}, 394 "ap-southeast-1": endpoint{}, 395 "ap-southeast-2": endpoint{}, 396 "ca-central-1": endpoint{}, 397 "eu-central-1": endpoint{}, 398 "eu-north-1": endpoint{}, 399 "eu-south-1": endpoint{}, 400 "eu-west-1": endpoint{}, 401 "eu-west-2": endpoint{}, 402 "eu-west-3": endpoint{}, 403 "me-south-1": endpoint{}, 404 "sa-east-1": endpoint{}, 405 "us-east-1": endpoint{}, 406 "us-east-2": endpoint{}, 407 "us-west-1": endpoint{}, 408 "us-west-2": endpoint{}, 409 }, 410 }, 411 "amplifybackend": service{ 412 413 Endpoints: endpoints{ 414 "ap-northeast-1": endpoint{}, 415 "ap-northeast-2": endpoint{}, 416 "ap-south-1": endpoint{}, 417 "ap-southeast-1": endpoint{}, 418 "ap-southeast-2": endpoint{}, 419 "ca-central-1": endpoint{}, 420 "eu-central-1": endpoint{}, 421 "eu-west-1": endpoint{}, 422 "eu-west-2": endpoint{}, 423 "us-east-1": endpoint{}, 424 "us-east-2": endpoint{}, 425 "us-west-2": endpoint{}, 426 }, 427 }, 428 "api.detective": service{ 429 Defaults: endpoint{ 430 Protocols: []string{"https"}, 431 }, 432 Endpoints: endpoints{ 433 "af-south-1": endpoint{}, 434 "ap-east-1": endpoint{}, 435 "ap-northeast-1": endpoint{}, 436 "ap-northeast-2": endpoint{}, 437 "ap-south-1": endpoint{}, 438 "ap-southeast-1": endpoint{}, 439 "ap-southeast-2": endpoint{}, 440 "ca-central-1": endpoint{}, 441 "eu-central-1": endpoint{}, 442 "eu-north-1": endpoint{}, 443 "eu-south-1": endpoint{}, 444 "eu-west-1": endpoint{}, 445 "eu-west-2": endpoint{}, 446 "eu-west-3": endpoint{}, 447 "me-south-1": endpoint{}, 448 "sa-east-1": endpoint{}, 449 "us-east-1": endpoint{}, 450 "us-east-1-fips": endpoint{ 451 Hostname: "api.detective-fips.us-east-1.amazonaws.com", 452 CredentialScope: credentialScope{ 453 Region: "us-east-1", 454 }, 455 }, 456 "us-east-2": endpoint{}, 457 "us-east-2-fips": endpoint{ 458 Hostname: "api.detective-fips.us-east-2.amazonaws.com", 459 CredentialScope: credentialScope{ 460 Region: "us-east-2", 461 }, 462 }, 463 "us-west-1": endpoint{}, 464 "us-west-1-fips": endpoint{ 465 Hostname: "api.detective-fips.us-west-1.amazonaws.com", 466 CredentialScope: credentialScope{ 467 Region: "us-west-1", 468 }, 469 }, 470 "us-west-2": endpoint{}, 471 "us-west-2-fips": endpoint{ 472 Hostname: "api.detective-fips.us-west-2.amazonaws.com", 473 CredentialScope: credentialScope{ 474 Region: "us-west-2", 475 }, 476 }, 477 }, 478 }, 479 "api.ecr": service{ 480 481 Endpoints: endpoints{ 482 "af-south-1": endpoint{ 483 Hostname: "api.ecr.af-south-1.amazonaws.com", 484 CredentialScope: credentialScope{ 485 Region: "af-south-1", 486 }, 487 }, 488 "ap-east-1": endpoint{ 489 Hostname: "api.ecr.ap-east-1.amazonaws.com", 490 CredentialScope: credentialScope{ 491 Region: "ap-east-1", 492 }, 493 }, 494 "ap-northeast-1": endpoint{ 495 Hostname: "api.ecr.ap-northeast-1.amazonaws.com", 496 CredentialScope: credentialScope{ 497 Region: "ap-northeast-1", 498 }, 499 }, 500 "ap-northeast-2": endpoint{ 501 Hostname: "api.ecr.ap-northeast-2.amazonaws.com", 502 CredentialScope: credentialScope{ 503 Region: "ap-northeast-2", 504 }, 505 }, 506 "ap-northeast-3": endpoint{ 507 Hostname: "api.ecr.ap-northeast-3.amazonaws.com", 508 CredentialScope: credentialScope{ 509 Region: "ap-northeast-3", 510 }, 511 }, 512 "ap-south-1": endpoint{ 513 Hostname: "api.ecr.ap-south-1.amazonaws.com", 514 CredentialScope: credentialScope{ 515 Region: "ap-south-1", 516 }, 517 }, 518 "ap-southeast-1": endpoint{ 519 Hostname: "api.ecr.ap-southeast-1.amazonaws.com", 520 CredentialScope: credentialScope{ 521 Region: "ap-southeast-1", 522 }, 523 }, 524 "ap-southeast-2": endpoint{ 525 Hostname: "api.ecr.ap-southeast-2.amazonaws.com", 526 CredentialScope: credentialScope{ 527 Region: "ap-southeast-2", 528 }, 529 }, 530 "ca-central-1": endpoint{ 531 Hostname: "api.ecr.ca-central-1.amazonaws.com", 532 CredentialScope: credentialScope{ 533 Region: "ca-central-1", 534 }, 535 }, 536 "eu-central-1": endpoint{ 537 Hostname: "api.ecr.eu-central-1.amazonaws.com", 538 CredentialScope: credentialScope{ 539 Region: "eu-central-1", 540 }, 541 }, 542 "eu-north-1": endpoint{ 543 Hostname: "api.ecr.eu-north-1.amazonaws.com", 544 CredentialScope: credentialScope{ 545 Region: "eu-north-1", 546 }, 547 }, 548 "eu-south-1": endpoint{ 549 Hostname: "api.ecr.eu-south-1.amazonaws.com", 550 CredentialScope: credentialScope{ 551 Region: "eu-south-1", 552 }, 553 }, 554 "eu-west-1": endpoint{ 555 Hostname: "api.ecr.eu-west-1.amazonaws.com", 556 CredentialScope: credentialScope{ 557 Region: "eu-west-1", 558 }, 559 }, 560 "eu-west-2": endpoint{ 561 Hostname: "api.ecr.eu-west-2.amazonaws.com", 562 CredentialScope: credentialScope{ 563 Region: "eu-west-2", 564 }, 565 }, 566 "eu-west-3": endpoint{ 567 Hostname: "api.ecr.eu-west-3.amazonaws.com", 568 CredentialScope: credentialScope{ 569 Region: "eu-west-3", 570 }, 571 }, 572 "fips-dkr-us-east-1": endpoint{ 573 Hostname: "ecr-fips.us-east-1.amazonaws.com", 574 CredentialScope: credentialScope{ 575 Region: "us-east-1", 576 }, 577 }, 578 "fips-dkr-us-east-2": endpoint{ 579 Hostname: "ecr-fips.us-east-2.amazonaws.com", 580 CredentialScope: credentialScope{ 581 Region: "us-east-2", 582 }, 583 }, 584 "fips-dkr-us-west-1": endpoint{ 585 Hostname: "ecr-fips.us-west-1.amazonaws.com", 586 CredentialScope: credentialScope{ 587 Region: "us-west-1", 588 }, 589 }, 590 "fips-dkr-us-west-2": endpoint{ 591 Hostname: "ecr-fips.us-west-2.amazonaws.com", 592 CredentialScope: credentialScope{ 593 Region: "us-west-2", 594 }, 595 }, 596 "fips-us-east-1": endpoint{ 597 Hostname: "ecr-fips.us-east-1.amazonaws.com", 598 CredentialScope: credentialScope{ 599 Region: "us-east-1", 600 }, 601 }, 602 "fips-us-east-2": endpoint{ 603 Hostname: "ecr-fips.us-east-2.amazonaws.com", 604 CredentialScope: credentialScope{ 605 Region: "us-east-2", 606 }, 607 }, 608 "fips-us-west-1": endpoint{ 609 Hostname: "ecr-fips.us-west-1.amazonaws.com", 610 CredentialScope: credentialScope{ 611 Region: "us-west-1", 612 }, 613 }, 614 "fips-us-west-2": endpoint{ 615 Hostname: "ecr-fips.us-west-2.amazonaws.com", 616 CredentialScope: credentialScope{ 617 Region: "us-west-2", 618 }, 619 }, 620 "me-south-1": endpoint{ 621 Hostname: "api.ecr.me-south-1.amazonaws.com", 622 CredentialScope: credentialScope{ 623 Region: "me-south-1", 624 }, 625 }, 626 "sa-east-1": endpoint{ 627 Hostname: "api.ecr.sa-east-1.amazonaws.com", 628 CredentialScope: credentialScope{ 629 Region: "sa-east-1", 630 }, 631 }, 632 "us-east-1": endpoint{ 633 Hostname: "api.ecr.us-east-1.amazonaws.com", 634 CredentialScope: credentialScope{ 635 Region: "us-east-1", 636 }, 637 }, 638 "us-east-2": endpoint{ 639 Hostname: "api.ecr.us-east-2.amazonaws.com", 640 CredentialScope: credentialScope{ 641 Region: "us-east-2", 642 }, 643 }, 644 "us-west-1": endpoint{ 645 Hostname: "api.ecr.us-west-1.amazonaws.com", 646 CredentialScope: credentialScope{ 647 Region: "us-west-1", 648 }, 649 }, 650 "us-west-2": endpoint{ 651 Hostname: "api.ecr.us-west-2.amazonaws.com", 652 CredentialScope: credentialScope{ 653 Region: "us-west-2", 654 }, 655 }, 656 }, 657 }, 658 "api.elastic-inference": service{ 659 660 Endpoints: endpoints{ 661 "ap-northeast-1": endpoint{ 662 Hostname: "api.elastic-inference.ap-northeast-1.amazonaws.com", 663 }, 664 "ap-northeast-2": endpoint{ 665 Hostname: "api.elastic-inference.ap-northeast-2.amazonaws.com", 666 }, 667 "eu-west-1": endpoint{ 668 Hostname: "api.elastic-inference.eu-west-1.amazonaws.com", 669 }, 670 "us-east-1": endpoint{ 671 Hostname: "api.elastic-inference.us-east-1.amazonaws.com", 672 }, 673 "us-east-2": endpoint{ 674 Hostname: "api.elastic-inference.us-east-2.amazonaws.com", 675 }, 676 "us-west-2": endpoint{ 677 Hostname: "api.elastic-inference.us-west-2.amazonaws.com", 678 }, 679 }, 680 }, 681 "api.fleethub.iot": service{ 682 683 Endpoints: endpoints{ 684 "ap-northeast-1": endpoint{}, 685 "ap-northeast-2": endpoint{}, 686 "ap-south-1": endpoint{}, 687 "ap-southeast-1": endpoint{}, 688 "ap-southeast-2": endpoint{}, 689 "ca-central-1": endpoint{}, 690 "eu-central-1": endpoint{}, 691 "eu-north-1": endpoint{}, 692 "eu-west-1": endpoint{}, 693 "eu-west-2": endpoint{}, 694 "fips-ca-central-1": endpoint{ 695 Hostname: "api.fleethub.iot-fips.ca-central-1.amazonaws.com", 696 CredentialScope: credentialScope{ 697 Region: "ca-central-1", 698 }, 699 }, 700 "fips-us-east-1": endpoint{ 701 Hostname: "api.fleethub.iot-fips.us-east-1.amazonaws.com", 702 CredentialScope: credentialScope{ 703 Region: "us-east-1", 704 }, 705 }, 706 "fips-us-east-2": endpoint{ 707 Hostname: "api.fleethub.iot-fips.us-east-2.amazonaws.com", 708 CredentialScope: credentialScope{ 709 Region: "us-east-2", 710 }, 711 }, 712 "fips-us-west-2": endpoint{ 713 Hostname: "api.fleethub.iot-fips.us-west-2.amazonaws.com", 714 CredentialScope: credentialScope{ 715 Region: "us-west-2", 716 }, 717 }, 718 "us-east-1": endpoint{}, 719 "us-east-2": endpoint{}, 720 "us-west-2": endpoint{}, 721 }, 722 }, 723 "api.mediatailor": service{ 724 725 Endpoints: endpoints{ 726 "ap-northeast-1": endpoint{}, 727 "ap-southeast-1": endpoint{}, 728 "ap-southeast-2": endpoint{}, 729 "eu-central-1": endpoint{}, 730 "eu-west-1": endpoint{}, 731 "us-east-1": endpoint{}, 732 "us-west-2": endpoint{}, 733 }, 734 }, 735 "api.pricing": service{ 736 Defaults: endpoint{ 737 CredentialScope: credentialScope{ 738 Service: "pricing", 739 }, 740 }, 741 Endpoints: endpoints{ 742 "ap-south-1": endpoint{}, 743 "us-east-1": endpoint{}, 744 }, 745 }, 746 "api.sagemaker": service{ 747 748 Endpoints: endpoints{ 749 "af-south-1": endpoint{}, 750 "ap-east-1": endpoint{}, 751 "ap-northeast-1": endpoint{}, 752 "ap-northeast-2": endpoint{}, 753 "ap-northeast-3": endpoint{}, 754 "ap-south-1": endpoint{}, 755 "ap-southeast-1": endpoint{}, 756 "ap-southeast-2": endpoint{}, 757 "ca-central-1": endpoint{}, 758 "eu-central-1": endpoint{}, 759 "eu-north-1": endpoint{}, 760 "eu-south-1": endpoint{}, 761 "eu-west-1": endpoint{}, 762 "eu-west-2": endpoint{}, 763 "eu-west-3": endpoint{}, 764 "me-south-1": endpoint{}, 765 "sa-east-1": endpoint{}, 766 "us-east-1": endpoint{}, 767 "us-east-1-fips": endpoint{ 768 Hostname: "api-fips.sagemaker.us-east-1.amazonaws.com", 769 CredentialScope: credentialScope{ 770 Region: "us-east-1", 771 }, 772 }, 773 "us-east-2": endpoint{}, 774 "us-east-2-fips": endpoint{ 775 Hostname: "api-fips.sagemaker.us-east-2.amazonaws.com", 776 CredentialScope: credentialScope{ 777 Region: "us-east-2", 778 }, 779 }, 780 "us-west-1": endpoint{}, 781 "us-west-1-fips": endpoint{ 782 Hostname: "api-fips.sagemaker.us-west-1.amazonaws.com", 783 CredentialScope: credentialScope{ 784 Region: "us-west-1", 785 }, 786 }, 787 "us-west-2": endpoint{}, 788 "us-west-2-fips": endpoint{ 789 Hostname: "api-fips.sagemaker.us-west-2.amazonaws.com", 790 CredentialScope: credentialScope{ 791 Region: "us-west-2", 792 }, 793 }, 794 }, 795 }, 796 "apigateway": service{ 797 798 Endpoints: endpoints{ 799 "af-south-1": endpoint{}, 800 "ap-east-1": endpoint{}, 801 "ap-northeast-1": endpoint{}, 802 "ap-northeast-2": endpoint{}, 803 "ap-northeast-3": endpoint{}, 804 "ap-south-1": endpoint{}, 805 "ap-southeast-1": endpoint{}, 806 "ap-southeast-2": endpoint{}, 807 "ca-central-1": endpoint{}, 808 "eu-central-1": endpoint{}, 809 "eu-north-1": endpoint{}, 810 "eu-south-1": endpoint{}, 811 "eu-west-1": endpoint{}, 812 "eu-west-2": endpoint{}, 813 "eu-west-3": endpoint{}, 814 "me-south-1": endpoint{}, 815 "sa-east-1": endpoint{}, 816 "us-east-1": endpoint{}, 817 "us-east-2": endpoint{}, 818 "us-west-1": endpoint{}, 819 "us-west-2": endpoint{}, 820 }, 821 }, 822 "app-integrations": service{ 823 824 Endpoints: endpoints{ 825 "ap-northeast-1": endpoint{}, 826 "ap-southeast-1": endpoint{}, 827 "ap-southeast-2": endpoint{}, 828 "ca-central-1": endpoint{}, 829 "eu-central-1": endpoint{}, 830 "eu-west-2": endpoint{}, 831 "us-east-1": endpoint{}, 832 "us-west-2": endpoint{}, 833 }, 834 }, 835 "appflow": service{ 836 837 Endpoints: endpoints{ 838 "af-south-1": endpoint{}, 839 "ap-northeast-1": endpoint{}, 840 "ap-northeast-2": endpoint{}, 841 "ap-south-1": endpoint{}, 842 "ap-southeast-1": endpoint{}, 843 "ap-southeast-2": endpoint{}, 844 "ca-central-1": endpoint{}, 845 "eu-central-1": endpoint{}, 846 "eu-west-1": endpoint{}, 847 "eu-west-2": endpoint{}, 848 "eu-west-3": endpoint{}, 849 "sa-east-1": endpoint{}, 850 "us-east-1": endpoint{}, 851 "us-east-2": endpoint{}, 852 "us-west-1": endpoint{}, 853 "us-west-2": endpoint{}, 854 }, 855 }, 856 "application-autoscaling": service{ 857 Defaults: endpoint{ 858 Protocols: []string{"http", "https"}, 859 }, 860 Endpoints: endpoints{ 861 "af-south-1": endpoint{}, 862 "ap-east-1": endpoint{}, 863 "ap-northeast-1": endpoint{}, 864 "ap-northeast-2": endpoint{}, 865 "ap-northeast-3": endpoint{}, 866 "ap-south-1": endpoint{}, 867 "ap-southeast-1": endpoint{}, 868 "ap-southeast-2": endpoint{}, 869 "ca-central-1": endpoint{}, 870 "eu-central-1": endpoint{}, 871 "eu-north-1": endpoint{}, 872 "eu-south-1": endpoint{}, 873 "eu-west-1": endpoint{}, 874 "eu-west-2": endpoint{}, 875 "eu-west-3": endpoint{}, 876 "me-south-1": endpoint{}, 877 "sa-east-1": endpoint{}, 878 "us-east-1": endpoint{}, 879 "us-east-2": endpoint{}, 880 "us-west-1": endpoint{}, 881 "us-west-2": endpoint{}, 882 }, 883 }, 884 "appmesh": service{ 885 886 Endpoints: endpoints{ 887 "af-south-1": endpoint{}, 888 "ap-east-1": endpoint{}, 889 "ap-northeast-1": endpoint{}, 890 "ap-northeast-2": endpoint{}, 891 "ap-south-1": endpoint{}, 892 "ap-southeast-1": endpoint{}, 893 "ap-southeast-2": endpoint{}, 894 "ca-central-1": endpoint{}, 895 "eu-central-1": endpoint{}, 896 "eu-north-1": endpoint{}, 897 "eu-south-1": endpoint{}, 898 "eu-west-1": endpoint{}, 899 "eu-west-2": endpoint{}, 900 "eu-west-3": endpoint{}, 901 "me-south-1": endpoint{}, 902 "sa-east-1": endpoint{}, 903 "us-east-1": endpoint{}, 904 "us-east-2": endpoint{}, 905 "us-west-1": endpoint{}, 906 "us-west-2": endpoint{}, 907 }, 908 }, 909 "apprunner": service{ 910 911 Endpoints: endpoints{ 912 "ap-northeast-1": endpoint{}, 913 "eu-west-1": endpoint{}, 914 "us-east-1": endpoint{}, 915 "us-east-2": endpoint{}, 916 "us-west-2": endpoint{}, 917 }, 918 }, 919 "appstream2": service{ 920 Defaults: endpoint{ 921 Protocols: []string{"https"}, 922 CredentialScope: credentialScope{ 923 Service: "appstream", 924 }, 925 }, 926 Endpoints: endpoints{ 927 "ap-northeast-1": endpoint{}, 928 "ap-northeast-2": endpoint{}, 929 "ap-south-1": endpoint{}, 930 "ap-southeast-1": endpoint{}, 931 "ap-southeast-2": endpoint{}, 932 "eu-central-1": endpoint{}, 933 "eu-west-1": endpoint{}, 934 "eu-west-2": endpoint{}, 935 "fips": endpoint{ 936 Hostname: "appstream2-fips.us-west-2.amazonaws.com", 937 CredentialScope: credentialScope{ 938 Region: "us-west-2", 939 }, 940 }, 941 "us-east-1": endpoint{}, 942 "us-west-2": endpoint{}, 943 }, 944 }, 945 "appsync": service{ 946 947 Endpoints: endpoints{ 948 "ap-east-1": endpoint{}, 949 "ap-northeast-1": endpoint{}, 950 "ap-northeast-2": endpoint{}, 951 "ap-northeast-3": endpoint{}, 952 "ap-south-1": endpoint{}, 953 "ap-southeast-1": endpoint{}, 954 "ap-southeast-2": endpoint{}, 955 "ca-central-1": endpoint{}, 956 "eu-central-1": endpoint{}, 957 "eu-north-1": endpoint{}, 958 "eu-south-1": endpoint{}, 959 "eu-west-1": endpoint{}, 960 "eu-west-2": endpoint{}, 961 "eu-west-3": endpoint{}, 962 "me-south-1": endpoint{}, 963 "sa-east-1": endpoint{}, 964 "us-east-1": endpoint{}, 965 "us-east-2": endpoint{}, 966 "us-west-1": endpoint{}, 967 "us-west-2": endpoint{}, 968 }, 969 }, 970 "aps": service{ 971 Defaults: endpoint{ 972 Protocols: []string{"https"}, 973 }, 974 Endpoints: endpoints{ 975 "ap-northeast-1": endpoint{}, 976 "ap-southeast-1": endpoint{}, 977 "ap-southeast-2": endpoint{}, 978 "eu-central-1": endpoint{}, 979 "eu-north-1": endpoint{}, 980 "eu-west-1": endpoint{}, 981 "us-east-1": endpoint{}, 982 "us-east-2": endpoint{}, 983 "us-west-2": endpoint{}, 984 }, 985 }, 986 "athena": service{ 987 988 Endpoints: endpoints{ 989 "af-south-1": endpoint{}, 990 "ap-east-1": endpoint{}, 991 "ap-northeast-1": endpoint{}, 992 "ap-northeast-2": endpoint{}, 993 "ap-northeast-3": endpoint{}, 994 "ap-south-1": endpoint{}, 995 "ap-southeast-1": endpoint{}, 996 "ap-southeast-2": endpoint{}, 997 "ca-central-1": endpoint{}, 998 "eu-central-1": endpoint{}, 999 "eu-north-1": endpoint{}, 1000 "eu-south-1": endpoint{}, 1001 "eu-west-1": endpoint{}, 1002 "eu-west-2": endpoint{}, 1003 "eu-west-3": endpoint{}, 1004 "fips-us-east-1": endpoint{ 1005 Hostname: "athena-fips.us-east-1.amazonaws.com", 1006 CredentialScope: credentialScope{ 1007 Region: "us-east-1", 1008 }, 1009 }, 1010 "fips-us-east-2": endpoint{ 1011 Hostname: "athena-fips.us-east-2.amazonaws.com", 1012 CredentialScope: credentialScope{ 1013 Region: "us-east-2", 1014 }, 1015 }, 1016 "fips-us-west-1": endpoint{ 1017 Hostname: "athena-fips.us-west-1.amazonaws.com", 1018 CredentialScope: credentialScope{ 1019 Region: "us-west-1", 1020 }, 1021 }, 1022 "fips-us-west-2": endpoint{ 1023 Hostname: "athena-fips.us-west-2.amazonaws.com", 1024 CredentialScope: credentialScope{ 1025 Region: "us-west-2", 1026 }, 1027 }, 1028 "me-south-1": endpoint{}, 1029 "sa-east-1": endpoint{}, 1030 "us-east-1": endpoint{}, 1031 "us-east-2": endpoint{}, 1032 "us-west-1": endpoint{}, 1033 "us-west-2": endpoint{}, 1034 }, 1035 }, 1036 "auditmanager": service{ 1037 1038 Endpoints: endpoints{ 1039 "ap-northeast-1": endpoint{}, 1040 "ap-south-1": endpoint{}, 1041 "ap-southeast-1": endpoint{}, 1042 "ap-southeast-2": endpoint{}, 1043 "ca-central-1": endpoint{}, 1044 "eu-central-1": endpoint{}, 1045 "eu-west-1": endpoint{}, 1046 "eu-west-2": endpoint{}, 1047 "us-east-1": endpoint{}, 1048 "us-east-2": endpoint{}, 1049 "us-west-1": endpoint{}, 1050 "us-west-2": endpoint{}, 1051 }, 1052 }, 1053 "autoscaling": service{ 1054 Defaults: endpoint{ 1055 Protocols: []string{"http", "https"}, 1056 }, 1057 Endpoints: endpoints{ 1058 "af-south-1": endpoint{}, 1059 "ap-east-1": endpoint{}, 1060 "ap-northeast-1": endpoint{}, 1061 "ap-northeast-2": endpoint{}, 1062 "ap-northeast-3": endpoint{}, 1063 "ap-south-1": endpoint{}, 1064 "ap-southeast-1": endpoint{}, 1065 "ap-southeast-2": endpoint{}, 1066 "ca-central-1": endpoint{}, 1067 "eu-central-1": endpoint{}, 1068 "eu-north-1": endpoint{}, 1069 "eu-south-1": endpoint{}, 1070 "eu-west-1": endpoint{}, 1071 "eu-west-2": endpoint{}, 1072 "eu-west-3": endpoint{}, 1073 "me-south-1": endpoint{}, 1074 "sa-east-1": endpoint{}, 1075 "us-east-1": endpoint{}, 1076 "us-east-2": endpoint{}, 1077 "us-west-1": endpoint{}, 1078 "us-west-2": endpoint{}, 1079 }, 1080 }, 1081 "autoscaling-plans": service{ 1082 Defaults: endpoint{ 1083 Protocols: []string{"http", "https"}, 1084 }, 1085 Endpoints: endpoints{ 1086 "af-south-1": endpoint{}, 1087 "ap-east-1": endpoint{}, 1088 "ap-northeast-1": endpoint{}, 1089 "ap-northeast-2": endpoint{}, 1090 "ap-northeast-3": endpoint{}, 1091 "ap-south-1": endpoint{}, 1092 "ap-southeast-1": endpoint{}, 1093 "ap-southeast-2": endpoint{}, 1094 "ca-central-1": endpoint{}, 1095 "eu-central-1": endpoint{}, 1096 "eu-north-1": endpoint{}, 1097 "eu-south-1": endpoint{}, 1098 "eu-west-1": endpoint{}, 1099 "eu-west-2": endpoint{}, 1100 "eu-west-3": endpoint{}, 1101 "me-south-1": endpoint{}, 1102 "sa-east-1": endpoint{}, 1103 "us-east-1": endpoint{}, 1104 "us-east-2": endpoint{}, 1105 "us-west-1": endpoint{}, 1106 "us-west-2": endpoint{}, 1107 }, 1108 }, 1109 "backup": service{ 1110 1111 Endpoints: endpoints{ 1112 "af-south-1": endpoint{}, 1113 "ap-east-1": endpoint{}, 1114 "ap-northeast-1": endpoint{}, 1115 "ap-northeast-2": endpoint{}, 1116 "ap-northeast-3": endpoint{}, 1117 "ap-south-1": endpoint{}, 1118 "ap-southeast-1": endpoint{}, 1119 "ap-southeast-2": endpoint{}, 1120 "ca-central-1": endpoint{}, 1121 "eu-central-1": endpoint{}, 1122 "eu-north-1": endpoint{}, 1123 "eu-south-1": endpoint{}, 1124 "eu-west-1": endpoint{}, 1125 "eu-west-2": endpoint{}, 1126 "eu-west-3": endpoint{}, 1127 "me-south-1": endpoint{}, 1128 "sa-east-1": endpoint{}, 1129 "us-east-1": endpoint{}, 1130 "us-east-2": endpoint{}, 1131 "us-west-1": endpoint{}, 1132 "us-west-2": endpoint{}, 1133 }, 1134 }, 1135 "batch": service{ 1136 1137 Endpoints: endpoints{ 1138 "af-south-1": endpoint{}, 1139 "ap-east-1": endpoint{}, 1140 "ap-northeast-1": endpoint{}, 1141 "ap-northeast-2": endpoint{}, 1142 "ap-northeast-3": endpoint{}, 1143 "ap-south-1": endpoint{}, 1144 "ap-southeast-1": endpoint{}, 1145 "ap-southeast-2": endpoint{}, 1146 "ca-central-1": endpoint{}, 1147 "eu-central-1": endpoint{}, 1148 "eu-north-1": endpoint{}, 1149 "eu-south-1": endpoint{}, 1150 "eu-west-1": endpoint{}, 1151 "eu-west-2": endpoint{}, 1152 "eu-west-3": endpoint{}, 1153 "fips-us-east-1": endpoint{ 1154 Hostname: "fips.batch.us-east-1.amazonaws.com", 1155 CredentialScope: credentialScope{ 1156 Region: "us-east-1", 1157 }, 1158 }, 1159 "fips-us-east-2": endpoint{ 1160 Hostname: "fips.batch.us-east-2.amazonaws.com", 1161 CredentialScope: credentialScope{ 1162 Region: "us-east-2", 1163 }, 1164 }, 1165 "fips-us-west-1": endpoint{ 1166 Hostname: "fips.batch.us-west-1.amazonaws.com", 1167 CredentialScope: credentialScope{ 1168 Region: "us-west-1", 1169 }, 1170 }, 1171 "fips-us-west-2": endpoint{ 1172 Hostname: "fips.batch.us-west-2.amazonaws.com", 1173 CredentialScope: credentialScope{ 1174 Region: "us-west-2", 1175 }, 1176 }, 1177 "me-south-1": endpoint{}, 1178 "sa-east-1": endpoint{}, 1179 "us-east-1": endpoint{}, 1180 "us-east-2": endpoint{}, 1181 "us-west-1": endpoint{}, 1182 "us-west-2": endpoint{}, 1183 }, 1184 }, 1185 "braket": service{ 1186 1187 Endpoints: endpoints{ 1188 "us-east-1": endpoint{}, 1189 "us-west-1": endpoint{}, 1190 "us-west-2": endpoint{}, 1191 }, 1192 }, 1193 "budgets": service{ 1194 PartitionEndpoint: "aws-global", 1195 IsRegionalized: boxedFalse, 1196 1197 Endpoints: endpoints{ 1198 "aws-global": endpoint{ 1199 Hostname: "budgets.amazonaws.com", 1200 CredentialScope: credentialScope{ 1201 Region: "us-east-1", 1202 }, 1203 }, 1204 }, 1205 }, 1206 "ce": service{ 1207 PartitionEndpoint: "aws-global", 1208 IsRegionalized: boxedFalse, 1209 1210 Endpoints: endpoints{ 1211 "aws-global": endpoint{ 1212 Hostname: "ce.us-east-1.amazonaws.com", 1213 CredentialScope: credentialScope{ 1214 Region: "us-east-1", 1215 }, 1216 }, 1217 }, 1218 }, 1219 "chime": service{ 1220 PartitionEndpoint: "aws-global", 1221 IsRegionalized: boxedFalse, 1222 Defaults: endpoint{ 1223 Protocols: []string{"https"}, 1224 }, 1225 Endpoints: endpoints{ 1226 "aws-global": endpoint{ 1227 Hostname: "chime.us-east-1.amazonaws.com", 1228 Protocols: []string{"https"}, 1229 CredentialScope: credentialScope{ 1230 Region: "us-east-1", 1231 }, 1232 }, 1233 }, 1234 }, 1235 "cloud9": service{ 1236 1237 Endpoints: endpoints{ 1238 "af-south-1": endpoint{}, 1239 "ap-east-1": endpoint{}, 1240 "ap-northeast-1": endpoint{}, 1241 "ap-northeast-2": endpoint{}, 1242 "ap-northeast-3": endpoint{}, 1243 "ap-south-1": endpoint{}, 1244 "ap-southeast-1": endpoint{}, 1245 "ap-southeast-2": endpoint{}, 1246 "ca-central-1": endpoint{}, 1247 "eu-central-1": endpoint{}, 1248 "eu-north-1": endpoint{}, 1249 "eu-south-1": endpoint{}, 1250 "eu-west-1": endpoint{}, 1251 "eu-west-2": endpoint{}, 1252 "eu-west-3": endpoint{}, 1253 "me-south-1": endpoint{}, 1254 "sa-east-1": endpoint{}, 1255 "us-east-1": endpoint{}, 1256 "us-east-2": endpoint{}, 1257 "us-west-1": endpoint{}, 1258 "us-west-2": endpoint{}, 1259 }, 1260 }, 1261 "cloudcontrolapi": service{ 1262 1263 Endpoints: endpoints{ 1264 "af-south-1": endpoint{}, 1265 "ap-east-1": endpoint{}, 1266 "ap-northeast-1": endpoint{}, 1267 "ap-northeast-2": endpoint{}, 1268 "ap-northeast-3": endpoint{}, 1269 "ap-south-1": endpoint{}, 1270 "ap-southeast-1": endpoint{}, 1271 "ap-southeast-2": endpoint{}, 1272 "ca-central-1": endpoint{}, 1273 "eu-central-1": endpoint{}, 1274 "eu-north-1": endpoint{}, 1275 "eu-south-1": endpoint{}, 1276 "eu-west-1": endpoint{}, 1277 "eu-west-2": endpoint{}, 1278 "eu-west-3": endpoint{}, 1279 "fips-ca-central-1": endpoint{ 1280 Hostname: "cloudcontrolapi-fips.ca-central-1.amazonaws.com", 1281 CredentialScope: credentialScope{ 1282 Region: "ca-central-1", 1283 }, 1284 }, 1285 "fips-us-east-1": endpoint{ 1286 Hostname: "cloudcontrolapi-fips.us-east-1.amazonaws.com", 1287 CredentialScope: credentialScope{ 1288 Region: "us-east-1", 1289 }, 1290 }, 1291 "fips-us-east-2": endpoint{ 1292 Hostname: "cloudcontrolapi-fips.us-east-2.amazonaws.com", 1293 CredentialScope: credentialScope{ 1294 Region: "us-east-2", 1295 }, 1296 }, 1297 "fips-us-west-1": endpoint{ 1298 Hostname: "cloudcontrolapi-fips.us-west-1.amazonaws.com", 1299 CredentialScope: credentialScope{ 1300 Region: "us-west-1", 1301 }, 1302 }, 1303 "fips-us-west-2": endpoint{ 1304 Hostname: "cloudcontrolapi-fips.us-west-2.amazonaws.com", 1305 CredentialScope: credentialScope{ 1306 Region: "us-west-2", 1307 }, 1308 }, 1309 "me-south-1": endpoint{}, 1310 "sa-east-1": endpoint{}, 1311 "us-east-1": endpoint{}, 1312 "us-east-2": endpoint{}, 1313 "us-west-1": endpoint{}, 1314 "us-west-2": endpoint{}, 1315 }, 1316 }, 1317 "clouddirectory": service{ 1318 1319 Endpoints: endpoints{ 1320 "ap-southeast-1": endpoint{}, 1321 "ap-southeast-2": endpoint{}, 1322 "ca-central-1": endpoint{}, 1323 "eu-central-1": endpoint{}, 1324 "eu-west-1": endpoint{}, 1325 "eu-west-2": endpoint{}, 1326 "us-east-1": endpoint{}, 1327 "us-east-2": endpoint{}, 1328 "us-west-2": endpoint{}, 1329 }, 1330 }, 1331 "cloudformation": service{ 1332 1333 Endpoints: endpoints{ 1334 "af-south-1": endpoint{}, 1335 "ap-east-1": endpoint{}, 1336 "ap-northeast-1": endpoint{}, 1337 "ap-northeast-2": endpoint{}, 1338 "ap-northeast-3": endpoint{}, 1339 "ap-south-1": endpoint{}, 1340 "ap-southeast-1": endpoint{}, 1341 "ap-southeast-2": endpoint{}, 1342 "ca-central-1": endpoint{}, 1343 "eu-central-1": endpoint{}, 1344 "eu-north-1": endpoint{}, 1345 "eu-south-1": endpoint{}, 1346 "eu-west-1": endpoint{}, 1347 "eu-west-2": endpoint{}, 1348 "eu-west-3": endpoint{}, 1349 "me-south-1": endpoint{}, 1350 "sa-east-1": endpoint{}, 1351 "us-east-1": endpoint{}, 1352 "us-east-1-fips": endpoint{ 1353 Hostname: "cloudformation-fips.us-east-1.amazonaws.com", 1354 CredentialScope: credentialScope{ 1355 Region: "us-east-1", 1356 }, 1357 }, 1358 "us-east-2": endpoint{}, 1359 "us-east-2-fips": endpoint{ 1360 Hostname: "cloudformation-fips.us-east-2.amazonaws.com", 1361 CredentialScope: credentialScope{ 1362 Region: "us-east-2", 1363 }, 1364 }, 1365 "us-west-1": endpoint{}, 1366 "us-west-1-fips": endpoint{ 1367 Hostname: "cloudformation-fips.us-west-1.amazonaws.com", 1368 CredentialScope: credentialScope{ 1369 Region: "us-west-1", 1370 }, 1371 }, 1372 "us-west-2": endpoint{}, 1373 "us-west-2-fips": endpoint{ 1374 Hostname: "cloudformation-fips.us-west-2.amazonaws.com", 1375 CredentialScope: credentialScope{ 1376 Region: "us-west-2", 1377 }, 1378 }, 1379 }, 1380 }, 1381 "cloudfront": service{ 1382 PartitionEndpoint: "aws-global", 1383 IsRegionalized: boxedFalse, 1384 1385 Endpoints: endpoints{ 1386 "aws-global": endpoint{ 1387 Hostname: "cloudfront.amazonaws.com", 1388 Protocols: []string{"http", "https"}, 1389 CredentialScope: credentialScope{ 1390 Region: "us-east-1", 1391 }, 1392 }, 1393 }, 1394 }, 1395 "cloudhsm": service{ 1396 1397 Endpoints: endpoints{ 1398 "ap-northeast-1": endpoint{}, 1399 "ap-southeast-1": endpoint{}, 1400 "ap-southeast-2": endpoint{}, 1401 "ca-central-1": endpoint{}, 1402 "eu-central-1": endpoint{}, 1403 "eu-west-1": endpoint{}, 1404 "us-east-1": endpoint{}, 1405 "us-east-2": endpoint{}, 1406 "us-west-1": endpoint{}, 1407 "us-west-2": endpoint{}, 1408 }, 1409 }, 1410 "cloudhsmv2": service{ 1411 Defaults: endpoint{ 1412 CredentialScope: credentialScope{ 1413 Service: "cloudhsm", 1414 }, 1415 }, 1416 Endpoints: endpoints{ 1417 "af-south-1": endpoint{}, 1418 "ap-east-1": endpoint{}, 1419 "ap-northeast-1": endpoint{}, 1420 "ap-northeast-2": endpoint{}, 1421 "ap-northeast-3": endpoint{}, 1422 "ap-south-1": endpoint{}, 1423 "ap-southeast-1": endpoint{}, 1424 "ap-southeast-2": endpoint{}, 1425 "ca-central-1": endpoint{}, 1426 "eu-central-1": endpoint{}, 1427 "eu-north-1": endpoint{}, 1428 "eu-south-1": endpoint{}, 1429 "eu-west-1": endpoint{}, 1430 "eu-west-2": endpoint{}, 1431 "eu-west-3": endpoint{}, 1432 "me-south-1": endpoint{}, 1433 "sa-east-1": endpoint{}, 1434 "us-east-1": endpoint{}, 1435 "us-east-2": endpoint{}, 1436 "us-west-1": endpoint{}, 1437 "us-west-2": endpoint{}, 1438 }, 1439 }, 1440 "cloudsearch": service{ 1441 1442 Endpoints: endpoints{ 1443 "ap-northeast-1": endpoint{}, 1444 "ap-northeast-2": endpoint{}, 1445 "ap-southeast-1": endpoint{}, 1446 "ap-southeast-2": endpoint{}, 1447 "eu-central-1": endpoint{}, 1448 "eu-west-1": endpoint{}, 1449 "sa-east-1": endpoint{}, 1450 "us-east-1": endpoint{}, 1451 "us-west-1": endpoint{}, 1452 "us-west-2": endpoint{}, 1453 }, 1454 }, 1455 "cloudtrail": service{ 1456 1457 Endpoints: endpoints{ 1458 "af-south-1": endpoint{}, 1459 "ap-east-1": endpoint{}, 1460 "ap-northeast-1": endpoint{}, 1461 "ap-northeast-2": endpoint{}, 1462 "ap-south-1": endpoint{}, 1463 "ap-southeast-1": endpoint{}, 1464 "ap-southeast-2": endpoint{}, 1465 "ca-central-1": endpoint{}, 1466 "eu-central-1": endpoint{}, 1467 "eu-north-1": endpoint{}, 1468 "eu-south-1": endpoint{}, 1469 "eu-west-1": endpoint{}, 1470 "eu-west-2": endpoint{}, 1471 "eu-west-3": endpoint{}, 1472 "fips-us-east-1": endpoint{ 1473 Hostname: "cloudtrail-fips.us-east-1.amazonaws.com", 1474 CredentialScope: credentialScope{ 1475 Region: "us-east-1", 1476 }, 1477 }, 1478 "fips-us-east-2": endpoint{ 1479 Hostname: "cloudtrail-fips.us-east-2.amazonaws.com", 1480 CredentialScope: credentialScope{ 1481 Region: "us-east-2", 1482 }, 1483 }, 1484 "fips-us-west-1": endpoint{ 1485 Hostname: "cloudtrail-fips.us-west-1.amazonaws.com", 1486 CredentialScope: credentialScope{ 1487 Region: "us-west-1", 1488 }, 1489 }, 1490 "fips-us-west-2": endpoint{ 1491 Hostname: "cloudtrail-fips.us-west-2.amazonaws.com", 1492 CredentialScope: credentialScope{ 1493 Region: "us-west-2", 1494 }, 1495 }, 1496 "me-south-1": endpoint{}, 1497 "sa-east-1": endpoint{}, 1498 "us-east-1": endpoint{}, 1499 "us-east-2": endpoint{}, 1500 "us-west-1": endpoint{}, 1501 "us-west-2": endpoint{}, 1502 }, 1503 }, 1504 "codeartifact": service{ 1505 1506 Endpoints: endpoints{ 1507 "ap-northeast-1": endpoint{}, 1508 "ap-south-1": endpoint{}, 1509 "ap-southeast-1": endpoint{}, 1510 "ap-southeast-2": endpoint{}, 1511 "eu-central-1": endpoint{}, 1512 "eu-north-1": endpoint{}, 1513 "eu-south-1": endpoint{}, 1514 "eu-west-1": endpoint{}, 1515 "eu-west-2": endpoint{}, 1516 "eu-west-3": endpoint{}, 1517 "us-east-1": endpoint{}, 1518 "us-east-2": endpoint{}, 1519 "us-west-2": endpoint{}, 1520 }, 1521 }, 1522 "codebuild": service{ 1523 1524 Endpoints: endpoints{ 1525 "af-south-1": endpoint{}, 1526 "ap-east-1": endpoint{}, 1527 "ap-northeast-1": endpoint{}, 1528 "ap-northeast-2": endpoint{}, 1529 "ap-northeast-3": endpoint{}, 1530 "ap-south-1": endpoint{}, 1531 "ap-southeast-1": endpoint{}, 1532 "ap-southeast-2": endpoint{}, 1533 "ca-central-1": endpoint{}, 1534 "eu-central-1": endpoint{}, 1535 "eu-north-1": endpoint{}, 1536 "eu-south-1": endpoint{}, 1537 "eu-west-1": endpoint{}, 1538 "eu-west-2": endpoint{}, 1539 "eu-west-3": endpoint{}, 1540 "me-south-1": endpoint{}, 1541 "sa-east-1": endpoint{}, 1542 "us-east-1": endpoint{}, 1543 "us-east-1-fips": endpoint{ 1544 Hostname: "codebuild-fips.us-east-1.amazonaws.com", 1545 CredentialScope: credentialScope{ 1546 Region: "us-east-1", 1547 }, 1548 }, 1549 "us-east-2": endpoint{}, 1550 "us-east-2-fips": endpoint{ 1551 Hostname: "codebuild-fips.us-east-2.amazonaws.com", 1552 CredentialScope: credentialScope{ 1553 Region: "us-east-2", 1554 }, 1555 }, 1556 "us-west-1": endpoint{}, 1557 "us-west-1-fips": endpoint{ 1558 Hostname: "codebuild-fips.us-west-1.amazonaws.com", 1559 CredentialScope: credentialScope{ 1560 Region: "us-west-1", 1561 }, 1562 }, 1563 "us-west-2": endpoint{}, 1564 "us-west-2-fips": endpoint{ 1565 Hostname: "codebuild-fips.us-west-2.amazonaws.com", 1566 CredentialScope: credentialScope{ 1567 Region: "us-west-2", 1568 }, 1569 }, 1570 }, 1571 }, 1572 "codecommit": service{ 1573 1574 Endpoints: endpoints{ 1575 "af-south-1": endpoint{}, 1576 "ap-east-1": endpoint{}, 1577 "ap-northeast-1": endpoint{}, 1578 "ap-northeast-2": endpoint{}, 1579 "ap-northeast-3": endpoint{}, 1580 "ap-south-1": endpoint{}, 1581 "ap-southeast-1": endpoint{}, 1582 "ap-southeast-2": endpoint{}, 1583 "ca-central-1": endpoint{}, 1584 "eu-central-1": endpoint{}, 1585 "eu-north-1": endpoint{}, 1586 "eu-south-1": endpoint{}, 1587 "eu-west-1": endpoint{}, 1588 "eu-west-2": endpoint{}, 1589 "eu-west-3": endpoint{}, 1590 "fips": endpoint{ 1591 Hostname: "codecommit-fips.ca-central-1.amazonaws.com", 1592 CredentialScope: credentialScope{ 1593 Region: "ca-central-1", 1594 }, 1595 }, 1596 "me-south-1": endpoint{}, 1597 "sa-east-1": endpoint{}, 1598 "us-east-1": endpoint{}, 1599 "us-east-2": endpoint{}, 1600 "us-west-1": endpoint{}, 1601 "us-west-2": endpoint{}, 1602 }, 1603 }, 1604 "codedeploy": service{ 1605 1606 Endpoints: endpoints{ 1607 "af-south-1": endpoint{}, 1608 "ap-east-1": endpoint{}, 1609 "ap-northeast-1": endpoint{}, 1610 "ap-northeast-2": endpoint{}, 1611 "ap-northeast-3": endpoint{}, 1612 "ap-south-1": endpoint{}, 1613 "ap-southeast-1": endpoint{}, 1614 "ap-southeast-2": endpoint{}, 1615 "ca-central-1": endpoint{}, 1616 "eu-central-1": endpoint{}, 1617 "eu-north-1": endpoint{}, 1618 "eu-south-1": endpoint{}, 1619 "eu-west-1": endpoint{}, 1620 "eu-west-2": endpoint{}, 1621 "eu-west-3": endpoint{}, 1622 "me-south-1": endpoint{}, 1623 "sa-east-1": endpoint{}, 1624 "us-east-1": endpoint{}, 1625 "us-east-1-fips": endpoint{ 1626 Hostname: "codedeploy-fips.us-east-1.amazonaws.com", 1627 CredentialScope: credentialScope{ 1628 Region: "us-east-1", 1629 }, 1630 }, 1631 "us-east-2": endpoint{}, 1632 "us-east-2-fips": endpoint{ 1633 Hostname: "codedeploy-fips.us-east-2.amazonaws.com", 1634 CredentialScope: credentialScope{ 1635 Region: "us-east-2", 1636 }, 1637 }, 1638 "us-west-1": endpoint{}, 1639 "us-west-1-fips": endpoint{ 1640 Hostname: "codedeploy-fips.us-west-1.amazonaws.com", 1641 CredentialScope: credentialScope{ 1642 Region: "us-west-1", 1643 }, 1644 }, 1645 "us-west-2": endpoint{}, 1646 "us-west-2-fips": endpoint{ 1647 Hostname: "codedeploy-fips.us-west-2.amazonaws.com", 1648 CredentialScope: credentialScope{ 1649 Region: "us-west-2", 1650 }, 1651 }, 1652 }, 1653 }, 1654 "codeguru-reviewer": service{ 1655 1656 Endpoints: endpoints{ 1657 "ap-northeast-1": endpoint{}, 1658 "ap-southeast-1": endpoint{}, 1659 "ap-southeast-2": endpoint{}, 1660 "eu-central-1": endpoint{}, 1661 "eu-north-1": endpoint{}, 1662 "eu-west-1": endpoint{}, 1663 "eu-west-2": endpoint{}, 1664 "us-east-1": endpoint{}, 1665 "us-east-2": endpoint{}, 1666 "us-west-2": endpoint{}, 1667 }, 1668 }, 1669 "codepipeline": service{ 1670 1671 Endpoints: endpoints{ 1672 "ap-east-1": endpoint{}, 1673 "ap-northeast-1": endpoint{}, 1674 "ap-northeast-2": endpoint{}, 1675 "ap-south-1": endpoint{}, 1676 "ap-southeast-1": endpoint{}, 1677 "ap-southeast-2": endpoint{}, 1678 "ca-central-1": endpoint{}, 1679 "eu-central-1": endpoint{}, 1680 "eu-north-1": endpoint{}, 1681 "eu-south-1": endpoint{}, 1682 "eu-west-1": endpoint{}, 1683 "eu-west-2": endpoint{}, 1684 "eu-west-3": endpoint{}, 1685 "fips-ca-central-1": endpoint{ 1686 Hostname: "codepipeline-fips.ca-central-1.amazonaws.com", 1687 CredentialScope: credentialScope{ 1688 Region: "ca-central-1", 1689 }, 1690 }, 1691 "fips-us-east-1": endpoint{ 1692 Hostname: "codepipeline-fips.us-east-1.amazonaws.com", 1693 CredentialScope: credentialScope{ 1694 Region: "us-east-1", 1695 }, 1696 }, 1697 "fips-us-east-2": endpoint{ 1698 Hostname: "codepipeline-fips.us-east-2.amazonaws.com", 1699 CredentialScope: credentialScope{ 1700 Region: "us-east-2", 1701 }, 1702 }, 1703 "fips-us-west-1": endpoint{ 1704 Hostname: "codepipeline-fips.us-west-1.amazonaws.com", 1705 CredentialScope: credentialScope{ 1706 Region: "us-west-1", 1707 }, 1708 }, 1709 "fips-us-west-2": endpoint{ 1710 Hostname: "codepipeline-fips.us-west-2.amazonaws.com", 1711 CredentialScope: credentialScope{ 1712 Region: "us-west-2", 1713 }, 1714 }, 1715 "sa-east-1": endpoint{}, 1716 "us-east-1": endpoint{}, 1717 "us-east-2": endpoint{}, 1718 "us-west-1": endpoint{}, 1719 "us-west-2": endpoint{}, 1720 }, 1721 }, 1722 "codestar": service{ 1723 1724 Endpoints: endpoints{ 1725 "ap-northeast-1": endpoint{}, 1726 "ap-northeast-2": endpoint{}, 1727 "ap-southeast-1": endpoint{}, 1728 "ap-southeast-2": endpoint{}, 1729 "ca-central-1": endpoint{}, 1730 "eu-central-1": endpoint{}, 1731 "eu-north-1": endpoint{}, 1732 "eu-west-1": endpoint{}, 1733 "eu-west-2": endpoint{}, 1734 "us-east-1": endpoint{}, 1735 "us-east-2": endpoint{}, 1736 "us-west-1": endpoint{}, 1737 "us-west-2": endpoint{}, 1738 }, 1739 }, 1740 "codestar-connections": service{ 1741 1742 Endpoints: endpoints{ 1743 "ap-northeast-1": endpoint{}, 1744 "ap-northeast-2": endpoint{}, 1745 "ap-south-1": endpoint{}, 1746 "ap-southeast-1": endpoint{}, 1747 "ap-southeast-2": endpoint{}, 1748 "ca-central-1": endpoint{}, 1749 "eu-central-1": endpoint{}, 1750 "eu-north-1": endpoint{}, 1751 "eu-west-1": endpoint{}, 1752 "eu-west-2": endpoint{}, 1753 "eu-west-3": endpoint{}, 1754 "sa-east-1": endpoint{}, 1755 "us-east-1": endpoint{}, 1756 "us-east-2": endpoint{}, 1757 "us-west-1": endpoint{}, 1758 "us-west-2": endpoint{}, 1759 }, 1760 }, 1761 "cognito-identity": service{ 1762 1763 Endpoints: endpoints{ 1764 "ap-northeast-1": endpoint{}, 1765 "ap-northeast-2": endpoint{}, 1766 "ap-south-1": endpoint{}, 1767 "ap-southeast-1": endpoint{}, 1768 "ap-southeast-2": endpoint{}, 1769 "ca-central-1": endpoint{}, 1770 "eu-central-1": endpoint{}, 1771 "eu-north-1": endpoint{}, 1772 "eu-west-1": endpoint{}, 1773 "eu-west-2": endpoint{}, 1774 "eu-west-3": endpoint{}, 1775 "fips-us-east-1": endpoint{ 1776 Hostname: "cognito-identity-fips.us-east-1.amazonaws.com", 1777 CredentialScope: credentialScope{ 1778 Region: "us-east-1", 1779 }, 1780 }, 1781 "fips-us-east-2": endpoint{ 1782 Hostname: "cognito-identity-fips.us-east-2.amazonaws.com", 1783 CredentialScope: credentialScope{ 1784 Region: "us-east-2", 1785 }, 1786 }, 1787 "fips-us-west-2": endpoint{ 1788 Hostname: "cognito-identity-fips.us-west-2.amazonaws.com", 1789 CredentialScope: credentialScope{ 1790 Region: "us-west-2", 1791 }, 1792 }, 1793 "me-south-1": endpoint{}, 1794 "sa-east-1": endpoint{}, 1795 "us-east-1": endpoint{}, 1796 "us-east-2": endpoint{}, 1797 "us-west-1": endpoint{}, 1798 "us-west-2": endpoint{}, 1799 }, 1800 }, 1801 "cognito-idp": service{ 1802 1803 Endpoints: endpoints{ 1804 "ap-northeast-1": endpoint{}, 1805 "ap-northeast-2": endpoint{}, 1806 "ap-south-1": endpoint{}, 1807 "ap-southeast-1": endpoint{}, 1808 "ap-southeast-2": endpoint{}, 1809 "ca-central-1": endpoint{}, 1810 "eu-central-1": endpoint{}, 1811 "eu-north-1": endpoint{}, 1812 "eu-west-1": endpoint{}, 1813 "eu-west-2": endpoint{}, 1814 "eu-west-3": endpoint{}, 1815 "fips-us-east-1": endpoint{ 1816 Hostname: "cognito-idp-fips.us-east-1.amazonaws.com", 1817 CredentialScope: credentialScope{ 1818 Region: "us-east-1", 1819 }, 1820 }, 1821 "fips-us-east-2": endpoint{ 1822 Hostname: "cognito-idp-fips.us-east-2.amazonaws.com", 1823 CredentialScope: credentialScope{ 1824 Region: "us-east-2", 1825 }, 1826 }, 1827 "fips-us-west-1": endpoint{ 1828 Hostname: "cognito-idp-fips.us-west-1.amazonaws.com", 1829 CredentialScope: credentialScope{ 1830 Region: "us-west-1", 1831 }, 1832 }, 1833 "fips-us-west-2": endpoint{ 1834 Hostname: "cognito-idp-fips.us-west-2.amazonaws.com", 1835 CredentialScope: credentialScope{ 1836 Region: "us-west-2", 1837 }, 1838 }, 1839 "me-south-1": endpoint{}, 1840 "sa-east-1": endpoint{}, 1841 "us-east-1": endpoint{}, 1842 "us-east-2": endpoint{}, 1843 "us-west-1": endpoint{}, 1844 "us-west-2": endpoint{}, 1845 }, 1846 }, 1847 "cognito-sync": service{ 1848 1849 Endpoints: endpoints{ 1850 "ap-northeast-1": endpoint{}, 1851 "ap-northeast-2": endpoint{}, 1852 "ap-south-1": endpoint{}, 1853 "ap-southeast-1": endpoint{}, 1854 "ap-southeast-2": endpoint{}, 1855 "eu-central-1": endpoint{}, 1856 "eu-west-1": endpoint{}, 1857 "eu-west-2": endpoint{}, 1858 "us-east-1": endpoint{}, 1859 "us-east-2": endpoint{}, 1860 "us-west-2": endpoint{}, 1861 }, 1862 }, 1863 "comprehend": service{ 1864 Defaults: endpoint{ 1865 Protocols: []string{"https"}, 1866 }, 1867 Endpoints: endpoints{ 1868 "ap-northeast-1": endpoint{}, 1869 "ap-northeast-2": endpoint{}, 1870 "ap-south-1": endpoint{}, 1871 "ap-southeast-1": endpoint{}, 1872 "ap-southeast-2": endpoint{}, 1873 "ca-central-1": endpoint{}, 1874 "eu-central-1": endpoint{}, 1875 "eu-west-1": endpoint{}, 1876 "eu-west-2": endpoint{}, 1877 "fips-us-east-1": endpoint{ 1878 Hostname: "comprehend-fips.us-east-1.amazonaws.com", 1879 CredentialScope: credentialScope{ 1880 Region: "us-east-1", 1881 }, 1882 }, 1883 "fips-us-east-2": endpoint{ 1884 Hostname: "comprehend-fips.us-east-2.amazonaws.com", 1885 CredentialScope: credentialScope{ 1886 Region: "us-east-2", 1887 }, 1888 }, 1889 "fips-us-west-2": endpoint{ 1890 Hostname: "comprehend-fips.us-west-2.amazonaws.com", 1891 CredentialScope: credentialScope{ 1892 Region: "us-west-2", 1893 }, 1894 }, 1895 "us-east-1": endpoint{}, 1896 "us-east-2": endpoint{}, 1897 "us-west-2": endpoint{}, 1898 }, 1899 }, 1900 "comprehendmedical": service{ 1901 1902 Endpoints: endpoints{ 1903 "ap-southeast-2": endpoint{}, 1904 "ca-central-1": endpoint{}, 1905 "eu-west-1": endpoint{}, 1906 "eu-west-2": endpoint{}, 1907 "fips-us-east-1": endpoint{ 1908 Hostname: "comprehendmedical-fips.us-east-1.amazonaws.com", 1909 CredentialScope: credentialScope{ 1910 Region: "us-east-1", 1911 }, 1912 }, 1913 "fips-us-east-2": endpoint{ 1914 Hostname: "comprehendmedical-fips.us-east-2.amazonaws.com", 1915 CredentialScope: credentialScope{ 1916 Region: "us-east-2", 1917 }, 1918 }, 1919 "fips-us-west-2": endpoint{ 1920 Hostname: "comprehendmedical-fips.us-west-2.amazonaws.com", 1921 CredentialScope: credentialScope{ 1922 Region: "us-west-2", 1923 }, 1924 }, 1925 "us-east-1": endpoint{}, 1926 "us-east-2": endpoint{}, 1927 "us-west-2": endpoint{}, 1928 }, 1929 }, 1930 "config": service{ 1931 1932 Endpoints: endpoints{ 1933 "af-south-1": endpoint{}, 1934 "ap-east-1": endpoint{}, 1935 "ap-northeast-1": endpoint{}, 1936 "ap-northeast-2": endpoint{}, 1937 "ap-northeast-3": endpoint{}, 1938 "ap-south-1": endpoint{}, 1939 "ap-southeast-1": endpoint{}, 1940 "ap-southeast-2": endpoint{}, 1941 "ca-central-1": endpoint{}, 1942 "eu-central-1": endpoint{}, 1943 "eu-north-1": endpoint{}, 1944 "eu-south-1": endpoint{}, 1945 "eu-west-1": endpoint{}, 1946 "eu-west-2": endpoint{}, 1947 "eu-west-3": endpoint{}, 1948 "fips-us-east-1": endpoint{ 1949 Hostname: "config-fips.us-east-1.amazonaws.com", 1950 CredentialScope: credentialScope{ 1951 Region: "us-east-1", 1952 }, 1953 }, 1954 "fips-us-east-2": endpoint{ 1955 Hostname: "config-fips.us-east-2.amazonaws.com", 1956 CredentialScope: credentialScope{ 1957 Region: "us-east-2", 1958 }, 1959 }, 1960 "fips-us-west-1": endpoint{ 1961 Hostname: "config-fips.us-west-1.amazonaws.com", 1962 CredentialScope: credentialScope{ 1963 Region: "us-west-1", 1964 }, 1965 }, 1966 "fips-us-west-2": endpoint{ 1967 Hostname: "config-fips.us-west-2.amazonaws.com", 1968 CredentialScope: credentialScope{ 1969 Region: "us-west-2", 1970 }, 1971 }, 1972 "me-south-1": endpoint{}, 1973 "sa-east-1": endpoint{}, 1974 "us-east-1": endpoint{}, 1975 "us-east-2": endpoint{}, 1976 "us-west-1": endpoint{}, 1977 "us-west-2": endpoint{}, 1978 }, 1979 }, 1980 "connect": service{ 1981 1982 Endpoints: endpoints{ 1983 "ap-northeast-1": endpoint{}, 1984 "ap-southeast-1": endpoint{}, 1985 "ap-southeast-2": endpoint{}, 1986 "ca-central-1": endpoint{}, 1987 "eu-central-1": endpoint{}, 1988 "eu-west-2": endpoint{}, 1989 "us-east-1": endpoint{}, 1990 "us-west-2": endpoint{}, 1991 }, 1992 }, 1993 "contact-lens": service{ 1994 1995 Endpoints: endpoints{ 1996 "ap-northeast-1": endpoint{}, 1997 "ap-southeast-2": endpoint{}, 1998 "ca-central-1": endpoint{}, 1999 "eu-central-1": endpoint{}, 2000 "eu-west-2": endpoint{}, 2001 "us-east-1": endpoint{}, 2002 "us-west-2": endpoint{}, 2003 }, 2004 }, 2005 "cur": service{ 2006 2007 Endpoints: endpoints{ 2008 "us-east-1": endpoint{}, 2009 }, 2010 }, 2011 "data.jobs.iot": service{ 2012 2013 Endpoints: endpoints{ 2014 "ap-east-1": endpoint{}, 2015 "ap-northeast-1": endpoint{}, 2016 "ap-northeast-2": endpoint{}, 2017 "ap-south-1": endpoint{}, 2018 "ap-southeast-1": endpoint{}, 2019 "ap-southeast-2": endpoint{}, 2020 "ca-central-1": endpoint{}, 2021 "eu-central-1": endpoint{}, 2022 "eu-north-1": endpoint{}, 2023 "eu-west-1": endpoint{}, 2024 "eu-west-2": endpoint{}, 2025 "eu-west-3": endpoint{}, 2026 "fips-ca-central-1": endpoint{ 2027 Hostname: "data.jobs.iot-fips.ca-central-1.amazonaws.com", 2028 CredentialScope: credentialScope{ 2029 Region: "ca-central-1", 2030 }, 2031 }, 2032 "fips-us-east-1": endpoint{ 2033 Hostname: "data.jobs.iot-fips.us-east-1.amazonaws.com", 2034 CredentialScope: credentialScope{ 2035 Region: "us-east-1", 2036 }, 2037 }, 2038 "fips-us-east-2": endpoint{ 2039 Hostname: "data.jobs.iot-fips.us-east-2.amazonaws.com", 2040 CredentialScope: credentialScope{ 2041 Region: "us-east-2", 2042 }, 2043 }, 2044 "fips-us-west-1": endpoint{ 2045 Hostname: "data.jobs.iot-fips.us-west-1.amazonaws.com", 2046 CredentialScope: credentialScope{ 2047 Region: "us-west-1", 2048 }, 2049 }, 2050 "fips-us-west-2": endpoint{ 2051 Hostname: "data.jobs.iot-fips.us-west-2.amazonaws.com", 2052 CredentialScope: credentialScope{ 2053 Region: "us-west-2", 2054 }, 2055 }, 2056 "me-south-1": endpoint{}, 2057 "sa-east-1": endpoint{}, 2058 "us-east-1": endpoint{}, 2059 "us-east-2": endpoint{}, 2060 "us-west-1": endpoint{}, 2061 "us-west-2": endpoint{}, 2062 }, 2063 }, 2064 "data.mediastore": service{ 2065 2066 Endpoints: endpoints{ 2067 "ap-northeast-1": endpoint{}, 2068 "ap-northeast-2": endpoint{}, 2069 "ap-southeast-2": endpoint{}, 2070 "eu-central-1": endpoint{}, 2071 "eu-north-1": endpoint{}, 2072 "eu-west-1": endpoint{}, 2073 "eu-west-2": endpoint{}, 2074 "us-east-1": endpoint{}, 2075 "us-west-2": endpoint{}, 2076 }, 2077 }, 2078 "databrew": service{ 2079 2080 Endpoints: endpoints{ 2081 "af-south-1": endpoint{}, 2082 "ap-east-1": endpoint{}, 2083 "ap-northeast-1": endpoint{}, 2084 "ap-northeast-2": endpoint{}, 2085 "ap-south-1": endpoint{}, 2086 "ap-southeast-1": endpoint{}, 2087 "ap-southeast-2": endpoint{}, 2088 "ca-central-1": endpoint{}, 2089 "eu-central-1": endpoint{}, 2090 "eu-north-1": endpoint{}, 2091 "eu-south-1": endpoint{}, 2092 "eu-west-1": endpoint{}, 2093 "eu-west-2": endpoint{}, 2094 "eu-west-3": endpoint{}, 2095 "sa-east-1": endpoint{}, 2096 "us-east-1": endpoint{}, 2097 "us-east-2": endpoint{}, 2098 "us-west-1": endpoint{}, 2099 "us-west-2": endpoint{}, 2100 }, 2101 }, 2102 "dataexchange": service{ 2103 2104 Endpoints: endpoints{ 2105 "ap-northeast-1": endpoint{}, 2106 "ap-northeast-2": endpoint{}, 2107 "ap-southeast-1": endpoint{}, 2108 "ap-southeast-2": endpoint{}, 2109 "eu-central-1": endpoint{}, 2110 "eu-west-1": endpoint{}, 2111 "eu-west-2": endpoint{}, 2112 "us-east-1": endpoint{}, 2113 "us-east-2": endpoint{}, 2114 "us-west-1": endpoint{}, 2115 "us-west-2": endpoint{}, 2116 }, 2117 }, 2118 "datapipeline": service{ 2119 2120 Endpoints: endpoints{ 2121 "ap-northeast-1": endpoint{}, 2122 "ap-southeast-2": endpoint{}, 2123 "eu-west-1": endpoint{}, 2124 "us-east-1": endpoint{}, 2125 "us-west-2": endpoint{}, 2126 }, 2127 }, 2128 "datasync": service{ 2129 2130 Endpoints: endpoints{ 2131 "af-south-1": endpoint{}, 2132 "ap-east-1": endpoint{}, 2133 "ap-northeast-1": endpoint{}, 2134 "ap-northeast-2": endpoint{}, 2135 "ap-northeast-3": endpoint{}, 2136 "ap-south-1": endpoint{}, 2137 "ap-southeast-1": endpoint{}, 2138 "ap-southeast-2": endpoint{}, 2139 "ca-central-1": endpoint{}, 2140 "eu-central-1": endpoint{}, 2141 "eu-north-1": endpoint{}, 2142 "eu-south-1": endpoint{}, 2143 "eu-west-1": endpoint{}, 2144 "eu-west-2": endpoint{}, 2145 "eu-west-3": endpoint{}, 2146 "fips-ca-central-1": endpoint{ 2147 Hostname: "datasync-fips.ca-central-1.amazonaws.com", 2148 CredentialScope: credentialScope{ 2149 Region: "ca-central-1", 2150 }, 2151 }, 2152 "fips-us-east-1": endpoint{ 2153 Hostname: "datasync-fips.us-east-1.amazonaws.com", 2154 CredentialScope: credentialScope{ 2155 Region: "us-east-1", 2156 }, 2157 }, 2158 "fips-us-east-2": endpoint{ 2159 Hostname: "datasync-fips.us-east-2.amazonaws.com", 2160 CredentialScope: credentialScope{ 2161 Region: "us-east-2", 2162 }, 2163 }, 2164 "fips-us-west-1": endpoint{ 2165 Hostname: "datasync-fips.us-west-1.amazonaws.com", 2166 CredentialScope: credentialScope{ 2167 Region: "us-west-1", 2168 }, 2169 }, 2170 "fips-us-west-2": endpoint{ 2171 Hostname: "datasync-fips.us-west-2.amazonaws.com", 2172 CredentialScope: credentialScope{ 2173 Region: "us-west-2", 2174 }, 2175 }, 2176 "me-south-1": endpoint{}, 2177 "sa-east-1": endpoint{}, 2178 "us-east-1": endpoint{}, 2179 "us-east-2": endpoint{}, 2180 "us-west-1": endpoint{}, 2181 "us-west-2": endpoint{}, 2182 }, 2183 }, 2184 "dax": service{ 2185 2186 Endpoints: endpoints{ 2187 "ap-northeast-1": endpoint{}, 2188 "ap-south-1": endpoint{}, 2189 "ap-southeast-1": endpoint{}, 2190 "ap-southeast-2": endpoint{}, 2191 "eu-central-1": endpoint{}, 2192 "eu-west-1": endpoint{}, 2193 "eu-west-2": endpoint{}, 2194 "eu-west-3": endpoint{}, 2195 "sa-east-1": endpoint{}, 2196 "us-east-1": endpoint{}, 2197 "us-east-2": endpoint{}, 2198 "us-west-1": endpoint{}, 2199 "us-west-2": endpoint{}, 2200 }, 2201 }, 2202 "devicefarm": service{ 2203 2204 Endpoints: endpoints{ 2205 "us-west-2": endpoint{}, 2206 }, 2207 }, 2208 "directconnect": service{ 2209 2210 Endpoints: endpoints{ 2211 "af-south-1": endpoint{}, 2212 "ap-east-1": endpoint{}, 2213 "ap-northeast-1": endpoint{}, 2214 "ap-northeast-2": endpoint{}, 2215 "ap-northeast-3": endpoint{}, 2216 "ap-south-1": endpoint{}, 2217 "ap-southeast-1": endpoint{}, 2218 "ap-southeast-2": endpoint{}, 2219 "ca-central-1": endpoint{}, 2220 "eu-central-1": endpoint{}, 2221 "eu-north-1": endpoint{}, 2222 "eu-south-1": endpoint{}, 2223 "eu-west-1": endpoint{}, 2224 "eu-west-2": endpoint{}, 2225 "eu-west-3": endpoint{}, 2226 "fips-us-east-1": endpoint{ 2227 Hostname: "directconnect-fips.us-east-1.amazonaws.com", 2228 CredentialScope: credentialScope{ 2229 Region: "us-east-1", 2230 }, 2231 }, 2232 "fips-us-east-2": endpoint{ 2233 Hostname: "directconnect-fips.us-east-2.amazonaws.com", 2234 CredentialScope: credentialScope{ 2235 Region: "us-east-2", 2236 }, 2237 }, 2238 "fips-us-west-1": endpoint{ 2239 Hostname: "directconnect-fips.us-west-1.amazonaws.com", 2240 CredentialScope: credentialScope{ 2241 Region: "us-west-1", 2242 }, 2243 }, 2244 "fips-us-west-2": endpoint{ 2245 Hostname: "directconnect-fips.us-west-2.amazonaws.com", 2246 CredentialScope: credentialScope{ 2247 Region: "us-west-2", 2248 }, 2249 }, 2250 "me-south-1": endpoint{}, 2251 "sa-east-1": endpoint{}, 2252 "us-east-1": endpoint{}, 2253 "us-east-2": endpoint{}, 2254 "us-west-1": endpoint{}, 2255 "us-west-2": endpoint{}, 2256 }, 2257 }, 2258 "discovery": service{ 2259 2260 Endpoints: endpoints{ 2261 "ap-northeast-1": endpoint{}, 2262 "ap-southeast-2": endpoint{}, 2263 "eu-central-1": endpoint{}, 2264 "eu-west-1": endpoint{}, 2265 "eu-west-2": endpoint{}, 2266 "us-east-1": endpoint{}, 2267 "us-west-2": endpoint{}, 2268 }, 2269 }, 2270 "dms": service{ 2271 2272 Endpoints: endpoints{ 2273 "af-south-1": endpoint{}, 2274 "ap-east-1": endpoint{}, 2275 "ap-northeast-1": endpoint{}, 2276 "ap-northeast-2": endpoint{}, 2277 "ap-northeast-3": endpoint{}, 2278 "ap-south-1": endpoint{}, 2279 "ap-southeast-1": endpoint{}, 2280 "ap-southeast-2": endpoint{}, 2281 "ca-central-1": endpoint{}, 2282 "dms-fips": endpoint{ 2283 Hostname: "dms-fips.us-west-1.amazonaws.com", 2284 CredentialScope: credentialScope{ 2285 Region: "us-west-1", 2286 }, 2287 }, 2288 "eu-central-1": endpoint{}, 2289 "eu-north-1": endpoint{}, 2290 "eu-south-1": endpoint{}, 2291 "eu-west-1": endpoint{}, 2292 "eu-west-2": endpoint{}, 2293 "eu-west-3": endpoint{}, 2294 "me-south-1": endpoint{}, 2295 "sa-east-1": endpoint{}, 2296 "us-east-1": endpoint{}, 2297 "us-east-2": endpoint{}, 2298 "us-west-1": endpoint{}, 2299 "us-west-2": endpoint{}, 2300 }, 2301 }, 2302 "docdb": service{ 2303 2304 Endpoints: endpoints{ 2305 "ap-northeast-1": endpoint{ 2306 Hostname: "rds.ap-northeast-1.amazonaws.com", 2307 CredentialScope: credentialScope{ 2308 Region: "ap-northeast-1", 2309 }, 2310 }, 2311 "ap-northeast-2": endpoint{ 2312 Hostname: "rds.ap-northeast-2.amazonaws.com", 2313 CredentialScope: credentialScope{ 2314 Region: "ap-northeast-2", 2315 }, 2316 }, 2317 "ap-south-1": endpoint{ 2318 Hostname: "rds.ap-south-1.amazonaws.com", 2319 CredentialScope: credentialScope{ 2320 Region: "ap-south-1", 2321 }, 2322 }, 2323 "ap-southeast-1": endpoint{ 2324 Hostname: "rds.ap-southeast-1.amazonaws.com", 2325 CredentialScope: credentialScope{ 2326 Region: "ap-southeast-1", 2327 }, 2328 }, 2329 "ap-southeast-2": endpoint{ 2330 Hostname: "rds.ap-southeast-2.amazonaws.com", 2331 CredentialScope: credentialScope{ 2332 Region: "ap-southeast-2", 2333 }, 2334 }, 2335 "ca-central-1": endpoint{ 2336 Hostname: "rds.ca-central-1.amazonaws.com", 2337 CredentialScope: credentialScope{ 2338 Region: "ca-central-1", 2339 }, 2340 }, 2341 "eu-central-1": endpoint{ 2342 Hostname: "rds.eu-central-1.amazonaws.com", 2343 CredentialScope: credentialScope{ 2344 Region: "eu-central-1", 2345 }, 2346 }, 2347 "eu-west-1": endpoint{ 2348 Hostname: "rds.eu-west-1.amazonaws.com", 2349 CredentialScope: credentialScope{ 2350 Region: "eu-west-1", 2351 }, 2352 }, 2353 "eu-west-2": endpoint{ 2354 Hostname: "rds.eu-west-2.amazonaws.com", 2355 CredentialScope: credentialScope{ 2356 Region: "eu-west-2", 2357 }, 2358 }, 2359 "eu-west-3": endpoint{ 2360 Hostname: "rds.eu-west-3.amazonaws.com", 2361 CredentialScope: credentialScope{ 2362 Region: "eu-west-3", 2363 }, 2364 }, 2365 "sa-east-1": endpoint{ 2366 Hostname: "rds.sa-east-1.amazonaws.com", 2367 CredentialScope: credentialScope{ 2368 Region: "sa-east-1", 2369 }, 2370 }, 2371 "us-east-1": endpoint{ 2372 Hostname: "rds.us-east-1.amazonaws.com", 2373 CredentialScope: credentialScope{ 2374 Region: "us-east-1", 2375 }, 2376 }, 2377 "us-east-2": endpoint{ 2378 Hostname: "rds.us-east-2.amazonaws.com", 2379 CredentialScope: credentialScope{ 2380 Region: "us-east-2", 2381 }, 2382 }, 2383 "us-west-2": endpoint{ 2384 Hostname: "rds.us-west-2.amazonaws.com", 2385 CredentialScope: credentialScope{ 2386 Region: "us-west-2", 2387 }, 2388 }, 2389 }, 2390 }, 2391 "ds": service{ 2392 2393 Endpoints: endpoints{ 2394 "af-south-1": endpoint{}, 2395 "ap-east-1": endpoint{}, 2396 "ap-northeast-1": endpoint{}, 2397 "ap-northeast-2": endpoint{}, 2398 "ap-northeast-3": endpoint{}, 2399 "ap-south-1": endpoint{}, 2400 "ap-southeast-1": endpoint{}, 2401 "ap-southeast-2": endpoint{}, 2402 "ca-central-1": endpoint{}, 2403 "eu-central-1": endpoint{}, 2404 "eu-north-1": endpoint{}, 2405 "eu-south-1": endpoint{}, 2406 "eu-west-1": endpoint{}, 2407 "eu-west-2": endpoint{}, 2408 "eu-west-3": endpoint{}, 2409 "fips-ca-central-1": endpoint{ 2410 Hostname: "ds-fips.ca-central-1.amazonaws.com", 2411 CredentialScope: credentialScope{ 2412 Region: "ca-central-1", 2413 }, 2414 }, 2415 "fips-us-east-1": endpoint{ 2416 Hostname: "ds-fips.us-east-1.amazonaws.com", 2417 CredentialScope: credentialScope{ 2418 Region: "us-east-1", 2419 }, 2420 }, 2421 "fips-us-east-2": endpoint{ 2422 Hostname: "ds-fips.us-east-2.amazonaws.com", 2423 CredentialScope: credentialScope{ 2424 Region: "us-east-2", 2425 }, 2426 }, 2427 "fips-us-west-1": endpoint{ 2428 Hostname: "ds-fips.us-west-1.amazonaws.com", 2429 CredentialScope: credentialScope{ 2430 Region: "us-west-1", 2431 }, 2432 }, 2433 "fips-us-west-2": endpoint{ 2434 Hostname: "ds-fips.us-west-2.amazonaws.com", 2435 CredentialScope: credentialScope{ 2436 Region: "us-west-2", 2437 }, 2438 }, 2439 "me-south-1": endpoint{}, 2440 "sa-east-1": endpoint{}, 2441 "us-east-1": endpoint{}, 2442 "us-east-2": endpoint{}, 2443 "us-west-1": endpoint{}, 2444 "us-west-2": endpoint{}, 2445 }, 2446 }, 2447 "dynamodb": service{ 2448 Defaults: endpoint{ 2449 Protocols: []string{"http", "https"}, 2450 }, 2451 Endpoints: endpoints{ 2452 "af-south-1": endpoint{}, 2453 "ap-east-1": endpoint{}, 2454 "ap-northeast-1": endpoint{}, 2455 "ap-northeast-2": endpoint{}, 2456 "ap-northeast-3": endpoint{}, 2457 "ap-south-1": endpoint{}, 2458 "ap-southeast-1": endpoint{}, 2459 "ap-southeast-2": endpoint{}, 2460 "ca-central-1": endpoint{}, 2461 "ca-central-1-fips": endpoint{ 2462 Hostname: "dynamodb-fips.ca-central-1.amazonaws.com", 2463 CredentialScope: credentialScope{ 2464 Region: "ca-central-1", 2465 }, 2466 }, 2467 "eu-central-1": endpoint{}, 2468 "eu-north-1": endpoint{}, 2469 "eu-south-1": endpoint{}, 2470 "eu-west-1": endpoint{}, 2471 "eu-west-2": endpoint{}, 2472 "eu-west-3": endpoint{}, 2473 "local": endpoint{ 2474 Hostname: "localhost:8000", 2475 Protocols: []string{"http"}, 2476 CredentialScope: credentialScope{ 2477 Region: "us-east-1", 2478 }, 2479 }, 2480 "me-south-1": endpoint{}, 2481 "sa-east-1": endpoint{}, 2482 "us-east-1": endpoint{}, 2483 "us-east-1-fips": endpoint{ 2484 Hostname: "dynamodb-fips.us-east-1.amazonaws.com", 2485 CredentialScope: credentialScope{ 2486 Region: "us-east-1", 2487 }, 2488 }, 2489 "us-east-2": endpoint{}, 2490 "us-east-2-fips": endpoint{ 2491 Hostname: "dynamodb-fips.us-east-2.amazonaws.com", 2492 CredentialScope: credentialScope{ 2493 Region: "us-east-2", 2494 }, 2495 }, 2496 "us-west-1": endpoint{}, 2497 "us-west-1-fips": endpoint{ 2498 Hostname: "dynamodb-fips.us-west-1.amazonaws.com", 2499 CredentialScope: credentialScope{ 2500 Region: "us-west-1", 2501 }, 2502 }, 2503 "us-west-2": endpoint{}, 2504 "us-west-2-fips": endpoint{ 2505 Hostname: "dynamodb-fips.us-west-2.amazonaws.com", 2506 CredentialScope: credentialScope{ 2507 Region: "us-west-2", 2508 }, 2509 }, 2510 }, 2511 }, 2512 "ebs": service{ 2513 2514 Endpoints: endpoints{ 2515 "af-south-1": endpoint{}, 2516 "ap-east-1": endpoint{}, 2517 "ap-northeast-1": endpoint{}, 2518 "ap-northeast-2": endpoint{}, 2519 "ap-northeast-3": endpoint{}, 2520 "ap-south-1": endpoint{}, 2521 "ap-southeast-1": endpoint{}, 2522 "ap-southeast-2": endpoint{}, 2523 "ca-central-1": endpoint{}, 2524 "eu-central-1": endpoint{}, 2525 "eu-north-1": endpoint{}, 2526 "eu-south-1": endpoint{}, 2527 "eu-west-1": endpoint{}, 2528 "eu-west-2": endpoint{}, 2529 "eu-west-3": endpoint{}, 2530 "fips-ca-central-1": endpoint{ 2531 Hostname: "ebs-fips.ca-central-1.amazonaws.com", 2532 CredentialScope: credentialScope{ 2533 Region: "ca-central-1", 2534 }, 2535 }, 2536 "fips-us-east-1": endpoint{ 2537 Hostname: "ebs-fips.us-east-1.amazonaws.com", 2538 CredentialScope: credentialScope{ 2539 Region: "us-east-1", 2540 }, 2541 }, 2542 "fips-us-east-2": endpoint{ 2543 Hostname: "ebs-fips.us-east-2.amazonaws.com", 2544 CredentialScope: credentialScope{ 2545 Region: "us-east-2", 2546 }, 2547 }, 2548 "fips-us-west-1": endpoint{ 2549 Hostname: "ebs-fips.us-west-1.amazonaws.com", 2550 CredentialScope: credentialScope{ 2551 Region: "us-west-1", 2552 }, 2553 }, 2554 "fips-us-west-2": endpoint{ 2555 Hostname: "ebs-fips.us-west-2.amazonaws.com", 2556 CredentialScope: credentialScope{ 2557 Region: "us-west-2", 2558 }, 2559 }, 2560 "me-south-1": endpoint{}, 2561 "sa-east-1": endpoint{}, 2562 "us-east-1": endpoint{}, 2563 "us-east-2": endpoint{}, 2564 "us-west-1": endpoint{}, 2565 "us-west-2": endpoint{}, 2566 }, 2567 }, 2568 "ec2": service{ 2569 Defaults: endpoint{ 2570 Protocols: []string{"http", "https"}, 2571 }, 2572 Endpoints: endpoints{ 2573 "af-south-1": endpoint{}, 2574 "ap-east-1": endpoint{}, 2575 "ap-northeast-1": endpoint{}, 2576 "ap-northeast-2": endpoint{}, 2577 "ap-northeast-3": endpoint{}, 2578 "ap-south-1": endpoint{}, 2579 "ap-southeast-1": endpoint{}, 2580 "ap-southeast-2": endpoint{}, 2581 "ca-central-1": endpoint{}, 2582 "eu-central-1": endpoint{}, 2583 "eu-north-1": endpoint{}, 2584 "eu-south-1": endpoint{}, 2585 "eu-west-1": endpoint{}, 2586 "eu-west-2": endpoint{}, 2587 "eu-west-3": endpoint{}, 2588 "fips-ca-central-1": endpoint{ 2589 Hostname: "ec2-fips.ca-central-1.amazonaws.com", 2590 CredentialScope: credentialScope{ 2591 Region: "ca-central-1", 2592 }, 2593 }, 2594 "fips-us-east-1": endpoint{ 2595 Hostname: "ec2-fips.us-east-1.amazonaws.com", 2596 CredentialScope: credentialScope{ 2597 Region: "us-east-1", 2598 }, 2599 }, 2600 "fips-us-east-2": endpoint{ 2601 Hostname: "ec2-fips.us-east-2.amazonaws.com", 2602 CredentialScope: credentialScope{ 2603 Region: "us-east-2", 2604 }, 2605 }, 2606 "fips-us-west-1": endpoint{ 2607 Hostname: "ec2-fips.us-west-1.amazonaws.com", 2608 CredentialScope: credentialScope{ 2609 Region: "us-west-1", 2610 }, 2611 }, 2612 "fips-us-west-2": endpoint{ 2613 Hostname: "ec2-fips.us-west-2.amazonaws.com", 2614 CredentialScope: credentialScope{ 2615 Region: "us-west-2", 2616 }, 2617 }, 2618 "me-south-1": endpoint{}, 2619 "sa-east-1": endpoint{}, 2620 "us-east-1": endpoint{}, 2621 "us-east-2": endpoint{}, 2622 "us-west-1": endpoint{}, 2623 "us-west-2": endpoint{}, 2624 }, 2625 }, 2626 "ecs": service{ 2627 2628 Endpoints: endpoints{ 2629 "af-south-1": endpoint{}, 2630 "ap-east-1": endpoint{}, 2631 "ap-northeast-1": endpoint{}, 2632 "ap-northeast-2": endpoint{}, 2633 "ap-northeast-3": endpoint{}, 2634 "ap-south-1": endpoint{}, 2635 "ap-southeast-1": endpoint{}, 2636 "ap-southeast-2": endpoint{}, 2637 "ca-central-1": endpoint{}, 2638 "eu-central-1": endpoint{}, 2639 "eu-north-1": endpoint{}, 2640 "eu-south-1": endpoint{}, 2641 "eu-west-1": endpoint{}, 2642 "eu-west-2": endpoint{}, 2643 "eu-west-3": endpoint{}, 2644 "fips-us-east-1": endpoint{ 2645 Hostname: "ecs-fips.us-east-1.amazonaws.com", 2646 CredentialScope: credentialScope{ 2647 Region: "us-east-1", 2648 }, 2649 }, 2650 "fips-us-east-2": endpoint{ 2651 Hostname: "ecs-fips.us-east-2.amazonaws.com", 2652 CredentialScope: credentialScope{ 2653 Region: "us-east-2", 2654 }, 2655 }, 2656 "fips-us-west-1": endpoint{ 2657 Hostname: "ecs-fips.us-west-1.amazonaws.com", 2658 CredentialScope: credentialScope{ 2659 Region: "us-west-1", 2660 }, 2661 }, 2662 "fips-us-west-2": endpoint{ 2663 Hostname: "ecs-fips.us-west-2.amazonaws.com", 2664 CredentialScope: credentialScope{ 2665 Region: "us-west-2", 2666 }, 2667 }, 2668 "me-south-1": endpoint{}, 2669 "sa-east-1": endpoint{}, 2670 "us-east-1": endpoint{}, 2671 "us-east-2": endpoint{}, 2672 "us-west-1": endpoint{}, 2673 "us-west-2": endpoint{}, 2674 }, 2675 }, 2676 "eks": service{ 2677 Defaults: endpoint{ 2678 Protocols: []string{"http", "https"}, 2679 }, 2680 Endpoints: endpoints{ 2681 "af-south-1": endpoint{}, 2682 "ap-east-1": endpoint{}, 2683 "ap-northeast-1": endpoint{}, 2684 "ap-northeast-2": endpoint{}, 2685 "ap-northeast-3": endpoint{}, 2686 "ap-south-1": endpoint{}, 2687 "ap-southeast-1": endpoint{}, 2688 "ap-southeast-2": endpoint{}, 2689 "ca-central-1": endpoint{}, 2690 "eu-central-1": endpoint{}, 2691 "eu-north-1": endpoint{}, 2692 "eu-south-1": endpoint{}, 2693 "eu-west-1": endpoint{}, 2694 "eu-west-2": endpoint{}, 2695 "eu-west-3": endpoint{}, 2696 "fips-us-east-1": endpoint{ 2697 Hostname: "fips.eks.us-east-1.amazonaws.com", 2698 CredentialScope: credentialScope{ 2699 Region: "us-east-1", 2700 }, 2701 }, 2702 "fips-us-east-2": endpoint{ 2703 Hostname: "fips.eks.us-east-2.amazonaws.com", 2704 CredentialScope: credentialScope{ 2705 Region: "us-east-2", 2706 }, 2707 }, 2708 "fips-us-west-1": endpoint{ 2709 Hostname: "fips.eks.us-west-1.amazonaws.com", 2710 CredentialScope: credentialScope{ 2711 Region: "us-west-1", 2712 }, 2713 }, 2714 "fips-us-west-2": endpoint{ 2715 Hostname: "fips.eks.us-west-2.amazonaws.com", 2716 CredentialScope: credentialScope{ 2717 Region: "us-west-2", 2718 }, 2719 }, 2720 "me-south-1": endpoint{}, 2721 "sa-east-1": endpoint{}, 2722 "us-east-1": endpoint{}, 2723 "us-east-2": endpoint{}, 2724 "us-west-1": endpoint{}, 2725 "us-west-2": endpoint{}, 2726 }, 2727 }, 2728 "elasticache": service{ 2729 2730 Endpoints: endpoints{ 2731 "af-south-1": endpoint{}, 2732 "ap-east-1": endpoint{}, 2733 "ap-northeast-1": endpoint{}, 2734 "ap-northeast-2": endpoint{}, 2735 "ap-northeast-3": endpoint{}, 2736 "ap-south-1": endpoint{}, 2737 "ap-southeast-1": endpoint{}, 2738 "ap-southeast-2": endpoint{}, 2739 "ca-central-1": endpoint{}, 2740 "eu-central-1": endpoint{}, 2741 "eu-north-1": endpoint{}, 2742 "eu-south-1": endpoint{}, 2743 "eu-west-1": endpoint{}, 2744 "eu-west-2": endpoint{}, 2745 "eu-west-3": endpoint{}, 2746 "fips": endpoint{ 2747 Hostname: "elasticache-fips.us-west-1.amazonaws.com", 2748 CredentialScope: credentialScope{ 2749 Region: "us-west-1", 2750 }, 2751 }, 2752 "me-south-1": endpoint{}, 2753 "sa-east-1": endpoint{}, 2754 "us-east-1": endpoint{}, 2755 "us-east-2": endpoint{}, 2756 "us-west-1": endpoint{}, 2757 "us-west-2": endpoint{}, 2758 }, 2759 }, 2760 "elasticbeanstalk": service{ 2761 2762 Endpoints: endpoints{ 2763 "af-south-1": endpoint{}, 2764 "ap-east-1": endpoint{}, 2765 "ap-northeast-1": endpoint{}, 2766 "ap-northeast-2": endpoint{}, 2767 "ap-northeast-3": endpoint{}, 2768 "ap-south-1": endpoint{}, 2769 "ap-southeast-1": endpoint{}, 2770 "ap-southeast-2": endpoint{}, 2771 "ca-central-1": endpoint{}, 2772 "eu-central-1": endpoint{}, 2773 "eu-north-1": endpoint{}, 2774 "eu-south-1": endpoint{}, 2775 "eu-west-1": endpoint{}, 2776 "eu-west-2": endpoint{}, 2777 "eu-west-3": endpoint{}, 2778 "fips-us-east-1": endpoint{ 2779 Hostname: "elasticbeanstalk-fips.us-east-1.amazonaws.com", 2780 CredentialScope: credentialScope{ 2781 Region: "us-east-1", 2782 }, 2783 }, 2784 "fips-us-east-2": endpoint{ 2785 Hostname: "elasticbeanstalk-fips.us-east-2.amazonaws.com", 2786 CredentialScope: credentialScope{ 2787 Region: "us-east-2", 2788 }, 2789 }, 2790 "fips-us-west-1": endpoint{ 2791 Hostname: "elasticbeanstalk-fips.us-west-1.amazonaws.com", 2792 CredentialScope: credentialScope{ 2793 Region: "us-west-1", 2794 }, 2795 }, 2796 "fips-us-west-2": endpoint{ 2797 Hostname: "elasticbeanstalk-fips.us-west-2.amazonaws.com", 2798 CredentialScope: credentialScope{ 2799 Region: "us-west-2", 2800 }, 2801 }, 2802 "me-south-1": endpoint{}, 2803 "sa-east-1": endpoint{}, 2804 "us-east-1": endpoint{}, 2805 "us-east-2": endpoint{}, 2806 "us-west-1": endpoint{}, 2807 "us-west-2": endpoint{}, 2808 }, 2809 }, 2810 "elasticfilesystem": service{ 2811 2812 Endpoints: endpoints{ 2813 "af-south-1": endpoint{}, 2814 "ap-east-1": endpoint{}, 2815 "ap-northeast-1": endpoint{}, 2816 "ap-northeast-2": endpoint{}, 2817 "ap-northeast-3": endpoint{}, 2818 "ap-south-1": endpoint{}, 2819 "ap-southeast-1": endpoint{}, 2820 "ap-southeast-2": endpoint{}, 2821 "ca-central-1": endpoint{}, 2822 "eu-central-1": endpoint{}, 2823 "eu-north-1": endpoint{}, 2824 "eu-south-1": endpoint{}, 2825 "eu-west-1": endpoint{}, 2826 "eu-west-2": endpoint{}, 2827 "eu-west-3": endpoint{}, 2828 "fips-af-south-1": endpoint{ 2829 Hostname: "elasticfilesystem-fips.af-south-1.amazonaws.com", 2830 CredentialScope: credentialScope{ 2831 Region: "af-south-1", 2832 }, 2833 }, 2834 "fips-ap-east-1": endpoint{ 2835 Hostname: "elasticfilesystem-fips.ap-east-1.amazonaws.com", 2836 CredentialScope: credentialScope{ 2837 Region: "ap-east-1", 2838 }, 2839 }, 2840 "fips-ap-northeast-1": endpoint{ 2841 Hostname: "elasticfilesystem-fips.ap-northeast-1.amazonaws.com", 2842 CredentialScope: credentialScope{ 2843 Region: "ap-northeast-1", 2844 }, 2845 }, 2846 "fips-ap-northeast-2": endpoint{ 2847 Hostname: "elasticfilesystem-fips.ap-northeast-2.amazonaws.com", 2848 CredentialScope: credentialScope{ 2849 Region: "ap-northeast-2", 2850 }, 2851 }, 2852 "fips-ap-northeast-3": endpoint{ 2853 Hostname: "elasticfilesystem-fips.ap-northeast-3.amazonaws.com", 2854 CredentialScope: credentialScope{ 2855 Region: "ap-northeast-3", 2856 }, 2857 }, 2858 "fips-ap-south-1": endpoint{ 2859 Hostname: "elasticfilesystem-fips.ap-south-1.amazonaws.com", 2860 CredentialScope: credentialScope{ 2861 Region: "ap-south-1", 2862 }, 2863 }, 2864 "fips-ap-southeast-1": endpoint{ 2865 Hostname: "elasticfilesystem-fips.ap-southeast-1.amazonaws.com", 2866 CredentialScope: credentialScope{ 2867 Region: "ap-southeast-1", 2868 }, 2869 }, 2870 "fips-ap-southeast-2": endpoint{ 2871 Hostname: "elasticfilesystem-fips.ap-southeast-2.amazonaws.com", 2872 CredentialScope: credentialScope{ 2873 Region: "ap-southeast-2", 2874 }, 2875 }, 2876 "fips-ca-central-1": endpoint{ 2877 Hostname: "elasticfilesystem-fips.ca-central-1.amazonaws.com", 2878 CredentialScope: credentialScope{ 2879 Region: "ca-central-1", 2880 }, 2881 }, 2882 "fips-eu-central-1": endpoint{ 2883 Hostname: "elasticfilesystem-fips.eu-central-1.amazonaws.com", 2884 CredentialScope: credentialScope{ 2885 Region: "eu-central-1", 2886 }, 2887 }, 2888 "fips-eu-north-1": endpoint{ 2889 Hostname: "elasticfilesystem-fips.eu-north-1.amazonaws.com", 2890 CredentialScope: credentialScope{ 2891 Region: "eu-north-1", 2892 }, 2893 }, 2894 "fips-eu-south-1": endpoint{ 2895 Hostname: "elasticfilesystem-fips.eu-south-1.amazonaws.com", 2896 CredentialScope: credentialScope{ 2897 Region: "eu-south-1", 2898 }, 2899 }, 2900 "fips-eu-west-1": endpoint{ 2901 Hostname: "elasticfilesystem-fips.eu-west-1.amazonaws.com", 2902 CredentialScope: credentialScope{ 2903 Region: "eu-west-1", 2904 }, 2905 }, 2906 "fips-eu-west-2": endpoint{ 2907 Hostname: "elasticfilesystem-fips.eu-west-2.amazonaws.com", 2908 CredentialScope: credentialScope{ 2909 Region: "eu-west-2", 2910 }, 2911 }, 2912 "fips-eu-west-3": endpoint{ 2913 Hostname: "elasticfilesystem-fips.eu-west-3.amazonaws.com", 2914 CredentialScope: credentialScope{ 2915 Region: "eu-west-3", 2916 }, 2917 }, 2918 "fips-me-south-1": endpoint{ 2919 Hostname: "elasticfilesystem-fips.me-south-1.amazonaws.com", 2920 CredentialScope: credentialScope{ 2921 Region: "me-south-1", 2922 }, 2923 }, 2924 "fips-sa-east-1": endpoint{ 2925 Hostname: "elasticfilesystem-fips.sa-east-1.amazonaws.com", 2926 CredentialScope: credentialScope{ 2927 Region: "sa-east-1", 2928 }, 2929 }, 2930 "fips-us-east-1": endpoint{ 2931 Hostname: "elasticfilesystem-fips.us-east-1.amazonaws.com", 2932 CredentialScope: credentialScope{ 2933 Region: "us-east-1", 2934 }, 2935 }, 2936 "fips-us-east-2": endpoint{ 2937 Hostname: "elasticfilesystem-fips.us-east-2.amazonaws.com", 2938 CredentialScope: credentialScope{ 2939 Region: "us-east-2", 2940 }, 2941 }, 2942 "fips-us-west-1": endpoint{ 2943 Hostname: "elasticfilesystem-fips.us-west-1.amazonaws.com", 2944 CredentialScope: credentialScope{ 2945 Region: "us-west-1", 2946 }, 2947 }, 2948 "fips-us-west-2": endpoint{ 2949 Hostname: "elasticfilesystem-fips.us-west-2.amazonaws.com", 2950 CredentialScope: credentialScope{ 2951 Region: "us-west-2", 2952 }, 2953 }, 2954 "me-south-1": endpoint{}, 2955 "sa-east-1": endpoint{}, 2956 "us-east-1": endpoint{}, 2957 "us-east-2": endpoint{}, 2958 "us-west-1": endpoint{}, 2959 "us-west-2": endpoint{}, 2960 }, 2961 }, 2962 "elasticloadbalancing": service{ 2963 Defaults: endpoint{ 2964 Protocols: []string{"https"}, 2965 }, 2966 Endpoints: endpoints{ 2967 "af-south-1": endpoint{}, 2968 "ap-east-1": endpoint{}, 2969 "ap-northeast-1": endpoint{}, 2970 "ap-northeast-2": endpoint{}, 2971 "ap-northeast-3": endpoint{}, 2972 "ap-south-1": endpoint{}, 2973 "ap-southeast-1": endpoint{}, 2974 "ap-southeast-2": endpoint{}, 2975 "ca-central-1": endpoint{}, 2976 "eu-central-1": endpoint{}, 2977 "eu-north-1": endpoint{}, 2978 "eu-south-1": endpoint{}, 2979 "eu-west-1": endpoint{}, 2980 "eu-west-2": endpoint{}, 2981 "eu-west-3": endpoint{}, 2982 "fips-us-east-1": endpoint{ 2983 Hostname: "elasticloadbalancing-fips.us-east-1.amazonaws.com", 2984 CredentialScope: credentialScope{ 2985 Region: "us-east-1", 2986 }, 2987 }, 2988 "fips-us-east-2": endpoint{ 2989 Hostname: "elasticloadbalancing-fips.us-east-2.amazonaws.com", 2990 CredentialScope: credentialScope{ 2991 Region: "us-east-2", 2992 }, 2993 }, 2994 "fips-us-west-1": endpoint{ 2995 Hostname: "elasticloadbalancing-fips.us-west-1.amazonaws.com", 2996 CredentialScope: credentialScope{ 2997 Region: "us-west-1", 2998 }, 2999 }, 3000 "fips-us-west-2": endpoint{ 3001 Hostname: "elasticloadbalancing-fips.us-west-2.amazonaws.com", 3002 CredentialScope: credentialScope{ 3003 Region: "us-west-2", 3004 }, 3005 }, 3006 "me-south-1": endpoint{}, 3007 "sa-east-1": endpoint{}, 3008 "us-east-1": endpoint{}, 3009 "us-east-2": endpoint{}, 3010 "us-west-1": endpoint{}, 3011 "us-west-2": endpoint{}, 3012 }, 3013 }, 3014 "elasticmapreduce": service{ 3015 Defaults: endpoint{ 3016 SSLCommonName: "{region}.{service}.{dnsSuffix}", 3017 Protocols: []string{"https"}, 3018 }, 3019 Endpoints: endpoints{ 3020 "af-south-1": endpoint{}, 3021 "ap-east-1": endpoint{}, 3022 "ap-northeast-1": endpoint{}, 3023 "ap-northeast-2": endpoint{}, 3024 "ap-northeast-3": endpoint{}, 3025 "ap-south-1": endpoint{}, 3026 "ap-southeast-1": endpoint{}, 3027 "ap-southeast-2": endpoint{}, 3028 "ca-central-1": endpoint{}, 3029 "eu-central-1": endpoint{ 3030 SSLCommonName: "{service}.{region}.{dnsSuffix}", 3031 }, 3032 "eu-north-1": endpoint{}, 3033 "eu-south-1": endpoint{}, 3034 "eu-west-1": endpoint{}, 3035 "eu-west-2": endpoint{}, 3036 "eu-west-3": endpoint{}, 3037 "fips-ca-central-1": endpoint{ 3038 Hostname: "elasticmapreduce-fips.ca-central-1.amazonaws.com", 3039 CredentialScope: credentialScope{ 3040 Region: "ca-central-1", 3041 }, 3042 }, 3043 "fips-us-east-1": endpoint{ 3044 Hostname: "elasticmapreduce-fips.us-east-1.amazonaws.com", 3045 CredentialScope: credentialScope{ 3046 Region: "us-east-1", 3047 }, 3048 }, 3049 "fips-us-east-2": endpoint{ 3050 Hostname: "elasticmapreduce-fips.us-east-2.amazonaws.com", 3051 CredentialScope: credentialScope{ 3052 Region: "us-east-2", 3053 }, 3054 }, 3055 "fips-us-west-1": endpoint{ 3056 Hostname: "elasticmapreduce-fips.us-west-1.amazonaws.com", 3057 CredentialScope: credentialScope{ 3058 Region: "us-west-1", 3059 }, 3060 }, 3061 "fips-us-west-2": endpoint{ 3062 Hostname: "elasticmapreduce-fips.us-west-2.amazonaws.com", 3063 CredentialScope: credentialScope{ 3064 Region: "us-west-2", 3065 }, 3066 }, 3067 "me-south-1": endpoint{}, 3068 "sa-east-1": endpoint{}, 3069 "us-east-1": endpoint{ 3070 SSLCommonName: "{service}.{region}.{dnsSuffix}", 3071 }, 3072 "us-east-2": endpoint{}, 3073 "us-west-1": endpoint{}, 3074 "us-west-2": endpoint{}, 3075 }, 3076 }, 3077 "elastictranscoder": service{ 3078 3079 Endpoints: endpoints{ 3080 "ap-northeast-1": endpoint{}, 3081 "ap-south-1": endpoint{}, 3082 "ap-southeast-1": endpoint{}, 3083 "ap-southeast-2": endpoint{}, 3084 "eu-west-1": endpoint{}, 3085 "us-east-1": endpoint{}, 3086 "us-west-1": endpoint{}, 3087 "us-west-2": endpoint{}, 3088 }, 3089 }, 3090 "email": service{ 3091 3092 Endpoints: endpoints{ 3093 "ap-south-1": endpoint{}, 3094 "ap-southeast-2": endpoint{}, 3095 "eu-central-1": endpoint{}, 3096 "eu-west-1": endpoint{}, 3097 "us-east-1": endpoint{}, 3098 "us-west-2": endpoint{}, 3099 }, 3100 }, 3101 "emr-containers": service{ 3102 3103 Endpoints: endpoints{ 3104 "ap-northeast-1": endpoint{}, 3105 "ap-northeast-2": endpoint{}, 3106 "ap-south-1": endpoint{}, 3107 "ap-southeast-1": endpoint{}, 3108 "ap-southeast-2": endpoint{}, 3109 "ca-central-1": endpoint{}, 3110 "eu-central-1": endpoint{}, 3111 "eu-north-1": endpoint{}, 3112 "eu-west-1": endpoint{}, 3113 "eu-west-2": endpoint{}, 3114 "eu-west-3": endpoint{}, 3115 "fips-ca-central-1": endpoint{ 3116 Hostname: "emr-containers-fips.ca-central-1.amazonaws.com", 3117 CredentialScope: credentialScope{ 3118 Region: "ca-central-1", 3119 }, 3120 }, 3121 "fips-us-east-1": endpoint{ 3122 Hostname: "emr-containers-fips.us-east-1.amazonaws.com", 3123 CredentialScope: credentialScope{ 3124 Region: "us-east-1", 3125 }, 3126 }, 3127 "fips-us-east-2": endpoint{ 3128 Hostname: "emr-containers-fips.us-east-2.amazonaws.com", 3129 CredentialScope: credentialScope{ 3130 Region: "us-east-2", 3131 }, 3132 }, 3133 "fips-us-west-1": endpoint{ 3134 Hostname: "emr-containers-fips.us-west-1.amazonaws.com", 3135 CredentialScope: credentialScope{ 3136 Region: "us-west-1", 3137 }, 3138 }, 3139 "fips-us-west-2": endpoint{ 3140 Hostname: "emr-containers-fips.us-west-2.amazonaws.com", 3141 CredentialScope: credentialScope{ 3142 Region: "us-west-2", 3143 }, 3144 }, 3145 "sa-east-1": endpoint{}, 3146 "us-east-1": endpoint{}, 3147 "us-east-2": endpoint{}, 3148 "us-west-1": endpoint{}, 3149 "us-west-2": endpoint{}, 3150 }, 3151 }, 3152 "entitlement.marketplace": service{ 3153 Defaults: endpoint{ 3154 CredentialScope: credentialScope{ 3155 Service: "aws-marketplace", 3156 }, 3157 }, 3158 Endpoints: endpoints{ 3159 "us-east-1": endpoint{}, 3160 }, 3161 }, 3162 "es": service{ 3163 3164 Endpoints: endpoints{ 3165 "af-south-1": endpoint{}, 3166 "ap-east-1": endpoint{}, 3167 "ap-northeast-1": endpoint{}, 3168 "ap-northeast-2": endpoint{}, 3169 "ap-northeast-3": endpoint{}, 3170 "ap-south-1": endpoint{}, 3171 "ap-southeast-1": endpoint{}, 3172 "ap-southeast-2": endpoint{}, 3173 "ca-central-1": endpoint{}, 3174 "eu-central-1": endpoint{}, 3175 "eu-north-1": endpoint{}, 3176 "eu-south-1": endpoint{}, 3177 "eu-west-1": endpoint{}, 3178 "eu-west-2": endpoint{}, 3179 "eu-west-3": endpoint{}, 3180 "fips": endpoint{ 3181 Hostname: "es-fips.us-west-1.amazonaws.com", 3182 CredentialScope: credentialScope{ 3183 Region: "us-west-1", 3184 }, 3185 }, 3186 "me-south-1": endpoint{}, 3187 "sa-east-1": endpoint{}, 3188 "us-east-1": endpoint{}, 3189 "us-east-2": endpoint{}, 3190 "us-west-1": endpoint{}, 3191 "us-west-2": endpoint{}, 3192 }, 3193 }, 3194 "events": service{ 3195 3196 Endpoints: endpoints{ 3197 "af-south-1": endpoint{}, 3198 "ap-east-1": endpoint{}, 3199 "ap-northeast-1": endpoint{}, 3200 "ap-northeast-2": endpoint{}, 3201 "ap-northeast-3": endpoint{}, 3202 "ap-south-1": endpoint{}, 3203 "ap-southeast-1": endpoint{}, 3204 "ap-southeast-2": endpoint{}, 3205 "ca-central-1": endpoint{}, 3206 "eu-central-1": endpoint{}, 3207 "eu-north-1": endpoint{}, 3208 "eu-south-1": endpoint{}, 3209 "eu-west-1": endpoint{}, 3210 "eu-west-2": endpoint{}, 3211 "eu-west-3": endpoint{}, 3212 "fips-us-east-1": endpoint{ 3213 Hostname: "events-fips.us-east-1.amazonaws.com", 3214 CredentialScope: credentialScope{ 3215 Region: "us-east-1", 3216 }, 3217 }, 3218 "fips-us-east-2": endpoint{ 3219 Hostname: "events-fips.us-east-2.amazonaws.com", 3220 CredentialScope: credentialScope{ 3221 Region: "us-east-2", 3222 }, 3223 }, 3224 "fips-us-west-1": endpoint{ 3225 Hostname: "events-fips.us-west-1.amazonaws.com", 3226 CredentialScope: credentialScope{ 3227 Region: "us-west-1", 3228 }, 3229 }, 3230 "fips-us-west-2": endpoint{ 3231 Hostname: "events-fips.us-west-2.amazonaws.com", 3232 CredentialScope: credentialScope{ 3233 Region: "us-west-2", 3234 }, 3235 }, 3236 "me-south-1": endpoint{}, 3237 "sa-east-1": endpoint{}, 3238 "us-east-1": endpoint{}, 3239 "us-east-2": endpoint{}, 3240 "us-west-1": endpoint{}, 3241 "us-west-2": endpoint{}, 3242 }, 3243 }, 3244 "finspace": service{ 3245 3246 Endpoints: endpoints{ 3247 "ca-central-1": endpoint{}, 3248 "eu-west-1": endpoint{}, 3249 "us-east-1": endpoint{}, 3250 "us-east-2": endpoint{}, 3251 "us-west-2": endpoint{}, 3252 }, 3253 }, 3254 "finspace-api": service{ 3255 3256 Endpoints: endpoints{ 3257 "ca-central-1": endpoint{}, 3258 "eu-west-1": endpoint{}, 3259 "us-east-1": endpoint{}, 3260 "us-east-2": endpoint{}, 3261 "us-west-2": endpoint{}, 3262 }, 3263 }, 3264 "firehose": service{ 3265 3266 Endpoints: endpoints{ 3267 "af-south-1": endpoint{}, 3268 "ap-east-1": endpoint{}, 3269 "ap-northeast-1": endpoint{}, 3270 "ap-northeast-2": endpoint{}, 3271 "ap-northeast-3": endpoint{}, 3272 "ap-south-1": endpoint{}, 3273 "ap-southeast-1": endpoint{}, 3274 "ap-southeast-2": endpoint{}, 3275 "ca-central-1": endpoint{}, 3276 "eu-central-1": endpoint{}, 3277 "eu-north-1": endpoint{}, 3278 "eu-south-1": endpoint{}, 3279 "eu-west-1": endpoint{}, 3280 "eu-west-2": endpoint{}, 3281 "eu-west-3": endpoint{}, 3282 "fips-us-east-1": endpoint{ 3283 Hostname: "firehose-fips.us-east-1.amazonaws.com", 3284 CredentialScope: credentialScope{ 3285 Region: "us-east-1", 3286 }, 3287 }, 3288 "fips-us-east-2": endpoint{ 3289 Hostname: "firehose-fips.us-east-2.amazonaws.com", 3290 CredentialScope: credentialScope{ 3291 Region: "us-east-2", 3292 }, 3293 }, 3294 "fips-us-west-1": endpoint{ 3295 Hostname: "firehose-fips.us-west-1.amazonaws.com", 3296 CredentialScope: credentialScope{ 3297 Region: "us-west-1", 3298 }, 3299 }, 3300 "fips-us-west-2": endpoint{ 3301 Hostname: "firehose-fips.us-west-2.amazonaws.com", 3302 CredentialScope: credentialScope{ 3303 Region: "us-west-2", 3304 }, 3305 }, 3306 "me-south-1": endpoint{}, 3307 "sa-east-1": endpoint{}, 3308 "us-east-1": endpoint{}, 3309 "us-east-2": endpoint{}, 3310 "us-west-1": endpoint{}, 3311 "us-west-2": endpoint{}, 3312 }, 3313 }, 3314 "fms": service{ 3315 Defaults: endpoint{ 3316 Protocols: []string{"https"}, 3317 }, 3318 Endpoints: endpoints{ 3319 "af-south-1": endpoint{}, 3320 "ap-east-1": endpoint{}, 3321 "ap-northeast-1": endpoint{}, 3322 "ap-northeast-2": endpoint{}, 3323 "ap-northeast-3": endpoint{}, 3324 "ap-south-1": endpoint{}, 3325 "ap-southeast-1": endpoint{}, 3326 "ap-southeast-2": endpoint{}, 3327 "ca-central-1": endpoint{}, 3328 "eu-central-1": endpoint{}, 3329 "eu-north-1": endpoint{}, 3330 "eu-south-1": endpoint{}, 3331 "eu-west-1": endpoint{}, 3332 "eu-west-2": endpoint{}, 3333 "eu-west-3": endpoint{}, 3334 "fips-af-south-1": endpoint{ 3335 Hostname: "fms-fips.af-south-1.amazonaws.com", 3336 CredentialScope: credentialScope{ 3337 Region: "af-south-1", 3338 }, 3339 }, 3340 "fips-ap-east-1": endpoint{ 3341 Hostname: "fms-fips.ap-east-1.amazonaws.com", 3342 CredentialScope: credentialScope{ 3343 Region: "ap-east-1", 3344 }, 3345 }, 3346 "fips-ap-northeast-1": endpoint{ 3347 Hostname: "fms-fips.ap-northeast-1.amazonaws.com", 3348 CredentialScope: credentialScope{ 3349 Region: "ap-northeast-1", 3350 }, 3351 }, 3352 "fips-ap-northeast-2": endpoint{ 3353 Hostname: "fms-fips.ap-northeast-2.amazonaws.com", 3354 CredentialScope: credentialScope{ 3355 Region: "ap-northeast-2", 3356 }, 3357 }, 3358 "fips-ap-south-1": endpoint{ 3359 Hostname: "fms-fips.ap-south-1.amazonaws.com", 3360 CredentialScope: credentialScope{ 3361 Region: "ap-south-1", 3362 }, 3363 }, 3364 "fips-ap-southeast-1": endpoint{ 3365 Hostname: "fms-fips.ap-southeast-1.amazonaws.com", 3366 CredentialScope: credentialScope{ 3367 Region: "ap-southeast-1", 3368 }, 3369 }, 3370 "fips-ap-southeast-2": endpoint{ 3371 Hostname: "fms-fips.ap-southeast-2.amazonaws.com", 3372 CredentialScope: credentialScope{ 3373 Region: "ap-southeast-2", 3374 }, 3375 }, 3376 "fips-ca-central-1": endpoint{ 3377 Hostname: "fms-fips.ca-central-1.amazonaws.com", 3378 CredentialScope: credentialScope{ 3379 Region: "ca-central-1", 3380 }, 3381 }, 3382 "fips-eu-central-1": endpoint{ 3383 Hostname: "fms-fips.eu-central-1.amazonaws.com", 3384 CredentialScope: credentialScope{ 3385 Region: "eu-central-1", 3386 }, 3387 }, 3388 "fips-eu-south-1": endpoint{ 3389 Hostname: "fms-fips.eu-south-1.amazonaws.com", 3390 CredentialScope: credentialScope{ 3391 Region: "eu-south-1", 3392 }, 3393 }, 3394 "fips-eu-west-1": endpoint{ 3395 Hostname: "fms-fips.eu-west-1.amazonaws.com", 3396 CredentialScope: credentialScope{ 3397 Region: "eu-west-1", 3398 }, 3399 }, 3400 "fips-eu-west-2": endpoint{ 3401 Hostname: "fms-fips.eu-west-2.amazonaws.com", 3402 CredentialScope: credentialScope{ 3403 Region: "eu-west-2", 3404 }, 3405 }, 3406 "fips-eu-west-3": endpoint{ 3407 Hostname: "fms-fips.eu-west-3.amazonaws.com", 3408 CredentialScope: credentialScope{ 3409 Region: "eu-west-3", 3410 }, 3411 }, 3412 "fips-me-south-1": endpoint{ 3413 Hostname: "fms-fips.me-south-1.amazonaws.com", 3414 CredentialScope: credentialScope{ 3415 Region: "me-south-1", 3416 }, 3417 }, 3418 "fips-sa-east-1": endpoint{ 3419 Hostname: "fms-fips.sa-east-1.amazonaws.com", 3420 CredentialScope: credentialScope{ 3421 Region: "sa-east-1", 3422 }, 3423 }, 3424 "fips-us-east-1": endpoint{ 3425 Hostname: "fms-fips.us-east-1.amazonaws.com", 3426 CredentialScope: credentialScope{ 3427 Region: "us-east-1", 3428 }, 3429 }, 3430 "fips-us-east-2": endpoint{ 3431 Hostname: "fms-fips.us-east-2.amazonaws.com", 3432 CredentialScope: credentialScope{ 3433 Region: "us-east-2", 3434 }, 3435 }, 3436 "fips-us-west-1": endpoint{ 3437 Hostname: "fms-fips.us-west-1.amazonaws.com", 3438 CredentialScope: credentialScope{ 3439 Region: "us-west-1", 3440 }, 3441 }, 3442 "fips-us-west-2": endpoint{ 3443 Hostname: "fms-fips.us-west-2.amazonaws.com", 3444 CredentialScope: credentialScope{ 3445 Region: "us-west-2", 3446 }, 3447 }, 3448 "me-south-1": endpoint{}, 3449 "sa-east-1": endpoint{}, 3450 "us-east-1": endpoint{}, 3451 "us-east-2": endpoint{}, 3452 "us-west-1": endpoint{}, 3453 "us-west-2": endpoint{}, 3454 }, 3455 }, 3456 "forecast": service{ 3457 3458 Endpoints: endpoints{ 3459 "ap-northeast-1": endpoint{}, 3460 "ap-northeast-2": endpoint{}, 3461 "ap-south-1": endpoint{}, 3462 "ap-southeast-1": endpoint{}, 3463 "ap-southeast-2": endpoint{}, 3464 "eu-central-1": endpoint{}, 3465 "eu-west-1": endpoint{}, 3466 "fips-us-east-1": endpoint{ 3467 Hostname: "forecast-fips.us-east-1.amazonaws.com", 3468 CredentialScope: credentialScope{ 3469 Region: "us-east-1", 3470 }, 3471 }, 3472 "fips-us-east-2": endpoint{ 3473 Hostname: "forecast-fips.us-east-2.amazonaws.com", 3474 CredentialScope: credentialScope{ 3475 Region: "us-east-2", 3476 }, 3477 }, 3478 "fips-us-west-2": endpoint{ 3479 Hostname: "forecast-fips.us-west-2.amazonaws.com", 3480 CredentialScope: credentialScope{ 3481 Region: "us-west-2", 3482 }, 3483 }, 3484 "us-east-1": endpoint{}, 3485 "us-east-2": endpoint{}, 3486 "us-west-2": endpoint{}, 3487 }, 3488 }, 3489 "forecastquery": service{ 3490 3491 Endpoints: endpoints{ 3492 "ap-northeast-1": endpoint{}, 3493 "ap-northeast-2": endpoint{}, 3494 "ap-south-1": endpoint{}, 3495 "ap-southeast-1": endpoint{}, 3496 "ap-southeast-2": endpoint{}, 3497 "eu-central-1": endpoint{}, 3498 "eu-west-1": endpoint{}, 3499 "fips-us-east-1": endpoint{ 3500 Hostname: "forecastquery-fips.us-east-1.amazonaws.com", 3501 CredentialScope: credentialScope{ 3502 Region: "us-east-1", 3503 }, 3504 }, 3505 "fips-us-east-2": endpoint{ 3506 Hostname: "forecastquery-fips.us-east-2.amazonaws.com", 3507 CredentialScope: credentialScope{ 3508 Region: "us-east-2", 3509 }, 3510 }, 3511 "fips-us-west-2": endpoint{ 3512 Hostname: "forecastquery-fips.us-west-2.amazonaws.com", 3513 CredentialScope: credentialScope{ 3514 Region: "us-west-2", 3515 }, 3516 }, 3517 "us-east-1": endpoint{}, 3518 "us-east-2": endpoint{}, 3519 "us-west-2": endpoint{}, 3520 }, 3521 }, 3522 "frauddetector": service{ 3523 3524 Endpoints: endpoints{ 3525 "ap-southeast-1": endpoint{}, 3526 "ap-southeast-2": endpoint{}, 3527 "eu-west-1": endpoint{}, 3528 "us-east-1": endpoint{}, 3529 "us-east-2": endpoint{}, 3530 "us-west-2": endpoint{}, 3531 }, 3532 }, 3533 "fsx": service{ 3534 3535 Endpoints: endpoints{ 3536 "af-south-1": endpoint{}, 3537 "ap-east-1": endpoint{}, 3538 "ap-northeast-1": endpoint{}, 3539 "ap-northeast-2": endpoint{}, 3540 "ap-northeast-3": endpoint{}, 3541 "ap-south-1": endpoint{}, 3542 "ap-southeast-1": endpoint{}, 3543 "ap-southeast-2": endpoint{}, 3544 "ca-central-1": endpoint{}, 3545 "eu-central-1": endpoint{}, 3546 "eu-north-1": endpoint{}, 3547 "eu-south-1": endpoint{}, 3548 "eu-west-1": endpoint{}, 3549 "eu-west-2": endpoint{}, 3550 "eu-west-3": endpoint{}, 3551 "fips-prod-ca-central-1": endpoint{ 3552 Hostname: "fsx-fips.ca-central-1.amazonaws.com", 3553 CredentialScope: credentialScope{ 3554 Region: "ca-central-1", 3555 }, 3556 }, 3557 "fips-prod-us-east-1": endpoint{ 3558 Hostname: "fsx-fips.us-east-1.amazonaws.com", 3559 CredentialScope: credentialScope{ 3560 Region: "us-east-1", 3561 }, 3562 }, 3563 "fips-prod-us-east-2": endpoint{ 3564 Hostname: "fsx-fips.us-east-2.amazonaws.com", 3565 CredentialScope: credentialScope{ 3566 Region: "us-east-2", 3567 }, 3568 }, 3569 "fips-prod-us-west-1": endpoint{ 3570 Hostname: "fsx-fips.us-west-1.amazonaws.com", 3571 CredentialScope: credentialScope{ 3572 Region: "us-west-1", 3573 }, 3574 }, 3575 "fips-prod-us-west-2": endpoint{ 3576 Hostname: "fsx-fips.us-west-2.amazonaws.com", 3577 CredentialScope: credentialScope{ 3578 Region: "us-west-2", 3579 }, 3580 }, 3581 "me-south-1": endpoint{}, 3582 "sa-east-1": endpoint{}, 3583 "us-east-1": endpoint{}, 3584 "us-east-2": endpoint{}, 3585 "us-west-1": endpoint{}, 3586 "us-west-2": endpoint{}, 3587 }, 3588 }, 3589 "gamelift": service{ 3590 3591 Endpoints: endpoints{ 3592 "af-south-1": endpoint{}, 3593 "ap-east-1": endpoint{}, 3594 "ap-northeast-1": endpoint{}, 3595 "ap-northeast-2": endpoint{}, 3596 "ap-south-1": endpoint{}, 3597 "ap-southeast-1": endpoint{}, 3598 "ap-southeast-2": endpoint{}, 3599 "ca-central-1": endpoint{}, 3600 "eu-central-1": endpoint{}, 3601 "eu-north-1": endpoint{}, 3602 "eu-south-1": endpoint{}, 3603 "eu-west-1": endpoint{}, 3604 "eu-west-2": endpoint{}, 3605 "eu-west-3": endpoint{}, 3606 "me-south-1": endpoint{}, 3607 "sa-east-1": endpoint{}, 3608 "us-east-1": endpoint{}, 3609 "us-east-2": endpoint{}, 3610 "us-west-1": endpoint{}, 3611 "us-west-2": endpoint{}, 3612 }, 3613 }, 3614 "glacier": service{ 3615 Defaults: endpoint{ 3616 Protocols: []string{"http", "https"}, 3617 }, 3618 Endpoints: endpoints{ 3619 "af-south-1": endpoint{}, 3620 "ap-east-1": endpoint{}, 3621 "ap-northeast-1": endpoint{}, 3622 "ap-northeast-2": endpoint{}, 3623 "ap-northeast-3": endpoint{}, 3624 "ap-south-1": endpoint{}, 3625 "ap-southeast-1": endpoint{}, 3626 "ap-southeast-2": endpoint{}, 3627 "ca-central-1": endpoint{}, 3628 "eu-central-1": endpoint{}, 3629 "eu-north-1": endpoint{}, 3630 "eu-south-1": endpoint{}, 3631 "eu-west-1": endpoint{}, 3632 "eu-west-2": endpoint{}, 3633 "eu-west-3": endpoint{}, 3634 "fips-ca-central-1": endpoint{ 3635 Hostname: "glacier-fips.ca-central-1.amazonaws.com", 3636 CredentialScope: credentialScope{ 3637 Region: "ca-central-1", 3638 }, 3639 }, 3640 "fips-us-east-1": endpoint{ 3641 Hostname: "glacier-fips.us-east-1.amazonaws.com", 3642 CredentialScope: credentialScope{ 3643 Region: "us-east-1", 3644 }, 3645 }, 3646 "fips-us-east-2": endpoint{ 3647 Hostname: "glacier-fips.us-east-2.amazonaws.com", 3648 CredentialScope: credentialScope{ 3649 Region: "us-east-2", 3650 }, 3651 }, 3652 "fips-us-west-1": endpoint{ 3653 Hostname: "glacier-fips.us-west-1.amazonaws.com", 3654 CredentialScope: credentialScope{ 3655 Region: "us-west-1", 3656 }, 3657 }, 3658 "fips-us-west-2": endpoint{ 3659 Hostname: "glacier-fips.us-west-2.amazonaws.com", 3660 CredentialScope: credentialScope{ 3661 Region: "us-west-2", 3662 }, 3663 }, 3664 "me-south-1": endpoint{}, 3665 "sa-east-1": endpoint{}, 3666 "us-east-1": endpoint{}, 3667 "us-east-2": endpoint{}, 3668 "us-west-1": endpoint{}, 3669 "us-west-2": endpoint{}, 3670 }, 3671 }, 3672 "glue": service{ 3673 3674 Endpoints: endpoints{ 3675 "af-south-1": endpoint{}, 3676 "ap-east-1": endpoint{}, 3677 "ap-northeast-1": endpoint{}, 3678 "ap-northeast-2": endpoint{}, 3679 "ap-northeast-3": endpoint{}, 3680 "ap-south-1": endpoint{}, 3681 "ap-southeast-1": endpoint{}, 3682 "ap-southeast-2": endpoint{}, 3683 "ca-central-1": endpoint{}, 3684 "eu-central-1": endpoint{}, 3685 "eu-north-1": endpoint{}, 3686 "eu-south-1": endpoint{}, 3687 "eu-west-1": endpoint{}, 3688 "eu-west-2": endpoint{}, 3689 "eu-west-3": endpoint{}, 3690 "fips-us-east-1": endpoint{ 3691 Hostname: "glue-fips.us-east-1.amazonaws.com", 3692 CredentialScope: credentialScope{ 3693 Region: "us-east-1", 3694 }, 3695 }, 3696 "fips-us-east-2": endpoint{ 3697 Hostname: "glue-fips.us-east-2.amazonaws.com", 3698 CredentialScope: credentialScope{ 3699 Region: "us-east-2", 3700 }, 3701 }, 3702 "fips-us-west-1": endpoint{ 3703 Hostname: "glue-fips.us-west-1.amazonaws.com", 3704 CredentialScope: credentialScope{ 3705 Region: "us-west-1", 3706 }, 3707 }, 3708 "fips-us-west-2": endpoint{ 3709 Hostname: "glue-fips.us-west-2.amazonaws.com", 3710 CredentialScope: credentialScope{ 3711 Region: "us-west-2", 3712 }, 3713 }, 3714 "me-south-1": endpoint{}, 3715 "sa-east-1": endpoint{}, 3716 "us-east-1": endpoint{}, 3717 "us-east-2": endpoint{}, 3718 "us-west-1": endpoint{}, 3719 "us-west-2": endpoint{}, 3720 }, 3721 }, 3722 "grafana": service{ 3723 3724 Endpoints: endpoints{ 3725 "ap-northeast-1": endpoint{ 3726 Hostname: "grafana.ap-northeast-1.amazonaws.com", 3727 CredentialScope: credentialScope{ 3728 Region: "ap-northeast-1", 3729 }, 3730 }, 3731 "ap-northeast-2": endpoint{ 3732 Hostname: "grafana.ap-northeast-2.amazonaws.com", 3733 CredentialScope: credentialScope{ 3734 Region: "ap-northeast-2", 3735 }, 3736 }, 3737 "ap-southeast-1": endpoint{ 3738 Hostname: "grafana.ap-southeast-1.amazonaws.com", 3739 CredentialScope: credentialScope{ 3740 Region: "ap-southeast-1", 3741 }, 3742 }, 3743 "ap-southeast-2": endpoint{ 3744 Hostname: "grafana.ap-southeast-2.amazonaws.com", 3745 CredentialScope: credentialScope{ 3746 Region: "ap-southeast-2", 3747 }, 3748 }, 3749 "eu-central-1": endpoint{ 3750 Hostname: "grafana.eu-central-1.amazonaws.com", 3751 CredentialScope: credentialScope{ 3752 Region: "eu-central-1", 3753 }, 3754 }, 3755 "eu-west-1": endpoint{ 3756 Hostname: "grafana.eu-west-1.amazonaws.com", 3757 CredentialScope: credentialScope{ 3758 Region: "eu-west-1", 3759 }, 3760 }, 3761 "eu-west-2": endpoint{ 3762 Hostname: "grafana.eu-west-2.amazonaws.com", 3763 CredentialScope: credentialScope{ 3764 Region: "eu-west-2", 3765 }, 3766 }, 3767 "us-east-1": endpoint{ 3768 Hostname: "grafana.us-east-1.amazonaws.com", 3769 CredentialScope: credentialScope{ 3770 Region: "us-east-1", 3771 }, 3772 }, 3773 "us-east-2": endpoint{ 3774 Hostname: "grafana.us-east-2.amazonaws.com", 3775 CredentialScope: credentialScope{ 3776 Region: "us-east-2", 3777 }, 3778 }, 3779 "us-west-2": endpoint{ 3780 Hostname: "grafana.us-west-2.amazonaws.com", 3781 CredentialScope: credentialScope{ 3782 Region: "us-west-2", 3783 }, 3784 }, 3785 }, 3786 }, 3787 "greengrass": service{ 3788 IsRegionalized: boxedTrue, 3789 Defaults: endpoint{ 3790 Protocols: []string{"https"}, 3791 }, 3792 Endpoints: endpoints{ 3793 "ap-northeast-1": endpoint{}, 3794 "ap-northeast-2": endpoint{}, 3795 "ap-south-1": endpoint{}, 3796 "ap-southeast-1": endpoint{}, 3797 "ap-southeast-2": endpoint{}, 3798 "eu-central-1": endpoint{}, 3799 "eu-west-1": endpoint{}, 3800 "eu-west-2": endpoint{}, 3801 "us-east-1": endpoint{}, 3802 "us-east-2": endpoint{}, 3803 "us-west-2": endpoint{}, 3804 }, 3805 }, 3806 "groundstation": service{ 3807 3808 Endpoints: endpoints{ 3809 "af-south-1": endpoint{}, 3810 "ap-northeast-2": endpoint{}, 3811 "ap-southeast-2": endpoint{}, 3812 "eu-central-1": endpoint{}, 3813 "eu-north-1": endpoint{}, 3814 "eu-west-1": endpoint{}, 3815 "fips-us-east-1": endpoint{ 3816 Hostname: "groundstation-fips.us-east-1.amazonaws.com", 3817 CredentialScope: credentialScope{ 3818 Region: "us-east-1", 3819 }, 3820 }, 3821 "fips-us-east-2": endpoint{ 3822 Hostname: "groundstation-fips.us-east-2.amazonaws.com", 3823 CredentialScope: credentialScope{ 3824 Region: "us-east-2", 3825 }, 3826 }, 3827 "fips-us-west-2": endpoint{ 3828 Hostname: "groundstation-fips.us-west-2.amazonaws.com", 3829 CredentialScope: credentialScope{ 3830 Region: "us-west-2", 3831 }, 3832 }, 3833 "me-south-1": endpoint{}, 3834 "us-east-1": endpoint{}, 3835 "us-east-2": endpoint{}, 3836 "us-west-2": endpoint{}, 3837 }, 3838 }, 3839 "guardduty": service{ 3840 IsRegionalized: boxedTrue, 3841 Defaults: endpoint{ 3842 Protocols: []string{"https"}, 3843 }, 3844 Endpoints: endpoints{ 3845 "af-south-1": endpoint{}, 3846 "ap-east-1": endpoint{}, 3847 "ap-northeast-1": endpoint{}, 3848 "ap-northeast-2": endpoint{}, 3849 "ap-northeast-3": endpoint{}, 3850 "ap-south-1": endpoint{}, 3851 "ap-southeast-1": endpoint{}, 3852 "ap-southeast-2": endpoint{}, 3853 "ca-central-1": endpoint{}, 3854 "eu-central-1": endpoint{}, 3855 "eu-north-1": endpoint{}, 3856 "eu-south-1": endpoint{}, 3857 "eu-west-1": endpoint{}, 3858 "eu-west-2": endpoint{}, 3859 "eu-west-3": endpoint{}, 3860 "me-south-1": endpoint{}, 3861 "sa-east-1": endpoint{}, 3862 "us-east-1": endpoint{}, 3863 "us-east-1-fips": endpoint{ 3864 Hostname: "guardduty-fips.us-east-1.amazonaws.com", 3865 CredentialScope: credentialScope{ 3866 Region: "us-east-1", 3867 }, 3868 }, 3869 "us-east-2": endpoint{}, 3870 "us-east-2-fips": endpoint{ 3871 Hostname: "guardduty-fips.us-east-2.amazonaws.com", 3872 CredentialScope: credentialScope{ 3873 Region: "us-east-2", 3874 }, 3875 }, 3876 "us-west-1": endpoint{}, 3877 "us-west-1-fips": endpoint{ 3878 Hostname: "guardduty-fips.us-west-1.amazonaws.com", 3879 CredentialScope: credentialScope{ 3880 Region: "us-west-1", 3881 }, 3882 }, 3883 "us-west-2": endpoint{}, 3884 "us-west-2-fips": endpoint{ 3885 Hostname: "guardduty-fips.us-west-2.amazonaws.com", 3886 CredentialScope: credentialScope{ 3887 Region: "us-west-2", 3888 }, 3889 }, 3890 }, 3891 }, 3892 "health": service{ 3893 3894 Endpoints: endpoints{ 3895 "fips-us-east-2": endpoint{ 3896 Hostname: "health-fips.us-east-2.amazonaws.com", 3897 CredentialScope: credentialScope{ 3898 Region: "us-east-2", 3899 }, 3900 }, 3901 }, 3902 }, 3903 "healthlake": service{ 3904 Defaults: endpoint{ 3905 Protocols: []string{"https"}, 3906 }, 3907 Endpoints: endpoints{ 3908 "us-east-1": endpoint{}, 3909 "us-east-2": endpoint{}, 3910 "us-west-2": endpoint{}, 3911 }, 3912 }, 3913 "honeycode": service{ 3914 3915 Endpoints: endpoints{ 3916 "us-west-2": endpoint{}, 3917 }, 3918 }, 3919 "iam": service{ 3920 PartitionEndpoint: "aws-global", 3921 IsRegionalized: boxedFalse, 3922 3923 Endpoints: endpoints{ 3924 "aws-global": endpoint{ 3925 Hostname: "iam.amazonaws.com", 3926 CredentialScope: credentialScope{ 3927 Region: "us-east-1", 3928 }, 3929 }, 3930 "iam-fips": endpoint{ 3931 Hostname: "iam-fips.amazonaws.com", 3932 CredentialScope: credentialScope{ 3933 Region: "us-east-1", 3934 }, 3935 }, 3936 }, 3937 }, 3938 "identity-chime": service{ 3939 3940 Endpoints: endpoints{ 3941 "us-east-1": endpoint{}, 3942 "us-east-1-fips": endpoint{ 3943 Hostname: "identity-chime-fips.us-east-1.amazonaws.com", 3944 CredentialScope: credentialScope{ 3945 Region: "us-east-1", 3946 }, 3947 }, 3948 }, 3949 }, 3950 "identitystore": service{ 3951 3952 Endpoints: endpoints{ 3953 "ap-northeast-1": endpoint{}, 3954 "ap-northeast-2": endpoint{}, 3955 "ap-south-1": endpoint{}, 3956 "ap-southeast-1": endpoint{}, 3957 "ap-southeast-2": endpoint{}, 3958 "ca-central-1": endpoint{}, 3959 "eu-central-1": endpoint{}, 3960 "eu-north-1": endpoint{}, 3961 "eu-west-1": endpoint{}, 3962 "eu-west-2": endpoint{}, 3963 "us-east-1": endpoint{}, 3964 "us-east-2": endpoint{}, 3965 "us-west-2": endpoint{}, 3966 }, 3967 }, 3968 "importexport": service{ 3969 PartitionEndpoint: "aws-global", 3970 IsRegionalized: boxedFalse, 3971 3972 Endpoints: endpoints{ 3973 "aws-global": endpoint{ 3974 Hostname: "importexport.amazonaws.com", 3975 SignatureVersions: []string{"v2", "v4"}, 3976 CredentialScope: credentialScope{ 3977 Region: "us-east-1", 3978 Service: "IngestionService", 3979 }, 3980 }, 3981 }, 3982 }, 3983 "inspector": service{ 3984 3985 Endpoints: endpoints{ 3986 "ap-northeast-1": endpoint{}, 3987 "ap-northeast-2": endpoint{}, 3988 "ap-south-1": endpoint{}, 3989 "ap-southeast-2": endpoint{}, 3990 "eu-central-1": endpoint{}, 3991 "eu-north-1": endpoint{}, 3992 "eu-west-1": endpoint{}, 3993 "eu-west-2": endpoint{}, 3994 "fips-us-east-1": endpoint{ 3995 Hostname: "inspector-fips.us-east-1.amazonaws.com", 3996 CredentialScope: credentialScope{ 3997 Region: "us-east-1", 3998 }, 3999 }, 4000 "fips-us-east-2": endpoint{ 4001 Hostname: "inspector-fips.us-east-2.amazonaws.com", 4002 CredentialScope: credentialScope{ 4003 Region: "us-east-2", 4004 }, 4005 }, 4006 "fips-us-west-1": endpoint{ 4007 Hostname: "inspector-fips.us-west-1.amazonaws.com", 4008 CredentialScope: credentialScope{ 4009 Region: "us-west-1", 4010 }, 4011 }, 4012 "fips-us-west-2": endpoint{ 4013 Hostname: "inspector-fips.us-west-2.amazonaws.com", 4014 CredentialScope: credentialScope{ 4015 Region: "us-west-2", 4016 }, 4017 }, 4018 "us-east-1": endpoint{}, 4019 "us-east-2": endpoint{}, 4020 "us-west-1": endpoint{}, 4021 "us-west-2": endpoint{}, 4022 }, 4023 }, 4024 "iot": service{ 4025 Defaults: endpoint{ 4026 CredentialScope: credentialScope{ 4027 Service: "execute-api", 4028 }, 4029 }, 4030 Endpoints: endpoints{ 4031 "ap-east-1": endpoint{}, 4032 "ap-northeast-1": endpoint{}, 4033 "ap-northeast-2": endpoint{}, 4034 "ap-south-1": endpoint{}, 4035 "ap-southeast-1": endpoint{}, 4036 "ap-southeast-2": endpoint{}, 4037 "ca-central-1": endpoint{}, 4038 "eu-central-1": endpoint{}, 4039 "eu-north-1": endpoint{}, 4040 "eu-west-1": endpoint{}, 4041 "eu-west-2": endpoint{}, 4042 "eu-west-3": endpoint{}, 4043 "fips-ca-central-1": endpoint{ 4044 Hostname: "iot-fips.ca-central-1.amazonaws.com", 4045 CredentialScope: credentialScope{ 4046 Service: "execute-api", 4047 }, 4048 }, 4049 "fips-us-east-1": endpoint{ 4050 Hostname: "iot-fips.us-east-1.amazonaws.com", 4051 CredentialScope: credentialScope{ 4052 Service: "execute-api", 4053 }, 4054 }, 4055 "fips-us-east-2": endpoint{ 4056 Hostname: "iot-fips.us-east-2.amazonaws.com", 4057 CredentialScope: credentialScope{ 4058 Service: "execute-api", 4059 }, 4060 }, 4061 "fips-us-west-1": endpoint{ 4062 Hostname: "iot-fips.us-west-1.amazonaws.com", 4063 CredentialScope: credentialScope{ 4064 Service: "execute-api", 4065 }, 4066 }, 4067 "fips-us-west-2": endpoint{ 4068 Hostname: "iot-fips.us-west-2.amazonaws.com", 4069 CredentialScope: credentialScope{ 4070 Service: "execute-api", 4071 }, 4072 }, 4073 "me-south-1": endpoint{}, 4074 "sa-east-1": endpoint{}, 4075 "us-east-1": endpoint{}, 4076 "us-east-2": endpoint{}, 4077 "us-west-1": endpoint{}, 4078 "us-west-2": endpoint{}, 4079 }, 4080 }, 4081 "iotanalytics": service{ 4082 4083 Endpoints: endpoints{ 4084 "ap-northeast-1": endpoint{}, 4085 "ap-south-1": endpoint{}, 4086 "ap-southeast-2": endpoint{}, 4087 "eu-central-1": endpoint{}, 4088 "eu-west-1": endpoint{}, 4089 "us-east-1": endpoint{}, 4090 "us-east-2": endpoint{}, 4091 "us-west-2": endpoint{}, 4092 }, 4093 }, 4094 "iotevents": service{ 4095 4096 Endpoints: endpoints{ 4097 "ap-northeast-1": endpoint{}, 4098 "ap-northeast-2": endpoint{}, 4099 "ap-south-1": endpoint{}, 4100 "ap-southeast-1": endpoint{}, 4101 "ap-southeast-2": endpoint{}, 4102 "eu-central-1": endpoint{}, 4103 "eu-west-1": endpoint{}, 4104 "eu-west-2": endpoint{}, 4105 "us-east-1": endpoint{}, 4106 "us-east-2": endpoint{}, 4107 "us-west-2": endpoint{}, 4108 }, 4109 }, 4110 "ioteventsdata": service{ 4111 4112 Endpoints: endpoints{ 4113 "ap-northeast-1": endpoint{ 4114 Hostname: "data.iotevents.ap-northeast-1.amazonaws.com", 4115 CredentialScope: credentialScope{ 4116 Region: "ap-northeast-1", 4117 }, 4118 }, 4119 "ap-northeast-2": endpoint{ 4120 Hostname: "data.iotevents.ap-northeast-2.amazonaws.com", 4121 CredentialScope: credentialScope{ 4122 Region: "ap-northeast-2", 4123 }, 4124 }, 4125 "ap-south-1": endpoint{ 4126 Hostname: "data.iotevents.ap-south-1.amazonaws.com", 4127 CredentialScope: credentialScope{ 4128 Region: "ap-south-1", 4129 }, 4130 }, 4131 "ap-southeast-1": endpoint{ 4132 Hostname: "data.iotevents.ap-southeast-1.amazonaws.com", 4133 CredentialScope: credentialScope{ 4134 Region: "ap-southeast-1", 4135 }, 4136 }, 4137 "ap-southeast-2": endpoint{ 4138 Hostname: "data.iotevents.ap-southeast-2.amazonaws.com", 4139 CredentialScope: credentialScope{ 4140 Region: "ap-southeast-2", 4141 }, 4142 }, 4143 "eu-central-1": endpoint{ 4144 Hostname: "data.iotevents.eu-central-1.amazonaws.com", 4145 CredentialScope: credentialScope{ 4146 Region: "eu-central-1", 4147 }, 4148 }, 4149 "eu-west-1": endpoint{ 4150 Hostname: "data.iotevents.eu-west-1.amazonaws.com", 4151 CredentialScope: credentialScope{ 4152 Region: "eu-west-1", 4153 }, 4154 }, 4155 "eu-west-2": endpoint{ 4156 Hostname: "data.iotevents.eu-west-2.amazonaws.com", 4157 CredentialScope: credentialScope{ 4158 Region: "eu-west-2", 4159 }, 4160 }, 4161 "us-east-1": endpoint{ 4162 Hostname: "data.iotevents.us-east-1.amazonaws.com", 4163 CredentialScope: credentialScope{ 4164 Region: "us-east-1", 4165 }, 4166 }, 4167 "us-east-2": endpoint{ 4168 Hostname: "data.iotevents.us-east-2.amazonaws.com", 4169 CredentialScope: credentialScope{ 4170 Region: "us-east-2", 4171 }, 4172 }, 4173 "us-west-2": endpoint{ 4174 Hostname: "data.iotevents.us-west-2.amazonaws.com", 4175 CredentialScope: credentialScope{ 4176 Region: "us-west-2", 4177 }, 4178 }, 4179 }, 4180 }, 4181 "iotsecuredtunneling": service{ 4182 4183 Endpoints: endpoints{ 4184 "ap-east-1": endpoint{}, 4185 "ap-northeast-1": endpoint{}, 4186 "ap-northeast-2": endpoint{}, 4187 "ap-south-1": endpoint{}, 4188 "ap-southeast-1": endpoint{}, 4189 "ap-southeast-2": endpoint{}, 4190 "ca-central-1": endpoint{}, 4191 "eu-central-1": endpoint{}, 4192 "eu-north-1": endpoint{}, 4193 "eu-west-1": endpoint{}, 4194 "eu-west-2": endpoint{}, 4195 "eu-west-3": endpoint{}, 4196 "fips-ca-central-1": endpoint{ 4197 Hostname: "api.tunneling.iot-fips.ca-central-1.amazonaws.com", 4198 CredentialScope: credentialScope{ 4199 Region: "ca-central-1", 4200 }, 4201 }, 4202 "fips-us-east-1": endpoint{ 4203 Hostname: "api.tunneling.iot-fips.us-east-1.amazonaws.com", 4204 CredentialScope: credentialScope{ 4205 Region: "us-east-1", 4206 }, 4207 }, 4208 "fips-us-east-2": endpoint{ 4209 Hostname: "api.tunneling.iot-fips.us-east-2.amazonaws.com", 4210 CredentialScope: credentialScope{ 4211 Region: "us-east-2", 4212 }, 4213 }, 4214 "fips-us-west-1": endpoint{ 4215 Hostname: "api.tunneling.iot-fips.us-west-1.amazonaws.com", 4216 CredentialScope: credentialScope{ 4217 Region: "us-west-1", 4218 }, 4219 }, 4220 "fips-us-west-2": endpoint{ 4221 Hostname: "api.tunneling.iot-fips.us-west-2.amazonaws.com", 4222 CredentialScope: credentialScope{ 4223 Region: "us-west-2", 4224 }, 4225 }, 4226 "me-south-1": endpoint{}, 4227 "sa-east-1": endpoint{}, 4228 "us-east-1": endpoint{}, 4229 "us-east-2": endpoint{}, 4230 "us-west-1": endpoint{}, 4231 "us-west-2": endpoint{}, 4232 }, 4233 }, 4234 "iotthingsgraph": service{ 4235 Defaults: endpoint{ 4236 CredentialScope: credentialScope{ 4237 Service: "iotthingsgraph", 4238 }, 4239 }, 4240 Endpoints: endpoints{ 4241 "ap-northeast-1": endpoint{}, 4242 "ap-northeast-2": endpoint{}, 4243 "ap-southeast-2": endpoint{}, 4244 "eu-west-1": endpoint{}, 4245 "us-east-1": endpoint{}, 4246 "us-west-2": endpoint{}, 4247 }, 4248 }, 4249 "iotwireless": service{ 4250 4251 Endpoints: endpoints{ 4252 "ap-northeast-1": endpoint{ 4253 Hostname: "api.iotwireless.ap-northeast-1.amazonaws.com", 4254 CredentialScope: credentialScope{ 4255 Region: "ap-northeast-1", 4256 }, 4257 }, 4258 "ap-southeast-2": endpoint{ 4259 Hostname: "api.iotwireless.ap-southeast-2.amazonaws.com", 4260 CredentialScope: credentialScope{ 4261 Region: "ap-southeast-2", 4262 }, 4263 }, 4264 "eu-west-1": endpoint{ 4265 Hostname: "api.iotwireless.eu-west-1.amazonaws.com", 4266 CredentialScope: credentialScope{ 4267 Region: "eu-west-1", 4268 }, 4269 }, 4270 "us-east-1": endpoint{ 4271 Hostname: "api.iotwireless.us-east-1.amazonaws.com", 4272 CredentialScope: credentialScope{ 4273 Region: "us-east-1", 4274 }, 4275 }, 4276 "us-west-2": endpoint{ 4277 Hostname: "api.iotwireless.us-west-2.amazonaws.com", 4278 CredentialScope: credentialScope{ 4279 Region: "us-west-2", 4280 }, 4281 }, 4282 }, 4283 }, 4284 "ivs": service{ 4285 4286 Endpoints: endpoints{ 4287 "eu-west-1": endpoint{}, 4288 "us-east-1": endpoint{}, 4289 "us-west-2": endpoint{}, 4290 }, 4291 }, 4292 "kafka": service{ 4293 4294 Endpoints: endpoints{ 4295 "ap-east-1": endpoint{}, 4296 "ap-northeast-1": endpoint{}, 4297 "ap-northeast-2": endpoint{}, 4298 "ap-south-1": endpoint{}, 4299 "ap-southeast-1": endpoint{}, 4300 "ap-southeast-2": endpoint{}, 4301 "ca-central-1": endpoint{}, 4302 "eu-central-1": endpoint{}, 4303 "eu-north-1": endpoint{}, 4304 "eu-south-1": endpoint{}, 4305 "eu-west-1": endpoint{}, 4306 "eu-west-2": endpoint{}, 4307 "eu-west-3": endpoint{}, 4308 "me-south-1": endpoint{}, 4309 "sa-east-1": endpoint{}, 4310 "us-east-1": endpoint{}, 4311 "us-east-2": endpoint{}, 4312 "us-west-1": endpoint{}, 4313 "us-west-2": endpoint{}, 4314 }, 4315 }, 4316 "kafkaconnect": service{ 4317 4318 Endpoints: endpoints{ 4319 "ap-northeast-1": endpoint{}, 4320 "ap-northeast-2": endpoint{}, 4321 "ap-south-1": endpoint{}, 4322 "ap-southeast-1": endpoint{}, 4323 "ap-southeast-2": endpoint{}, 4324 "ca-central-1": endpoint{}, 4325 "eu-central-1": endpoint{}, 4326 "eu-north-1": endpoint{}, 4327 "eu-west-1": endpoint{}, 4328 "eu-west-2": endpoint{}, 4329 "eu-west-3": endpoint{}, 4330 "sa-east-1": endpoint{}, 4331 "us-east-1": endpoint{}, 4332 "us-east-2": endpoint{}, 4333 "us-west-1": endpoint{}, 4334 "us-west-2": endpoint{}, 4335 }, 4336 }, 4337 "kendra": service{ 4338 4339 Endpoints: endpoints{ 4340 "ap-southeast-1": endpoint{}, 4341 "ap-southeast-2": endpoint{}, 4342 "ca-central-1": endpoint{}, 4343 "eu-west-1": endpoint{}, 4344 "fips-us-east-1": endpoint{ 4345 Hostname: "kendra-fips.us-east-1.amazonaws.com", 4346 CredentialScope: credentialScope{ 4347 Region: "us-east-1", 4348 }, 4349 }, 4350 "fips-us-east-2": endpoint{ 4351 Hostname: "kendra-fips.us-east-2.amazonaws.com", 4352 CredentialScope: credentialScope{ 4353 Region: "us-east-2", 4354 }, 4355 }, 4356 "fips-us-west-2": endpoint{ 4357 Hostname: "kendra-fips.us-west-2.amazonaws.com", 4358 CredentialScope: credentialScope{ 4359 Region: "us-west-2", 4360 }, 4361 }, 4362 "us-east-1": endpoint{}, 4363 "us-east-2": endpoint{}, 4364 "us-west-2": endpoint{}, 4365 }, 4366 }, 4367 "kinesis": service{ 4368 4369 Endpoints: endpoints{ 4370 "af-south-1": endpoint{}, 4371 "ap-east-1": endpoint{}, 4372 "ap-northeast-1": endpoint{}, 4373 "ap-northeast-2": endpoint{}, 4374 "ap-northeast-3": endpoint{}, 4375 "ap-south-1": endpoint{}, 4376 "ap-southeast-1": endpoint{}, 4377 "ap-southeast-2": endpoint{}, 4378 "ca-central-1": endpoint{}, 4379 "eu-central-1": endpoint{}, 4380 "eu-north-1": endpoint{}, 4381 "eu-south-1": endpoint{}, 4382 "eu-west-1": endpoint{}, 4383 "eu-west-2": endpoint{}, 4384 "eu-west-3": endpoint{}, 4385 "fips-us-east-1": endpoint{ 4386 Hostname: "kinesis-fips.us-east-1.amazonaws.com", 4387 CredentialScope: credentialScope{ 4388 Region: "us-east-1", 4389 }, 4390 }, 4391 "fips-us-east-2": endpoint{ 4392 Hostname: "kinesis-fips.us-east-2.amazonaws.com", 4393 CredentialScope: credentialScope{ 4394 Region: "us-east-2", 4395 }, 4396 }, 4397 "fips-us-west-1": endpoint{ 4398 Hostname: "kinesis-fips.us-west-1.amazonaws.com", 4399 CredentialScope: credentialScope{ 4400 Region: "us-west-1", 4401 }, 4402 }, 4403 "fips-us-west-2": endpoint{ 4404 Hostname: "kinesis-fips.us-west-2.amazonaws.com", 4405 CredentialScope: credentialScope{ 4406 Region: "us-west-2", 4407 }, 4408 }, 4409 "me-south-1": endpoint{}, 4410 "sa-east-1": endpoint{}, 4411 "us-east-1": endpoint{}, 4412 "us-east-2": endpoint{}, 4413 "us-west-1": endpoint{}, 4414 "us-west-2": endpoint{}, 4415 }, 4416 }, 4417 "kinesisanalytics": service{ 4418 4419 Endpoints: endpoints{ 4420 "ap-east-1": endpoint{}, 4421 "ap-northeast-1": endpoint{}, 4422 "ap-northeast-2": endpoint{}, 4423 "ap-south-1": endpoint{}, 4424 "ap-southeast-1": endpoint{}, 4425 "ap-southeast-2": endpoint{}, 4426 "ca-central-1": endpoint{}, 4427 "eu-central-1": endpoint{}, 4428 "eu-north-1": endpoint{}, 4429 "eu-south-1": endpoint{}, 4430 "eu-west-1": endpoint{}, 4431 "eu-west-2": endpoint{}, 4432 "eu-west-3": endpoint{}, 4433 "me-south-1": endpoint{}, 4434 "sa-east-1": endpoint{}, 4435 "us-east-1": endpoint{}, 4436 "us-east-2": endpoint{}, 4437 "us-west-1": endpoint{}, 4438 "us-west-2": endpoint{}, 4439 }, 4440 }, 4441 "kinesisvideo": service{ 4442 4443 Endpoints: endpoints{ 4444 "ap-east-1": endpoint{}, 4445 "ap-northeast-1": endpoint{}, 4446 "ap-northeast-2": endpoint{}, 4447 "ap-south-1": endpoint{}, 4448 "ap-southeast-1": endpoint{}, 4449 "ap-southeast-2": endpoint{}, 4450 "ca-central-1": endpoint{}, 4451 "eu-central-1": endpoint{}, 4452 "eu-west-1": endpoint{}, 4453 "eu-west-2": endpoint{}, 4454 "eu-west-3": endpoint{}, 4455 "sa-east-1": endpoint{}, 4456 "us-east-1": endpoint{}, 4457 "us-east-2": endpoint{}, 4458 "us-west-2": endpoint{}, 4459 }, 4460 }, 4461 "kms": service{ 4462 4463 Endpoints: endpoints{ 4464 "af-south-1": endpoint{}, 4465 "ap-east-1": endpoint{}, 4466 "ap-northeast-1": endpoint{}, 4467 "ap-northeast-2": endpoint{}, 4468 "ap-northeast-3": endpoint{}, 4469 "ap-south-1": endpoint{}, 4470 "ap-southeast-1": endpoint{}, 4471 "ap-southeast-2": endpoint{}, 4472 "ca-central-1": endpoint{}, 4473 "eu-central-1": endpoint{}, 4474 "eu-north-1": endpoint{}, 4475 "eu-south-1": endpoint{}, 4476 "eu-west-1": endpoint{}, 4477 "eu-west-2": endpoint{}, 4478 "eu-west-3": endpoint{}, 4479 "me-south-1": endpoint{}, 4480 "sa-east-1": endpoint{}, 4481 "us-east-1": endpoint{}, 4482 "us-east-2": endpoint{}, 4483 "us-west-1": endpoint{}, 4484 "us-west-2": endpoint{}, 4485 }, 4486 }, 4487 "lakeformation": service{ 4488 4489 Endpoints: endpoints{ 4490 "af-south-1": endpoint{}, 4491 "ap-east-1": endpoint{}, 4492 "ap-northeast-1": endpoint{}, 4493 "ap-northeast-2": endpoint{}, 4494 "ap-northeast-3": endpoint{}, 4495 "ap-south-1": endpoint{}, 4496 "ap-southeast-1": endpoint{}, 4497 "ap-southeast-2": endpoint{}, 4498 "ca-central-1": endpoint{}, 4499 "eu-central-1": endpoint{}, 4500 "eu-north-1": endpoint{}, 4501 "eu-south-1": endpoint{}, 4502 "eu-west-1": endpoint{}, 4503 "eu-west-2": endpoint{}, 4504 "eu-west-3": endpoint{}, 4505 "fips-us-east-1": endpoint{ 4506 Hostname: "lakeformation-fips.us-east-1.amazonaws.com", 4507 CredentialScope: credentialScope{ 4508 Region: "us-east-1", 4509 }, 4510 }, 4511 "fips-us-east-2": endpoint{ 4512 Hostname: "lakeformation-fips.us-east-2.amazonaws.com", 4513 CredentialScope: credentialScope{ 4514 Region: "us-east-2", 4515 }, 4516 }, 4517 "fips-us-west-1": endpoint{ 4518 Hostname: "lakeformation-fips.us-west-1.amazonaws.com", 4519 CredentialScope: credentialScope{ 4520 Region: "us-west-1", 4521 }, 4522 }, 4523 "fips-us-west-2": endpoint{ 4524 Hostname: "lakeformation-fips.us-west-2.amazonaws.com", 4525 CredentialScope: credentialScope{ 4526 Region: "us-west-2", 4527 }, 4528 }, 4529 "me-south-1": endpoint{}, 4530 "sa-east-1": endpoint{}, 4531 "us-east-1": endpoint{}, 4532 "us-east-2": endpoint{}, 4533 "us-west-1": endpoint{}, 4534 "us-west-2": endpoint{}, 4535 }, 4536 }, 4537 "lambda": service{ 4538 4539 Endpoints: endpoints{ 4540 "af-south-1": endpoint{}, 4541 "ap-east-1": endpoint{}, 4542 "ap-northeast-1": endpoint{}, 4543 "ap-northeast-2": endpoint{}, 4544 "ap-northeast-3": endpoint{}, 4545 "ap-south-1": endpoint{}, 4546 "ap-southeast-1": endpoint{}, 4547 "ap-southeast-2": endpoint{}, 4548 "ca-central-1": endpoint{}, 4549 "eu-central-1": endpoint{}, 4550 "eu-north-1": endpoint{}, 4551 "eu-south-1": endpoint{}, 4552 "eu-west-1": endpoint{}, 4553 "eu-west-2": endpoint{}, 4554 "eu-west-3": endpoint{}, 4555 "fips-us-east-1": endpoint{ 4556 Hostname: "lambda-fips.us-east-1.amazonaws.com", 4557 CredentialScope: credentialScope{ 4558 Region: "us-east-1", 4559 }, 4560 }, 4561 "fips-us-east-2": endpoint{ 4562 Hostname: "lambda-fips.us-east-2.amazonaws.com", 4563 CredentialScope: credentialScope{ 4564 Region: "us-east-2", 4565 }, 4566 }, 4567 "fips-us-west-1": endpoint{ 4568 Hostname: "lambda-fips.us-west-1.amazonaws.com", 4569 CredentialScope: credentialScope{ 4570 Region: "us-west-1", 4571 }, 4572 }, 4573 "fips-us-west-2": endpoint{ 4574 Hostname: "lambda-fips.us-west-2.amazonaws.com", 4575 CredentialScope: credentialScope{ 4576 Region: "us-west-2", 4577 }, 4578 }, 4579 "me-south-1": endpoint{}, 4580 "sa-east-1": endpoint{}, 4581 "us-east-1": endpoint{}, 4582 "us-east-2": endpoint{}, 4583 "us-west-1": endpoint{}, 4584 "us-west-2": endpoint{}, 4585 }, 4586 }, 4587 "license-manager": service{ 4588 4589 Endpoints: endpoints{ 4590 "af-south-1": endpoint{}, 4591 "ap-east-1": endpoint{}, 4592 "ap-northeast-1": endpoint{}, 4593 "ap-northeast-2": endpoint{}, 4594 "ap-northeast-3": endpoint{}, 4595 "ap-south-1": endpoint{}, 4596 "ap-southeast-1": endpoint{}, 4597 "ap-southeast-2": endpoint{}, 4598 "ca-central-1": endpoint{}, 4599 "eu-central-1": endpoint{}, 4600 "eu-north-1": endpoint{}, 4601 "eu-south-1": endpoint{}, 4602 "eu-west-1": endpoint{}, 4603 "eu-west-2": endpoint{}, 4604 "eu-west-3": endpoint{}, 4605 "fips-us-east-1": endpoint{ 4606 Hostname: "license-manager-fips.us-east-1.amazonaws.com", 4607 CredentialScope: credentialScope{ 4608 Region: "us-east-1", 4609 }, 4610 }, 4611 "fips-us-east-2": endpoint{ 4612 Hostname: "license-manager-fips.us-east-2.amazonaws.com", 4613 CredentialScope: credentialScope{ 4614 Region: "us-east-2", 4615 }, 4616 }, 4617 "fips-us-west-1": endpoint{ 4618 Hostname: "license-manager-fips.us-west-1.amazonaws.com", 4619 CredentialScope: credentialScope{ 4620 Region: "us-west-1", 4621 }, 4622 }, 4623 "fips-us-west-2": endpoint{ 4624 Hostname: "license-manager-fips.us-west-2.amazonaws.com", 4625 CredentialScope: credentialScope{ 4626 Region: "us-west-2", 4627 }, 4628 }, 4629 "me-south-1": endpoint{}, 4630 "sa-east-1": endpoint{}, 4631 "us-east-1": endpoint{}, 4632 "us-east-2": endpoint{}, 4633 "us-west-1": endpoint{}, 4634 "us-west-2": endpoint{}, 4635 }, 4636 }, 4637 "lightsail": service{ 4638 4639 Endpoints: endpoints{ 4640 "ap-northeast-1": endpoint{}, 4641 "ap-northeast-2": endpoint{}, 4642 "ap-south-1": endpoint{}, 4643 "ap-southeast-1": endpoint{}, 4644 "ap-southeast-2": endpoint{}, 4645 "ca-central-1": endpoint{}, 4646 "eu-central-1": endpoint{}, 4647 "eu-north-1": endpoint{}, 4648 "eu-west-1": endpoint{}, 4649 "eu-west-2": endpoint{}, 4650 "eu-west-3": endpoint{}, 4651 "us-east-1": endpoint{}, 4652 "us-east-2": endpoint{}, 4653 "us-west-2": endpoint{}, 4654 }, 4655 }, 4656 "logs": service{ 4657 4658 Endpoints: endpoints{ 4659 "af-south-1": endpoint{}, 4660 "ap-east-1": endpoint{}, 4661 "ap-northeast-1": endpoint{}, 4662 "ap-northeast-2": endpoint{}, 4663 "ap-northeast-3": endpoint{}, 4664 "ap-south-1": endpoint{}, 4665 "ap-southeast-1": endpoint{}, 4666 "ap-southeast-2": endpoint{}, 4667 "ca-central-1": endpoint{}, 4668 "eu-central-1": endpoint{}, 4669 "eu-north-1": endpoint{}, 4670 "eu-south-1": endpoint{}, 4671 "eu-west-1": endpoint{}, 4672 "eu-west-2": endpoint{}, 4673 "eu-west-3": endpoint{}, 4674 "fips-us-east-1": endpoint{ 4675 Hostname: "logs-fips.us-east-1.amazonaws.com", 4676 CredentialScope: credentialScope{ 4677 Region: "us-east-1", 4678 }, 4679 }, 4680 "fips-us-east-2": endpoint{ 4681 Hostname: "logs-fips.us-east-2.amazonaws.com", 4682 CredentialScope: credentialScope{ 4683 Region: "us-east-2", 4684 }, 4685 }, 4686 "fips-us-west-1": endpoint{ 4687 Hostname: "logs-fips.us-west-1.amazonaws.com", 4688 CredentialScope: credentialScope{ 4689 Region: "us-west-1", 4690 }, 4691 }, 4692 "fips-us-west-2": endpoint{ 4693 Hostname: "logs-fips.us-west-2.amazonaws.com", 4694 CredentialScope: credentialScope{ 4695 Region: "us-west-2", 4696 }, 4697 }, 4698 "me-south-1": endpoint{}, 4699 "sa-east-1": endpoint{}, 4700 "us-east-1": endpoint{}, 4701 "us-east-2": endpoint{}, 4702 "us-west-1": endpoint{}, 4703 "us-west-2": endpoint{}, 4704 }, 4705 }, 4706 "lookoutequipment": service{ 4707 4708 Endpoints: endpoints{ 4709 "ap-northeast-2": endpoint{}, 4710 "eu-west-1": endpoint{}, 4711 "us-east-1": endpoint{}, 4712 }, 4713 }, 4714 "lookoutvision": service{ 4715 4716 Endpoints: endpoints{ 4717 "ap-northeast-1": endpoint{}, 4718 "ap-northeast-2": endpoint{}, 4719 "eu-central-1": endpoint{}, 4720 "eu-west-1": endpoint{}, 4721 "us-east-1": endpoint{}, 4722 "us-east-2": endpoint{}, 4723 "us-west-2": endpoint{}, 4724 }, 4725 }, 4726 "machinelearning": service{ 4727 4728 Endpoints: endpoints{ 4729 "eu-west-1": endpoint{}, 4730 "us-east-1": endpoint{}, 4731 }, 4732 }, 4733 "macie": service{ 4734 4735 Endpoints: endpoints{ 4736 "fips-us-east-1": endpoint{ 4737 Hostname: "macie-fips.us-east-1.amazonaws.com", 4738 CredentialScope: credentialScope{ 4739 Region: "us-east-1", 4740 }, 4741 }, 4742 "fips-us-west-2": endpoint{ 4743 Hostname: "macie-fips.us-west-2.amazonaws.com", 4744 CredentialScope: credentialScope{ 4745 Region: "us-west-2", 4746 }, 4747 }, 4748 "us-east-1": endpoint{}, 4749 "us-west-2": endpoint{}, 4750 }, 4751 }, 4752 "macie2": service{ 4753 4754 Endpoints: endpoints{ 4755 "af-south-1": endpoint{}, 4756 "ap-east-1": endpoint{}, 4757 "ap-northeast-1": endpoint{}, 4758 "ap-northeast-2": endpoint{}, 4759 "ap-northeast-3": endpoint{}, 4760 "ap-south-1": endpoint{}, 4761 "ap-southeast-1": endpoint{}, 4762 "ap-southeast-2": endpoint{}, 4763 "ca-central-1": endpoint{}, 4764 "eu-central-1": endpoint{}, 4765 "eu-north-1": endpoint{}, 4766 "eu-south-1": endpoint{}, 4767 "eu-west-1": endpoint{}, 4768 "eu-west-2": endpoint{}, 4769 "eu-west-3": endpoint{}, 4770 "fips-us-east-1": endpoint{ 4771 Hostname: "macie2-fips.us-east-1.amazonaws.com", 4772 CredentialScope: credentialScope{ 4773 Region: "us-east-1", 4774 }, 4775 }, 4776 "fips-us-east-2": endpoint{ 4777 Hostname: "macie2-fips.us-east-2.amazonaws.com", 4778 CredentialScope: credentialScope{ 4779 Region: "us-east-2", 4780 }, 4781 }, 4782 "fips-us-west-1": endpoint{ 4783 Hostname: "macie2-fips.us-west-1.amazonaws.com", 4784 CredentialScope: credentialScope{ 4785 Region: "us-west-1", 4786 }, 4787 }, 4788 "fips-us-west-2": endpoint{ 4789 Hostname: "macie2-fips.us-west-2.amazonaws.com", 4790 CredentialScope: credentialScope{ 4791 Region: "us-west-2", 4792 }, 4793 }, 4794 "me-south-1": endpoint{}, 4795 "sa-east-1": endpoint{}, 4796 "us-east-1": endpoint{}, 4797 "us-east-2": endpoint{}, 4798 "us-west-1": endpoint{}, 4799 "us-west-2": endpoint{}, 4800 }, 4801 }, 4802 "managedblockchain": service{ 4803 4804 Endpoints: endpoints{ 4805 "ap-northeast-1": endpoint{}, 4806 "ap-northeast-2": endpoint{}, 4807 "ap-southeast-1": endpoint{}, 4808 "eu-west-1": endpoint{}, 4809 "eu-west-2": endpoint{}, 4810 "us-east-1": endpoint{}, 4811 }, 4812 }, 4813 "marketplacecommerceanalytics": service{ 4814 4815 Endpoints: endpoints{ 4816 "us-east-1": endpoint{}, 4817 }, 4818 }, 4819 "mediaconnect": service{ 4820 4821 Endpoints: endpoints{ 4822 "ap-east-1": endpoint{}, 4823 "ap-northeast-1": endpoint{}, 4824 "ap-northeast-2": endpoint{}, 4825 "ap-south-1": endpoint{}, 4826 "ap-southeast-1": endpoint{}, 4827 "ap-southeast-2": endpoint{}, 4828 "eu-central-1": endpoint{}, 4829 "eu-north-1": endpoint{}, 4830 "eu-west-1": endpoint{}, 4831 "eu-west-2": endpoint{}, 4832 "eu-west-3": endpoint{}, 4833 "sa-east-1": endpoint{}, 4834 "us-east-1": endpoint{}, 4835 "us-east-2": endpoint{}, 4836 "us-west-1": endpoint{}, 4837 "us-west-2": endpoint{}, 4838 }, 4839 }, 4840 "mediaconvert": service{ 4841 4842 Endpoints: endpoints{ 4843 "ap-northeast-1": endpoint{}, 4844 "ap-northeast-2": endpoint{}, 4845 "ap-south-1": endpoint{}, 4846 "ap-southeast-1": endpoint{}, 4847 "ap-southeast-2": endpoint{}, 4848 "ca-central-1": endpoint{}, 4849 "eu-central-1": endpoint{}, 4850 "eu-north-1": endpoint{}, 4851 "eu-west-1": endpoint{}, 4852 "eu-west-2": endpoint{}, 4853 "eu-west-3": endpoint{}, 4854 "fips-ca-central-1": endpoint{ 4855 Hostname: "mediaconvert-fips.ca-central-1.amazonaws.com", 4856 CredentialScope: credentialScope{ 4857 Region: "ca-central-1", 4858 }, 4859 }, 4860 "fips-us-east-1": endpoint{ 4861 Hostname: "mediaconvert-fips.us-east-1.amazonaws.com", 4862 CredentialScope: credentialScope{ 4863 Region: "us-east-1", 4864 }, 4865 }, 4866 "fips-us-east-2": endpoint{ 4867 Hostname: "mediaconvert-fips.us-east-2.amazonaws.com", 4868 CredentialScope: credentialScope{ 4869 Region: "us-east-2", 4870 }, 4871 }, 4872 "fips-us-west-1": endpoint{ 4873 Hostname: "mediaconvert-fips.us-west-1.amazonaws.com", 4874 CredentialScope: credentialScope{ 4875 Region: "us-west-1", 4876 }, 4877 }, 4878 "fips-us-west-2": endpoint{ 4879 Hostname: "mediaconvert-fips.us-west-2.amazonaws.com", 4880 CredentialScope: credentialScope{ 4881 Region: "us-west-2", 4882 }, 4883 }, 4884 "sa-east-1": endpoint{}, 4885 "us-east-1": endpoint{}, 4886 "us-east-2": endpoint{}, 4887 "us-west-1": endpoint{}, 4888 "us-west-2": endpoint{}, 4889 }, 4890 }, 4891 "medialive": service{ 4892 4893 Endpoints: endpoints{ 4894 "ap-northeast-1": endpoint{}, 4895 "ap-northeast-2": endpoint{}, 4896 "ap-south-1": endpoint{}, 4897 "ap-southeast-1": endpoint{}, 4898 "ap-southeast-2": endpoint{}, 4899 "eu-central-1": endpoint{}, 4900 "eu-north-1": endpoint{}, 4901 "eu-west-1": endpoint{}, 4902 "eu-west-2": endpoint{}, 4903 "eu-west-3": endpoint{}, 4904 "fips-us-east-1": endpoint{ 4905 Hostname: "medialive-fips.us-east-1.amazonaws.com", 4906 CredentialScope: credentialScope{ 4907 Region: "us-east-1", 4908 }, 4909 }, 4910 "fips-us-east-2": endpoint{ 4911 Hostname: "medialive-fips.us-east-2.amazonaws.com", 4912 CredentialScope: credentialScope{ 4913 Region: "us-east-2", 4914 }, 4915 }, 4916 "fips-us-west-2": endpoint{ 4917 Hostname: "medialive-fips.us-west-2.amazonaws.com", 4918 CredentialScope: credentialScope{ 4919 Region: "us-west-2", 4920 }, 4921 }, 4922 "sa-east-1": endpoint{}, 4923 "us-east-1": endpoint{}, 4924 "us-east-2": endpoint{}, 4925 "us-west-2": endpoint{}, 4926 }, 4927 }, 4928 "mediapackage": service{ 4929 4930 Endpoints: endpoints{ 4931 "ap-northeast-1": endpoint{}, 4932 "ap-northeast-2": endpoint{}, 4933 "ap-south-1": endpoint{}, 4934 "ap-southeast-1": endpoint{}, 4935 "ap-southeast-2": endpoint{}, 4936 "eu-central-1": endpoint{}, 4937 "eu-north-1": endpoint{}, 4938 "eu-west-1": endpoint{}, 4939 "eu-west-2": endpoint{}, 4940 "eu-west-3": endpoint{}, 4941 "sa-east-1": endpoint{}, 4942 "us-east-1": endpoint{}, 4943 "us-east-2": endpoint{}, 4944 "us-west-1": endpoint{}, 4945 "us-west-2": endpoint{}, 4946 }, 4947 }, 4948 "mediapackage-vod": service{ 4949 4950 Endpoints: endpoints{ 4951 "ap-northeast-1": endpoint{}, 4952 "ap-northeast-2": endpoint{}, 4953 "ap-south-1": endpoint{}, 4954 "ap-southeast-1": endpoint{}, 4955 "ap-southeast-2": endpoint{}, 4956 "eu-central-1": endpoint{}, 4957 "eu-north-1": endpoint{}, 4958 "eu-west-1": endpoint{}, 4959 "eu-west-2": endpoint{}, 4960 "eu-west-3": endpoint{}, 4961 "sa-east-1": endpoint{}, 4962 "us-east-1": endpoint{}, 4963 "us-east-2": endpoint{}, 4964 "us-west-1": endpoint{}, 4965 "us-west-2": endpoint{}, 4966 }, 4967 }, 4968 "mediastore": service{ 4969 4970 Endpoints: endpoints{ 4971 "ap-northeast-1": endpoint{}, 4972 "ap-northeast-2": endpoint{}, 4973 "ap-southeast-2": endpoint{}, 4974 "eu-central-1": endpoint{}, 4975 "eu-north-1": endpoint{}, 4976 "eu-west-1": endpoint{}, 4977 "eu-west-2": endpoint{}, 4978 "us-east-1": endpoint{}, 4979 "us-west-2": endpoint{}, 4980 }, 4981 }, 4982 "messaging-chime": service{ 4983 4984 Endpoints: endpoints{ 4985 "us-east-1": endpoint{}, 4986 "us-east-1-fips": endpoint{ 4987 Hostname: "messaging-chime-fips.us-east-1.amazonaws.com", 4988 CredentialScope: credentialScope{ 4989 Region: "us-east-1", 4990 }, 4991 }, 4992 }, 4993 }, 4994 "metering.marketplace": service{ 4995 Defaults: endpoint{ 4996 CredentialScope: credentialScope{ 4997 Service: "aws-marketplace", 4998 }, 4999 }, 5000 Endpoints: endpoints{ 5001 "af-south-1": endpoint{}, 5002 "ap-east-1": endpoint{}, 5003 "ap-northeast-1": endpoint{}, 5004 "ap-northeast-2": endpoint{}, 5005 "ap-northeast-3": endpoint{}, 5006 "ap-south-1": endpoint{}, 5007 "ap-southeast-1": endpoint{}, 5008 "ap-southeast-2": endpoint{}, 5009 "ca-central-1": endpoint{}, 5010 "eu-central-1": endpoint{}, 5011 "eu-north-1": endpoint{}, 5012 "eu-south-1": endpoint{}, 5013 "eu-west-1": endpoint{}, 5014 "eu-west-2": endpoint{}, 5015 "eu-west-3": endpoint{}, 5016 "me-south-1": endpoint{}, 5017 "sa-east-1": endpoint{}, 5018 "us-east-1": endpoint{}, 5019 "us-east-2": endpoint{}, 5020 "us-west-1": endpoint{}, 5021 "us-west-2": endpoint{}, 5022 }, 5023 }, 5024 "mgh": service{ 5025 5026 Endpoints: endpoints{ 5027 "ap-northeast-1": endpoint{}, 5028 "ap-southeast-2": endpoint{}, 5029 "eu-central-1": endpoint{}, 5030 "eu-west-1": endpoint{}, 5031 "eu-west-2": endpoint{}, 5032 "us-east-1": endpoint{}, 5033 "us-west-2": endpoint{}, 5034 }, 5035 }, 5036 "mobileanalytics": service{ 5037 5038 Endpoints: endpoints{ 5039 "us-east-1": endpoint{}, 5040 }, 5041 }, 5042 "models-v2-lex": service{ 5043 5044 Endpoints: endpoints{ 5045 "af-south-1": endpoint{}, 5046 "ap-northeast-1": endpoint{}, 5047 "ap-northeast-2": endpoint{}, 5048 "ap-southeast-1": endpoint{}, 5049 "ap-southeast-2": endpoint{}, 5050 "ca-central-1": endpoint{}, 5051 "eu-central-1": endpoint{}, 5052 "eu-west-1": endpoint{}, 5053 "eu-west-2": endpoint{}, 5054 "us-east-1": endpoint{}, 5055 "us-west-2": endpoint{}, 5056 }, 5057 }, 5058 "models.lex": service{ 5059 Defaults: endpoint{ 5060 CredentialScope: credentialScope{ 5061 Service: "lex", 5062 }, 5063 }, 5064 Endpoints: endpoints{ 5065 "ap-northeast-1": endpoint{}, 5066 "ap-southeast-1": endpoint{}, 5067 "ap-southeast-2": endpoint{}, 5068 "eu-central-1": endpoint{}, 5069 "eu-west-1": endpoint{}, 5070 "eu-west-2": endpoint{}, 5071 "us-east-1": endpoint{}, 5072 "us-east-1-fips": endpoint{ 5073 Hostname: "models-fips.lex.us-east-1.amazonaws.com", 5074 CredentialScope: credentialScope{ 5075 Region: "us-east-1", 5076 }, 5077 }, 5078 "us-west-2": endpoint{}, 5079 "us-west-2-fips": endpoint{ 5080 Hostname: "models-fips.lex.us-west-2.amazonaws.com", 5081 CredentialScope: credentialScope{ 5082 Region: "us-west-2", 5083 }, 5084 }, 5085 }, 5086 }, 5087 "monitoring": service{ 5088 Defaults: endpoint{ 5089 Protocols: []string{"http", "https"}, 5090 }, 5091 Endpoints: endpoints{ 5092 "af-south-1": endpoint{}, 5093 "ap-east-1": endpoint{}, 5094 "ap-northeast-1": endpoint{}, 5095 "ap-northeast-2": endpoint{}, 5096 "ap-northeast-3": endpoint{}, 5097 "ap-south-1": endpoint{}, 5098 "ap-southeast-1": endpoint{}, 5099 "ap-southeast-2": endpoint{}, 5100 "ca-central-1": endpoint{}, 5101 "eu-central-1": endpoint{}, 5102 "eu-north-1": endpoint{}, 5103 "eu-south-1": endpoint{}, 5104 "eu-west-1": endpoint{}, 5105 "eu-west-2": endpoint{}, 5106 "eu-west-3": endpoint{}, 5107 "fips-us-east-1": endpoint{ 5108 Hostname: "monitoring-fips.us-east-1.amazonaws.com", 5109 CredentialScope: credentialScope{ 5110 Region: "us-east-1", 5111 }, 5112 }, 5113 "fips-us-east-2": endpoint{ 5114 Hostname: "monitoring-fips.us-east-2.amazonaws.com", 5115 CredentialScope: credentialScope{ 5116 Region: "us-east-2", 5117 }, 5118 }, 5119 "fips-us-west-1": endpoint{ 5120 Hostname: "monitoring-fips.us-west-1.amazonaws.com", 5121 CredentialScope: credentialScope{ 5122 Region: "us-west-1", 5123 }, 5124 }, 5125 "fips-us-west-2": endpoint{ 5126 Hostname: "monitoring-fips.us-west-2.amazonaws.com", 5127 CredentialScope: credentialScope{ 5128 Region: "us-west-2", 5129 }, 5130 }, 5131 "me-south-1": endpoint{}, 5132 "sa-east-1": endpoint{}, 5133 "us-east-1": endpoint{}, 5134 "us-east-2": endpoint{}, 5135 "us-west-1": endpoint{}, 5136 "us-west-2": endpoint{}, 5137 }, 5138 }, 5139 "mq": service{ 5140 5141 Endpoints: endpoints{ 5142 "ap-east-1": endpoint{}, 5143 "ap-northeast-1": endpoint{}, 5144 "ap-northeast-2": endpoint{}, 5145 "ap-northeast-3": endpoint{}, 5146 "ap-south-1": endpoint{}, 5147 "ap-southeast-1": endpoint{}, 5148 "ap-southeast-2": endpoint{}, 5149 "ca-central-1": endpoint{}, 5150 "eu-central-1": endpoint{}, 5151 "eu-north-1": endpoint{}, 5152 "eu-south-1": endpoint{}, 5153 "eu-west-1": endpoint{}, 5154 "eu-west-2": endpoint{}, 5155 "eu-west-3": endpoint{}, 5156 "fips-us-east-1": endpoint{ 5157 Hostname: "mq-fips.us-east-1.amazonaws.com", 5158 CredentialScope: credentialScope{ 5159 Region: "us-east-1", 5160 }, 5161 }, 5162 "fips-us-east-2": endpoint{ 5163 Hostname: "mq-fips.us-east-2.amazonaws.com", 5164 CredentialScope: credentialScope{ 5165 Region: "us-east-2", 5166 }, 5167 }, 5168 "fips-us-west-1": endpoint{ 5169 Hostname: "mq-fips.us-west-1.amazonaws.com", 5170 CredentialScope: credentialScope{ 5171 Region: "us-west-1", 5172 }, 5173 }, 5174 "fips-us-west-2": endpoint{ 5175 Hostname: "mq-fips.us-west-2.amazonaws.com", 5176 CredentialScope: credentialScope{ 5177 Region: "us-west-2", 5178 }, 5179 }, 5180 "me-south-1": endpoint{}, 5181 "sa-east-1": endpoint{}, 5182 "us-east-1": endpoint{}, 5183 "us-east-2": endpoint{}, 5184 "us-west-1": endpoint{}, 5185 "us-west-2": endpoint{}, 5186 }, 5187 }, 5188 "mturk-requester": service{ 5189 IsRegionalized: boxedFalse, 5190 5191 Endpoints: endpoints{ 5192 "sandbox": endpoint{ 5193 Hostname: "mturk-requester-sandbox.us-east-1.amazonaws.com", 5194 }, 5195 "us-east-1": endpoint{}, 5196 }, 5197 }, 5198 "neptune": service{ 5199 5200 Endpoints: endpoints{ 5201 "ap-east-1": endpoint{ 5202 Hostname: "rds.ap-east-1.amazonaws.com", 5203 CredentialScope: credentialScope{ 5204 Region: "ap-east-1", 5205 }, 5206 }, 5207 "ap-northeast-1": endpoint{ 5208 Hostname: "rds.ap-northeast-1.amazonaws.com", 5209 CredentialScope: credentialScope{ 5210 Region: "ap-northeast-1", 5211 }, 5212 }, 5213 "ap-northeast-2": endpoint{ 5214 Hostname: "rds.ap-northeast-2.amazonaws.com", 5215 CredentialScope: credentialScope{ 5216 Region: "ap-northeast-2", 5217 }, 5218 }, 5219 "ap-south-1": endpoint{ 5220 Hostname: "rds.ap-south-1.amazonaws.com", 5221 CredentialScope: credentialScope{ 5222 Region: "ap-south-1", 5223 }, 5224 }, 5225 "ap-southeast-1": endpoint{ 5226 Hostname: "rds.ap-southeast-1.amazonaws.com", 5227 CredentialScope: credentialScope{ 5228 Region: "ap-southeast-1", 5229 }, 5230 }, 5231 "ap-southeast-2": endpoint{ 5232 Hostname: "rds.ap-southeast-2.amazonaws.com", 5233 CredentialScope: credentialScope{ 5234 Region: "ap-southeast-2", 5235 }, 5236 }, 5237 "ca-central-1": endpoint{ 5238 Hostname: "rds.ca-central-1.amazonaws.com", 5239 CredentialScope: credentialScope{ 5240 Region: "ca-central-1", 5241 }, 5242 }, 5243 "eu-central-1": endpoint{ 5244 Hostname: "rds.eu-central-1.amazonaws.com", 5245 CredentialScope: credentialScope{ 5246 Region: "eu-central-1", 5247 }, 5248 }, 5249 "eu-north-1": endpoint{ 5250 Hostname: "rds.eu-north-1.amazonaws.com", 5251 CredentialScope: credentialScope{ 5252 Region: "eu-north-1", 5253 }, 5254 }, 5255 "eu-west-1": endpoint{ 5256 Hostname: "rds.eu-west-1.amazonaws.com", 5257 CredentialScope: credentialScope{ 5258 Region: "eu-west-1", 5259 }, 5260 }, 5261 "eu-west-2": endpoint{ 5262 Hostname: "rds.eu-west-2.amazonaws.com", 5263 CredentialScope: credentialScope{ 5264 Region: "eu-west-2", 5265 }, 5266 }, 5267 "eu-west-3": endpoint{ 5268 Hostname: "rds.eu-west-3.amazonaws.com", 5269 CredentialScope: credentialScope{ 5270 Region: "eu-west-3", 5271 }, 5272 }, 5273 "me-south-1": endpoint{ 5274 Hostname: "rds.me-south-1.amazonaws.com", 5275 CredentialScope: credentialScope{ 5276 Region: "me-south-1", 5277 }, 5278 }, 5279 "sa-east-1": endpoint{ 5280 Hostname: "rds.sa-east-1.amazonaws.com", 5281 CredentialScope: credentialScope{ 5282 Region: "sa-east-1", 5283 }, 5284 }, 5285 "us-east-1": endpoint{ 5286 Hostname: "rds.us-east-1.amazonaws.com", 5287 CredentialScope: credentialScope{ 5288 Region: "us-east-1", 5289 }, 5290 }, 5291 "us-east-2": endpoint{ 5292 Hostname: "rds.us-east-2.amazonaws.com", 5293 CredentialScope: credentialScope{ 5294 Region: "us-east-2", 5295 }, 5296 }, 5297 "us-west-1": endpoint{ 5298 Hostname: "rds.us-west-1.amazonaws.com", 5299 CredentialScope: credentialScope{ 5300 Region: "us-west-1", 5301 }, 5302 }, 5303 "us-west-2": endpoint{ 5304 Hostname: "rds.us-west-2.amazonaws.com", 5305 CredentialScope: credentialScope{ 5306 Region: "us-west-2", 5307 }, 5308 }, 5309 }, 5310 }, 5311 "network-firewall": service{ 5312 5313 Endpoints: endpoints{ 5314 "af-south-1": endpoint{}, 5315 "ap-east-1": endpoint{}, 5316 "ap-northeast-1": endpoint{}, 5317 "ap-northeast-2": endpoint{}, 5318 "ap-northeast-3": endpoint{}, 5319 "ap-south-1": endpoint{}, 5320 "ap-southeast-1": endpoint{}, 5321 "ap-southeast-2": endpoint{}, 5322 "ca-central-1": endpoint{}, 5323 "eu-central-1": endpoint{}, 5324 "eu-north-1": endpoint{}, 5325 "eu-south-1": endpoint{}, 5326 "eu-west-1": endpoint{}, 5327 "eu-west-2": endpoint{}, 5328 "eu-west-3": endpoint{}, 5329 "fips-ca-central-1": endpoint{ 5330 Hostname: "network-firewall-fips.ca-central-1.amazonaws.com", 5331 CredentialScope: credentialScope{ 5332 Region: "ca-central-1", 5333 }, 5334 }, 5335 "fips-us-east-1": endpoint{ 5336 Hostname: "network-firewall-fips.us-east-1.amazonaws.com", 5337 CredentialScope: credentialScope{ 5338 Region: "us-east-1", 5339 }, 5340 }, 5341 "fips-us-east-2": endpoint{ 5342 Hostname: "network-firewall-fips.us-east-2.amazonaws.com", 5343 CredentialScope: credentialScope{ 5344 Region: "us-east-2", 5345 }, 5346 }, 5347 "fips-us-west-1": endpoint{ 5348 Hostname: "network-firewall-fips.us-west-1.amazonaws.com", 5349 CredentialScope: credentialScope{ 5350 Region: "us-west-1", 5351 }, 5352 }, 5353 "fips-us-west-2": endpoint{ 5354 Hostname: "network-firewall-fips.us-west-2.amazonaws.com", 5355 CredentialScope: credentialScope{ 5356 Region: "us-west-2", 5357 }, 5358 }, 5359 "me-south-1": endpoint{}, 5360 "sa-east-1": endpoint{}, 5361 "us-east-1": endpoint{}, 5362 "us-east-2": endpoint{}, 5363 "us-west-1": endpoint{}, 5364 "us-west-2": endpoint{}, 5365 }, 5366 }, 5367 "oidc": service{ 5368 5369 Endpoints: endpoints{ 5370 "ap-northeast-1": endpoint{ 5371 Hostname: "oidc.ap-northeast-1.amazonaws.com", 5372 CredentialScope: credentialScope{ 5373 Region: "ap-northeast-1", 5374 }, 5375 }, 5376 "ap-northeast-2": endpoint{ 5377 Hostname: "oidc.ap-northeast-2.amazonaws.com", 5378 CredentialScope: credentialScope{ 5379 Region: "ap-northeast-2", 5380 }, 5381 }, 5382 "ap-south-1": endpoint{ 5383 Hostname: "oidc.ap-south-1.amazonaws.com", 5384 CredentialScope: credentialScope{ 5385 Region: "ap-south-1", 5386 }, 5387 }, 5388 "ap-southeast-1": endpoint{ 5389 Hostname: "oidc.ap-southeast-1.amazonaws.com", 5390 CredentialScope: credentialScope{ 5391 Region: "ap-southeast-1", 5392 }, 5393 }, 5394 "ap-southeast-2": endpoint{ 5395 Hostname: "oidc.ap-southeast-2.amazonaws.com", 5396 CredentialScope: credentialScope{ 5397 Region: "ap-southeast-2", 5398 }, 5399 }, 5400 "ca-central-1": endpoint{ 5401 Hostname: "oidc.ca-central-1.amazonaws.com", 5402 CredentialScope: credentialScope{ 5403 Region: "ca-central-1", 5404 }, 5405 }, 5406 "eu-central-1": endpoint{ 5407 Hostname: "oidc.eu-central-1.amazonaws.com", 5408 CredentialScope: credentialScope{ 5409 Region: "eu-central-1", 5410 }, 5411 }, 5412 "eu-north-1": endpoint{ 5413 Hostname: "oidc.eu-north-1.amazonaws.com", 5414 CredentialScope: credentialScope{ 5415 Region: "eu-north-1", 5416 }, 5417 }, 5418 "eu-west-1": endpoint{ 5419 Hostname: "oidc.eu-west-1.amazonaws.com", 5420 CredentialScope: credentialScope{ 5421 Region: "eu-west-1", 5422 }, 5423 }, 5424 "eu-west-2": endpoint{ 5425 Hostname: "oidc.eu-west-2.amazonaws.com", 5426 CredentialScope: credentialScope{ 5427 Region: "eu-west-2", 5428 }, 5429 }, 5430 "eu-west-3": endpoint{ 5431 Hostname: "oidc.eu-west-3.amazonaws.com", 5432 CredentialScope: credentialScope{ 5433 Region: "eu-west-3", 5434 }, 5435 }, 5436 "sa-east-1": endpoint{ 5437 Hostname: "oidc.sa-east-1.amazonaws.com", 5438 CredentialScope: credentialScope{ 5439 Region: "sa-east-1", 5440 }, 5441 }, 5442 "us-east-1": endpoint{ 5443 Hostname: "oidc.us-east-1.amazonaws.com", 5444 CredentialScope: credentialScope{ 5445 Region: "us-east-1", 5446 }, 5447 }, 5448 "us-east-2": endpoint{ 5449 Hostname: "oidc.us-east-2.amazonaws.com", 5450 CredentialScope: credentialScope{ 5451 Region: "us-east-2", 5452 }, 5453 }, 5454 "us-west-2": endpoint{ 5455 Hostname: "oidc.us-west-2.amazonaws.com", 5456 CredentialScope: credentialScope{ 5457 Region: "us-west-2", 5458 }, 5459 }, 5460 }, 5461 }, 5462 "opsworks": service{ 5463 5464 Endpoints: endpoints{ 5465 "ap-northeast-1": endpoint{}, 5466 "ap-northeast-2": endpoint{}, 5467 "ap-south-1": endpoint{}, 5468 "ap-southeast-1": endpoint{}, 5469 "ap-southeast-2": endpoint{}, 5470 "ca-central-1": endpoint{}, 5471 "eu-central-1": endpoint{}, 5472 "eu-west-1": endpoint{}, 5473 "eu-west-2": endpoint{}, 5474 "eu-west-3": endpoint{}, 5475 "sa-east-1": endpoint{}, 5476 "us-east-1": endpoint{}, 5477 "us-east-2": endpoint{}, 5478 "us-west-1": endpoint{}, 5479 "us-west-2": endpoint{}, 5480 }, 5481 }, 5482 "opsworks-cm": service{ 5483 5484 Endpoints: endpoints{ 5485 "ap-northeast-1": endpoint{}, 5486 "ap-southeast-1": endpoint{}, 5487 "ap-southeast-2": endpoint{}, 5488 "eu-central-1": endpoint{}, 5489 "eu-west-1": endpoint{}, 5490 "us-east-1": endpoint{}, 5491 "us-east-2": endpoint{}, 5492 "us-west-1": endpoint{}, 5493 "us-west-2": endpoint{}, 5494 }, 5495 }, 5496 "organizations": service{ 5497 PartitionEndpoint: "aws-global", 5498 IsRegionalized: boxedFalse, 5499 5500 Endpoints: endpoints{ 5501 "aws-global": endpoint{ 5502 Hostname: "organizations.us-east-1.amazonaws.com", 5503 CredentialScope: credentialScope{ 5504 Region: "us-east-1", 5505 }, 5506 }, 5507 "fips-aws-global": endpoint{ 5508 Hostname: "organizations-fips.us-east-1.amazonaws.com", 5509 CredentialScope: credentialScope{ 5510 Region: "us-east-1", 5511 }, 5512 }, 5513 }, 5514 }, 5515 "outposts": service{ 5516 5517 Endpoints: endpoints{ 5518 "af-south-1": endpoint{}, 5519 "ap-east-1": endpoint{}, 5520 "ap-northeast-1": endpoint{}, 5521 "ap-northeast-2": endpoint{}, 5522 "ap-northeast-3": endpoint{}, 5523 "ap-south-1": endpoint{}, 5524 "ap-southeast-1": endpoint{}, 5525 "ap-southeast-2": endpoint{}, 5526 "ca-central-1": endpoint{}, 5527 "eu-central-1": endpoint{}, 5528 "eu-north-1": endpoint{}, 5529 "eu-south-1": endpoint{}, 5530 "eu-west-1": endpoint{}, 5531 "eu-west-2": endpoint{}, 5532 "eu-west-3": endpoint{}, 5533 "fips-ca-central-1": endpoint{ 5534 Hostname: "outposts-fips.ca-central-1.amazonaws.com", 5535 CredentialScope: credentialScope{ 5536 Region: "ca-central-1", 5537 }, 5538 }, 5539 "fips-us-east-1": endpoint{ 5540 Hostname: "outposts-fips.us-east-1.amazonaws.com", 5541 CredentialScope: credentialScope{ 5542 Region: "us-east-1", 5543 }, 5544 }, 5545 "fips-us-east-2": endpoint{ 5546 Hostname: "outposts-fips.us-east-2.amazonaws.com", 5547 CredentialScope: credentialScope{ 5548 Region: "us-east-2", 5549 }, 5550 }, 5551 "fips-us-west-1": endpoint{ 5552 Hostname: "outposts-fips.us-west-1.amazonaws.com", 5553 CredentialScope: credentialScope{ 5554 Region: "us-west-1", 5555 }, 5556 }, 5557 "fips-us-west-2": endpoint{ 5558 Hostname: "outposts-fips.us-west-2.amazonaws.com", 5559 CredentialScope: credentialScope{ 5560 Region: "us-west-2", 5561 }, 5562 }, 5563 "me-south-1": endpoint{}, 5564 "sa-east-1": endpoint{}, 5565 "us-east-1": endpoint{}, 5566 "us-east-2": endpoint{}, 5567 "us-west-1": endpoint{}, 5568 "us-west-2": endpoint{}, 5569 }, 5570 }, 5571 "personalize": service{ 5572 5573 Endpoints: endpoints{ 5574 "ap-northeast-1": endpoint{}, 5575 "ap-northeast-2": endpoint{}, 5576 "ap-south-1": endpoint{}, 5577 "ap-southeast-1": endpoint{}, 5578 "ap-southeast-2": endpoint{}, 5579 "ca-central-1": endpoint{}, 5580 "eu-central-1": endpoint{}, 5581 "eu-west-1": endpoint{}, 5582 "us-east-1": endpoint{}, 5583 "us-east-2": endpoint{}, 5584 "us-west-2": endpoint{}, 5585 }, 5586 }, 5587 "pinpoint": service{ 5588 Defaults: endpoint{ 5589 CredentialScope: credentialScope{ 5590 Service: "mobiletargeting", 5591 }, 5592 }, 5593 Endpoints: endpoints{ 5594 "ap-northeast-1": endpoint{}, 5595 "ap-northeast-2": endpoint{}, 5596 "ap-south-1": endpoint{}, 5597 "ap-southeast-1": endpoint{}, 5598 "ap-southeast-2": endpoint{}, 5599 "ca-central-1": endpoint{}, 5600 "eu-central-1": endpoint{}, 5601 "eu-west-1": endpoint{}, 5602 "eu-west-2": endpoint{}, 5603 "fips-us-east-1": endpoint{ 5604 Hostname: "pinpoint-fips.us-east-1.amazonaws.com", 5605 CredentialScope: credentialScope{ 5606 Region: "us-east-1", 5607 }, 5608 }, 5609 "fips-us-west-2": endpoint{ 5610 Hostname: "pinpoint-fips.us-west-2.amazonaws.com", 5611 CredentialScope: credentialScope{ 5612 Region: "us-west-2", 5613 }, 5614 }, 5615 "us-east-1": endpoint{ 5616 Hostname: "pinpoint.us-east-1.amazonaws.com", 5617 CredentialScope: credentialScope{ 5618 Region: "us-east-1", 5619 }, 5620 }, 5621 "us-west-2": endpoint{ 5622 Hostname: "pinpoint.us-west-2.amazonaws.com", 5623 CredentialScope: credentialScope{ 5624 Region: "us-west-2", 5625 }, 5626 }, 5627 }, 5628 }, 5629 "polly": service{ 5630 5631 Endpoints: endpoints{ 5632 "af-south-1": endpoint{}, 5633 "ap-east-1": endpoint{}, 5634 "ap-northeast-1": endpoint{}, 5635 "ap-northeast-2": endpoint{}, 5636 "ap-south-1": endpoint{}, 5637 "ap-southeast-1": endpoint{}, 5638 "ap-southeast-2": endpoint{}, 5639 "ca-central-1": endpoint{}, 5640 "eu-central-1": endpoint{}, 5641 "eu-north-1": endpoint{}, 5642 "eu-west-1": endpoint{}, 5643 "eu-west-2": endpoint{}, 5644 "eu-west-3": endpoint{}, 5645 "fips-us-east-1": endpoint{ 5646 Hostname: "polly-fips.us-east-1.amazonaws.com", 5647 CredentialScope: credentialScope{ 5648 Region: "us-east-1", 5649 }, 5650 }, 5651 "fips-us-east-2": endpoint{ 5652 Hostname: "polly-fips.us-east-2.amazonaws.com", 5653 CredentialScope: credentialScope{ 5654 Region: "us-east-2", 5655 }, 5656 }, 5657 "fips-us-west-1": endpoint{ 5658 Hostname: "polly-fips.us-west-1.amazonaws.com", 5659 CredentialScope: credentialScope{ 5660 Region: "us-west-1", 5661 }, 5662 }, 5663 "fips-us-west-2": endpoint{ 5664 Hostname: "polly-fips.us-west-2.amazonaws.com", 5665 CredentialScope: credentialScope{ 5666 Region: "us-west-2", 5667 }, 5668 }, 5669 "me-south-1": endpoint{}, 5670 "sa-east-1": endpoint{}, 5671 "us-east-1": endpoint{}, 5672 "us-east-2": endpoint{}, 5673 "us-west-1": endpoint{}, 5674 "us-west-2": endpoint{}, 5675 }, 5676 }, 5677 "portal.sso": service{ 5678 5679 Endpoints: endpoints{ 5680 "ap-southeast-1": endpoint{ 5681 Hostname: "portal.sso.ap-southeast-1.amazonaws.com", 5682 CredentialScope: credentialScope{ 5683 Region: "ap-southeast-1", 5684 }, 5685 }, 5686 "ap-southeast-2": endpoint{ 5687 Hostname: "portal.sso.ap-southeast-2.amazonaws.com", 5688 CredentialScope: credentialScope{ 5689 Region: "ap-southeast-2", 5690 }, 5691 }, 5692 "ca-central-1": endpoint{ 5693 Hostname: "portal.sso.ca-central-1.amazonaws.com", 5694 CredentialScope: credentialScope{ 5695 Region: "ca-central-1", 5696 }, 5697 }, 5698 "eu-central-1": endpoint{ 5699 Hostname: "portal.sso.eu-central-1.amazonaws.com", 5700 CredentialScope: credentialScope{ 5701 Region: "eu-central-1", 5702 }, 5703 }, 5704 "eu-west-1": endpoint{ 5705 Hostname: "portal.sso.eu-west-1.amazonaws.com", 5706 CredentialScope: credentialScope{ 5707 Region: "eu-west-1", 5708 }, 5709 }, 5710 "eu-west-2": endpoint{ 5711 Hostname: "portal.sso.eu-west-2.amazonaws.com", 5712 CredentialScope: credentialScope{ 5713 Region: "eu-west-2", 5714 }, 5715 }, 5716 "us-east-1": endpoint{ 5717 Hostname: "portal.sso.us-east-1.amazonaws.com", 5718 CredentialScope: credentialScope{ 5719 Region: "us-east-1", 5720 }, 5721 }, 5722 "us-east-2": endpoint{ 5723 Hostname: "portal.sso.us-east-2.amazonaws.com", 5724 CredentialScope: credentialScope{ 5725 Region: "us-east-2", 5726 }, 5727 }, 5728 "us-west-2": endpoint{ 5729 Hostname: "portal.sso.us-west-2.amazonaws.com", 5730 CredentialScope: credentialScope{ 5731 Region: "us-west-2", 5732 }, 5733 }, 5734 }, 5735 }, 5736 "profile": service{ 5737 5738 Endpoints: endpoints{ 5739 "ap-northeast-1": endpoint{}, 5740 "ap-southeast-1": endpoint{}, 5741 "ap-southeast-2": endpoint{}, 5742 "ca-central-1": endpoint{}, 5743 "eu-central-1": endpoint{}, 5744 "eu-west-2": endpoint{}, 5745 "us-east-1": endpoint{}, 5746 "us-west-2": endpoint{}, 5747 }, 5748 }, 5749 "projects.iot1click": service{ 5750 5751 Endpoints: endpoints{ 5752 "ap-northeast-1": endpoint{}, 5753 "eu-central-1": endpoint{}, 5754 "eu-west-1": endpoint{}, 5755 "eu-west-2": endpoint{}, 5756 "us-east-1": endpoint{}, 5757 "us-east-2": endpoint{}, 5758 "us-west-2": endpoint{}, 5759 }, 5760 }, 5761 "qldb": service{ 5762 5763 Endpoints: endpoints{ 5764 "ap-northeast-1": endpoint{}, 5765 "ap-northeast-2": endpoint{}, 5766 "ap-southeast-1": endpoint{}, 5767 "ap-southeast-2": endpoint{}, 5768 "eu-central-1": endpoint{}, 5769 "eu-west-1": endpoint{}, 5770 "eu-west-2": endpoint{}, 5771 "fips-us-east-1": endpoint{ 5772 Hostname: "qldb-fips.us-east-1.amazonaws.com", 5773 CredentialScope: credentialScope{ 5774 Region: "us-east-1", 5775 }, 5776 }, 5777 "fips-us-east-2": endpoint{ 5778 Hostname: "qldb-fips.us-east-2.amazonaws.com", 5779 CredentialScope: credentialScope{ 5780 Region: "us-east-2", 5781 }, 5782 }, 5783 "fips-us-west-2": endpoint{ 5784 Hostname: "qldb-fips.us-west-2.amazonaws.com", 5785 CredentialScope: credentialScope{ 5786 Region: "us-west-2", 5787 }, 5788 }, 5789 "us-east-1": endpoint{}, 5790 "us-east-2": endpoint{}, 5791 "us-west-2": endpoint{}, 5792 }, 5793 }, 5794 "quicksight": service{ 5795 5796 Endpoints: endpoints{ 5797 "ap-northeast-1": endpoint{}, 5798 "ap-northeast-2": endpoint{}, 5799 "ap-south-1": endpoint{}, 5800 "ap-southeast-1": endpoint{}, 5801 "ap-southeast-2": endpoint{}, 5802 "api": endpoint{}, 5803 "ca-central-1": endpoint{}, 5804 "eu-central-1": endpoint{}, 5805 "eu-west-1": endpoint{}, 5806 "eu-west-2": endpoint{}, 5807 "sa-east-1": endpoint{}, 5808 "us-east-1": endpoint{}, 5809 "us-east-2": endpoint{}, 5810 "us-west-2": endpoint{}, 5811 }, 5812 }, 5813 "ram": service{ 5814 5815 Endpoints: endpoints{ 5816 "af-south-1": endpoint{}, 5817 "ap-east-1": endpoint{}, 5818 "ap-northeast-1": endpoint{}, 5819 "ap-northeast-2": endpoint{}, 5820 "ap-northeast-3": endpoint{}, 5821 "ap-south-1": endpoint{}, 5822 "ap-southeast-1": endpoint{}, 5823 "ap-southeast-2": endpoint{}, 5824 "ca-central-1": endpoint{}, 5825 "eu-central-1": endpoint{}, 5826 "eu-north-1": endpoint{}, 5827 "eu-south-1": endpoint{}, 5828 "eu-west-1": endpoint{}, 5829 "eu-west-2": endpoint{}, 5830 "eu-west-3": endpoint{}, 5831 "fips-ca-central-1": endpoint{ 5832 Hostname: "ram-fips.ca-central-1.amazonaws.com", 5833 CredentialScope: credentialScope{ 5834 Region: "ca-central-1", 5835 }, 5836 }, 5837 "fips-us-east-1": endpoint{ 5838 Hostname: "ram-fips.us-east-1.amazonaws.com", 5839 CredentialScope: credentialScope{ 5840 Region: "us-east-1", 5841 }, 5842 }, 5843 "fips-us-east-2": endpoint{ 5844 Hostname: "ram-fips.us-east-2.amazonaws.com", 5845 CredentialScope: credentialScope{ 5846 Region: "us-east-2", 5847 }, 5848 }, 5849 "fips-us-west-1": endpoint{ 5850 Hostname: "ram-fips.us-west-1.amazonaws.com", 5851 CredentialScope: credentialScope{ 5852 Region: "us-west-1", 5853 }, 5854 }, 5855 "fips-us-west-2": endpoint{ 5856 Hostname: "ram-fips.us-west-2.amazonaws.com", 5857 CredentialScope: credentialScope{ 5858 Region: "us-west-2", 5859 }, 5860 }, 5861 "me-south-1": endpoint{}, 5862 "sa-east-1": endpoint{}, 5863 "us-east-1": endpoint{}, 5864 "us-east-2": endpoint{}, 5865 "us-west-1": endpoint{}, 5866 "us-west-2": endpoint{}, 5867 }, 5868 }, 5869 "rds": service{ 5870 5871 Endpoints: endpoints{ 5872 "af-south-1": endpoint{}, 5873 "ap-east-1": endpoint{}, 5874 "ap-northeast-1": endpoint{}, 5875 "ap-northeast-2": endpoint{}, 5876 "ap-northeast-3": endpoint{}, 5877 "ap-south-1": endpoint{}, 5878 "ap-southeast-1": endpoint{}, 5879 "ap-southeast-2": endpoint{}, 5880 "ca-central-1": endpoint{}, 5881 "eu-central-1": endpoint{}, 5882 "eu-north-1": endpoint{}, 5883 "eu-south-1": endpoint{}, 5884 "eu-west-1": endpoint{}, 5885 "eu-west-2": endpoint{}, 5886 "eu-west-3": endpoint{}, 5887 "me-south-1": endpoint{}, 5888 "rds-fips.ca-central-1": endpoint{ 5889 Hostname: "rds-fips.ca-central-1.amazonaws.com", 5890 CredentialScope: credentialScope{ 5891 Region: "ca-central-1", 5892 }, 5893 }, 5894 "rds-fips.us-east-1": endpoint{ 5895 Hostname: "rds-fips.us-east-1.amazonaws.com", 5896 CredentialScope: credentialScope{ 5897 Region: "us-east-1", 5898 }, 5899 }, 5900 "rds-fips.us-east-2": endpoint{ 5901 Hostname: "rds-fips.us-east-2.amazonaws.com", 5902 CredentialScope: credentialScope{ 5903 Region: "us-east-2", 5904 }, 5905 }, 5906 "rds-fips.us-west-1": endpoint{ 5907 Hostname: "rds-fips.us-west-1.amazonaws.com", 5908 CredentialScope: credentialScope{ 5909 Region: "us-west-1", 5910 }, 5911 }, 5912 "rds-fips.us-west-2": endpoint{ 5913 Hostname: "rds-fips.us-west-2.amazonaws.com", 5914 CredentialScope: credentialScope{ 5915 Region: "us-west-2", 5916 }, 5917 }, 5918 "sa-east-1": endpoint{}, 5919 "us-east-1": endpoint{ 5920 SSLCommonName: "{service}.{dnsSuffix}", 5921 }, 5922 "us-east-2": endpoint{}, 5923 "us-west-1": endpoint{}, 5924 "us-west-2": endpoint{}, 5925 }, 5926 }, 5927 "redshift": service{ 5928 5929 Endpoints: endpoints{ 5930 "af-south-1": endpoint{}, 5931 "ap-east-1": endpoint{}, 5932 "ap-northeast-1": endpoint{}, 5933 "ap-northeast-2": endpoint{}, 5934 "ap-northeast-3": endpoint{}, 5935 "ap-south-1": endpoint{}, 5936 "ap-southeast-1": endpoint{}, 5937 "ap-southeast-2": endpoint{}, 5938 "ca-central-1": endpoint{}, 5939 "eu-central-1": endpoint{}, 5940 "eu-north-1": endpoint{}, 5941 "eu-south-1": endpoint{}, 5942 "eu-west-1": endpoint{}, 5943 "eu-west-2": endpoint{}, 5944 "eu-west-3": endpoint{}, 5945 "fips-ca-central-1": endpoint{ 5946 Hostname: "redshift-fips.ca-central-1.amazonaws.com", 5947 CredentialScope: credentialScope{ 5948 Region: "ca-central-1", 5949 }, 5950 }, 5951 "fips-us-east-1": endpoint{ 5952 Hostname: "redshift-fips.us-east-1.amazonaws.com", 5953 CredentialScope: credentialScope{ 5954 Region: "us-east-1", 5955 }, 5956 }, 5957 "fips-us-east-2": endpoint{ 5958 Hostname: "redshift-fips.us-east-2.amazonaws.com", 5959 CredentialScope: credentialScope{ 5960 Region: "us-east-2", 5961 }, 5962 }, 5963 "fips-us-west-1": endpoint{ 5964 Hostname: "redshift-fips.us-west-1.amazonaws.com", 5965 CredentialScope: credentialScope{ 5966 Region: "us-west-1", 5967 }, 5968 }, 5969 "fips-us-west-2": endpoint{ 5970 Hostname: "redshift-fips.us-west-2.amazonaws.com", 5971 CredentialScope: credentialScope{ 5972 Region: "us-west-2", 5973 }, 5974 }, 5975 "me-south-1": endpoint{}, 5976 "sa-east-1": endpoint{}, 5977 "us-east-1": endpoint{}, 5978 "us-east-2": endpoint{}, 5979 "us-west-1": endpoint{}, 5980 "us-west-2": endpoint{}, 5981 }, 5982 }, 5983 "rekognition": service{ 5984 5985 Endpoints: endpoints{ 5986 "ap-northeast-1": endpoint{}, 5987 "ap-northeast-2": endpoint{}, 5988 "ap-south-1": endpoint{}, 5989 "ap-southeast-1": endpoint{}, 5990 "ap-southeast-2": endpoint{}, 5991 "ca-central-1": endpoint{}, 5992 "eu-central-1": endpoint{}, 5993 "eu-west-1": endpoint{}, 5994 "eu-west-2": endpoint{}, 5995 "rekognition-fips.ca-central-1": endpoint{ 5996 Hostname: "rekognition-fips.ca-central-1.amazonaws.com", 5997 CredentialScope: credentialScope{ 5998 Region: "ca-central-1", 5999 }, 6000 }, 6001 "rekognition-fips.us-east-1": endpoint{ 6002 Hostname: "rekognition-fips.us-east-1.amazonaws.com", 6003 CredentialScope: credentialScope{ 6004 Region: "us-east-1", 6005 }, 6006 }, 6007 "rekognition-fips.us-east-2": endpoint{ 6008 Hostname: "rekognition-fips.us-east-2.amazonaws.com", 6009 CredentialScope: credentialScope{ 6010 Region: "us-east-2", 6011 }, 6012 }, 6013 "rekognition-fips.us-west-1": endpoint{ 6014 Hostname: "rekognition-fips.us-west-1.amazonaws.com", 6015 CredentialScope: credentialScope{ 6016 Region: "us-west-1", 6017 }, 6018 }, 6019 "rekognition-fips.us-west-2": endpoint{ 6020 Hostname: "rekognition-fips.us-west-2.amazonaws.com", 6021 CredentialScope: credentialScope{ 6022 Region: "us-west-2", 6023 }, 6024 }, 6025 "us-east-1": endpoint{}, 6026 "us-east-2": endpoint{}, 6027 "us-west-1": endpoint{}, 6028 "us-west-2": endpoint{}, 6029 }, 6030 }, 6031 "resource-groups": service{ 6032 6033 Endpoints: endpoints{ 6034 "af-south-1": endpoint{}, 6035 "ap-east-1": endpoint{}, 6036 "ap-northeast-1": endpoint{}, 6037 "ap-northeast-2": endpoint{}, 6038 "ap-northeast-3": endpoint{}, 6039 "ap-south-1": endpoint{}, 6040 "ap-southeast-1": endpoint{}, 6041 "ap-southeast-2": endpoint{}, 6042 "ca-central-1": endpoint{}, 6043 "eu-central-1": endpoint{}, 6044 "eu-north-1": endpoint{}, 6045 "eu-south-1": endpoint{}, 6046 "eu-west-1": endpoint{}, 6047 "eu-west-2": endpoint{}, 6048 "eu-west-3": endpoint{}, 6049 "fips-us-east-1": endpoint{ 6050 Hostname: "resource-groups-fips.us-east-1.amazonaws.com", 6051 CredentialScope: credentialScope{ 6052 Region: "us-east-1", 6053 }, 6054 }, 6055 "fips-us-east-2": endpoint{ 6056 Hostname: "resource-groups-fips.us-east-2.amazonaws.com", 6057 CredentialScope: credentialScope{ 6058 Region: "us-east-2", 6059 }, 6060 }, 6061 "fips-us-west-1": endpoint{ 6062 Hostname: "resource-groups-fips.us-west-1.amazonaws.com", 6063 CredentialScope: credentialScope{ 6064 Region: "us-west-1", 6065 }, 6066 }, 6067 "fips-us-west-2": endpoint{ 6068 Hostname: "resource-groups-fips.us-west-2.amazonaws.com", 6069 CredentialScope: credentialScope{ 6070 Region: "us-west-2", 6071 }, 6072 }, 6073 "me-south-1": endpoint{}, 6074 "sa-east-1": endpoint{}, 6075 "us-east-1": endpoint{}, 6076 "us-east-2": endpoint{}, 6077 "us-west-1": endpoint{}, 6078 "us-west-2": endpoint{}, 6079 }, 6080 }, 6081 "robomaker": service{ 6082 6083 Endpoints: endpoints{ 6084 "ap-northeast-1": endpoint{}, 6085 "ap-southeast-1": endpoint{}, 6086 "eu-central-1": endpoint{}, 6087 "eu-west-1": endpoint{}, 6088 "us-east-1": endpoint{}, 6089 "us-east-2": endpoint{}, 6090 "us-west-2": endpoint{}, 6091 }, 6092 }, 6093 "route53": service{ 6094 PartitionEndpoint: "aws-global", 6095 IsRegionalized: boxedFalse, 6096 6097 Endpoints: endpoints{ 6098 "aws-global": endpoint{ 6099 Hostname: "route53.amazonaws.com", 6100 CredentialScope: credentialScope{ 6101 Region: "us-east-1", 6102 }, 6103 }, 6104 "fips-aws-global": endpoint{ 6105 Hostname: "route53-fips.amazonaws.com", 6106 CredentialScope: credentialScope{ 6107 Region: "us-east-1", 6108 }, 6109 }, 6110 }, 6111 }, 6112 "route53-recovery-control-config": service{ 6113 6114 Endpoints: endpoints{ 6115 "aws-global": endpoint{ 6116 Hostname: "route53-recovery-control-config.us-west-2.amazonaws.com", 6117 CredentialScope: credentialScope{ 6118 Region: "us-west-2", 6119 }, 6120 }, 6121 }, 6122 }, 6123 "route53domains": service{ 6124 6125 Endpoints: endpoints{ 6126 "us-east-1": endpoint{}, 6127 }, 6128 }, 6129 "route53resolver": service{ 6130 Defaults: endpoint{ 6131 Protocols: []string{"https"}, 6132 }, 6133 Endpoints: endpoints{ 6134 "af-south-1": endpoint{}, 6135 "ap-east-1": endpoint{}, 6136 "ap-northeast-1": endpoint{}, 6137 "ap-northeast-2": endpoint{}, 6138 "ap-northeast-3": endpoint{}, 6139 "ap-south-1": endpoint{}, 6140 "ap-southeast-1": endpoint{}, 6141 "ap-southeast-2": endpoint{}, 6142 "ca-central-1": endpoint{}, 6143 "eu-central-1": endpoint{}, 6144 "eu-north-1": endpoint{}, 6145 "eu-south-1": endpoint{}, 6146 "eu-west-1": endpoint{}, 6147 "eu-west-2": endpoint{}, 6148 "eu-west-3": endpoint{}, 6149 "me-south-1": endpoint{}, 6150 "sa-east-1": endpoint{}, 6151 "us-east-1": endpoint{}, 6152 "us-east-2": endpoint{}, 6153 "us-west-1": endpoint{}, 6154 "us-west-2": endpoint{}, 6155 }, 6156 }, 6157 "runtime-v2-lex": service{ 6158 6159 Endpoints: endpoints{ 6160 "af-south-1": endpoint{}, 6161 "ap-northeast-1": endpoint{}, 6162 "ap-northeast-2": endpoint{}, 6163 "ap-southeast-1": endpoint{}, 6164 "ap-southeast-2": endpoint{}, 6165 "ca-central-1": endpoint{}, 6166 "eu-central-1": endpoint{}, 6167 "eu-west-1": endpoint{}, 6168 "eu-west-2": endpoint{}, 6169 "us-east-1": endpoint{}, 6170 "us-west-2": endpoint{}, 6171 }, 6172 }, 6173 "runtime.lex": service{ 6174 Defaults: endpoint{ 6175 CredentialScope: credentialScope{ 6176 Service: "lex", 6177 }, 6178 }, 6179 Endpoints: endpoints{ 6180 "ap-northeast-1": endpoint{}, 6181 "ap-southeast-1": endpoint{}, 6182 "ap-southeast-2": endpoint{}, 6183 "eu-central-1": endpoint{}, 6184 "eu-west-1": endpoint{}, 6185 "eu-west-2": endpoint{}, 6186 "us-east-1": endpoint{}, 6187 "us-east-1-fips": endpoint{ 6188 Hostname: "runtime-fips.lex.us-east-1.amazonaws.com", 6189 CredentialScope: credentialScope{ 6190 Region: "us-east-1", 6191 }, 6192 }, 6193 "us-west-2": endpoint{}, 6194 "us-west-2-fips": endpoint{ 6195 Hostname: "runtime-fips.lex.us-west-2.amazonaws.com", 6196 CredentialScope: credentialScope{ 6197 Region: "us-west-2", 6198 }, 6199 }, 6200 }, 6201 }, 6202 "runtime.sagemaker": service{ 6203 6204 Endpoints: endpoints{ 6205 "af-south-1": endpoint{}, 6206 "ap-east-1": endpoint{}, 6207 "ap-northeast-1": endpoint{}, 6208 "ap-northeast-2": endpoint{}, 6209 "ap-northeast-3": endpoint{}, 6210 "ap-south-1": endpoint{}, 6211 "ap-southeast-1": endpoint{}, 6212 "ap-southeast-2": endpoint{}, 6213 "ca-central-1": endpoint{}, 6214 "eu-central-1": endpoint{}, 6215 "eu-north-1": endpoint{}, 6216 "eu-south-1": endpoint{}, 6217 "eu-west-1": endpoint{}, 6218 "eu-west-2": endpoint{}, 6219 "eu-west-3": endpoint{}, 6220 "me-south-1": endpoint{}, 6221 "sa-east-1": endpoint{}, 6222 "us-east-1": endpoint{}, 6223 "us-east-1-fips": endpoint{ 6224 Hostname: "runtime-fips.sagemaker.us-east-1.amazonaws.com", 6225 CredentialScope: credentialScope{ 6226 Region: "us-east-1", 6227 }, 6228 }, 6229 "us-east-2": endpoint{}, 6230 "us-east-2-fips": endpoint{ 6231 Hostname: "runtime-fips.sagemaker.us-east-2.amazonaws.com", 6232 CredentialScope: credentialScope{ 6233 Region: "us-east-2", 6234 }, 6235 }, 6236 "us-west-1": endpoint{}, 6237 "us-west-1-fips": endpoint{ 6238 Hostname: "runtime-fips.sagemaker.us-west-1.amazonaws.com", 6239 CredentialScope: credentialScope{ 6240 Region: "us-west-1", 6241 }, 6242 }, 6243 "us-west-2": endpoint{}, 6244 "us-west-2-fips": endpoint{ 6245 Hostname: "runtime-fips.sagemaker.us-west-2.amazonaws.com", 6246 CredentialScope: credentialScope{ 6247 Region: "us-west-2", 6248 }, 6249 }, 6250 }, 6251 }, 6252 "s3": service{ 6253 PartitionEndpoint: "aws-global", 6254 IsRegionalized: boxedTrue, 6255 Defaults: endpoint{ 6256 Protocols: []string{"http", "https"}, 6257 SignatureVersions: []string{"s3v4"}, 6258 6259 HasDualStack: boxedTrue, 6260 DualStackHostname: "{service}.dualstack.{region}.{dnsSuffix}", 6261 }, 6262 Endpoints: endpoints{ 6263 "accesspoint-af-south-1": endpoint{ 6264 Hostname: "s3-accesspoint.af-south-1.amazonaws.com", 6265 SignatureVersions: []string{"s3v4"}, 6266 }, 6267 "accesspoint-ap-east-1": endpoint{ 6268 Hostname: "s3-accesspoint.ap-east-1.amazonaws.com", 6269 SignatureVersions: []string{"s3v4"}, 6270 }, 6271 "accesspoint-ap-northeast-1": endpoint{ 6272 Hostname: "s3-accesspoint.ap-northeast-1.amazonaws.com", 6273 SignatureVersions: []string{"s3v4"}, 6274 }, 6275 "accesspoint-ap-northeast-2": endpoint{ 6276 Hostname: "s3-accesspoint.ap-northeast-2.amazonaws.com", 6277 SignatureVersions: []string{"s3v4"}, 6278 }, 6279 "accesspoint-ap-northeast-3": endpoint{ 6280 Hostname: "s3-accesspoint.ap-northeast-3.amazonaws.com", 6281 SignatureVersions: []string{"s3v4"}, 6282 }, 6283 "accesspoint-ap-south-1": endpoint{ 6284 Hostname: "s3-accesspoint.ap-south-1.amazonaws.com", 6285 SignatureVersions: []string{"s3v4"}, 6286 }, 6287 "accesspoint-ap-southeast-1": endpoint{ 6288 Hostname: "s3-accesspoint.ap-southeast-1.amazonaws.com", 6289 SignatureVersions: []string{"s3v4"}, 6290 }, 6291 "accesspoint-ap-southeast-2": endpoint{ 6292 Hostname: "s3-accesspoint.ap-southeast-2.amazonaws.com", 6293 SignatureVersions: []string{"s3v4"}, 6294 }, 6295 "accesspoint-ca-central-1": endpoint{ 6296 Hostname: "s3-accesspoint.ca-central-1.amazonaws.com", 6297 SignatureVersions: []string{"s3v4"}, 6298 }, 6299 "accesspoint-eu-central-1": endpoint{ 6300 Hostname: "s3-accesspoint.eu-central-1.amazonaws.com", 6301 SignatureVersions: []string{"s3v4"}, 6302 }, 6303 "accesspoint-eu-north-1": endpoint{ 6304 Hostname: "s3-accesspoint.eu-north-1.amazonaws.com", 6305 SignatureVersions: []string{"s3v4"}, 6306 }, 6307 "accesspoint-eu-south-1": endpoint{ 6308 Hostname: "s3-accesspoint.eu-south-1.amazonaws.com", 6309 SignatureVersions: []string{"s3v4"}, 6310 }, 6311 "accesspoint-eu-west-1": endpoint{ 6312 Hostname: "s3-accesspoint.eu-west-1.amazonaws.com", 6313 SignatureVersions: []string{"s3v4"}, 6314 }, 6315 "accesspoint-eu-west-2": endpoint{ 6316 Hostname: "s3-accesspoint.eu-west-2.amazonaws.com", 6317 SignatureVersions: []string{"s3v4"}, 6318 }, 6319 "accesspoint-eu-west-3": endpoint{ 6320 Hostname: "s3-accesspoint.eu-west-3.amazonaws.com", 6321 SignatureVersions: []string{"s3v4"}, 6322 }, 6323 "accesspoint-me-south-1": endpoint{ 6324 Hostname: "s3-accesspoint.me-south-1.amazonaws.com", 6325 SignatureVersions: []string{"s3v4"}, 6326 }, 6327 "accesspoint-sa-east-1": endpoint{ 6328 Hostname: "s3-accesspoint.sa-east-1.amazonaws.com", 6329 SignatureVersions: []string{"s3v4"}, 6330 }, 6331 "accesspoint-us-east-1": endpoint{ 6332 Hostname: "s3-accesspoint.us-east-1.amazonaws.com", 6333 SignatureVersions: []string{"s3v4"}, 6334 }, 6335 "accesspoint-us-east-2": endpoint{ 6336 Hostname: "s3-accesspoint.us-east-2.amazonaws.com", 6337 SignatureVersions: []string{"s3v4"}, 6338 }, 6339 "accesspoint-us-west-1": endpoint{ 6340 Hostname: "s3-accesspoint.us-west-1.amazonaws.com", 6341 SignatureVersions: []string{"s3v4"}, 6342 }, 6343 "accesspoint-us-west-2": endpoint{ 6344 Hostname: "s3-accesspoint.us-west-2.amazonaws.com", 6345 SignatureVersions: []string{"s3v4"}, 6346 }, 6347 "af-south-1": endpoint{}, 6348 "ap-east-1": endpoint{}, 6349 "ap-northeast-1": endpoint{ 6350 Hostname: "s3.ap-northeast-1.amazonaws.com", 6351 SignatureVersions: []string{"s3", "s3v4"}, 6352 }, 6353 "ap-northeast-2": endpoint{}, 6354 "ap-northeast-3": endpoint{}, 6355 "ap-south-1": endpoint{}, 6356 "ap-southeast-1": endpoint{ 6357 Hostname: "s3.ap-southeast-1.amazonaws.com", 6358 SignatureVersions: []string{"s3", "s3v4"}, 6359 }, 6360 "ap-southeast-2": endpoint{ 6361 Hostname: "s3.ap-southeast-2.amazonaws.com", 6362 SignatureVersions: []string{"s3", "s3v4"}, 6363 }, 6364 "aws-global": endpoint{ 6365 Hostname: "s3.amazonaws.com", 6366 SignatureVersions: []string{"s3", "s3v4"}, 6367 CredentialScope: credentialScope{ 6368 Region: "us-east-1", 6369 }, 6370 }, 6371 "ca-central-1": endpoint{}, 6372 "eu-central-1": endpoint{}, 6373 "eu-north-1": endpoint{}, 6374 "eu-south-1": endpoint{}, 6375 "eu-west-1": endpoint{ 6376 Hostname: "s3.eu-west-1.amazonaws.com", 6377 SignatureVersions: []string{"s3", "s3v4"}, 6378 }, 6379 "eu-west-2": endpoint{}, 6380 "eu-west-3": endpoint{}, 6381 "fips-accesspoint-ca-central-1": endpoint{ 6382 Hostname: "s3-accesspoint-fips.ca-central-1.amazonaws.com", 6383 SignatureVersions: []string{"s3v4"}, 6384 }, 6385 "fips-accesspoint-us-east-1": endpoint{ 6386 Hostname: "s3-accesspoint-fips.us-east-1.amazonaws.com", 6387 SignatureVersions: []string{"s3v4"}, 6388 }, 6389 "fips-accesspoint-us-east-2": endpoint{ 6390 Hostname: "s3-accesspoint-fips.us-east-2.amazonaws.com", 6391 SignatureVersions: []string{"s3v4"}, 6392 }, 6393 "fips-accesspoint-us-west-1": endpoint{ 6394 Hostname: "s3-accesspoint-fips.us-west-1.amazonaws.com", 6395 SignatureVersions: []string{"s3v4"}, 6396 }, 6397 "fips-accesspoint-us-west-2": endpoint{ 6398 Hostname: "s3-accesspoint-fips.us-west-2.amazonaws.com", 6399 SignatureVersions: []string{"s3v4"}, 6400 }, 6401 "me-south-1": endpoint{}, 6402 "s3-external-1": endpoint{ 6403 Hostname: "s3-external-1.amazonaws.com", 6404 SignatureVersions: []string{"s3", "s3v4"}, 6405 CredentialScope: credentialScope{ 6406 Region: "us-east-1", 6407 }, 6408 }, 6409 "sa-east-1": endpoint{ 6410 Hostname: "s3.sa-east-1.amazonaws.com", 6411 SignatureVersions: []string{"s3", "s3v4"}, 6412 }, 6413 "us-east-1": endpoint{ 6414 Hostname: "s3.us-east-1.amazonaws.com", 6415 SignatureVersions: []string{"s3", "s3v4"}, 6416 }, 6417 "us-east-2": endpoint{}, 6418 "us-west-1": endpoint{ 6419 Hostname: "s3.us-west-1.amazonaws.com", 6420 SignatureVersions: []string{"s3", "s3v4"}, 6421 }, 6422 "us-west-2": endpoint{ 6423 Hostname: "s3.us-west-2.amazonaws.com", 6424 SignatureVersions: []string{"s3", "s3v4"}, 6425 }, 6426 }, 6427 }, 6428 "s3-control": service{ 6429 Defaults: endpoint{ 6430 Protocols: []string{"https"}, 6431 SignatureVersions: []string{"s3v4"}, 6432 6433 HasDualStack: boxedTrue, 6434 DualStackHostname: "{service}.dualstack.{region}.{dnsSuffix}", 6435 }, 6436 Endpoints: endpoints{ 6437 "ap-northeast-1": endpoint{ 6438 Hostname: "s3-control.ap-northeast-1.amazonaws.com", 6439 SignatureVersions: []string{"s3v4"}, 6440 CredentialScope: credentialScope{ 6441 Region: "ap-northeast-1", 6442 }, 6443 }, 6444 "ap-northeast-2": endpoint{ 6445 Hostname: "s3-control.ap-northeast-2.amazonaws.com", 6446 SignatureVersions: []string{"s3v4"}, 6447 CredentialScope: credentialScope{ 6448 Region: "ap-northeast-2", 6449 }, 6450 }, 6451 "ap-northeast-3": endpoint{ 6452 Hostname: "s3-control.ap-northeast-3.amazonaws.com", 6453 SignatureVersions: []string{"s3v4"}, 6454 CredentialScope: credentialScope{ 6455 Region: "ap-northeast-3", 6456 }, 6457 }, 6458 "ap-south-1": endpoint{ 6459 Hostname: "s3-control.ap-south-1.amazonaws.com", 6460 SignatureVersions: []string{"s3v4"}, 6461 CredentialScope: credentialScope{ 6462 Region: "ap-south-1", 6463 }, 6464 }, 6465 "ap-southeast-1": endpoint{ 6466 Hostname: "s3-control.ap-southeast-1.amazonaws.com", 6467 SignatureVersions: []string{"s3v4"}, 6468 CredentialScope: credentialScope{ 6469 Region: "ap-southeast-1", 6470 }, 6471 }, 6472 "ap-southeast-2": endpoint{ 6473 Hostname: "s3-control.ap-southeast-2.amazonaws.com", 6474 SignatureVersions: []string{"s3v4"}, 6475 CredentialScope: credentialScope{ 6476 Region: "ap-southeast-2", 6477 }, 6478 }, 6479 "ca-central-1": endpoint{ 6480 Hostname: "s3-control.ca-central-1.amazonaws.com", 6481 SignatureVersions: []string{"s3v4"}, 6482 CredentialScope: credentialScope{ 6483 Region: "ca-central-1", 6484 }, 6485 }, 6486 "ca-central-1-fips": endpoint{ 6487 Hostname: "s3-control-fips.ca-central-1.amazonaws.com", 6488 SignatureVersions: []string{"s3v4"}, 6489 CredentialScope: credentialScope{ 6490 Region: "ca-central-1", 6491 }, 6492 }, 6493 "eu-central-1": endpoint{ 6494 Hostname: "s3-control.eu-central-1.amazonaws.com", 6495 SignatureVersions: []string{"s3v4"}, 6496 CredentialScope: credentialScope{ 6497 Region: "eu-central-1", 6498 }, 6499 }, 6500 "eu-north-1": endpoint{ 6501 Hostname: "s3-control.eu-north-1.amazonaws.com", 6502 SignatureVersions: []string{"s3v4"}, 6503 CredentialScope: credentialScope{ 6504 Region: "eu-north-1", 6505 }, 6506 }, 6507 "eu-west-1": endpoint{ 6508 Hostname: "s3-control.eu-west-1.amazonaws.com", 6509 SignatureVersions: []string{"s3v4"}, 6510 CredentialScope: credentialScope{ 6511 Region: "eu-west-1", 6512 }, 6513 }, 6514 "eu-west-2": endpoint{ 6515 Hostname: "s3-control.eu-west-2.amazonaws.com", 6516 SignatureVersions: []string{"s3v4"}, 6517 CredentialScope: credentialScope{ 6518 Region: "eu-west-2", 6519 }, 6520 }, 6521 "eu-west-3": endpoint{ 6522 Hostname: "s3-control.eu-west-3.amazonaws.com", 6523 SignatureVersions: []string{"s3v4"}, 6524 CredentialScope: credentialScope{ 6525 Region: "eu-west-3", 6526 }, 6527 }, 6528 "sa-east-1": endpoint{ 6529 Hostname: "s3-control.sa-east-1.amazonaws.com", 6530 SignatureVersions: []string{"s3v4"}, 6531 CredentialScope: credentialScope{ 6532 Region: "sa-east-1", 6533 }, 6534 }, 6535 "us-east-1": endpoint{ 6536 Hostname: "s3-control.us-east-1.amazonaws.com", 6537 SignatureVersions: []string{"s3v4"}, 6538 CredentialScope: credentialScope{ 6539 Region: "us-east-1", 6540 }, 6541 }, 6542 "us-east-1-fips": endpoint{ 6543 Hostname: "s3-control-fips.us-east-1.amazonaws.com", 6544 SignatureVersions: []string{"s3v4"}, 6545 CredentialScope: credentialScope{ 6546 Region: "us-east-1", 6547 }, 6548 }, 6549 "us-east-2": endpoint{ 6550 Hostname: "s3-control.us-east-2.amazonaws.com", 6551 SignatureVersions: []string{"s3v4"}, 6552 CredentialScope: credentialScope{ 6553 Region: "us-east-2", 6554 }, 6555 }, 6556 "us-east-2-fips": endpoint{ 6557 Hostname: "s3-control-fips.us-east-2.amazonaws.com", 6558 SignatureVersions: []string{"s3v4"}, 6559 CredentialScope: credentialScope{ 6560 Region: "us-east-2", 6561 }, 6562 }, 6563 "us-west-1": endpoint{ 6564 Hostname: "s3-control.us-west-1.amazonaws.com", 6565 SignatureVersions: []string{"s3v4"}, 6566 CredentialScope: credentialScope{ 6567 Region: "us-west-1", 6568 }, 6569 }, 6570 "us-west-1-fips": endpoint{ 6571 Hostname: "s3-control-fips.us-west-1.amazonaws.com", 6572 SignatureVersions: []string{"s3v4"}, 6573 CredentialScope: credentialScope{ 6574 Region: "us-west-1", 6575 }, 6576 }, 6577 "us-west-2": endpoint{ 6578 Hostname: "s3-control.us-west-2.amazonaws.com", 6579 SignatureVersions: []string{"s3v4"}, 6580 CredentialScope: credentialScope{ 6581 Region: "us-west-2", 6582 }, 6583 }, 6584 "us-west-2-fips": endpoint{ 6585 Hostname: "s3-control-fips.us-west-2.amazonaws.com", 6586 SignatureVersions: []string{"s3v4"}, 6587 CredentialScope: credentialScope{ 6588 Region: "us-west-2", 6589 }, 6590 }, 6591 }, 6592 }, 6593 "savingsplans": service{ 6594 PartitionEndpoint: "aws-global", 6595 IsRegionalized: boxedFalse, 6596 6597 Endpoints: endpoints{ 6598 "aws-global": endpoint{ 6599 Hostname: "savingsplans.amazonaws.com", 6600 CredentialScope: credentialScope{ 6601 Region: "us-east-1", 6602 }, 6603 }, 6604 }, 6605 }, 6606 "schemas": service{ 6607 6608 Endpoints: endpoints{ 6609 "ap-east-1": endpoint{}, 6610 "ap-northeast-1": endpoint{}, 6611 "ap-northeast-2": endpoint{}, 6612 "ap-south-1": endpoint{}, 6613 "ap-southeast-1": endpoint{}, 6614 "ap-southeast-2": endpoint{}, 6615 "ca-central-1": endpoint{}, 6616 "eu-central-1": endpoint{}, 6617 "eu-north-1": endpoint{}, 6618 "eu-west-1": endpoint{}, 6619 "eu-west-2": endpoint{}, 6620 "eu-west-3": endpoint{}, 6621 "sa-east-1": endpoint{}, 6622 "us-east-1": endpoint{}, 6623 "us-east-2": endpoint{}, 6624 "us-west-1": endpoint{}, 6625 "us-west-2": endpoint{}, 6626 }, 6627 }, 6628 "sdb": service{ 6629 Defaults: endpoint{ 6630 Protocols: []string{"http", "https"}, 6631 SignatureVersions: []string{"v2"}, 6632 }, 6633 Endpoints: endpoints{ 6634 "ap-northeast-1": endpoint{}, 6635 "ap-southeast-1": endpoint{}, 6636 "ap-southeast-2": endpoint{}, 6637 "eu-west-1": endpoint{}, 6638 "sa-east-1": endpoint{}, 6639 "us-east-1": endpoint{ 6640 Hostname: "sdb.amazonaws.com", 6641 }, 6642 "us-west-1": endpoint{}, 6643 "us-west-2": endpoint{}, 6644 }, 6645 }, 6646 "secretsmanager": service{ 6647 6648 Endpoints: endpoints{ 6649 "af-south-1": endpoint{}, 6650 "ap-east-1": endpoint{}, 6651 "ap-northeast-1": endpoint{}, 6652 "ap-northeast-2": endpoint{}, 6653 "ap-northeast-3": endpoint{}, 6654 "ap-south-1": endpoint{}, 6655 "ap-southeast-1": endpoint{}, 6656 "ap-southeast-2": endpoint{}, 6657 "ca-central-1": endpoint{}, 6658 "eu-central-1": endpoint{}, 6659 "eu-north-1": endpoint{}, 6660 "eu-south-1": endpoint{}, 6661 "eu-west-1": endpoint{}, 6662 "eu-west-2": endpoint{}, 6663 "eu-west-3": endpoint{}, 6664 "me-south-1": endpoint{}, 6665 "sa-east-1": endpoint{}, 6666 "us-east-1": endpoint{}, 6667 "us-east-1-fips": endpoint{ 6668 Hostname: "secretsmanager-fips.us-east-1.amazonaws.com", 6669 CredentialScope: credentialScope{ 6670 Region: "us-east-1", 6671 }, 6672 }, 6673 "us-east-2": endpoint{}, 6674 "us-east-2-fips": endpoint{ 6675 Hostname: "secretsmanager-fips.us-east-2.amazonaws.com", 6676 CredentialScope: credentialScope{ 6677 Region: "us-east-2", 6678 }, 6679 }, 6680 "us-west-1": endpoint{}, 6681 "us-west-1-fips": endpoint{ 6682 Hostname: "secretsmanager-fips.us-west-1.amazonaws.com", 6683 CredentialScope: credentialScope{ 6684 Region: "us-west-1", 6685 }, 6686 }, 6687 "us-west-2": endpoint{}, 6688 "us-west-2-fips": endpoint{ 6689 Hostname: "secretsmanager-fips.us-west-2.amazonaws.com", 6690 CredentialScope: credentialScope{ 6691 Region: "us-west-2", 6692 }, 6693 }, 6694 }, 6695 }, 6696 "securityhub": service{ 6697 6698 Endpoints: endpoints{ 6699 "af-south-1": endpoint{}, 6700 "ap-east-1": endpoint{}, 6701 "ap-northeast-1": endpoint{}, 6702 "ap-northeast-2": endpoint{}, 6703 "ap-northeast-3": endpoint{}, 6704 "ap-south-1": endpoint{}, 6705 "ap-southeast-1": endpoint{}, 6706 "ap-southeast-2": endpoint{}, 6707 "ca-central-1": endpoint{}, 6708 "eu-central-1": endpoint{}, 6709 "eu-north-1": endpoint{}, 6710 "eu-south-1": endpoint{}, 6711 "eu-west-1": endpoint{}, 6712 "eu-west-2": endpoint{}, 6713 "eu-west-3": endpoint{}, 6714 "fips-us-east-1": endpoint{ 6715 Hostname: "securityhub-fips.us-east-1.amazonaws.com", 6716 CredentialScope: credentialScope{ 6717 Region: "us-east-1", 6718 }, 6719 }, 6720 "fips-us-east-2": endpoint{ 6721 Hostname: "securityhub-fips.us-east-2.amazonaws.com", 6722 CredentialScope: credentialScope{ 6723 Region: "us-east-2", 6724 }, 6725 }, 6726 "fips-us-west-1": endpoint{ 6727 Hostname: "securityhub-fips.us-west-1.amazonaws.com", 6728 CredentialScope: credentialScope{ 6729 Region: "us-west-1", 6730 }, 6731 }, 6732 "fips-us-west-2": endpoint{ 6733 Hostname: "securityhub-fips.us-west-2.amazonaws.com", 6734 CredentialScope: credentialScope{ 6735 Region: "us-west-2", 6736 }, 6737 }, 6738 "me-south-1": endpoint{}, 6739 "sa-east-1": endpoint{}, 6740 "us-east-1": endpoint{}, 6741 "us-east-2": endpoint{}, 6742 "us-west-1": endpoint{}, 6743 "us-west-2": endpoint{}, 6744 }, 6745 }, 6746 "serverlessrepo": service{ 6747 Defaults: endpoint{ 6748 Protocols: []string{"https"}, 6749 }, 6750 Endpoints: endpoints{ 6751 "ap-east-1": endpoint{ 6752 Protocols: []string{"https"}, 6753 }, 6754 "ap-northeast-1": endpoint{ 6755 Protocols: []string{"https"}, 6756 }, 6757 "ap-northeast-2": endpoint{ 6758 Protocols: []string{"https"}, 6759 }, 6760 "ap-south-1": endpoint{ 6761 Protocols: []string{"https"}, 6762 }, 6763 "ap-southeast-1": endpoint{ 6764 Protocols: []string{"https"}, 6765 }, 6766 "ap-southeast-2": endpoint{ 6767 Protocols: []string{"https"}, 6768 }, 6769 "ca-central-1": endpoint{ 6770 Protocols: []string{"https"}, 6771 }, 6772 "eu-central-1": endpoint{ 6773 Protocols: []string{"https"}, 6774 }, 6775 "eu-north-1": endpoint{ 6776 Protocols: []string{"https"}, 6777 }, 6778 "eu-west-1": endpoint{ 6779 Protocols: []string{"https"}, 6780 }, 6781 "eu-west-2": endpoint{ 6782 Protocols: []string{"https"}, 6783 }, 6784 "eu-west-3": endpoint{ 6785 Protocols: []string{"https"}, 6786 }, 6787 "me-south-1": endpoint{ 6788 Protocols: []string{"https"}, 6789 }, 6790 "sa-east-1": endpoint{ 6791 Protocols: []string{"https"}, 6792 }, 6793 "us-east-1": endpoint{ 6794 Protocols: []string{"https"}, 6795 }, 6796 "us-east-2": endpoint{ 6797 Protocols: []string{"https"}, 6798 }, 6799 "us-west-1": endpoint{ 6800 Protocols: []string{"https"}, 6801 }, 6802 "us-west-2": endpoint{ 6803 Protocols: []string{"https"}, 6804 }, 6805 }, 6806 }, 6807 "servicecatalog": service{ 6808 6809 Endpoints: endpoints{ 6810 "af-south-1": endpoint{}, 6811 "ap-east-1": endpoint{}, 6812 "ap-northeast-1": endpoint{}, 6813 "ap-northeast-2": endpoint{}, 6814 "ap-northeast-3": endpoint{}, 6815 "ap-south-1": endpoint{}, 6816 "ap-southeast-1": endpoint{}, 6817 "ap-southeast-2": endpoint{}, 6818 "ca-central-1": endpoint{}, 6819 "eu-central-1": endpoint{}, 6820 "eu-north-1": endpoint{}, 6821 "eu-south-1": endpoint{}, 6822 "eu-west-1": endpoint{}, 6823 "eu-west-2": endpoint{}, 6824 "eu-west-3": endpoint{}, 6825 "me-south-1": endpoint{}, 6826 "sa-east-1": endpoint{}, 6827 "us-east-1": endpoint{}, 6828 "us-east-1-fips": endpoint{ 6829 Hostname: "servicecatalog-fips.us-east-1.amazonaws.com", 6830 CredentialScope: credentialScope{ 6831 Region: "us-east-1", 6832 }, 6833 }, 6834 "us-east-2": endpoint{}, 6835 "us-east-2-fips": endpoint{ 6836 Hostname: "servicecatalog-fips.us-east-2.amazonaws.com", 6837 CredentialScope: credentialScope{ 6838 Region: "us-east-2", 6839 }, 6840 }, 6841 "us-west-1": endpoint{}, 6842 "us-west-1-fips": endpoint{ 6843 Hostname: "servicecatalog-fips.us-west-1.amazonaws.com", 6844 CredentialScope: credentialScope{ 6845 Region: "us-west-1", 6846 }, 6847 }, 6848 "us-west-2": endpoint{}, 6849 "us-west-2-fips": endpoint{ 6850 Hostname: "servicecatalog-fips.us-west-2.amazonaws.com", 6851 CredentialScope: credentialScope{ 6852 Region: "us-west-2", 6853 }, 6854 }, 6855 }, 6856 }, 6857 "servicecatalog-appregistry": service{ 6858 6859 Endpoints: endpoints{ 6860 "af-south-1": endpoint{}, 6861 "ap-east-1": endpoint{}, 6862 "ap-northeast-1": endpoint{}, 6863 "ap-northeast-2": endpoint{}, 6864 "ap-south-1": endpoint{}, 6865 "ap-southeast-1": endpoint{}, 6866 "ap-southeast-2": endpoint{}, 6867 "ca-central-1": endpoint{}, 6868 "eu-central-1": endpoint{}, 6869 "eu-north-1": endpoint{}, 6870 "eu-south-1": endpoint{}, 6871 "eu-west-1": endpoint{}, 6872 "eu-west-2": endpoint{}, 6873 "eu-west-3": endpoint{}, 6874 "fips-ca-central-1": endpoint{ 6875 Hostname: "servicecatalog-appregistry-fips.ca-central-1.amazonaws.com", 6876 CredentialScope: credentialScope{ 6877 Region: "ca-central-1", 6878 }, 6879 }, 6880 "fips-us-east-1": endpoint{ 6881 Hostname: "servicecatalog-appregistry-fips.us-east-1.amazonaws.com", 6882 CredentialScope: credentialScope{ 6883 Region: "us-east-1", 6884 }, 6885 }, 6886 "fips-us-east-2": endpoint{ 6887 Hostname: "servicecatalog-appregistry-fips.us-east-2.amazonaws.com", 6888 CredentialScope: credentialScope{ 6889 Region: "us-east-2", 6890 }, 6891 }, 6892 "fips-us-west-1": endpoint{ 6893 Hostname: "servicecatalog-appregistry-fips.us-west-1.amazonaws.com", 6894 CredentialScope: credentialScope{ 6895 Region: "us-west-1", 6896 }, 6897 }, 6898 "fips-us-west-2": endpoint{ 6899 Hostname: "servicecatalog-appregistry-fips.us-west-2.amazonaws.com", 6900 CredentialScope: credentialScope{ 6901 Region: "us-west-2", 6902 }, 6903 }, 6904 "me-south-1": endpoint{}, 6905 "sa-east-1": endpoint{}, 6906 "us-east-1": endpoint{}, 6907 "us-east-2": endpoint{}, 6908 "us-west-1": endpoint{}, 6909 "us-west-2": endpoint{}, 6910 }, 6911 }, 6912 "servicediscovery": service{ 6913 6914 Endpoints: endpoints{ 6915 "af-south-1": endpoint{}, 6916 "ap-east-1": endpoint{}, 6917 "ap-northeast-1": endpoint{}, 6918 "ap-northeast-2": endpoint{}, 6919 "ap-south-1": endpoint{}, 6920 "ap-southeast-1": endpoint{}, 6921 "ap-southeast-2": endpoint{}, 6922 "ca-central-1": endpoint{}, 6923 "eu-central-1": endpoint{}, 6924 "eu-north-1": endpoint{}, 6925 "eu-south-1": endpoint{}, 6926 "eu-west-1": endpoint{}, 6927 "eu-west-2": endpoint{}, 6928 "eu-west-3": endpoint{}, 6929 "me-south-1": endpoint{}, 6930 "sa-east-1": endpoint{}, 6931 "servicediscovery-fips": endpoint{ 6932 Hostname: "servicediscovery-fips.ca-central-1.amazonaws.com", 6933 CredentialScope: credentialScope{ 6934 Region: "ca-central-1", 6935 }, 6936 }, 6937 "us-east-1": endpoint{}, 6938 "us-east-2": endpoint{}, 6939 "us-west-1": endpoint{}, 6940 "us-west-2": endpoint{}, 6941 }, 6942 }, 6943 "servicequotas": service{ 6944 Defaults: endpoint{ 6945 Protocols: []string{"https"}, 6946 }, 6947 Endpoints: endpoints{ 6948 "af-south-1": endpoint{}, 6949 "ap-east-1": endpoint{}, 6950 "ap-northeast-1": endpoint{}, 6951 "ap-northeast-2": endpoint{}, 6952 "ap-northeast-3": endpoint{}, 6953 "ap-south-1": endpoint{}, 6954 "ap-southeast-1": endpoint{}, 6955 "ap-southeast-2": endpoint{}, 6956 "ca-central-1": endpoint{}, 6957 "eu-central-1": endpoint{}, 6958 "eu-north-1": endpoint{}, 6959 "eu-south-1": endpoint{}, 6960 "eu-west-1": endpoint{}, 6961 "eu-west-2": endpoint{}, 6962 "eu-west-3": endpoint{}, 6963 "me-south-1": endpoint{}, 6964 "sa-east-1": endpoint{}, 6965 "us-east-1": endpoint{}, 6966 "us-east-2": endpoint{}, 6967 "us-west-1": endpoint{}, 6968 "us-west-2": endpoint{}, 6969 }, 6970 }, 6971 "session.qldb": service{ 6972 6973 Endpoints: endpoints{ 6974 "ap-northeast-1": endpoint{}, 6975 "ap-northeast-2": endpoint{}, 6976 "ap-southeast-1": endpoint{}, 6977 "ap-southeast-2": endpoint{}, 6978 "eu-central-1": endpoint{}, 6979 "eu-west-1": endpoint{}, 6980 "eu-west-2": endpoint{}, 6981 "fips-us-east-1": endpoint{ 6982 Hostname: "session.qldb-fips.us-east-1.amazonaws.com", 6983 CredentialScope: credentialScope{ 6984 Region: "us-east-1", 6985 }, 6986 }, 6987 "fips-us-east-2": endpoint{ 6988 Hostname: "session.qldb-fips.us-east-2.amazonaws.com", 6989 CredentialScope: credentialScope{ 6990 Region: "us-east-2", 6991 }, 6992 }, 6993 "fips-us-west-2": endpoint{ 6994 Hostname: "session.qldb-fips.us-west-2.amazonaws.com", 6995 CredentialScope: credentialScope{ 6996 Region: "us-west-2", 6997 }, 6998 }, 6999 "us-east-1": endpoint{}, 7000 "us-east-2": endpoint{}, 7001 "us-west-2": endpoint{}, 7002 }, 7003 }, 7004 "shield": service{ 7005 PartitionEndpoint: "aws-global", 7006 IsRegionalized: boxedFalse, 7007 Defaults: endpoint{ 7008 SSLCommonName: "shield.us-east-1.amazonaws.com", 7009 Protocols: []string{"https"}, 7010 }, 7011 Endpoints: endpoints{ 7012 "aws-global": endpoint{ 7013 Hostname: "shield.us-east-1.amazonaws.com", 7014 CredentialScope: credentialScope{ 7015 Region: "us-east-1", 7016 }, 7017 }, 7018 "fips-aws-global": endpoint{ 7019 Hostname: "shield-fips.us-east-1.amazonaws.com", 7020 CredentialScope: credentialScope{ 7021 Region: "us-east-1", 7022 }, 7023 }, 7024 }, 7025 }, 7026 "sms": service{ 7027 7028 Endpoints: endpoints{ 7029 "af-south-1": endpoint{}, 7030 "ap-east-1": endpoint{}, 7031 "ap-northeast-1": endpoint{}, 7032 "ap-northeast-2": endpoint{}, 7033 "ap-south-1": endpoint{}, 7034 "ap-southeast-1": endpoint{}, 7035 "ap-southeast-2": endpoint{}, 7036 "ca-central-1": endpoint{}, 7037 "eu-central-1": endpoint{}, 7038 "eu-north-1": endpoint{}, 7039 "eu-south-1": endpoint{}, 7040 "eu-west-1": endpoint{}, 7041 "eu-west-2": endpoint{}, 7042 "eu-west-3": endpoint{}, 7043 "fips-us-east-1": endpoint{ 7044 Hostname: "sms-fips.us-east-1.amazonaws.com", 7045 CredentialScope: credentialScope{ 7046 Region: "us-east-1", 7047 }, 7048 }, 7049 "fips-us-east-2": endpoint{ 7050 Hostname: "sms-fips.us-east-2.amazonaws.com", 7051 CredentialScope: credentialScope{ 7052 Region: "us-east-2", 7053 }, 7054 }, 7055 "fips-us-west-1": endpoint{ 7056 Hostname: "sms-fips.us-west-1.amazonaws.com", 7057 CredentialScope: credentialScope{ 7058 Region: "us-west-1", 7059 }, 7060 }, 7061 "fips-us-west-2": endpoint{ 7062 Hostname: "sms-fips.us-west-2.amazonaws.com", 7063 CredentialScope: credentialScope{ 7064 Region: "us-west-2", 7065 }, 7066 }, 7067 "me-south-1": endpoint{}, 7068 "sa-east-1": endpoint{}, 7069 "us-east-1": endpoint{}, 7070 "us-east-2": endpoint{}, 7071 "us-west-1": endpoint{}, 7072 "us-west-2": endpoint{}, 7073 }, 7074 }, 7075 "snowball": service{ 7076 7077 Endpoints: endpoints{ 7078 "af-south-1": endpoint{}, 7079 "ap-east-1": endpoint{}, 7080 "ap-northeast-1": endpoint{}, 7081 "ap-northeast-2": endpoint{}, 7082 "ap-northeast-3": endpoint{}, 7083 "ap-south-1": endpoint{}, 7084 "ap-southeast-1": endpoint{}, 7085 "ap-southeast-2": endpoint{}, 7086 "ca-central-1": endpoint{}, 7087 "eu-central-1": endpoint{}, 7088 "eu-north-1": endpoint{}, 7089 "eu-south-1": endpoint{}, 7090 "eu-west-1": endpoint{}, 7091 "eu-west-2": endpoint{}, 7092 "eu-west-3": endpoint{}, 7093 "fips-ap-northeast-1": endpoint{ 7094 Hostname: "snowball-fips.ap-northeast-1.amazonaws.com", 7095 CredentialScope: credentialScope{ 7096 Region: "ap-northeast-1", 7097 }, 7098 }, 7099 "fips-ap-northeast-2": endpoint{ 7100 Hostname: "snowball-fips.ap-northeast-2.amazonaws.com", 7101 CredentialScope: credentialScope{ 7102 Region: "ap-northeast-2", 7103 }, 7104 }, 7105 "fips-ap-northeast-3": endpoint{ 7106 Hostname: "snowball-fips.ap-northeast-3.amazonaws.com", 7107 CredentialScope: credentialScope{ 7108 Region: "ap-northeast-3", 7109 }, 7110 }, 7111 "fips-ap-south-1": endpoint{ 7112 Hostname: "snowball-fips.ap-south-1.amazonaws.com", 7113 CredentialScope: credentialScope{ 7114 Region: "ap-south-1", 7115 }, 7116 }, 7117 "fips-ap-southeast-1": endpoint{ 7118 Hostname: "snowball-fips.ap-southeast-1.amazonaws.com", 7119 CredentialScope: credentialScope{ 7120 Region: "ap-southeast-1", 7121 }, 7122 }, 7123 "fips-ap-southeast-2": endpoint{ 7124 Hostname: "snowball-fips.ap-southeast-2.amazonaws.com", 7125 CredentialScope: credentialScope{ 7126 Region: "ap-southeast-2", 7127 }, 7128 }, 7129 "fips-ca-central-1": endpoint{ 7130 Hostname: "snowball-fips.ca-central-1.amazonaws.com", 7131 CredentialScope: credentialScope{ 7132 Region: "ca-central-1", 7133 }, 7134 }, 7135 "fips-eu-central-1": endpoint{ 7136 Hostname: "snowball-fips.eu-central-1.amazonaws.com", 7137 CredentialScope: credentialScope{ 7138 Region: "eu-central-1", 7139 }, 7140 }, 7141 "fips-eu-west-1": endpoint{ 7142 Hostname: "snowball-fips.eu-west-1.amazonaws.com", 7143 CredentialScope: credentialScope{ 7144 Region: "eu-west-1", 7145 }, 7146 }, 7147 "fips-eu-west-2": endpoint{ 7148 Hostname: "snowball-fips.eu-west-2.amazonaws.com", 7149 CredentialScope: credentialScope{ 7150 Region: "eu-west-2", 7151 }, 7152 }, 7153 "fips-eu-west-3": endpoint{ 7154 Hostname: "snowball-fips.eu-west-3.amazonaws.com", 7155 CredentialScope: credentialScope{ 7156 Region: "eu-west-3", 7157 }, 7158 }, 7159 "fips-sa-east-1": endpoint{ 7160 Hostname: "snowball-fips.sa-east-1.amazonaws.com", 7161 CredentialScope: credentialScope{ 7162 Region: "sa-east-1", 7163 }, 7164 }, 7165 "fips-us-east-1": endpoint{ 7166 Hostname: "snowball-fips.us-east-1.amazonaws.com", 7167 CredentialScope: credentialScope{ 7168 Region: "us-east-1", 7169 }, 7170 }, 7171 "fips-us-east-2": endpoint{ 7172 Hostname: "snowball-fips.us-east-2.amazonaws.com", 7173 CredentialScope: credentialScope{ 7174 Region: "us-east-2", 7175 }, 7176 }, 7177 "fips-us-west-1": endpoint{ 7178 Hostname: "snowball-fips.us-west-1.amazonaws.com", 7179 CredentialScope: credentialScope{ 7180 Region: "us-west-1", 7181 }, 7182 }, 7183 "fips-us-west-2": endpoint{ 7184 Hostname: "snowball-fips.us-west-2.amazonaws.com", 7185 CredentialScope: credentialScope{ 7186 Region: "us-west-2", 7187 }, 7188 }, 7189 "sa-east-1": endpoint{}, 7190 "us-east-1": endpoint{}, 7191 "us-east-2": endpoint{}, 7192 "us-west-1": endpoint{}, 7193 "us-west-2": endpoint{}, 7194 }, 7195 }, 7196 "sns": service{ 7197 Defaults: endpoint{ 7198 Protocols: []string{"http", "https"}, 7199 }, 7200 Endpoints: endpoints{ 7201 "af-south-1": endpoint{}, 7202 "ap-east-1": endpoint{}, 7203 "ap-northeast-1": endpoint{}, 7204 "ap-northeast-2": endpoint{}, 7205 "ap-northeast-3": endpoint{}, 7206 "ap-south-1": endpoint{}, 7207 "ap-southeast-1": endpoint{}, 7208 "ap-southeast-2": endpoint{}, 7209 "ca-central-1": endpoint{}, 7210 "eu-central-1": endpoint{}, 7211 "eu-north-1": endpoint{}, 7212 "eu-south-1": endpoint{}, 7213 "eu-west-1": endpoint{}, 7214 "eu-west-2": endpoint{}, 7215 "eu-west-3": endpoint{}, 7216 "fips-us-east-1": endpoint{ 7217 Hostname: "sns-fips.us-east-1.amazonaws.com", 7218 CredentialScope: credentialScope{ 7219 Region: "us-east-1", 7220 }, 7221 }, 7222 "fips-us-east-2": endpoint{ 7223 Hostname: "sns-fips.us-east-2.amazonaws.com", 7224 CredentialScope: credentialScope{ 7225 Region: "us-east-2", 7226 }, 7227 }, 7228 "fips-us-west-1": endpoint{ 7229 Hostname: "sns-fips.us-west-1.amazonaws.com", 7230 CredentialScope: credentialScope{ 7231 Region: "us-west-1", 7232 }, 7233 }, 7234 "fips-us-west-2": endpoint{ 7235 Hostname: "sns-fips.us-west-2.amazonaws.com", 7236 CredentialScope: credentialScope{ 7237 Region: "us-west-2", 7238 }, 7239 }, 7240 "me-south-1": endpoint{}, 7241 "sa-east-1": endpoint{}, 7242 "us-east-1": endpoint{}, 7243 "us-east-2": endpoint{}, 7244 "us-west-1": endpoint{}, 7245 "us-west-2": endpoint{}, 7246 }, 7247 }, 7248 "sqs": service{ 7249 Defaults: endpoint{ 7250 SSLCommonName: "{region}.queue.{dnsSuffix}", 7251 Protocols: []string{"http", "https"}, 7252 }, 7253 Endpoints: endpoints{ 7254 "af-south-1": endpoint{}, 7255 "ap-east-1": endpoint{}, 7256 "ap-northeast-1": endpoint{}, 7257 "ap-northeast-2": endpoint{}, 7258 "ap-northeast-3": endpoint{}, 7259 "ap-south-1": endpoint{}, 7260 "ap-southeast-1": endpoint{}, 7261 "ap-southeast-2": endpoint{}, 7262 "ca-central-1": endpoint{}, 7263 "eu-central-1": endpoint{}, 7264 "eu-north-1": endpoint{}, 7265 "eu-south-1": endpoint{}, 7266 "eu-west-1": endpoint{}, 7267 "eu-west-2": endpoint{}, 7268 "eu-west-3": endpoint{}, 7269 "fips-us-east-1": endpoint{ 7270 Hostname: "sqs-fips.us-east-1.amazonaws.com", 7271 CredentialScope: credentialScope{ 7272 Region: "us-east-1", 7273 }, 7274 }, 7275 "fips-us-east-2": endpoint{ 7276 Hostname: "sqs-fips.us-east-2.amazonaws.com", 7277 CredentialScope: credentialScope{ 7278 Region: "us-east-2", 7279 }, 7280 }, 7281 "fips-us-west-1": endpoint{ 7282 Hostname: "sqs-fips.us-west-1.amazonaws.com", 7283 CredentialScope: credentialScope{ 7284 Region: "us-west-1", 7285 }, 7286 }, 7287 "fips-us-west-2": endpoint{ 7288 Hostname: "sqs-fips.us-west-2.amazonaws.com", 7289 CredentialScope: credentialScope{ 7290 Region: "us-west-2", 7291 }, 7292 }, 7293 "me-south-1": endpoint{}, 7294 "sa-east-1": endpoint{}, 7295 "us-east-1": endpoint{ 7296 SSLCommonName: "queue.{dnsSuffix}", 7297 }, 7298 "us-east-2": endpoint{}, 7299 "us-west-1": endpoint{}, 7300 "us-west-2": endpoint{}, 7301 }, 7302 }, 7303 "ssm": service{ 7304 7305 Endpoints: endpoints{ 7306 "af-south-1": endpoint{}, 7307 "ap-east-1": endpoint{}, 7308 "ap-northeast-1": endpoint{}, 7309 "ap-northeast-2": endpoint{}, 7310 "ap-northeast-3": endpoint{}, 7311 "ap-south-1": endpoint{}, 7312 "ap-southeast-1": endpoint{}, 7313 "ap-southeast-2": endpoint{}, 7314 "ca-central-1": endpoint{}, 7315 "eu-central-1": endpoint{}, 7316 "eu-north-1": endpoint{}, 7317 "eu-south-1": endpoint{}, 7318 "eu-west-1": endpoint{}, 7319 "eu-west-2": endpoint{}, 7320 "eu-west-3": endpoint{}, 7321 "fips-ca-central-1": endpoint{ 7322 Hostname: "ssm-fips.ca-central-1.amazonaws.com", 7323 CredentialScope: credentialScope{ 7324 Region: "ca-central-1", 7325 }, 7326 }, 7327 "fips-us-east-1": endpoint{ 7328 Hostname: "ssm-fips.us-east-1.amazonaws.com", 7329 CredentialScope: credentialScope{ 7330 Region: "us-east-1", 7331 }, 7332 }, 7333 "fips-us-east-2": endpoint{ 7334 Hostname: "ssm-fips.us-east-2.amazonaws.com", 7335 CredentialScope: credentialScope{ 7336 Region: "us-east-2", 7337 }, 7338 }, 7339 "fips-us-west-1": endpoint{ 7340 Hostname: "ssm-fips.us-west-1.amazonaws.com", 7341 CredentialScope: credentialScope{ 7342 Region: "us-west-1", 7343 }, 7344 }, 7345 "fips-us-west-2": endpoint{ 7346 Hostname: "ssm-fips.us-west-2.amazonaws.com", 7347 CredentialScope: credentialScope{ 7348 Region: "us-west-2", 7349 }, 7350 }, 7351 "me-south-1": endpoint{}, 7352 "sa-east-1": endpoint{}, 7353 "us-east-1": endpoint{}, 7354 "us-east-2": endpoint{}, 7355 "us-west-1": endpoint{}, 7356 "us-west-2": endpoint{}, 7357 }, 7358 }, 7359 "ssm-incidents": service{ 7360 7361 Endpoints: endpoints{ 7362 "ap-northeast-1": endpoint{}, 7363 "ap-southeast-1": endpoint{}, 7364 "ap-southeast-2": endpoint{}, 7365 "eu-central-1": endpoint{}, 7366 "eu-north-1": endpoint{}, 7367 "eu-west-1": endpoint{}, 7368 "us-east-1": endpoint{}, 7369 "us-east-2": endpoint{}, 7370 "us-west-2": endpoint{}, 7371 }, 7372 }, 7373 "states": service{ 7374 7375 Endpoints: endpoints{ 7376 "af-south-1": endpoint{}, 7377 "ap-east-1": endpoint{}, 7378 "ap-northeast-1": endpoint{}, 7379 "ap-northeast-2": endpoint{}, 7380 "ap-northeast-3": endpoint{}, 7381 "ap-south-1": endpoint{}, 7382 "ap-southeast-1": endpoint{}, 7383 "ap-southeast-2": endpoint{}, 7384 "ca-central-1": endpoint{}, 7385 "eu-central-1": endpoint{}, 7386 "eu-north-1": endpoint{}, 7387 "eu-south-1": endpoint{}, 7388 "eu-west-1": endpoint{}, 7389 "eu-west-2": endpoint{}, 7390 "eu-west-3": endpoint{}, 7391 "fips-us-east-1": endpoint{ 7392 Hostname: "states-fips.us-east-1.amazonaws.com", 7393 CredentialScope: credentialScope{ 7394 Region: "us-east-1", 7395 }, 7396 }, 7397 "fips-us-east-2": endpoint{ 7398 Hostname: "states-fips.us-east-2.amazonaws.com", 7399 CredentialScope: credentialScope{ 7400 Region: "us-east-2", 7401 }, 7402 }, 7403 "fips-us-west-1": endpoint{ 7404 Hostname: "states-fips.us-west-1.amazonaws.com", 7405 CredentialScope: credentialScope{ 7406 Region: "us-west-1", 7407 }, 7408 }, 7409 "fips-us-west-2": endpoint{ 7410 Hostname: "states-fips.us-west-2.amazonaws.com", 7411 CredentialScope: credentialScope{ 7412 Region: "us-west-2", 7413 }, 7414 }, 7415 "me-south-1": endpoint{}, 7416 "sa-east-1": endpoint{}, 7417 "us-east-1": endpoint{}, 7418 "us-east-2": endpoint{}, 7419 "us-west-1": endpoint{}, 7420 "us-west-2": endpoint{}, 7421 }, 7422 }, 7423 "storagegateway": service{ 7424 7425 Endpoints: endpoints{ 7426 "af-south-1": endpoint{}, 7427 "ap-east-1": endpoint{}, 7428 "ap-northeast-1": endpoint{}, 7429 "ap-northeast-2": endpoint{}, 7430 "ap-northeast-3": endpoint{}, 7431 "ap-south-1": endpoint{}, 7432 "ap-southeast-1": endpoint{}, 7433 "ap-southeast-2": endpoint{}, 7434 "ca-central-1": endpoint{}, 7435 "eu-central-1": endpoint{}, 7436 "eu-north-1": endpoint{}, 7437 "eu-south-1": endpoint{}, 7438 "eu-west-1": endpoint{}, 7439 "eu-west-2": endpoint{}, 7440 "eu-west-3": endpoint{}, 7441 "fips": endpoint{ 7442 Hostname: "storagegateway-fips.ca-central-1.amazonaws.com", 7443 CredentialScope: credentialScope{ 7444 Region: "ca-central-1", 7445 }, 7446 }, 7447 "me-south-1": endpoint{}, 7448 "sa-east-1": endpoint{}, 7449 "us-east-1": endpoint{}, 7450 "us-east-2": endpoint{}, 7451 "us-west-1": endpoint{}, 7452 "us-west-2": endpoint{}, 7453 }, 7454 }, 7455 "streams.dynamodb": service{ 7456 Defaults: endpoint{ 7457 Protocols: []string{"http", "https"}, 7458 CredentialScope: credentialScope{ 7459 Service: "dynamodb", 7460 }, 7461 }, 7462 Endpoints: endpoints{ 7463 "ap-northeast-1": endpoint{}, 7464 "ap-northeast-2": endpoint{}, 7465 "ap-south-1": endpoint{}, 7466 "ap-southeast-1": endpoint{}, 7467 "ap-southeast-2": endpoint{}, 7468 "ca-central-1": endpoint{}, 7469 "ca-central-1-fips": endpoint{ 7470 Hostname: "dynamodb-fips.ca-central-1.amazonaws.com", 7471 CredentialScope: credentialScope{ 7472 Region: "ca-central-1", 7473 }, 7474 }, 7475 "eu-central-1": endpoint{}, 7476 "eu-north-1": endpoint{}, 7477 "eu-west-1": endpoint{}, 7478 "eu-west-2": endpoint{}, 7479 "eu-west-3": endpoint{}, 7480 "local": endpoint{ 7481 Hostname: "localhost:8000", 7482 Protocols: []string{"http"}, 7483 CredentialScope: credentialScope{ 7484 Region: "us-east-1", 7485 }, 7486 }, 7487 "me-south-1": endpoint{}, 7488 "sa-east-1": endpoint{}, 7489 "us-east-1": endpoint{}, 7490 "us-east-1-fips": endpoint{ 7491 Hostname: "dynamodb-fips.us-east-1.amazonaws.com", 7492 CredentialScope: credentialScope{ 7493 Region: "us-east-1", 7494 }, 7495 }, 7496 "us-east-2": endpoint{}, 7497 "us-east-2-fips": endpoint{ 7498 Hostname: "dynamodb-fips.us-east-2.amazonaws.com", 7499 CredentialScope: credentialScope{ 7500 Region: "us-east-2", 7501 }, 7502 }, 7503 "us-west-1": endpoint{}, 7504 "us-west-1-fips": endpoint{ 7505 Hostname: "dynamodb-fips.us-west-1.amazonaws.com", 7506 CredentialScope: credentialScope{ 7507 Region: "us-west-1", 7508 }, 7509 }, 7510 "us-west-2": endpoint{}, 7511 "us-west-2-fips": endpoint{ 7512 Hostname: "dynamodb-fips.us-west-2.amazonaws.com", 7513 CredentialScope: credentialScope{ 7514 Region: "us-west-2", 7515 }, 7516 }, 7517 }, 7518 }, 7519 "sts": service{ 7520 PartitionEndpoint: "aws-global", 7521 7522 Endpoints: endpoints{ 7523 "af-south-1": endpoint{}, 7524 "ap-east-1": endpoint{}, 7525 "ap-northeast-1": endpoint{}, 7526 "ap-northeast-2": endpoint{}, 7527 "ap-northeast-3": endpoint{}, 7528 "ap-south-1": endpoint{}, 7529 "ap-southeast-1": endpoint{}, 7530 "ap-southeast-2": endpoint{}, 7531 "aws-global": endpoint{ 7532 Hostname: "sts.amazonaws.com", 7533 CredentialScope: credentialScope{ 7534 Region: "us-east-1", 7535 }, 7536 }, 7537 "ca-central-1": endpoint{}, 7538 "eu-central-1": endpoint{}, 7539 "eu-north-1": endpoint{}, 7540 "eu-south-1": endpoint{}, 7541 "eu-west-1": endpoint{}, 7542 "eu-west-2": endpoint{}, 7543 "eu-west-3": endpoint{}, 7544 "me-south-1": endpoint{}, 7545 "sa-east-1": endpoint{}, 7546 "us-east-1": endpoint{}, 7547 "us-east-1-fips": endpoint{ 7548 Hostname: "sts-fips.us-east-1.amazonaws.com", 7549 CredentialScope: credentialScope{ 7550 Region: "us-east-1", 7551 }, 7552 }, 7553 "us-east-2": endpoint{}, 7554 "us-east-2-fips": endpoint{ 7555 Hostname: "sts-fips.us-east-2.amazonaws.com", 7556 CredentialScope: credentialScope{ 7557 Region: "us-east-2", 7558 }, 7559 }, 7560 "us-west-1": endpoint{}, 7561 "us-west-1-fips": endpoint{ 7562 Hostname: "sts-fips.us-west-1.amazonaws.com", 7563 CredentialScope: credentialScope{ 7564 Region: "us-west-1", 7565 }, 7566 }, 7567 "us-west-2": endpoint{}, 7568 "us-west-2-fips": endpoint{ 7569 Hostname: "sts-fips.us-west-2.amazonaws.com", 7570 CredentialScope: credentialScope{ 7571 Region: "us-west-2", 7572 }, 7573 }, 7574 }, 7575 }, 7576 "support": service{ 7577 PartitionEndpoint: "aws-global", 7578 7579 Endpoints: endpoints{ 7580 "aws-global": endpoint{ 7581 Hostname: "support.us-east-1.amazonaws.com", 7582 CredentialScope: credentialScope{ 7583 Region: "us-east-1", 7584 }, 7585 }, 7586 }, 7587 }, 7588 "swf": service{ 7589 7590 Endpoints: endpoints{ 7591 "af-south-1": endpoint{}, 7592 "ap-east-1": endpoint{}, 7593 "ap-northeast-1": endpoint{}, 7594 "ap-northeast-2": endpoint{}, 7595 "ap-northeast-3": endpoint{}, 7596 "ap-south-1": endpoint{}, 7597 "ap-southeast-1": endpoint{}, 7598 "ap-southeast-2": endpoint{}, 7599 "ca-central-1": endpoint{}, 7600 "eu-central-1": endpoint{}, 7601 "eu-north-1": endpoint{}, 7602 "eu-south-1": endpoint{}, 7603 "eu-west-1": endpoint{}, 7604 "eu-west-2": endpoint{}, 7605 "eu-west-3": endpoint{}, 7606 "fips-us-east-1": endpoint{ 7607 Hostname: "swf-fips.us-east-1.amazonaws.com", 7608 CredentialScope: credentialScope{ 7609 Region: "us-east-1", 7610 }, 7611 }, 7612 "fips-us-east-2": endpoint{ 7613 Hostname: "swf-fips.us-east-2.amazonaws.com", 7614 CredentialScope: credentialScope{ 7615 Region: "us-east-2", 7616 }, 7617 }, 7618 "fips-us-west-1": endpoint{ 7619 Hostname: "swf-fips.us-west-1.amazonaws.com", 7620 CredentialScope: credentialScope{ 7621 Region: "us-west-1", 7622 }, 7623 }, 7624 "fips-us-west-2": endpoint{ 7625 Hostname: "swf-fips.us-west-2.amazonaws.com", 7626 CredentialScope: credentialScope{ 7627 Region: "us-west-2", 7628 }, 7629 }, 7630 "me-south-1": endpoint{}, 7631 "sa-east-1": endpoint{}, 7632 "us-east-1": endpoint{}, 7633 "us-east-2": endpoint{}, 7634 "us-west-1": endpoint{}, 7635 "us-west-2": endpoint{}, 7636 }, 7637 }, 7638 "tagging": service{ 7639 7640 Endpoints: endpoints{ 7641 "af-south-1": endpoint{}, 7642 "ap-east-1": endpoint{}, 7643 "ap-northeast-1": endpoint{}, 7644 "ap-northeast-2": endpoint{}, 7645 "ap-northeast-3": endpoint{}, 7646 "ap-south-1": endpoint{}, 7647 "ap-southeast-1": endpoint{}, 7648 "ap-southeast-2": endpoint{}, 7649 "ca-central-1": endpoint{}, 7650 "eu-central-1": endpoint{}, 7651 "eu-north-1": endpoint{}, 7652 "eu-south-1": endpoint{}, 7653 "eu-west-1": endpoint{}, 7654 "eu-west-2": endpoint{}, 7655 "eu-west-3": endpoint{}, 7656 "me-south-1": endpoint{}, 7657 "sa-east-1": endpoint{}, 7658 "us-east-1": endpoint{}, 7659 "us-east-2": endpoint{}, 7660 "us-west-1": endpoint{}, 7661 "us-west-2": endpoint{}, 7662 }, 7663 }, 7664 "textract": service{ 7665 7666 Endpoints: endpoints{ 7667 "ap-northeast-2": endpoint{}, 7668 "ap-south-1": endpoint{}, 7669 "ap-southeast-1": endpoint{}, 7670 "ap-southeast-2": endpoint{}, 7671 "ca-central-1": endpoint{}, 7672 "eu-central-1": endpoint{}, 7673 "eu-west-1": endpoint{}, 7674 "eu-west-2": endpoint{}, 7675 "eu-west-3": endpoint{}, 7676 "fips-ca-central-1": endpoint{ 7677 Hostname: "textract-fips.ca-central-1.amazonaws.com", 7678 CredentialScope: credentialScope{ 7679 Region: "ca-central-1", 7680 }, 7681 }, 7682 "fips-us-east-1": endpoint{ 7683 Hostname: "textract-fips.us-east-1.amazonaws.com", 7684 CredentialScope: credentialScope{ 7685 Region: "us-east-1", 7686 }, 7687 }, 7688 "fips-us-east-2": endpoint{ 7689 Hostname: "textract-fips.us-east-2.amazonaws.com", 7690 CredentialScope: credentialScope{ 7691 Region: "us-east-2", 7692 }, 7693 }, 7694 "fips-us-west-1": endpoint{ 7695 Hostname: "textract-fips.us-west-1.amazonaws.com", 7696 CredentialScope: credentialScope{ 7697 Region: "us-west-1", 7698 }, 7699 }, 7700 "fips-us-west-2": endpoint{ 7701 Hostname: "textract-fips.us-west-2.amazonaws.com", 7702 CredentialScope: credentialScope{ 7703 Region: "us-west-2", 7704 }, 7705 }, 7706 "us-east-1": endpoint{}, 7707 "us-east-2": endpoint{}, 7708 "us-west-1": endpoint{}, 7709 "us-west-2": endpoint{}, 7710 }, 7711 }, 7712 "transcribe": service{ 7713 Defaults: endpoint{ 7714 Protocols: []string{"https"}, 7715 }, 7716 Endpoints: endpoints{ 7717 "ap-east-1": endpoint{}, 7718 "ap-northeast-1": endpoint{}, 7719 "ap-northeast-2": endpoint{}, 7720 "ap-south-1": endpoint{}, 7721 "ap-southeast-1": endpoint{}, 7722 "ap-southeast-2": endpoint{}, 7723 "ca-central-1": endpoint{}, 7724 "eu-central-1": endpoint{}, 7725 "eu-west-1": endpoint{}, 7726 "eu-west-2": endpoint{}, 7727 "eu-west-3": endpoint{}, 7728 "fips-us-east-1": endpoint{ 7729 Hostname: "fips.transcribe.us-east-1.amazonaws.com", 7730 CredentialScope: credentialScope{ 7731 Region: "us-east-1", 7732 }, 7733 }, 7734 "fips-us-east-2": endpoint{ 7735 Hostname: "fips.transcribe.us-east-2.amazonaws.com", 7736 CredentialScope: credentialScope{ 7737 Region: "us-east-2", 7738 }, 7739 }, 7740 "fips-us-west-1": endpoint{ 7741 Hostname: "fips.transcribe.us-west-1.amazonaws.com", 7742 CredentialScope: credentialScope{ 7743 Region: "us-west-1", 7744 }, 7745 }, 7746 "fips-us-west-2": endpoint{ 7747 Hostname: "fips.transcribe.us-west-2.amazonaws.com", 7748 CredentialScope: credentialScope{ 7749 Region: "us-west-2", 7750 }, 7751 }, 7752 "me-south-1": endpoint{}, 7753 "sa-east-1": endpoint{}, 7754 "us-east-1": endpoint{}, 7755 "us-east-2": endpoint{}, 7756 "us-west-1": endpoint{}, 7757 "us-west-2": endpoint{}, 7758 }, 7759 }, 7760 "transcribestreaming": service{ 7761 7762 Endpoints: endpoints{ 7763 "ap-northeast-1": endpoint{}, 7764 "ap-northeast-2": endpoint{}, 7765 "ap-southeast-2": endpoint{}, 7766 "ca-central-1": endpoint{}, 7767 "eu-central-1": endpoint{}, 7768 "eu-west-1": endpoint{}, 7769 "eu-west-2": endpoint{}, 7770 "sa-east-1": endpoint{}, 7771 "transcribestreaming-fips-ca-central-1": endpoint{ 7772 Hostname: "transcribestreaming-fips.ca-central-1.amazonaws.com", 7773 CredentialScope: credentialScope{ 7774 Region: "ca-central-1", 7775 }, 7776 }, 7777 "transcribestreaming-fips-us-east-1": endpoint{ 7778 Hostname: "transcribestreaming-fips.us-east-1.amazonaws.com", 7779 CredentialScope: credentialScope{ 7780 Region: "us-east-1", 7781 }, 7782 }, 7783 "transcribestreaming-fips-us-east-2": endpoint{ 7784 Hostname: "transcribestreaming-fips.us-east-2.amazonaws.com", 7785 CredentialScope: credentialScope{ 7786 Region: "us-east-2", 7787 }, 7788 }, 7789 "transcribestreaming-fips-us-west-2": endpoint{ 7790 Hostname: "transcribestreaming-fips.us-west-2.amazonaws.com", 7791 CredentialScope: credentialScope{ 7792 Region: "us-west-2", 7793 }, 7794 }, 7795 "us-east-1": endpoint{}, 7796 "us-east-2": endpoint{}, 7797 "us-west-2": endpoint{}, 7798 }, 7799 }, 7800 "transfer": service{ 7801 7802 Endpoints: endpoints{ 7803 "af-south-1": endpoint{}, 7804 "ap-east-1": endpoint{}, 7805 "ap-northeast-1": endpoint{}, 7806 "ap-northeast-2": endpoint{}, 7807 "ap-south-1": endpoint{}, 7808 "ap-southeast-1": endpoint{}, 7809 "ap-southeast-2": endpoint{}, 7810 "ca-central-1": endpoint{}, 7811 "eu-central-1": endpoint{}, 7812 "eu-north-1": endpoint{}, 7813 "eu-south-1": endpoint{}, 7814 "eu-west-1": endpoint{}, 7815 "eu-west-2": endpoint{}, 7816 "eu-west-3": endpoint{}, 7817 "fips-ca-central-1": endpoint{ 7818 Hostname: "transfer-fips.ca-central-1.amazonaws.com", 7819 CredentialScope: credentialScope{ 7820 Region: "ca-central-1", 7821 }, 7822 }, 7823 "fips-us-east-1": endpoint{ 7824 Hostname: "transfer-fips.us-east-1.amazonaws.com", 7825 CredentialScope: credentialScope{ 7826 Region: "us-east-1", 7827 }, 7828 }, 7829 "fips-us-east-2": endpoint{ 7830 Hostname: "transfer-fips.us-east-2.amazonaws.com", 7831 CredentialScope: credentialScope{ 7832 Region: "us-east-2", 7833 }, 7834 }, 7835 "fips-us-west-1": endpoint{ 7836 Hostname: "transfer-fips.us-west-1.amazonaws.com", 7837 CredentialScope: credentialScope{ 7838 Region: "us-west-1", 7839 }, 7840 }, 7841 "fips-us-west-2": endpoint{ 7842 Hostname: "transfer-fips.us-west-2.amazonaws.com", 7843 CredentialScope: credentialScope{ 7844 Region: "us-west-2", 7845 }, 7846 }, 7847 "me-south-1": endpoint{}, 7848 "sa-east-1": endpoint{}, 7849 "us-east-1": endpoint{}, 7850 "us-east-2": endpoint{}, 7851 "us-west-1": endpoint{}, 7852 "us-west-2": endpoint{}, 7853 }, 7854 }, 7855 "translate": service{ 7856 Defaults: endpoint{ 7857 Protocols: []string{"https"}, 7858 }, 7859 Endpoints: endpoints{ 7860 "ap-east-1": endpoint{}, 7861 "ap-northeast-1": endpoint{}, 7862 "ap-northeast-2": endpoint{}, 7863 "ap-south-1": endpoint{}, 7864 "ap-southeast-1": endpoint{}, 7865 "ap-southeast-2": endpoint{}, 7866 "ca-central-1": endpoint{}, 7867 "eu-central-1": endpoint{}, 7868 "eu-north-1": endpoint{}, 7869 "eu-west-1": endpoint{}, 7870 "eu-west-2": endpoint{}, 7871 "eu-west-3": endpoint{}, 7872 "us-east-1": endpoint{}, 7873 "us-east-1-fips": endpoint{ 7874 Hostname: "translate-fips.us-east-1.amazonaws.com", 7875 CredentialScope: credentialScope{ 7876 Region: "us-east-1", 7877 }, 7878 }, 7879 "us-east-2": endpoint{}, 7880 "us-east-2-fips": endpoint{ 7881 Hostname: "translate-fips.us-east-2.amazonaws.com", 7882 CredentialScope: credentialScope{ 7883 Region: "us-east-2", 7884 }, 7885 }, 7886 "us-west-1": endpoint{}, 7887 "us-west-2": endpoint{}, 7888 "us-west-2-fips": endpoint{ 7889 Hostname: "translate-fips.us-west-2.amazonaws.com", 7890 CredentialScope: credentialScope{ 7891 Region: "us-west-2", 7892 }, 7893 }, 7894 }, 7895 }, 7896 "voiceid": service{ 7897 7898 Endpoints: endpoints{ 7899 "ap-northeast-1": endpoint{}, 7900 "ap-southeast-1": endpoint{}, 7901 "ap-southeast-2": endpoint{}, 7902 "eu-central-1": endpoint{}, 7903 "eu-west-2": endpoint{}, 7904 "us-east-1": endpoint{}, 7905 "us-west-2": endpoint{}, 7906 }, 7907 }, 7908 "waf": service{ 7909 PartitionEndpoint: "aws-global", 7910 IsRegionalized: boxedFalse, 7911 7912 Endpoints: endpoints{ 7913 "aws-fips": endpoint{ 7914 Hostname: "waf-fips.amazonaws.com", 7915 CredentialScope: credentialScope{ 7916 Region: "us-east-1", 7917 }, 7918 }, 7919 "aws-global": endpoint{ 7920 Hostname: "waf.amazonaws.com", 7921 CredentialScope: credentialScope{ 7922 Region: "us-east-1", 7923 }, 7924 }, 7925 }, 7926 }, 7927 "waf-regional": service{ 7928 7929 Endpoints: endpoints{ 7930 "af-south-1": endpoint{ 7931 Hostname: "waf-regional.af-south-1.amazonaws.com", 7932 CredentialScope: credentialScope{ 7933 Region: "af-south-1", 7934 }, 7935 }, 7936 "ap-east-1": endpoint{ 7937 Hostname: "waf-regional.ap-east-1.amazonaws.com", 7938 CredentialScope: credentialScope{ 7939 Region: "ap-east-1", 7940 }, 7941 }, 7942 "ap-northeast-1": endpoint{ 7943 Hostname: "waf-regional.ap-northeast-1.amazonaws.com", 7944 CredentialScope: credentialScope{ 7945 Region: "ap-northeast-1", 7946 }, 7947 }, 7948 "ap-northeast-2": endpoint{ 7949 Hostname: "waf-regional.ap-northeast-2.amazonaws.com", 7950 CredentialScope: credentialScope{ 7951 Region: "ap-northeast-2", 7952 }, 7953 }, 7954 "ap-northeast-3": endpoint{ 7955 Hostname: "waf-regional.ap-northeast-3.amazonaws.com", 7956 CredentialScope: credentialScope{ 7957 Region: "ap-northeast-3", 7958 }, 7959 }, 7960 "ap-south-1": endpoint{ 7961 Hostname: "waf-regional.ap-south-1.amazonaws.com", 7962 CredentialScope: credentialScope{ 7963 Region: "ap-south-1", 7964 }, 7965 }, 7966 "ap-southeast-1": endpoint{ 7967 Hostname: "waf-regional.ap-southeast-1.amazonaws.com", 7968 CredentialScope: credentialScope{ 7969 Region: "ap-southeast-1", 7970 }, 7971 }, 7972 "ap-southeast-2": endpoint{ 7973 Hostname: "waf-regional.ap-southeast-2.amazonaws.com", 7974 CredentialScope: credentialScope{ 7975 Region: "ap-southeast-2", 7976 }, 7977 }, 7978 "ca-central-1": endpoint{ 7979 Hostname: "waf-regional.ca-central-1.amazonaws.com", 7980 CredentialScope: credentialScope{ 7981 Region: "ca-central-1", 7982 }, 7983 }, 7984 "eu-central-1": endpoint{ 7985 Hostname: "waf-regional.eu-central-1.amazonaws.com", 7986 CredentialScope: credentialScope{ 7987 Region: "eu-central-1", 7988 }, 7989 }, 7990 "eu-north-1": endpoint{ 7991 Hostname: "waf-regional.eu-north-1.amazonaws.com", 7992 CredentialScope: credentialScope{ 7993 Region: "eu-north-1", 7994 }, 7995 }, 7996 "eu-south-1": endpoint{ 7997 Hostname: "waf-regional.eu-south-1.amazonaws.com", 7998 CredentialScope: credentialScope{ 7999 Region: "eu-south-1", 8000 }, 8001 }, 8002 "eu-west-1": endpoint{ 8003 Hostname: "waf-regional.eu-west-1.amazonaws.com", 8004 CredentialScope: credentialScope{ 8005 Region: "eu-west-1", 8006 }, 8007 }, 8008 "eu-west-2": endpoint{ 8009 Hostname: "waf-regional.eu-west-2.amazonaws.com", 8010 CredentialScope: credentialScope{ 8011 Region: "eu-west-2", 8012 }, 8013 }, 8014 "eu-west-3": endpoint{ 8015 Hostname: "waf-regional.eu-west-3.amazonaws.com", 8016 CredentialScope: credentialScope{ 8017 Region: "eu-west-3", 8018 }, 8019 }, 8020 "fips-af-south-1": endpoint{ 8021 Hostname: "waf-regional-fips.af-south-1.amazonaws.com", 8022 CredentialScope: credentialScope{ 8023 Region: "af-south-1", 8024 }, 8025 }, 8026 "fips-ap-east-1": endpoint{ 8027 Hostname: "waf-regional-fips.ap-east-1.amazonaws.com", 8028 CredentialScope: credentialScope{ 8029 Region: "ap-east-1", 8030 }, 8031 }, 8032 "fips-ap-northeast-1": endpoint{ 8033 Hostname: "waf-regional-fips.ap-northeast-1.amazonaws.com", 8034 CredentialScope: credentialScope{ 8035 Region: "ap-northeast-1", 8036 }, 8037 }, 8038 "fips-ap-northeast-2": endpoint{ 8039 Hostname: "waf-regional-fips.ap-northeast-2.amazonaws.com", 8040 CredentialScope: credentialScope{ 8041 Region: "ap-northeast-2", 8042 }, 8043 }, 8044 "fips-ap-northeast-3": endpoint{ 8045 Hostname: "waf-regional-fips.ap-northeast-3.amazonaws.com", 8046 CredentialScope: credentialScope{ 8047 Region: "ap-northeast-3", 8048 }, 8049 }, 8050 "fips-ap-south-1": endpoint{ 8051 Hostname: "waf-regional-fips.ap-south-1.amazonaws.com", 8052 CredentialScope: credentialScope{ 8053 Region: "ap-south-1", 8054 }, 8055 }, 8056 "fips-ap-southeast-1": endpoint{ 8057 Hostname: "waf-regional-fips.ap-southeast-1.amazonaws.com", 8058 CredentialScope: credentialScope{ 8059 Region: "ap-southeast-1", 8060 }, 8061 }, 8062 "fips-ap-southeast-2": endpoint{ 8063 Hostname: "waf-regional-fips.ap-southeast-2.amazonaws.com", 8064 CredentialScope: credentialScope{ 8065 Region: "ap-southeast-2", 8066 }, 8067 }, 8068 "fips-ca-central-1": endpoint{ 8069 Hostname: "waf-regional-fips.ca-central-1.amazonaws.com", 8070 CredentialScope: credentialScope{ 8071 Region: "ca-central-1", 8072 }, 8073 }, 8074 "fips-eu-central-1": endpoint{ 8075 Hostname: "waf-regional-fips.eu-central-1.amazonaws.com", 8076 CredentialScope: credentialScope{ 8077 Region: "eu-central-1", 8078 }, 8079 }, 8080 "fips-eu-north-1": endpoint{ 8081 Hostname: "waf-regional-fips.eu-north-1.amazonaws.com", 8082 CredentialScope: credentialScope{ 8083 Region: "eu-north-1", 8084 }, 8085 }, 8086 "fips-eu-south-1": endpoint{ 8087 Hostname: "waf-regional-fips.eu-south-1.amazonaws.com", 8088 CredentialScope: credentialScope{ 8089 Region: "eu-south-1", 8090 }, 8091 }, 8092 "fips-eu-west-1": endpoint{ 8093 Hostname: "waf-regional-fips.eu-west-1.amazonaws.com", 8094 CredentialScope: credentialScope{ 8095 Region: "eu-west-1", 8096 }, 8097 }, 8098 "fips-eu-west-2": endpoint{ 8099 Hostname: "waf-regional-fips.eu-west-2.amazonaws.com", 8100 CredentialScope: credentialScope{ 8101 Region: "eu-west-2", 8102 }, 8103 }, 8104 "fips-eu-west-3": endpoint{ 8105 Hostname: "waf-regional-fips.eu-west-3.amazonaws.com", 8106 CredentialScope: credentialScope{ 8107 Region: "eu-west-3", 8108 }, 8109 }, 8110 "fips-me-south-1": endpoint{ 8111 Hostname: "waf-regional-fips.me-south-1.amazonaws.com", 8112 CredentialScope: credentialScope{ 8113 Region: "me-south-1", 8114 }, 8115 }, 8116 "fips-sa-east-1": endpoint{ 8117 Hostname: "waf-regional-fips.sa-east-1.amazonaws.com", 8118 CredentialScope: credentialScope{ 8119 Region: "sa-east-1", 8120 }, 8121 }, 8122 "fips-us-east-1": endpoint{ 8123 Hostname: "waf-regional-fips.us-east-1.amazonaws.com", 8124 CredentialScope: credentialScope{ 8125 Region: "us-east-1", 8126 }, 8127 }, 8128 "fips-us-east-2": endpoint{ 8129 Hostname: "waf-regional-fips.us-east-2.amazonaws.com", 8130 CredentialScope: credentialScope{ 8131 Region: "us-east-2", 8132 }, 8133 }, 8134 "fips-us-west-1": endpoint{ 8135 Hostname: "waf-regional-fips.us-west-1.amazonaws.com", 8136 CredentialScope: credentialScope{ 8137 Region: "us-west-1", 8138 }, 8139 }, 8140 "fips-us-west-2": endpoint{ 8141 Hostname: "waf-regional-fips.us-west-2.amazonaws.com", 8142 CredentialScope: credentialScope{ 8143 Region: "us-west-2", 8144 }, 8145 }, 8146 "me-south-1": endpoint{ 8147 Hostname: "waf-regional.me-south-1.amazonaws.com", 8148 CredentialScope: credentialScope{ 8149 Region: "me-south-1", 8150 }, 8151 }, 8152 "sa-east-1": endpoint{ 8153 Hostname: "waf-regional.sa-east-1.amazonaws.com", 8154 CredentialScope: credentialScope{ 8155 Region: "sa-east-1", 8156 }, 8157 }, 8158 "us-east-1": endpoint{ 8159 Hostname: "waf-regional.us-east-1.amazonaws.com", 8160 CredentialScope: credentialScope{ 8161 Region: "us-east-1", 8162 }, 8163 }, 8164 "us-east-2": endpoint{ 8165 Hostname: "waf-regional.us-east-2.amazonaws.com", 8166 CredentialScope: credentialScope{ 8167 Region: "us-east-2", 8168 }, 8169 }, 8170 "us-west-1": endpoint{ 8171 Hostname: "waf-regional.us-west-1.amazonaws.com", 8172 CredentialScope: credentialScope{ 8173 Region: "us-west-1", 8174 }, 8175 }, 8176 "us-west-2": endpoint{ 8177 Hostname: "waf-regional.us-west-2.amazonaws.com", 8178 CredentialScope: credentialScope{ 8179 Region: "us-west-2", 8180 }, 8181 }, 8182 }, 8183 }, 8184 "workdocs": service{ 8185 8186 Endpoints: endpoints{ 8187 "ap-northeast-1": endpoint{}, 8188 "ap-southeast-1": endpoint{}, 8189 "ap-southeast-2": endpoint{}, 8190 "eu-west-1": endpoint{}, 8191 "fips-us-east-1": endpoint{ 8192 Hostname: "workdocs-fips.us-east-1.amazonaws.com", 8193 CredentialScope: credentialScope{ 8194 Region: "us-east-1", 8195 }, 8196 }, 8197 "fips-us-west-2": endpoint{ 8198 Hostname: "workdocs-fips.us-west-2.amazonaws.com", 8199 CredentialScope: credentialScope{ 8200 Region: "us-west-2", 8201 }, 8202 }, 8203 "us-east-1": endpoint{}, 8204 "us-west-2": endpoint{}, 8205 }, 8206 }, 8207 "workmail": service{ 8208 Defaults: endpoint{ 8209 Protocols: []string{"https"}, 8210 }, 8211 Endpoints: endpoints{ 8212 "eu-west-1": endpoint{}, 8213 "us-east-1": endpoint{}, 8214 "us-west-2": endpoint{}, 8215 }, 8216 }, 8217 "workspaces": service{ 8218 8219 Endpoints: endpoints{ 8220 "ap-northeast-1": endpoint{}, 8221 "ap-northeast-2": endpoint{}, 8222 "ap-south-1": endpoint{}, 8223 "ap-southeast-1": endpoint{}, 8224 "ap-southeast-2": endpoint{}, 8225 "ca-central-1": endpoint{}, 8226 "eu-central-1": endpoint{}, 8227 "eu-west-1": endpoint{}, 8228 "eu-west-2": endpoint{}, 8229 "fips-us-east-1": endpoint{ 8230 Hostname: "workspaces-fips.us-east-1.amazonaws.com", 8231 CredentialScope: credentialScope{ 8232 Region: "us-east-1", 8233 }, 8234 }, 8235 "fips-us-west-2": endpoint{ 8236 Hostname: "workspaces-fips.us-west-2.amazonaws.com", 8237 CredentialScope: credentialScope{ 8238 Region: "us-west-2", 8239 }, 8240 }, 8241 "sa-east-1": endpoint{}, 8242 "us-east-1": endpoint{}, 8243 "us-west-2": endpoint{}, 8244 }, 8245 }, 8246 "xray": service{ 8247 8248 Endpoints: endpoints{ 8249 "af-south-1": endpoint{}, 8250 "ap-east-1": endpoint{}, 8251 "ap-northeast-1": endpoint{}, 8252 "ap-northeast-2": endpoint{}, 8253 "ap-northeast-3": endpoint{}, 8254 "ap-south-1": endpoint{}, 8255 "ap-southeast-1": endpoint{}, 8256 "ap-southeast-2": endpoint{}, 8257 "ca-central-1": endpoint{}, 8258 "eu-central-1": endpoint{}, 8259 "eu-north-1": endpoint{}, 8260 "eu-south-1": endpoint{}, 8261 "eu-west-1": endpoint{}, 8262 "eu-west-2": endpoint{}, 8263 "eu-west-3": endpoint{}, 8264 "fips-us-east-1": endpoint{ 8265 Hostname: "xray-fips.us-east-1.amazonaws.com", 8266 CredentialScope: credentialScope{ 8267 Region: "us-east-1", 8268 }, 8269 }, 8270 "fips-us-east-2": endpoint{ 8271 Hostname: "xray-fips.us-east-2.amazonaws.com", 8272 CredentialScope: credentialScope{ 8273 Region: "us-east-2", 8274 }, 8275 }, 8276 "fips-us-west-1": endpoint{ 8277 Hostname: "xray-fips.us-west-1.amazonaws.com", 8278 CredentialScope: credentialScope{ 8279 Region: "us-west-1", 8280 }, 8281 }, 8282 "fips-us-west-2": endpoint{ 8283 Hostname: "xray-fips.us-west-2.amazonaws.com", 8284 CredentialScope: credentialScope{ 8285 Region: "us-west-2", 8286 }, 8287 }, 8288 "me-south-1": endpoint{}, 8289 "sa-east-1": endpoint{}, 8290 "us-east-1": endpoint{}, 8291 "us-east-2": endpoint{}, 8292 "us-west-1": endpoint{}, 8293 "us-west-2": endpoint{}, 8294 }, 8295 }, 8296 }, 8297 } 8298 8299 // AwsCnPartition returns the Resolver for AWS China. 8300 func AwsCnPartition() Partition { 8301 return awscnPartition.Partition() 8302 } 8303 8304 var awscnPartition = partition{ 8305 ID: "aws-cn", 8306 Name: "AWS China", 8307 DNSSuffix: "amazonaws.com.cn", 8308 RegionRegex: regionRegex{ 8309 Regexp: func() *regexp.Regexp { 8310 reg, _ := regexp.Compile("^cn\\-\\w+\\-\\d+$") 8311 return reg 8312 }(), 8313 }, 8314 Defaults: endpoint{ 8315 Hostname: "{service}.{region}.{dnsSuffix}", 8316 Protocols: []string{"https"}, 8317 SignatureVersions: []string{"v4"}, 8318 }, 8319 Regions: regions{ 8320 "cn-north-1": region{ 8321 Description: "China (Beijing)", 8322 }, 8323 "cn-northwest-1": region{ 8324 Description: "China (Ningxia)", 8325 }, 8326 }, 8327 Services: services{ 8328 "access-analyzer": service{ 8329 8330 Endpoints: endpoints{ 8331 "cn-north-1": endpoint{}, 8332 "cn-northwest-1": endpoint{}, 8333 }, 8334 }, 8335 "account": service{ 8336 PartitionEndpoint: "aws-cn-global", 8337 IsRegionalized: boxedFalse, 8338 8339 Endpoints: endpoints{ 8340 "aws-cn-global": endpoint{ 8341 Hostname: "account.cn-northwest-1.amazonaws.com.cn", 8342 CredentialScope: credentialScope{ 8343 Region: "cn-northwest-1", 8344 }, 8345 }, 8346 }, 8347 }, 8348 "acm": service{ 8349 8350 Endpoints: endpoints{ 8351 "cn-north-1": endpoint{}, 8352 "cn-northwest-1": endpoint{}, 8353 }, 8354 }, 8355 "api.ecr": service{ 8356 8357 Endpoints: endpoints{ 8358 "cn-north-1": endpoint{ 8359 Hostname: "api.ecr.cn-north-1.amazonaws.com.cn", 8360 CredentialScope: credentialScope{ 8361 Region: "cn-north-1", 8362 }, 8363 }, 8364 "cn-northwest-1": endpoint{ 8365 Hostname: "api.ecr.cn-northwest-1.amazonaws.com.cn", 8366 CredentialScope: credentialScope{ 8367 Region: "cn-northwest-1", 8368 }, 8369 }, 8370 }, 8371 }, 8372 "api.sagemaker": service{ 8373 8374 Endpoints: endpoints{ 8375 "cn-north-1": endpoint{}, 8376 "cn-northwest-1": endpoint{}, 8377 }, 8378 }, 8379 "apigateway": service{ 8380 8381 Endpoints: endpoints{ 8382 "cn-north-1": endpoint{}, 8383 "cn-northwest-1": endpoint{}, 8384 }, 8385 }, 8386 "application-autoscaling": service{ 8387 Defaults: endpoint{ 8388 Protocols: []string{"http", "https"}, 8389 }, 8390 Endpoints: endpoints{ 8391 "cn-north-1": endpoint{}, 8392 "cn-northwest-1": endpoint{}, 8393 }, 8394 }, 8395 "appmesh": service{ 8396 8397 Endpoints: endpoints{ 8398 "cn-north-1": endpoint{}, 8399 "cn-northwest-1": endpoint{}, 8400 }, 8401 }, 8402 "appsync": service{ 8403 8404 Endpoints: endpoints{ 8405 "cn-north-1": endpoint{}, 8406 "cn-northwest-1": endpoint{}, 8407 }, 8408 }, 8409 "athena": service{ 8410 8411 Endpoints: endpoints{ 8412 "cn-north-1": endpoint{}, 8413 "cn-northwest-1": endpoint{}, 8414 }, 8415 }, 8416 "autoscaling": service{ 8417 Defaults: endpoint{ 8418 Protocols: []string{"http", "https"}, 8419 }, 8420 Endpoints: endpoints{ 8421 "cn-north-1": endpoint{}, 8422 "cn-northwest-1": endpoint{}, 8423 }, 8424 }, 8425 "autoscaling-plans": service{ 8426 Defaults: endpoint{ 8427 Protocols: []string{"http", "https"}, 8428 }, 8429 Endpoints: endpoints{ 8430 "cn-north-1": endpoint{}, 8431 "cn-northwest-1": endpoint{}, 8432 }, 8433 }, 8434 "backup": service{ 8435 8436 Endpoints: endpoints{ 8437 "cn-north-1": endpoint{}, 8438 "cn-northwest-1": endpoint{}, 8439 }, 8440 }, 8441 "batch": service{ 8442 8443 Endpoints: endpoints{ 8444 "cn-north-1": endpoint{}, 8445 "cn-northwest-1": endpoint{}, 8446 }, 8447 }, 8448 "budgets": service{ 8449 PartitionEndpoint: "aws-cn-global", 8450 IsRegionalized: boxedFalse, 8451 8452 Endpoints: endpoints{ 8453 "aws-cn-global": endpoint{ 8454 Hostname: "budgets.amazonaws.com.cn", 8455 CredentialScope: credentialScope{ 8456 Region: "cn-northwest-1", 8457 }, 8458 }, 8459 }, 8460 }, 8461 "ce": service{ 8462 PartitionEndpoint: "aws-cn-global", 8463 IsRegionalized: boxedFalse, 8464 8465 Endpoints: endpoints{ 8466 "aws-cn-global": endpoint{ 8467 Hostname: "ce.cn-northwest-1.amazonaws.com.cn", 8468 CredentialScope: credentialScope{ 8469 Region: "cn-northwest-1", 8470 }, 8471 }, 8472 }, 8473 }, 8474 "cloudformation": service{ 8475 8476 Endpoints: endpoints{ 8477 "cn-north-1": endpoint{}, 8478 "cn-northwest-1": endpoint{}, 8479 }, 8480 }, 8481 "cloudfront": service{ 8482 PartitionEndpoint: "aws-cn-global", 8483 IsRegionalized: boxedFalse, 8484 8485 Endpoints: endpoints{ 8486 "aws-cn-global": endpoint{ 8487 Hostname: "cloudfront.cn-northwest-1.amazonaws.com.cn", 8488 Protocols: []string{"http", "https"}, 8489 CredentialScope: credentialScope{ 8490 Region: "cn-northwest-1", 8491 }, 8492 }, 8493 }, 8494 }, 8495 "cloudtrail": service{ 8496 8497 Endpoints: endpoints{ 8498 "cn-north-1": endpoint{}, 8499 "cn-northwest-1": endpoint{}, 8500 }, 8501 }, 8502 "codebuild": service{ 8503 8504 Endpoints: endpoints{ 8505 "cn-north-1": endpoint{}, 8506 "cn-northwest-1": endpoint{}, 8507 }, 8508 }, 8509 "codecommit": service{ 8510 8511 Endpoints: endpoints{ 8512 "cn-north-1": endpoint{}, 8513 "cn-northwest-1": endpoint{}, 8514 }, 8515 }, 8516 "codedeploy": service{ 8517 8518 Endpoints: endpoints{ 8519 "cn-north-1": endpoint{}, 8520 "cn-northwest-1": endpoint{}, 8521 }, 8522 }, 8523 "cognito-identity": service{ 8524 8525 Endpoints: endpoints{ 8526 "cn-north-1": endpoint{}, 8527 }, 8528 }, 8529 "config": service{ 8530 8531 Endpoints: endpoints{ 8532 "cn-north-1": endpoint{}, 8533 "cn-northwest-1": endpoint{}, 8534 }, 8535 }, 8536 "cur": service{ 8537 8538 Endpoints: endpoints{ 8539 "cn-northwest-1": endpoint{}, 8540 }, 8541 }, 8542 "data.jobs.iot": service{ 8543 8544 Endpoints: endpoints{ 8545 "cn-north-1": endpoint{}, 8546 "cn-northwest-1": endpoint{}, 8547 }, 8548 }, 8549 "databrew": service{ 8550 8551 Endpoints: endpoints{ 8552 "cn-north-1": endpoint{}, 8553 "cn-northwest-1": endpoint{}, 8554 }, 8555 }, 8556 "dax": service{ 8557 8558 Endpoints: endpoints{ 8559 "cn-north-1": endpoint{}, 8560 "cn-northwest-1": endpoint{}, 8561 }, 8562 }, 8563 "directconnect": service{ 8564 8565 Endpoints: endpoints{ 8566 "cn-north-1": endpoint{}, 8567 "cn-northwest-1": endpoint{}, 8568 }, 8569 }, 8570 "dms": service{ 8571 8572 Endpoints: endpoints{ 8573 "cn-north-1": endpoint{}, 8574 "cn-northwest-1": endpoint{}, 8575 }, 8576 }, 8577 "docdb": service{ 8578 8579 Endpoints: endpoints{ 8580 "cn-northwest-1": endpoint{ 8581 Hostname: "rds.cn-northwest-1.amazonaws.com.cn", 8582 CredentialScope: credentialScope{ 8583 Region: "cn-northwest-1", 8584 }, 8585 }, 8586 }, 8587 }, 8588 "ds": service{ 8589 8590 Endpoints: endpoints{ 8591 "cn-north-1": endpoint{}, 8592 "cn-northwest-1": endpoint{}, 8593 }, 8594 }, 8595 "dynamodb": service{ 8596 Defaults: endpoint{ 8597 Protocols: []string{"http", "https"}, 8598 }, 8599 Endpoints: endpoints{ 8600 "cn-north-1": endpoint{}, 8601 "cn-northwest-1": endpoint{}, 8602 }, 8603 }, 8604 "ebs": service{ 8605 8606 Endpoints: endpoints{ 8607 "cn-north-1": endpoint{}, 8608 "cn-northwest-1": endpoint{}, 8609 }, 8610 }, 8611 "ec2": service{ 8612 Defaults: endpoint{ 8613 Protocols: []string{"http", "https"}, 8614 }, 8615 Endpoints: endpoints{ 8616 "cn-north-1": endpoint{}, 8617 "cn-northwest-1": endpoint{}, 8618 }, 8619 }, 8620 "ecs": service{ 8621 8622 Endpoints: endpoints{ 8623 "cn-north-1": endpoint{}, 8624 "cn-northwest-1": endpoint{}, 8625 }, 8626 }, 8627 "eks": service{ 8628 Defaults: endpoint{ 8629 Protocols: []string{"http", "https"}, 8630 }, 8631 Endpoints: endpoints{ 8632 "cn-north-1": endpoint{}, 8633 "cn-northwest-1": endpoint{}, 8634 }, 8635 }, 8636 "elasticache": service{ 8637 8638 Endpoints: endpoints{ 8639 "cn-north-1": endpoint{}, 8640 "cn-northwest-1": endpoint{}, 8641 }, 8642 }, 8643 "elasticbeanstalk": service{ 8644 8645 Endpoints: endpoints{ 8646 "cn-north-1": endpoint{}, 8647 "cn-northwest-1": endpoint{}, 8648 }, 8649 }, 8650 "elasticfilesystem": service{ 8651 8652 Endpoints: endpoints{ 8653 "cn-north-1": endpoint{}, 8654 "cn-northwest-1": endpoint{}, 8655 "fips-cn-north-1": endpoint{ 8656 Hostname: "elasticfilesystem-fips.cn-north-1.amazonaws.com.cn", 8657 CredentialScope: credentialScope{ 8658 Region: "cn-north-1", 8659 }, 8660 }, 8661 "fips-cn-northwest-1": endpoint{ 8662 Hostname: "elasticfilesystem-fips.cn-northwest-1.amazonaws.com.cn", 8663 CredentialScope: credentialScope{ 8664 Region: "cn-northwest-1", 8665 }, 8666 }, 8667 }, 8668 }, 8669 "elasticloadbalancing": service{ 8670 Defaults: endpoint{ 8671 Protocols: []string{"https"}, 8672 }, 8673 Endpoints: endpoints{ 8674 "cn-north-1": endpoint{}, 8675 "cn-northwest-1": endpoint{}, 8676 }, 8677 }, 8678 "elasticmapreduce": service{ 8679 Defaults: endpoint{ 8680 Protocols: []string{"https"}, 8681 }, 8682 Endpoints: endpoints{ 8683 "cn-north-1": endpoint{}, 8684 "cn-northwest-1": endpoint{}, 8685 }, 8686 }, 8687 "emr-containers": service{ 8688 8689 Endpoints: endpoints{ 8690 "cn-north-1": endpoint{}, 8691 "cn-northwest-1": endpoint{}, 8692 }, 8693 }, 8694 "es": service{ 8695 8696 Endpoints: endpoints{ 8697 "cn-north-1": endpoint{}, 8698 "cn-northwest-1": endpoint{}, 8699 }, 8700 }, 8701 "events": service{ 8702 8703 Endpoints: endpoints{ 8704 "cn-north-1": endpoint{}, 8705 "cn-northwest-1": endpoint{}, 8706 }, 8707 }, 8708 "firehose": service{ 8709 8710 Endpoints: endpoints{ 8711 "cn-north-1": endpoint{}, 8712 "cn-northwest-1": endpoint{}, 8713 }, 8714 }, 8715 "fms": service{ 8716 Defaults: endpoint{ 8717 Protocols: []string{"https"}, 8718 }, 8719 Endpoints: endpoints{ 8720 "cn-north-1": endpoint{}, 8721 "cn-northwest-1": endpoint{}, 8722 }, 8723 }, 8724 "fsx": service{ 8725 8726 Endpoints: endpoints{ 8727 "cn-north-1": endpoint{}, 8728 "cn-northwest-1": endpoint{}, 8729 }, 8730 }, 8731 "gamelift": service{ 8732 8733 Endpoints: endpoints{ 8734 "cn-north-1": endpoint{}, 8735 "cn-northwest-1": endpoint{}, 8736 }, 8737 }, 8738 "glacier": service{ 8739 Defaults: endpoint{ 8740 Protocols: []string{"http", "https"}, 8741 }, 8742 Endpoints: endpoints{ 8743 "cn-north-1": endpoint{}, 8744 "cn-northwest-1": endpoint{}, 8745 }, 8746 }, 8747 "glue": service{ 8748 8749 Endpoints: endpoints{ 8750 "cn-north-1": endpoint{}, 8751 "cn-northwest-1": endpoint{}, 8752 }, 8753 }, 8754 "greengrass": service{ 8755 IsRegionalized: boxedTrue, 8756 Defaults: endpoint{ 8757 Protocols: []string{"https"}, 8758 }, 8759 Endpoints: endpoints{ 8760 "cn-north-1": endpoint{}, 8761 }, 8762 }, 8763 "guardduty": service{ 8764 IsRegionalized: boxedTrue, 8765 Defaults: endpoint{ 8766 Protocols: []string{"https"}, 8767 }, 8768 Endpoints: endpoints{ 8769 "cn-north-1": endpoint{}, 8770 "cn-northwest-1": endpoint{}, 8771 }, 8772 }, 8773 "health": service{ 8774 8775 Endpoints: endpoints{ 8776 "cn-north-1": endpoint{}, 8777 "cn-northwest-1": endpoint{}, 8778 }, 8779 }, 8780 "iam": service{ 8781 PartitionEndpoint: "aws-cn-global", 8782 IsRegionalized: boxedFalse, 8783 8784 Endpoints: endpoints{ 8785 "aws-cn-global": endpoint{ 8786 Hostname: "iam.cn-north-1.amazonaws.com.cn", 8787 CredentialScope: credentialScope{ 8788 Region: "cn-north-1", 8789 }, 8790 }, 8791 }, 8792 }, 8793 "iot": service{ 8794 Defaults: endpoint{ 8795 CredentialScope: credentialScope{ 8796 Service: "execute-api", 8797 }, 8798 }, 8799 Endpoints: endpoints{ 8800 "cn-north-1": endpoint{}, 8801 "cn-northwest-1": endpoint{}, 8802 }, 8803 }, 8804 "iotanalytics": service{ 8805 8806 Endpoints: endpoints{ 8807 "cn-north-1": endpoint{}, 8808 }, 8809 }, 8810 "iotevents": service{ 8811 8812 Endpoints: endpoints{ 8813 "cn-north-1": endpoint{}, 8814 }, 8815 }, 8816 "ioteventsdata": service{ 8817 8818 Endpoints: endpoints{ 8819 "cn-north-1": endpoint{ 8820 Hostname: "data.iotevents.cn-north-1.amazonaws.com.cn", 8821 CredentialScope: credentialScope{ 8822 Region: "cn-north-1", 8823 }, 8824 }, 8825 }, 8826 }, 8827 "iotsecuredtunneling": service{ 8828 8829 Endpoints: endpoints{ 8830 "cn-north-1": endpoint{}, 8831 "cn-northwest-1": endpoint{}, 8832 }, 8833 }, 8834 "kafka": service{ 8835 8836 Endpoints: endpoints{ 8837 "cn-north-1": endpoint{}, 8838 "cn-northwest-1": endpoint{}, 8839 }, 8840 }, 8841 "kinesis": service{ 8842 8843 Endpoints: endpoints{ 8844 "cn-north-1": endpoint{}, 8845 "cn-northwest-1": endpoint{}, 8846 }, 8847 }, 8848 "kinesisanalytics": service{ 8849 8850 Endpoints: endpoints{ 8851 "cn-north-1": endpoint{}, 8852 "cn-northwest-1": endpoint{}, 8853 }, 8854 }, 8855 "kms": service{ 8856 8857 Endpoints: endpoints{ 8858 "cn-north-1": endpoint{}, 8859 "cn-northwest-1": endpoint{}, 8860 }, 8861 }, 8862 "lakeformation": service{ 8863 8864 Endpoints: endpoints{ 8865 "cn-north-1": endpoint{}, 8866 "cn-northwest-1": endpoint{}, 8867 }, 8868 }, 8869 "lambda": service{ 8870 8871 Endpoints: endpoints{ 8872 "cn-north-1": endpoint{}, 8873 "cn-northwest-1": endpoint{}, 8874 }, 8875 }, 8876 "license-manager": service{ 8877 8878 Endpoints: endpoints{ 8879 "cn-north-1": endpoint{}, 8880 "cn-northwest-1": endpoint{}, 8881 }, 8882 }, 8883 "logs": service{ 8884 8885 Endpoints: endpoints{ 8886 "cn-north-1": endpoint{}, 8887 "cn-northwest-1": endpoint{}, 8888 }, 8889 }, 8890 "mediaconvert": service{ 8891 8892 Endpoints: endpoints{ 8893 "cn-northwest-1": endpoint{ 8894 Hostname: "subscribe.mediaconvert.cn-northwest-1.amazonaws.com.cn", 8895 CredentialScope: credentialScope{ 8896 Region: "cn-northwest-1", 8897 }, 8898 }, 8899 }, 8900 }, 8901 "monitoring": service{ 8902 Defaults: endpoint{ 8903 Protocols: []string{"http", "https"}, 8904 }, 8905 Endpoints: endpoints{ 8906 "cn-north-1": endpoint{}, 8907 "cn-northwest-1": endpoint{}, 8908 }, 8909 }, 8910 "mq": service{ 8911 8912 Endpoints: endpoints{ 8913 "cn-north-1": endpoint{}, 8914 "cn-northwest-1": endpoint{}, 8915 }, 8916 }, 8917 "neptune": service{ 8918 8919 Endpoints: endpoints{ 8920 "cn-north-1": endpoint{ 8921 Hostname: "rds.cn-north-1.amazonaws.com.cn", 8922 CredentialScope: credentialScope{ 8923 Region: "cn-north-1", 8924 }, 8925 }, 8926 "cn-northwest-1": endpoint{ 8927 Hostname: "rds.cn-northwest-1.amazonaws.com.cn", 8928 CredentialScope: credentialScope{ 8929 Region: "cn-northwest-1", 8930 }, 8931 }, 8932 }, 8933 }, 8934 "organizations": service{ 8935 PartitionEndpoint: "aws-cn-global", 8936 IsRegionalized: boxedFalse, 8937 8938 Endpoints: endpoints{ 8939 "aws-cn-global": endpoint{ 8940 Hostname: "organizations.cn-northwest-1.amazonaws.com.cn", 8941 CredentialScope: credentialScope{ 8942 Region: "cn-northwest-1", 8943 }, 8944 }, 8945 }, 8946 }, 8947 "personalize": service{ 8948 8949 Endpoints: endpoints{ 8950 "cn-north-1": endpoint{}, 8951 }, 8952 }, 8953 "polly": service{ 8954 8955 Endpoints: endpoints{ 8956 "cn-northwest-1": endpoint{}, 8957 }, 8958 }, 8959 "ram": service{ 8960 8961 Endpoints: endpoints{ 8962 "cn-north-1": endpoint{}, 8963 "cn-northwest-1": endpoint{}, 8964 }, 8965 }, 8966 "rds": service{ 8967 8968 Endpoints: endpoints{ 8969 "cn-north-1": endpoint{}, 8970 "cn-northwest-1": endpoint{}, 8971 }, 8972 }, 8973 "redshift": service{ 8974 8975 Endpoints: endpoints{ 8976 "cn-north-1": endpoint{}, 8977 "cn-northwest-1": endpoint{}, 8978 }, 8979 }, 8980 "resource-groups": service{ 8981 8982 Endpoints: endpoints{ 8983 "cn-north-1": endpoint{}, 8984 "cn-northwest-1": endpoint{}, 8985 }, 8986 }, 8987 "route53": service{ 8988 PartitionEndpoint: "aws-cn-global", 8989 IsRegionalized: boxedFalse, 8990 8991 Endpoints: endpoints{ 8992 "aws-cn-global": endpoint{ 8993 Hostname: "route53.amazonaws.com.cn", 8994 CredentialScope: credentialScope{ 8995 Region: "cn-northwest-1", 8996 }, 8997 }, 8998 }, 8999 }, 9000 "route53resolver": service{ 9001 Defaults: endpoint{ 9002 Protocols: []string{"https"}, 9003 }, 9004 Endpoints: endpoints{ 9005 "cn-north-1": endpoint{}, 9006 "cn-northwest-1": endpoint{}, 9007 }, 9008 }, 9009 "runtime.sagemaker": service{ 9010 9011 Endpoints: endpoints{ 9012 "cn-north-1": endpoint{}, 9013 "cn-northwest-1": endpoint{}, 9014 }, 9015 }, 9016 "s3": service{ 9017 Defaults: endpoint{ 9018 Protocols: []string{"http", "https"}, 9019 SignatureVersions: []string{"s3v4"}, 9020 9021 HasDualStack: boxedTrue, 9022 DualStackHostname: "{service}.dualstack.{region}.{dnsSuffix}", 9023 }, 9024 Endpoints: endpoints{ 9025 "accesspoint-cn-north-1": endpoint{ 9026 Hostname: "s3-accesspoint.cn-north-1.amazonaws.com.cn", 9027 SignatureVersions: []string{"s3v4"}, 9028 }, 9029 "accesspoint-cn-northwest-1": endpoint{ 9030 Hostname: "s3-accesspoint.cn-northwest-1.amazonaws.com.cn", 9031 SignatureVersions: []string{"s3v4"}, 9032 }, 9033 "cn-north-1": endpoint{}, 9034 "cn-northwest-1": endpoint{}, 9035 }, 9036 }, 9037 "s3-control": service{ 9038 Defaults: endpoint{ 9039 Protocols: []string{"https"}, 9040 SignatureVersions: []string{"s3v4"}, 9041 9042 HasDualStack: boxedTrue, 9043 DualStackHostname: "{service}.dualstack.{region}.{dnsSuffix}", 9044 }, 9045 Endpoints: endpoints{ 9046 "cn-north-1": endpoint{ 9047 Hostname: "s3-control.cn-north-1.amazonaws.com.cn", 9048 SignatureVersions: []string{"s3v4"}, 9049 CredentialScope: credentialScope{ 9050 Region: "cn-north-1", 9051 }, 9052 }, 9053 "cn-northwest-1": endpoint{ 9054 Hostname: "s3-control.cn-northwest-1.amazonaws.com.cn", 9055 SignatureVersions: []string{"s3v4"}, 9056 CredentialScope: credentialScope{ 9057 Region: "cn-northwest-1", 9058 }, 9059 }, 9060 }, 9061 }, 9062 "secretsmanager": service{ 9063 9064 Endpoints: endpoints{ 9065 "cn-north-1": endpoint{}, 9066 "cn-northwest-1": endpoint{}, 9067 }, 9068 }, 9069 "securityhub": service{ 9070 9071 Endpoints: endpoints{ 9072 "cn-north-1": endpoint{}, 9073 "cn-northwest-1": endpoint{}, 9074 }, 9075 }, 9076 "serverlessrepo": service{ 9077 Defaults: endpoint{ 9078 Protocols: []string{"https"}, 9079 }, 9080 Endpoints: endpoints{ 9081 "cn-north-1": endpoint{ 9082 Protocols: []string{"https"}, 9083 }, 9084 "cn-northwest-1": endpoint{ 9085 Protocols: []string{"https"}, 9086 }, 9087 }, 9088 }, 9089 "servicecatalog": service{ 9090 9091 Endpoints: endpoints{ 9092 "cn-north-1": endpoint{}, 9093 "cn-northwest-1": endpoint{}, 9094 }, 9095 }, 9096 "servicediscovery": service{ 9097 9098 Endpoints: endpoints{ 9099 "cn-north-1": endpoint{}, 9100 "cn-northwest-1": endpoint{}, 9101 }, 9102 }, 9103 "sms": service{ 9104 9105 Endpoints: endpoints{ 9106 "cn-north-1": endpoint{}, 9107 "cn-northwest-1": endpoint{}, 9108 }, 9109 }, 9110 "snowball": service{ 9111 9112 Endpoints: endpoints{ 9113 "cn-north-1": endpoint{}, 9114 "cn-northwest-1": endpoint{}, 9115 "fips-cn-north-1": endpoint{ 9116 Hostname: "snowball-fips.cn-north-1.amazonaws.com.cn", 9117 CredentialScope: credentialScope{ 9118 Region: "cn-north-1", 9119 }, 9120 }, 9121 "fips-cn-northwest-1": endpoint{ 9122 Hostname: "snowball-fips.cn-northwest-1.amazonaws.com.cn", 9123 CredentialScope: credentialScope{ 9124 Region: "cn-northwest-1", 9125 }, 9126 }, 9127 }, 9128 }, 9129 "sns": service{ 9130 Defaults: endpoint{ 9131 Protocols: []string{"http", "https"}, 9132 }, 9133 Endpoints: endpoints{ 9134 "cn-north-1": endpoint{}, 9135 "cn-northwest-1": endpoint{}, 9136 }, 9137 }, 9138 "sqs": service{ 9139 Defaults: endpoint{ 9140 SSLCommonName: "{region}.queue.{dnsSuffix}", 9141 Protocols: []string{"http", "https"}, 9142 }, 9143 Endpoints: endpoints{ 9144 "cn-north-1": endpoint{}, 9145 "cn-northwest-1": endpoint{}, 9146 }, 9147 }, 9148 "ssm": service{ 9149 9150 Endpoints: endpoints{ 9151 "cn-north-1": endpoint{}, 9152 "cn-northwest-1": endpoint{}, 9153 }, 9154 }, 9155 "states": service{ 9156 9157 Endpoints: endpoints{ 9158 "cn-north-1": endpoint{}, 9159 "cn-northwest-1": endpoint{}, 9160 }, 9161 }, 9162 "storagegateway": service{ 9163 9164 Endpoints: endpoints{ 9165 "cn-north-1": endpoint{}, 9166 "cn-northwest-1": endpoint{}, 9167 }, 9168 }, 9169 "streams.dynamodb": service{ 9170 Defaults: endpoint{ 9171 Protocols: []string{"http", "https"}, 9172 CredentialScope: credentialScope{ 9173 Service: "dynamodb", 9174 }, 9175 }, 9176 Endpoints: endpoints{ 9177 "cn-north-1": endpoint{}, 9178 "cn-northwest-1": endpoint{}, 9179 }, 9180 }, 9181 "sts": service{ 9182 9183 Endpoints: endpoints{ 9184 "cn-north-1": endpoint{}, 9185 "cn-northwest-1": endpoint{}, 9186 }, 9187 }, 9188 "support": service{ 9189 PartitionEndpoint: "aws-cn-global", 9190 9191 Endpoints: endpoints{ 9192 "aws-cn-global": endpoint{ 9193 Hostname: "support.cn-north-1.amazonaws.com.cn", 9194 CredentialScope: credentialScope{ 9195 Region: "cn-north-1", 9196 }, 9197 }, 9198 }, 9199 }, 9200 "swf": service{ 9201 9202 Endpoints: endpoints{ 9203 "cn-north-1": endpoint{}, 9204 "cn-northwest-1": endpoint{}, 9205 }, 9206 }, 9207 "tagging": service{ 9208 9209 Endpoints: endpoints{ 9210 "cn-north-1": endpoint{}, 9211 "cn-northwest-1": endpoint{}, 9212 }, 9213 }, 9214 "transcribe": service{ 9215 Defaults: endpoint{ 9216 Protocols: []string{"https"}, 9217 }, 9218 Endpoints: endpoints{ 9219 "cn-north-1": endpoint{ 9220 Hostname: "cn.transcribe.cn-north-1.amazonaws.com.cn", 9221 CredentialScope: credentialScope{ 9222 Region: "cn-north-1", 9223 }, 9224 }, 9225 "cn-northwest-1": endpoint{ 9226 Hostname: "cn.transcribe.cn-northwest-1.amazonaws.com.cn", 9227 CredentialScope: credentialScope{ 9228 Region: "cn-northwest-1", 9229 }, 9230 }, 9231 }, 9232 }, 9233 "transcribestreaming": service{ 9234 9235 Endpoints: endpoints{ 9236 "cn-north-1": endpoint{}, 9237 "cn-northwest-1": endpoint{}, 9238 }, 9239 }, 9240 "transfer": service{ 9241 9242 Endpoints: endpoints{ 9243 "cn-north-1": endpoint{}, 9244 "cn-northwest-1": endpoint{}, 9245 }, 9246 }, 9247 "waf-regional": service{ 9248 9249 Endpoints: endpoints{ 9250 "cn-north-1": endpoint{ 9251 Hostname: "waf-regional.cn-north-1.amazonaws.com.cn", 9252 CredentialScope: credentialScope{ 9253 Region: "cn-north-1", 9254 }, 9255 }, 9256 "cn-northwest-1": endpoint{ 9257 Hostname: "waf-regional.cn-northwest-1.amazonaws.com.cn", 9258 CredentialScope: credentialScope{ 9259 Region: "cn-northwest-1", 9260 }, 9261 }, 9262 "fips-cn-north-1": endpoint{ 9263 Hostname: "waf-regional-fips.cn-north-1.amazonaws.com.cn", 9264 CredentialScope: credentialScope{ 9265 Region: "cn-north-1", 9266 }, 9267 }, 9268 "fips-cn-northwest-1": endpoint{ 9269 Hostname: "waf-regional-fips.cn-northwest-1.amazonaws.com.cn", 9270 CredentialScope: credentialScope{ 9271 Region: "cn-northwest-1", 9272 }, 9273 }, 9274 }, 9275 }, 9276 "workspaces": service{ 9277 9278 Endpoints: endpoints{ 9279 "cn-northwest-1": endpoint{}, 9280 }, 9281 }, 9282 "xray": service{ 9283 9284 Endpoints: endpoints{ 9285 "cn-north-1": endpoint{}, 9286 "cn-northwest-1": endpoint{}, 9287 }, 9288 }, 9289 }, 9290 } 9291 9292 // AwsUsGovPartition returns the Resolver for AWS GovCloud (US). 9293 func AwsUsGovPartition() Partition { 9294 return awsusgovPartition.Partition() 9295 } 9296 9297 var awsusgovPartition = partition{ 9298 ID: "aws-us-gov", 9299 Name: "AWS GovCloud (US)", 9300 DNSSuffix: "amazonaws.com", 9301 RegionRegex: regionRegex{ 9302 Regexp: func() *regexp.Regexp { 9303 reg, _ := regexp.Compile("^us\\-gov\\-\\w+\\-\\d+$") 9304 return reg 9305 }(), 9306 }, 9307 Defaults: endpoint{ 9308 Hostname: "{service}.{region}.{dnsSuffix}", 9309 Protocols: []string{"https"}, 9310 SignatureVersions: []string{"v4"}, 9311 }, 9312 Regions: regions{ 9313 "us-gov-east-1": region{ 9314 Description: "AWS GovCloud (US-East)", 9315 }, 9316 "us-gov-west-1": region{ 9317 Description: "AWS GovCloud (US-West)", 9318 }, 9319 }, 9320 Services: services{ 9321 "access-analyzer": service{ 9322 9323 Endpoints: endpoints{ 9324 "us-gov-east-1": endpoint{ 9325 Hostname: "access-analyzer.us-gov-east-1.amazonaws.com", 9326 CredentialScope: credentialScope{ 9327 Region: "us-gov-east-1", 9328 }, 9329 }, 9330 "us-gov-west-1": endpoint{ 9331 Hostname: "access-analyzer.us-gov-west-1.amazonaws.com", 9332 CredentialScope: credentialScope{ 9333 Region: "us-gov-west-1", 9334 }, 9335 }, 9336 }, 9337 }, 9338 "acm": service{ 9339 9340 Endpoints: endpoints{ 9341 "us-gov-east-1": endpoint{ 9342 Hostname: "acm.us-gov-east-1.amazonaws.com", 9343 CredentialScope: credentialScope{ 9344 Region: "us-gov-east-1", 9345 }, 9346 }, 9347 "us-gov-west-1": endpoint{ 9348 Hostname: "acm.us-gov-west-1.amazonaws.com", 9349 CredentialScope: credentialScope{ 9350 Region: "us-gov-west-1", 9351 }, 9352 }, 9353 }, 9354 }, 9355 "acm-pca": service{ 9356 Defaults: endpoint{ 9357 Protocols: []string{"https"}, 9358 }, 9359 Endpoints: endpoints{ 9360 "fips-us-gov-east-1": endpoint{ 9361 Hostname: "acm-pca.us-gov-east-1.amazonaws.com", 9362 CredentialScope: credentialScope{ 9363 Region: "us-gov-east-1", 9364 }, 9365 }, 9366 "fips-us-gov-west-1": endpoint{ 9367 Hostname: "acm-pca.us-gov-west-1.amazonaws.com", 9368 CredentialScope: credentialScope{ 9369 Region: "us-gov-west-1", 9370 }, 9371 }, 9372 "us-gov-east-1": endpoint{}, 9373 "us-gov-west-1": endpoint{}, 9374 }, 9375 }, 9376 "api.detective": service{ 9377 Defaults: endpoint{ 9378 Protocols: []string{"https"}, 9379 }, 9380 Endpoints: endpoints{ 9381 "us-gov-east-1": endpoint{}, 9382 "us-gov-east-1-fips": endpoint{ 9383 Hostname: "api.detective-fips.us-gov-east-1.amazonaws.com", 9384 CredentialScope: credentialScope{ 9385 Region: "us-gov-east-1", 9386 }, 9387 }, 9388 "us-gov-west-1": endpoint{}, 9389 "us-gov-west-1-fips": endpoint{ 9390 Hostname: "api.detective-fips.us-gov-west-1.amazonaws.com", 9391 CredentialScope: credentialScope{ 9392 Region: "us-gov-west-1", 9393 }, 9394 }, 9395 }, 9396 }, 9397 "api.ecr": service{ 9398 9399 Endpoints: endpoints{ 9400 "fips-dkr-us-gov-east-1": endpoint{ 9401 Hostname: "ecr-fips.us-gov-east-1.amazonaws.com", 9402 CredentialScope: credentialScope{ 9403 Region: "us-gov-east-1", 9404 }, 9405 }, 9406 "fips-dkr-us-gov-west-1": endpoint{ 9407 Hostname: "ecr-fips.us-gov-west-1.amazonaws.com", 9408 CredentialScope: credentialScope{ 9409 Region: "us-gov-west-1", 9410 }, 9411 }, 9412 "fips-us-gov-east-1": endpoint{ 9413 Hostname: "ecr-fips.us-gov-east-1.amazonaws.com", 9414 CredentialScope: credentialScope{ 9415 Region: "us-gov-east-1", 9416 }, 9417 }, 9418 "fips-us-gov-west-1": endpoint{ 9419 Hostname: "ecr-fips.us-gov-west-1.amazonaws.com", 9420 CredentialScope: credentialScope{ 9421 Region: "us-gov-west-1", 9422 }, 9423 }, 9424 "us-gov-east-1": endpoint{ 9425 Hostname: "api.ecr.us-gov-east-1.amazonaws.com", 9426 CredentialScope: credentialScope{ 9427 Region: "us-gov-east-1", 9428 }, 9429 }, 9430 "us-gov-west-1": endpoint{ 9431 Hostname: "api.ecr.us-gov-west-1.amazonaws.com", 9432 CredentialScope: credentialScope{ 9433 Region: "us-gov-west-1", 9434 }, 9435 }, 9436 }, 9437 }, 9438 "api.sagemaker": service{ 9439 9440 Endpoints: endpoints{ 9441 "us-gov-west-1": endpoint{}, 9442 "us-gov-west-1-fips": endpoint{ 9443 Hostname: "api-fips.sagemaker.us-gov-west-1.amazonaws.com", 9444 CredentialScope: credentialScope{ 9445 Region: "us-gov-west-1", 9446 }, 9447 }, 9448 "us-gov-west-1-fips-secondary": endpoint{ 9449 Hostname: "api.sagemaker.us-gov-west-1.amazonaws.com", 9450 CredentialScope: credentialScope{ 9451 Region: "us-gov-west-1", 9452 }, 9453 }, 9454 }, 9455 }, 9456 "apigateway": service{ 9457 9458 Endpoints: endpoints{ 9459 "us-gov-east-1": endpoint{}, 9460 "us-gov-west-1": endpoint{}, 9461 }, 9462 }, 9463 "application-autoscaling": service{ 9464 Defaults: endpoint{ 9465 Hostname: "autoscaling.{region}.amazonaws.com", 9466 Protocols: []string{"http", "https"}, 9467 CredentialScope: credentialScope{ 9468 Service: "application-autoscaling", 9469 }, 9470 }, 9471 Endpoints: endpoints{ 9472 "us-gov-east-1": endpoint{ 9473 Protocols: []string{"http", "https"}, 9474 }, 9475 "us-gov-west-1": endpoint{ 9476 Protocols: []string{"http", "https"}, 9477 }, 9478 }, 9479 }, 9480 "appstream2": service{ 9481 Defaults: endpoint{ 9482 Protocols: []string{"https"}, 9483 CredentialScope: credentialScope{ 9484 Service: "appstream", 9485 }, 9486 }, 9487 Endpoints: endpoints{ 9488 "fips": endpoint{ 9489 Hostname: "appstream2-fips.us-gov-west-1.amazonaws.com", 9490 CredentialScope: credentialScope{ 9491 Region: "us-gov-west-1", 9492 }, 9493 }, 9494 "us-gov-west-1": endpoint{}, 9495 }, 9496 }, 9497 "athena": service{ 9498 9499 Endpoints: endpoints{ 9500 "fips-us-gov-east-1": endpoint{ 9501 Hostname: "athena-fips.us-gov-east-1.amazonaws.com", 9502 CredentialScope: credentialScope{ 9503 Region: "us-gov-east-1", 9504 }, 9505 }, 9506 "fips-us-gov-west-1": endpoint{ 9507 Hostname: "athena-fips.us-gov-west-1.amazonaws.com", 9508 CredentialScope: credentialScope{ 9509 Region: "us-gov-west-1", 9510 }, 9511 }, 9512 "us-gov-east-1": endpoint{}, 9513 "us-gov-west-1": endpoint{}, 9514 }, 9515 }, 9516 "autoscaling": service{ 9517 9518 Endpoints: endpoints{ 9519 "us-gov-east-1": endpoint{ 9520 Protocols: []string{"http", "https"}, 9521 }, 9522 "us-gov-west-1": endpoint{ 9523 Protocols: []string{"http", "https"}, 9524 }, 9525 }, 9526 }, 9527 "autoscaling-plans": service{ 9528 Defaults: endpoint{ 9529 Protocols: []string{"http", "https"}, 9530 }, 9531 Endpoints: endpoints{ 9532 "us-gov-east-1": endpoint{ 9533 Protocols: []string{"http", "https"}, 9534 }, 9535 "us-gov-west-1": endpoint{ 9536 Protocols: []string{"http", "https"}, 9537 }, 9538 }, 9539 }, 9540 "backup": service{ 9541 9542 Endpoints: endpoints{ 9543 "us-gov-east-1": endpoint{}, 9544 "us-gov-west-1": endpoint{}, 9545 }, 9546 }, 9547 "batch": service{ 9548 9549 Endpoints: endpoints{ 9550 "fips-us-gov-east-1": endpoint{ 9551 Hostname: "batch.us-gov-east-1.amazonaws.com", 9552 CredentialScope: credentialScope{ 9553 Region: "us-gov-east-1", 9554 }, 9555 }, 9556 "fips-us-gov-west-1": endpoint{ 9557 Hostname: "batch.us-gov-west-1.amazonaws.com", 9558 CredentialScope: credentialScope{ 9559 Region: "us-gov-west-1", 9560 }, 9561 }, 9562 "us-gov-east-1": endpoint{}, 9563 "us-gov-west-1": endpoint{}, 9564 }, 9565 }, 9566 "cloudcontrolapi": service{ 9567 9568 Endpoints: endpoints{ 9569 "fips-us-gov-east-1": endpoint{ 9570 Hostname: "cloudcontrolapi-fips.us-gov-east-1.amazonaws.com", 9571 CredentialScope: credentialScope{ 9572 Region: "us-gov-east-1", 9573 }, 9574 }, 9575 "fips-us-gov-west-1": endpoint{ 9576 Hostname: "cloudcontrolapi-fips.us-gov-west-1.amazonaws.com", 9577 CredentialScope: credentialScope{ 9578 Region: "us-gov-west-1", 9579 }, 9580 }, 9581 "us-gov-east-1": endpoint{}, 9582 "us-gov-west-1": endpoint{}, 9583 }, 9584 }, 9585 "clouddirectory": service{ 9586 9587 Endpoints: endpoints{ 9588 "us-gov-west-1": endpoint{}, 9589 }, 9590 }, 9591 "cloudformation": service{ 9592 9593 Endpoints: endpoints{ 9594 "us-gov-east-1": endpoint{ 9595 Hostname: "cloudformation.us-gov-east-1.amazonaws.com", 9596 CredentialScope: credentialScope{ 9597 Region: "us-gov-east-1", 9598 }, 9599 }, 9600 "us-gov-west-1": endpoint{ 9601 Hostname: "cloudformation.us-gov-west-1.amazonaws.com", 9602 CredentialScope: credentialScope{ 9603 Region: "us-gov-west-1", 9604 }, 9605 }, 9606 }, 9607 }, 9608 "cloudhsm": service{ 9609 9610 Endpoints: endpoints{ 9611 "us-gov-west-1": endpoint{}, 9612 }, 9613 }, 9614 "cloudhsmv2": service{ 9615 Defaults: endpoint{ 9616 CredentialScope: credentialScope{ 9617 Service: "cloudhsm", 9618 }, 9619 }, 9620 Endpoints: endpoints{ 9621 "us-gov-east-1": endpoint{}, 9622 "us-gov-west-1": endpoint{}, 9623 }, 9624 }, 9625 "cloudtrail": service{ 9626 9627 Endpoints: endpoints{ 9628 "us-gov-east-1": endpoint{ 9629 Hostname: "cloudtrail.us-gov-east-1.amazonaws.com", 9630 CredentialScope: credentialScope{ 9631 Region: "us-gov-east-1", 9632 }, 9633 }, 9634 "us-gov-west-1": endpoint{ 9635 Hostname: "cloudtrail.us-gov-west-1.amazonaws.com", 9636 CredentialScope: credentialScope{ 9637 Region: "us-gov-west-1", 9638 }, 9639 }, 9640 }, 9641 }, 9642 "codebuild": service{ 9643 9644 Endpoints: endpoints{ 9645 "us-gov-east-1": endpoint{}, 9646 "us-gov-east-1-fips": endpoint{ 9647 Hostname: "codebuild-fips.us-gov-east-1.amazonaws.com", 9648 CredentialScope: credentialScope{ 9649 Region: "us-gov-east-1", 9650 }, 9651 }, 9652 "us-gov-west-1": endpoint{}, 9653 "us-gov-west-1-fips": endpoint{ 9654 Hostname: "codebuild-fips.us-gov-west-1.amazonaws.com", 9655 CredentialScope: credentialScope{ 9656 Region: "us-gov-west-1", 9657 }, 9658 }, 9659 }, 9660 }, 9661 "codecommit": service{ 9662 9663 Endpoints: endpoints{ 9664 "fips": endpoint{ 9665 Hostname: "codecommit-fips.us-gov-west-1.amazonaws.com", 9666 CredentialScope: credentialScope{ 9667 Region: "us-gov-west-1", 9668 }, 9669 }, 9670 "us-gov-east-1": endpoint{}, 9671 "us-gov-west-1": endpoint{}, 9672 }, 9673 }, 9674 "codedeploy": service{ 9675 9676 Endpoints: endpoints{ 9677 "us-gov-east-1": endpoint{}, 9678 "us-gov-east-1-fips": endpoint{ 9679 Hostname: "codedeploy-fips.us-gov-east-1.amazonaws.com", 9680 CredentialScope: credentialScope{ 9681 Region: "us-gov-east-1", 9682 }, 9683 }, 9684 "us-gov-west-1": endpoint{}, 9685 "us-gov-west-1-fips": endpoint{ 9686 Hostname: "codedeploy-fips.us-gov-west-1.amazonaws.com", 9687 CredentialScope: credentialScope{ 9688 Region: "us-gov-west-1", 9689 }, 9690 }, 9691 }, 9692 }, 9693 "codepipeline": service{ 9694 9695 Endpoints: endpoints{ 9696 "fips-us-gov-west-1": endpoint{ 9697 Hostname: "codepipeline-fips.us-gov-west-1.amazonaws.com", 9698 CredentialScope: credentialScope{ 9699 Region: "us-gov-west-1", 9700 }, 9701 }, 9702 "us-gov-west-1": endpoint{}, 9703 }, 9704 }, 9705 "cognito-identity": service{ 9706 9707 Endpoints: endpoints{ 9708 "fips-us-gov-west-1": endpoint{ 9709 Hostname: "cognito-identity-fips.us-gov-west-1.amazonaws.com", 9710 CredentialScope: credentialScope{ 9711 Region: "us-gov-west-1", 9712 }, 9713 }, 9714 "us-gov-west-1": endpoint{}, 9715 }, 9716 }, 9717 "cognito-idp": service{ 9718 9719 Endpoints: endpoints{ 9720 "fips-us-gov-west-1": endpoint{ 9721 Hostname: "cognito-idp-fips.us-gov-west-1.amazonaws.com", 9722 CredentialScope: credentialScope{ 9723 Region: "us-gov-west-1", 9724 }, 9725 }, 9726 "us-gov-west-1": endpoint{}, 9727 }, 9728 }, 9729 "comprehend": service{ 9730 Defaults: endpoint{ 9731 Protocols: []string{"https"}, 9732 }, 9733 Endpoints: endpoints{ 9734 "fips-us-gov-west-1": endpoint{ 9735 Hostname: "comprehend-fips.us-gov-west-1.amazonaws.com", 9736 CredentialScope: credentialScope{ 9737 Region: "us-gov-west-1", 9738 }, 9739 }, 9740 "us-gov-west-1": endpoint{}, 9741 }, 9742 }, 9743 "comprehendmedical": service{ 9744 9745 Endpoints: endpoints{ 9746 "fips-us-gov-west-1": endpoint{ 9747 Hostname: "comprehendmedical-fips.us-gov-west-1.amazonaws.com", 9748 CredentialScope: credentialScope{ 9749 Region: "us-gov-west-1", 9750 }, 9751 }, 9752 "us-gov-west-1": endpoint{}, 9753 }, 9754 }, 9755 "config": service{ 9756 9757 Endpoints: endpoints{ 9758 "fips-us-gov-east-1": endpoint{ 9759 Hostname: "config.us-gov-east-1.amazonaws.com", 9760 CredentialScope: credentialScope{ 9761 Region: "us-gov-east-1", 9762 }, 9763 }, 9764 "fips-us-gov-west-1": endpoint{ 9765 Hostname: "config.us-gov-west-1.amazonaws.com", 9766 CredentialScope: credentialScope{ 9767 Region: "us-gov-west-1", 9768 }, 9769 }, 9770 "us-gov-east-1": endpoint{}, 9771 "us-gov-west-1": endpoint{}, 9772 }, 9773 }, 9774 "connect": service{ 9775 9776 Endpoints: endpoints{ 9777 "us-gov-west-1": endpoint{}, 9778 }, 9779 }, 9780 "data.jobs.iot": service{ 9781 9782 Endpoints: endpoints{ 9783 "fips-us-gov-east-1": endpoint{ 9784 Hostname: "data.jobs.iot-fips.us-gov-east-1.amazonaws.com", 9785 CredentialScope: credentialScope{ 9786 Region: "us-gov-east-1", 9787 }, 9788 }, 9789 "fips-us-gov-west-1": endpoint{ 9790 Hostname: "data.jobs.iot-fips.us-gov-west-1.amazonaws.com", 9791 CredentialScope: credentialScope{ 9792 Region: "us-gov-west-1", 9793 }, 9794 }, 9795 "us-gov-east-1": endpoint{}, 9796 "us-gov-west-1": endpoint{}, 9797 }, 9798 }, 9799 "databrew": service{ 9800 9801 Endpoints: endpoints{ 9802 "us-gov-west-1": endpoint{}, 9803 }, 9804 }, 9805 "datasync": service{ 9806 9807 Endpoints: endpoints{ 9808 "fips-us-gov-east-1": endpoint{ 9809 Hostname: "datasync-fips.us-gov-east-1.amazonaws.com", 9810 CredentialScope: credentialScope{ 9811 Region: "us-gov-east-1", 9812 }, 9813 }, 9814 "fips-us-gov-west-1": endpoint{ 9815 Hostname: "datasync-fips.us-gov-west-1.amazonaws.com", 9816 CredentialScope: credentialScope{ 9817 Region: "us-gov-west-1", 9818 }, 9819 }, 9820 "us-gov-east-1": endpoint{}, 9821 "us-gov-west-1": endpoint{}, 9822 }, 9823 }, 9824 "directconnect": service{ 9825 9826 Endpoints: endpoints{ 9827 "us-gov-east-1": endpoint{ 9828 Hostname: "directconnect.us-gov-east-1.amazonaws.com", 9829 CredentialScope: credentialScope{ 9830 Region: "us-gov-east-1", 9831 }, 9832 }, 9833 "us-gov-west-1": endpoint{ 9834 Hostname: "directconnect.us-gov-west-1.amazonaws.com", 9835 CredentialScope: credentialScope{ 9836 Region: "us-gov-west-1", 9837 }, 9838 }, 9839 }, 9840 }, 9841 "dms": service{ 9842 9843 Endpoints: endpoints{ 9844 "dms-fips": endpoint{ 9845 Hostname: "dms.us-gov-west-1.amazonaws.com", 9846 CredentialScope: credentialScope{ 9847 Region: "us-gov-west-1", 9848 }, 9849 }, 9850 "us-gov-east-1": endpoint{}, 9851 "us-gov-west-1": endpoint{}, 9852 }, 9853 }, 9854 "docdb": service{ 9855 9856 Endpoints: endpoints{ 9857 "us-gov-west-1": endpoint{ 9858 Hostname: "rds.us-gov-west-1.amazonaws.com", 9859 CredentialScope: credentialScope{ 9860 Region: "us-gov-west-1", 9861 }, 9862 }, 9863 }, 9864 }, 9865 "ds": service{ 9866 9867 Endpoints: endpoints{ 9868 "fips-us-gov-east-1": endpoint{ 9869 Hostname: "ds-fips.us-gov-east-1.amazonaws.com", 9870 CredentialScope: credentialScope{ 9871 Region: "us-gov-east-1", 9872 }, 9873 }, 9874 "fips-us-gov-west-1": endpoint{ 9875 Hostname: "ds-fips.us-gov-west-1.amazonaws.com", 9876 CredentialScope: credentialScope{ 9877 Region: "us-gov-west-1", 9878 }, 9879 }, 9880 "us-gov-east-1": endpoint{}, 9881 "us-gov-west-1": endpoint{}, 9882 }, 9883 }, 9884 "dynamodb": service{ 9885 9886 Endpoints: endpoints{ 9887 "us-gov-east-1": endpoint{}, 9888 "us-gov-east-1-fips": endpoint{ 9889 Hostname: "dynamodb.us-gov-east-1.amazonaws.com", 9890 CredentialScope: credentialScope{ 9891 Region: "us-gov-east-1", 9892 }, 9893 }, 9894 "us-gov-west-1": endpoint{}, 9895 "us-gov-west-1-fips": endpoint{ 9896 Hostname: "dynamodb.us-gov-west-1.amazonaws.com", 9897 CredentialScope: credentialScope{ 9898 Region: "us-gov-west-1", 9899 }, 9900 }, 9901 }, 9902 }, 9903 "ebs": service{ 9904 9905 Endpoints: endpoints{ 9906 "us-gov-east-1": endpoint{}, 9907 "us-gov-west-1": endpoint{}, 9908 }, 9909 }, 9910 "ec2": service{ 9911 9912 Endpoints: endpoints{ 9913 "us-gov-east-1": endpoint{ 9914 Hostname: "ec2.us-gov-east-1.amazonaws.com", 9915 CredentialScope: credentialScope{ 9916 Region: "us-gov-east-1", 9917 }, 9918 }, 9919 "us-gov-west-1": endpoint{ 9920 Hostname: "ec2.us-gov-west-1.amazonaws.com", 9921 CredentialScope: credentialScope{ 9922 Region: "us-gov-west-1", 9923 }, 9924 }, 9925 }, 9926 }, 9927 "ecs": service{ 9928 9929 Endpoints: endpoints{ 9930 "fips-us-gov-east-1": endpoint{ 9931 Hostname: "ecs-fips.us-gov-east-1.amazonaws.com", 9932 CredentialScope: credentialScope{ 9933 Region: "us-gov-east-1", 9934 }, 9935 }, 9936 "fips-us-gov-west-1": endpoint{ 9937 Hostname: "ecs-fips.us-gov-west-1.amazonaws.com", 9938 CredentialScope: credentialScope{ 9939 Region: "us-gov-west-1", 9940 }, 9941 }, 9942 "us-gov-east-1": endpoint{}, 9943 "us-gov-west-1": endpoint{}, 9944 }, 9945 }, 9946 "eks": service{ 9947 Defaults: endpoint{ 9948 Protocols: []string{"http", "https"}, 9949 }, 9950 Endpoints: endpoints{ 9951 "fips-us-gov-east-1": endpoint{ 9952 Hostname: "eks.us-gov-east-1.amazonaws.com", 9953 CredentialScope: credentialScope{ 9954 Region: "us-gov-east-1", 9955 }, 9956 }, 9957 "fips-us-gov-west-1": endpoint{ 9958 Hostname: "eks.us-gov-west-1.amazonaws.com", 9959 CredentialScope: credentialScope{ 9960 Region: "us-gov-west-1", 9961 }, 9962 }, 9963 "us-gov-east-1": endpoint{}, 9964 "us-gov-west-1": endpoint{}, 9965 }, 9966 }, 9967 "elasticache": service{ 9968 9969 Endpoints: endpoints{ 9970 "fips": endpoint{ 9971 Hostname: "elasticache.us-gov-west-1.amazonaws.com", 9972 CredentialScope: credentialScope{ 9973 Region: "us-gov-west-1", 9974 }, 9975 }, 9976 "us-gov-east-1": endpoint{}, 9977 "us-gov-west-1": endpoint{}, 9978 }, 9979 }, 9980 "elasticbeanstalk": service{ 9981 9982 Endpoints: endpoints{ 9983 "us-gov-east-1": endpoint{ 9984 Hostname: "elasticbeanstalk.us-gov-east-1.amazonaws.com", 9985 CredentialScope: credentialScope{ 9986 Region: "us-gov-east-1", 9987 }, 9988 }, 9989 "us-gov-west-1": endpoint{ 9990 Hostname: "elasticbeanstalk.us-gov-west-1.amazonaws.com", 9991 CredentialScope: credentialScope{ 9992 Region: "us-gov-west-1", 9993 }, 9994 }, 9995 }, 9996 }, 9997 "elasticfilesystem": service{ 9998 9999 Endpoints: endpoints{ 10000 "fips-us-gov-east-1": endpoint{ 10001 Hostname: "elasticfilesystem-fips.us-gov-east-1.amazonaws.com", 10002 CredentialScope: credentialScope{ 10003 Region: "us-gov-east-1", 10004 }, 10005 }, 10006 "fips-us-gov-west-1": endpoint{ 10007 Hostname: "elasticfilesystem-fips.us-gov-west-1.amazonaws.com", 10008 CredentialScope: credentialScope{ 10009 Region: "us-gov-west-1", 10010 }, 10011 }, 10012 "us-gov-east-1": endpoint{}, 10013 "us-gov-west-1": endpoint{}, 10014 }, 10015 }, 10016 "elasticloadbalancing": service{ 10017 10018 Endpoints: endpoints{ 10019 "fips-us-gov-east-1": endpoint{ 10020 Hostname: "elasticloadbalancing.us-gov-east-1.amazonaws.com", 10021 CredentialScope: credentialScope{ 10022 Region: "us-gov-east-1", 10023 }, 10024 }, 10025 "fips-us-gov-west-1": endpoint{ 10026 Hostname: "elasticloadbalancing.us-gov-west-1.amazonaws.com", 10027 CredentialScope: credentialScope{ 10028 Region: "us-gov-west-1", 10029 }, 10030 }, 10031 "us-gov-east-1": endpoint{}, 10032 "us-gov-west-1": endpoint{ 10033 Protocols: []string{"http", "https"}, 10034 }, 10035 }, 10036 }, 10037 "elasticmapreduce": service{ 10038 10039 Endpoints: endpoints{ 10040 "fips-us-gov-east-1": endpoint{ 10041 Hostname: "elasticmapreduce.us-gov-east-1.amazonaws.com", 10042 CredentialScope: credentialScope{ 10043 Region: "us-gov-east-1", 10044 }, 10045 }, 10046 "fips-us-gov-west-1": endpoint{ 10047 Hostname: "elasticmapreduce.us-gov-west-1.amazonaws.com", 10048 CredentialScope: credentialScope{ 10049 Region: "us-gov-west-1", 10050 }, 10051 }, 10052 "us-gov-east-1": endpoint{}, 10053 "us-gov-west-1": endpoint{ 10054 Protocols: []string{"https"}, 10055 }, 10056 }, 10057 }, 10058 "email": service{ 10059 10060 Endpoints: endpoints{ 10061 "fips-us-gov-west-1": endpoint{ 10062 Hostname: "email-fips.us-gov-west-1.amazonaws.com", 10063 CredentialScope: credentialScope{ 10064 Region: "us-gov-west-1", 10065 }, 10066 }, 10067 "us-gov-west-1": endpoint{}, 10068 }, 10069 }, 10070 "es": service{ 10071 10072 Endpoints: endpoints{ 10073 "fips": endpoint{ 10074 Hostname: "es-fips.us-gov-west-1.amazonaws.com", 10075 CredentialScope: credentialScope{ 10076 Region: "us-gov-west-1", 10077 }, 10078 }, 10079 "us-gov-east-1": endpoint{}, 10080 "us-gov-west-1": endpoint{}, 10081 }, 10082 }, 10083 "events": service{ 10084 10085 Endpoints: endpoints{ 10086 "us-gov-east-1": endpoint{ 10087 Hostname: "events.us-gov-east-1.amazonaws.com", 10088 CredentialScope: credentialScope{ 10089 Region: "us-gov-east-1", 10090 }, 10091 }, 10092 "us-gov-west-1": endpoint{ 10093 Hostname: "events.us-gov-west-1.amazonaws.com", 10094 CredentialScope: credentialScope{ 10095 Region: "us-gov-west-1", 10096 }, 10097 }, 10098 }, 10099 }, 10100 "firehose": service{ 10101 10102 Endpoints: endpoints{ 10103 "fips-us-gov-east-1": endpoint{ 10104 Hostname: "firehose-fips.us-gov-east-1.amazonaws.com", 10105 CredentialScope: credentialScope{ 10106 Region: "us-gov-east-1", 10107 }, 10108 }, 10109 "fips-us-gov-west-1": endpoint{ 10110 Hostname: "firehose-fips.us-gov-west-1.amazonaws.com", 10111 CredentialScope: credentialScope{ 10112 Region: "us-gov-west-1", 10113 }, 10114 }, 10115 "us-gov-east-1": endpoint{}, 10116 "us-gov-west-1": endpoint{}, 10117 }, 10118 }, 10119 "fms": service{ 10120 Defaults: endpoint{ 10121 Protocols: []string{"https"}, 10122 }, 10123 Endpoints: endpoints{ 10124 "fips-us-gov-east-1": endpoint{ 10125 Hostname: "fms-fips.us-gov-east-1.amazonaws.com", 10126 CredentialScope: credentialScope{ 10127 Region: "us-gov-east-1", 10128 }, 10129 }, 10130 "fips-us-gov-west-1": endpoint{ 10131 Hostname: "fms-fips.us-gov-west-1.amazonaws.com", 10132 CredentialScope: credentialScope{ 10133 Region: "us-gov-west-1", 10134 }, 10135 }, 10136 "us-gov-east-1": endpoint{}, 10137 "us-gov-west-1": endpoint{}, 10138 }, 10139 }, 10140 "fsx": service{ 10141 10142 Endpoints: endpoints{ 10143 "fips-prod-us-gov-east-1": endpoint{ 10144 Hostname: "fsx-fips.us-gov-east-1.amazonaws.com", 10145 CredentialScope: credentialScope{ 10146 Region: "us-gov-east-1", 10147 }, 10148 }, 10149 "fips-prod-us-gov-west-1": endpoint{ 10150 Hostname: "fsx-fips.us-gov-west-1.amazonaws.com", 10151 CredentialScope: credentialScope{ 10152 Region: "us-gov-west-1", 10153 }, 10154 }, 10155 "us-gov-east-1": endpoint{}, 10156 "us-gov-west-1": endpoint{}, 10157 }, 10158 }, 10159 "glacier": service{ 10160 10161 Endpoints: endpoints{ 10162 "us-gov-east-1": endpoint{ 10163 Hostname: "glacier.us-gov-east-1.amazonaws.com", 10164 CredentialScope: credentialScope{ 10165 Region: "us-gov-east-1", 10166 }, 10167 }, 10168 "us-gov-west-1": endpoint{ 10169 Hostname: "glacier.us-gov-west-1.amazonaws.com", 10170 Protocols: []string{"http", "https"}, 10171 CredentialScope: credentialScope{ 10172 Region: "us-gov-west-1", 10173 }, 10174 }, 10175 }, 10176 }, 10177 "glue": service{ 10178 10179 Endpoints: endpoints{ 10180 "fips-us-gov-east-1": endpoint{ 10181 Hostname: "glue-fips.us-gov-east-1.amazonaws.com", 10182 CredentialScope: credentialScope{ 10183 Region: "us-gov-east-1", 10184 }, 10185 }, 10186 "fips-us-gov-west-1": endpoint{ 10187 Hostname: "glue-fips.us-gov-west-1.amazonaws.com", 10188 CredentialScope: credentialScope{ 10189 Region: "us-gov-west-1", 10190 }, 10191 }, 10192 "us-gov-east-1": endpoint{}, 10193 "us-gov-west-1": endpoint{}, 10194 }, 10195 }, 10196 "greengrass": service{ 10197 IsRegionalized: boxedTrue, 10198 Defaults: endpoint{ 10199 Protocols: []string{"https"}, 10200 }, 10201 Endpoints: endpoints{ 10202 "dataplane-us-gov-east-1": endpoint{ 10203 Hostname: "greengrass-ats.iot.us-gov-east-1.amazonaws.com", 10204 CredentialScope: credentialScope{ 10205 Region: "us-gov-east-1", 10206 }, 10207 }, 10208 "dataplane-us-gov-west-1": endpoint{ 10209 Hostname: "greengrass-ats.iot.us-gov-west-1.amazonaws.com", 10210 CredentialScope: credentialScope{ 10211 Region: "us-gov-west-1", 10212 }, 10213 }, 10214 "fips-us-gov-east-1": endpoint{ 10215 Hostname: "greengrass-fips.us-gov-east-1.amazonaws.com", 10216 CredentialScope: credentialScope{ 10217 Region: "us-gov-east-1", 10218 }, 10219 }, 10220 "us-gov-east-1": endpoint{ 10221 Hostname: "greengrass.us-gov-east-1.amazonaws.com", 10222 CredentialScope: credentialScope{ 10223 Region: "us-gov-east-1", 10224 }, 10225 }, 10226 "us-gov-west-1": endpoint{ 10227 Hostname: "greengrass.us-gov-west-1.amazonaws.com", 10228 CredentialScope: credentialScope{ 10229 Region: "us-gov-west-1", 10230 }, 10231 }, 10232 }, 10233 }, 10234 "guardduty": service{ 10235 IsRegionalized: boxedTrue, 10236 Defaults: endpoint{ 10237 Protocols: []string{"https"}, 10238 }, 10239 Endpoints: endpoints{ 10240 "us-gov-east-1": endpoint{}, 10241 "us-gov-east-1-fips": endpoint{ 10242 Hostname: "guardduty.us-gov-east-1.amazonaws.com", 10243 CredentialScope: credentialScope{ 10244 Region: "us-gov-east-1", 10245 }, 10246 }, 10247 "us-gov-west-1": endpoint{}, 10248 "us-gov-west-1-fips": endpoint{ 10249 Hostname: "guardduty.us-gov-west-1.amazonaws.com", 10250 CredentialScope: credentialScope{ 10251 Region: "us-gov-west-1", 10252 }, 10253 }, 10254 }, 10255 }, 10256 "health": service{ 10257 10258 Endpoints: endpoints{ 10259 "fips-us-gov-west-1": endpoint{ 10260 Hostname: "health-fips.us-gov-west-1.amazonaws.com", 10261 CredentialScope: credentialScope{ 10262 Region: "us-gov-west-1", 10263 }, 10264 }, 10265 }, 10266 }, 10267 "iam": service{ 10268 PartitionEndpoint: "aws-us-gov-global", 10269 IsRegionalized: boxedFalse, 10270 10271 Endpoints: endpoints{ 10272 "aws-us-gov-global": endpoint{ 10273 Hostname: "iam.us-gov.amazonaws.com", 10274 CredentialScope: credentialScope{ 10275 Region: "us-gov-west-1", 10276 }, 10277 }, 10278 "iam-govcloud-fips": endpoint{ 10279 Hostname: "iam.us-gov.amazonaws.com", 10280 CredentialScope: credentialScope{ 10281 Region: "us-gov-west-1", 10282 }, 10283 }, 10284 }, 10285 }, 10286 "identitystore": service{ 10287 10288 Endpoints: endpoints{ 10289 "fips-us-gov-west-1": endpoint{ 10290 Hostname: "identitystore.us-gov-west-1.amazonaws.com", 10291 CredentialScope: credentialScope{ 10292 Region: "us-gov-west-1", 10293 }, 10294 }, 10295 "us-gov-west-1": endpoint{}, 10296 }, 10297 }, 10298 "inspector": service{ 10299 10300 Endpoints: endpoints{ 10301 "fips-us-gov-east-1": endpoint{ 10302 Hostname: "inspector-fips.us-gov-east-1.amazonaws.com", 10303 CredentialScope: credentialScope{ 10304 Region: "us-gov-east-1", 10305 }, 10306 }, 10307 "fips-us-gov-west-1": endpoint{ 10308 Hostname: "inspector-fips.us-gov-west-1.amazonaws.com", 10309 CredentialScope: credentialScope{ 10310 Region: "us-gov-west-1", 10311 }, 10312 }, 10313 "us-gov-east-1": endpoint{}, 10314 "us-gov-west-1": endpoint{}, 10315 }, 10316 }, 10317 "iot": service{ 10318 Defaults: endpoint{ 10319 CredentialScope: credentialScope{ 10320 Service: "execute-api", 10321 }, 10322 }, 10323 Endpoints: endpoints{ 10324 "fips-us-gov-east-1": endpoint{ 10325 Hostname: "iot-fips.us-gov-east-1.amazonaws.com", 10326 CredentialScope: credentialScope{ 10327 Service: "execute-api", 10328 }, 10329 }, 10330 "fips-us-gov-west-1": endpoint{ 10331 Hostname: "iot-fips.us-gov-west-1.amazonaws.com", 10332 CredentialScope: credentialScope{ 10333 Service: "execute-api", 10334 }, 10335 }, 10336 "us-gov-east-1": endpoint{}, 10337 "us-gov-west-1": endpoint{}, 10338 }, 10339 }, 10340 "iotevents": service{ 10341 10342 Endpoints: endpoints{ 10343 "us-gov-west-1": endpoint{}, 10344 }, 10345 }, 10346 "ioteventsdata": service{ 10347 10348 Endpoints: endpoints{ 10349 "us-gov-west-1": endpoint{ 10350 Hostname: "data.iotevents.us-gov-west-1.amazonaws.com", 10351 CredentialScope: credentialScope{ 10352 Region: "us-gov-west-1", 10353 }, 10354 }, 10355 }, 10356 }, 10357 "iotsecuredtunneling": service{ 10358 10359 Endpoints: endpoints{ 10360 "fips-us-gov-east-1": endpoint{ 10361 Hostname: "api.tunneling.iot-fips.us-gov-east-1.amazonaws.com", 10362 CredentialScope: credentialScope{ 10363 Region: "us-gov-east-1", 10364 }, 10365 }, 10366 "fips-us-gov-west-1": endpoint{ 10367 Hostname: "api.tunneling.iot-fips.us-gov-west-1.amazonaws.com", 10368 CredentialScope: credentialScope{ 10369 Region: "us-gov-west-1", 10370 }, 10371 }, 10372 "us-gov-east-1": endpoint{}, 10373 "us-gov-west-1": endpoint{}, 10374 }, 10375 }, 10376 "kafka": service{ 10377 10378 Endpoints: endpoints{ 10379 "us-gov-east-1": endpoint{}, 10380 "us-gov-west-1": endpoint{}, 10381 }, 10382 }, 10383 "kinesis": service{ 10384 10385 Endpoints: endpoints{ 10386 "us-gov-east-1": endpoint{ 10387 Hostname: "kinesis.us-gov-east-1.amazonaws.com", 10388 CredentialScope: credentialScope{ 10389 Region: "us-gov-east-1", 10390 }, 10391 }, 10392 "us-gov-west-1": endpoint{ 10393 Hostname: "kinesis.us-gov-west-1.amazonaws.com", 10394 CredentialScope: credentialScope{ 10395 Region: "us-gov-west-1", 10396 }, 10397 }, 10398 }, 10399 }, 10400 "kinesisanalytics": service{ 10401 10402 Endpoints: endpoints{ 10403 "us-gov-east-1": endpoint{}, 10404 "us-gov-west-1": endpoint{}, 10405 }, 10406 }, 10407 "kms": service{ 10408 10409 Endpoints: endpoints{ 10410 "ProdFips": endpoint{ 10411 Hostname: "kms-fips.us-gov-west-1.amazonaws.com", 10412 CredentialScope: credentialScope{ 10413 Region: "us-gov-west-1", 10414 }, 10415 }, 10416 "us-gov-east-1": endpoint{}, 10417 "us-gov-west-1": endpoint{}, 10418 }, 10419 }, 10420 "lakeformation": service{ 10421 10422 Endpoints: endpoints{ 10423 "fips-us-gov-west-1": endpoint{ 10424 Hostname: "lakeformation-fips.us-gov-west-1.amazonaws.com", 10425 CredentialScope: credentialScope{ 10426 Region: "us-gov-west-1", 10427 }, 10428 }, 10429 "us-gov-west-1": endpoint{}, 10430 }, 10431 }, 10432 "lambda": service{ 10433 10434 Endpoints: endpoints{ 10435 "fips-us-gov-east-1": endpoint{ 10436 Hostname: "lambda-fips.us-gov-east-1.amazonaws.com", 10437 CredentialScope: credentialScope{ 10438 Region: "us-gov-east-1", 10439 }, 10440 }, 10441 "fips-us-gov-west-1": endpoint{ 10442 Hostname: "lambda-fips.us-gov-west-1.amazonaws.com", 10443 CredentialScope: credentialScope{ 10444 Region: "us-gov-west-1", 10445 }, 10446 }, 10447 "us-gov-east-1": endpoint{}, 10448 "us-gov-west-1": endpoint{}, 10449 }, 10450 }, 10451 "license-manager": service{ 10452 10453 Endpoints: endpoints{ 10454 "fips-us-gov-east-1": endpoint{ 10455 Hostname: "license-manager-fips.us-gov-east-1.amazonaws.com", 10456 CredentialScope: credentialScope{ 10457 Region: "us-gov-east-1", 10458 }, 10459 }, 10460 "fips-us-gov-west-1": endpoint{ 10461 Hostname: "license-manager-fips.us-gov-west-1.amazonaws.com", 10462 CredentialScope: credentialScope{ 10463 Region: "us-gov-west-1", 10464 }, 10465 }, 10466 "us-gov-east-1": endpoint{}, 10467 "us-gov-west-1": endpoint{}, 10468 }, 10469 }, 10470 "logs": service{ 10471 10472 Endpoints: endpoints{ 10473 "us-gov-east-1": endpoint{ 10474 Hostname: "logs.us-gov-east-1.amazonaws.com", 10475 CredentialScope: credentialScope{ 10476 Region: "us-gov-east-1", 10477 }, 10478 }, 10479 "us-gov-west-1": endpoint{ 10480 Hostname: "logs.us-gov-west-1.amazonaws.com", 10481 CredentialScope: credentialScope{ 10482 Region: "us-gov-west-1", 10483 }, 10484 }, 10485 }, 10486 }, 10487 "mediaconvert": service{ 10488 10489 Endpoints: endpoints{ 10490 "us-gov-west-1": endpoint{ 10491 Hostname: "mediaconvert.us-gov-west-1.amazonaws.com", 10492 CredentialScope: credentialScope{ 10493 Region: "us-gov-west-1", 10494 }, 10495 }, 10496 }, 10497 }, 10498 "metering.marketplace": service{ 10499 Defaults: endpoint{ 10500 CredentialScope: credentialScope{ 10501 Service: "aws-marketplace", 10502 }, 10503 }, 10504 Endpoints: endpoints{ 10505 "us-gov-east-1": endpoint{}, 10506 "us-gov-west-1": endpoint{}, 10507 }, 10508 }, 10509 "models.lex": service{ 10510 Defaults: endpoint{ 10511 CredentialScope: credentialScope{ 10512 Service: "lex", 10513 }, 10514 }, 10515 Endpoints: endpoints{ 10516 "us-gov-west-1": endpoint{}, 10517 "us-gov-west-1-fips": endpoint{ 10518 Hostname: "models-fips.lex.us-gov-west-1.amazonaws.com", 10519 CredentialScope: credentialScope{ 10520 Region: "us-gov-west-1", 10521 }, 10522 }, 10523 }, 10524 }, 10525 "monitoring": service{ 10526 10527 Endpoints: endpoints{ 10528 "fips-us-gov-east-1": endpoint{ 10529 Hostname: "monitoring.us-gov-east-1.amazonaws.com", 10530 CredentialScope: credentialScope{ 10531 Region: "us-gov-east-1", 10532 }, 10533 }, 10534 "fips-us-gov-west-1": endpoint{ 10535 Hostname: "monitoring.us-gov-west-1.amazonaws.com", 10536 CredentialScope: credentialScope{ 10537 Region: "us-gov-west-1", 10538 }, 10539 }, 10540 "us-gov-east-1": endpoint{}, 10541 "us-gov-west-1": endpoint{}, 10542 }, 10543 }, 10544 "mq": service{ 10545 10546 Endpoints: endpoints{ 10547 "fips-us-gov-east-1": endpoint{ 10548 Hostname: "mq-fips.us-gov-east-1.amazonaws.com", 10549 CredentialScope: credentialScope{ 10550 Region: "us-gov-east-1", 10551 }, 10552 }, 10553 "fips-us-gov-west-1": endpoint{ 10554 Hostname: "mq-fips.us-gov-west-1.amazonaws.com", 10555 CredentialScope: credentialScope{ 10556 Region: "us-gov-west-1", 10557 }, 10558 }, 10559 "us-gov-east-1": endpoint{}, 10560 "us-gov-west-1": endpoint{}, 10561 }, 10562 }, 10563 "neptune": service{ 10564 10565 Endpoints: endpoints{ 10566 "us-gov-east-1": endpoint{ 10567 Hostname: "rds.us-gov-east-1.amazonaws.com", 10568 CredentialScope: credentialScope{ 10569 Region: "us-gov-east-1", 10570 }, 10571 }, 10572 "us-gov-west-1": endpoint{ 10573 Hostname: "rds.us-gov-west-1.amazonaws.com", 10574 CredentialScope: credentialScope{ 10575 Region: "us-gov-west-1", 10576 }, 10577 }, 10578 }, 10579 }, 10580 "network-firewall": service{ 10581 10582 Endpoints: endpoints{ 10583 "fips-us-gov-east-1": endpoint{ 10584 Hostname: "network-firewall-fips.us-gov-east-1.amazonaws.com", 10585 CredentialScope: credentialScope{ 10586 Region: "us-gov-east-1", 10587 }, 10588 }, 10589 "fips-us-gov-west-1": endpoint{ 10590 Hostname: "network-firewall-fips.us-gov-west-1.amazonaws.com", 10591 CredentialScope: credentialScope{ 10592 Region: "us-gov-west-1", 10593 }, 10594 }, 10595 "us-gov-east-1": endpoint{}, 10596 "us-gov-west-1": endpoint{}, 10597 }, 10598 }, 10599 "oidc": service{ 10600 10601 Endpoints: endpoints{ 10602 "us-gov-west-1": endpoint{ 10603 Hostname: "oidc.us-gov-west-1.amazonaws.com", 10604 CredentialScope: credentialScope{ 10605 Region: "us-gov-west-1", 10606 }, 10607 }, 10608 }, 10609 }, 10610 "organizations": service{ 10611 PartitionEndpoint: "aws-us-gov-global", 10612 IsRegionalized: boxedFalse, 10613 10614 Endpoints: endpoints{ 10615 "aws-us-gov-global": endpoint{ 10616 Hostname: "organizations.us-gov-west-1.amazonaws.com", 10617 CredentialScope: credentialScope{ 10618 Region: "us-gov-west-1", 10619 }, 10620 }, 10621 "fips-aws-us-gov-global": endpoint{ 10622 Hostname: "organizations.us-gov-west-1.amazonaws.com", 10623 CredentialScope: credentialScope{ 10624 Region: "us-gov-west-1", 10625 }, 10626 }, 10627 }, 10628 }, 10629 "outposts": service{ 10630 10631 Endpoints: endpoints{ 10632 "us-gov-east-1": endpoint{ 10633 Hostname: "outposts.us-gov-east-1.amazonaws.com", 10634 CredentialScope: credentialScope{ 10635 Region: "us-gov-east-1", 10636 }, 10637 }, 10638 "us-gov-west-1": endpoint{ 10639 Hostname: "outposts.us-gov-west-1.amazonaws.com", 10640 CredentialScope: credentialScope{ 10641 Region: "us-gov-west-1", 10642 }, 10643 }, 10644 }, 10645 }, 10646 "pinpoint": service{ 10647 Defaults: endpoint{ 10648 CredentialScope: credentialScope{ 10649 Service: "mobiletargeting", 10650 }, 10651 }, 10652 Endpoints: endpoints{ 10653 "fips-us-gov-west-1": endpoint{ 10654 Hostname: "pinpoint-fips.us-gov-west-1.amazonaws.com", 10655 CredentialScope: credentialScope{ 10656 Region: "us-gov-west-1", 10657 }, 10658 }, 10659 "us-gov-west-1": endpoint{ 10660 Hostname: "pinpoint.us-gov-west-1.amazonaws.com", 10661 CredentialScope: credentialScope{ 10662 Region: "us-gov-west-1", 10663 }, 10664 }, 10665 }, 10666 }, 10667 "polly": service{ 10668 10669 Endpoints: endpoints{ 10670 "fips-us-gov-west-1": endpoint{ 10671 Hostname: "polly-fips.us-gov-west-1.amazonaws.com", 10672 CredentialScope: credentialScope{ 10673 Region: "us-gov-west-1", 10674 }, 10675 }, 10676 "us-gov-west-1": endpoint{}, 10677 }, 10678 }, 10679 "quicksight": service{ 10680 10681 Endpoints: endpoints{ 10682 "api": endpoint{}, 10683 "us-gov-west-1": endpoint{}, 10684 }, 10685 }, 10686 "ram": service{ 10687 10688 Endpoints: endpoints{ 10689 "us-gov-east-1": endpoint{ 10690 Hostname: "ram.us-gov-east-1.amazonaws.com", 10691 CredentialScope: credentialScope{ 10692 Region: "us-gov-east-1", 10693 }, 10694 }, 10695 "us-gov-west-1": endpoint{ 10696 Hostname: "ram.us-gov-west-1.amazonaws.com", 10697 CredentialScope: credentialScope{ 10698 Region: "us-gov-west-1", 10699 }, 10700 }, 10701 }, 10702 }, 10703 "rds": service{ 10704 10705 Endpoints: endpoints{ 10706 "rds.us-gov-east-1": endpoint{ 10707 Hostname: "rds.us-gov-east-1.amazonaws.com", 10708 CredentialScope: credentialScope{ 10709 Region: "us-gov-east-1", 10710 }, 10711 }, 10712 "rds.us-gov-west-1": endpoint{ 10713 Hostname: "rds.us-gov-west-1.amazonaws.com", 10714 CredentialScope: credentialScope{ 10715 Region: "us-gov-west-1", 10716 }, 10717 }, 10718 "us-gov-east-1": endpoint{}, 10719 "us-gov-west-1": endpoint{}, 10720 }, 10721 }, 10722 "redshift": service{ 10723 10724 Endpoints: endpoints{ 10725 "us-gov-east-1": endpoint{ 10726 Hostname: "redshift.us-gov-east-1.amazonaws.com", 10727 CredentialScope: credentialScope{ 10728 Region: "us-gov-east-1", 10729 }, 10730 }, 10731 "us-gov-west-1": endpoint{ 10732 Hostname: "redshift.us-gov-west-1.amazonaws.com", 10733 CredentialScope: credentialScope{ 10734 Region: "us-gov-west-1", 10735 }, 10736 }, 10737 }, 10738 }, 10739 "rekognition": service{ 10740 10741 Endpoints: endpoints{ 10742 "rekognition-fips.us-gov-west-1": endpoint{ 10743 Hostname: "rekognition-fips.us-gov-west-1.amazonaws.com", 10744 CredentialScope: credentialScope{ 10745 Region: "us-gov-west-1", 10746 }, 10747 }, 10748 "us-gov-west-1": endpoint{}, 10749 }, 10750 }, 10751 "resource-groups": service{ 10752 10753 Endpoints: endpoints{ 10754 "fips-us-gov-east-1": endpoint{ 10755 Hostname: "resource-groups.us-gov-east-1.amazonaws.com", 10756 CredentialScope: credentialScope{ 10757 Region: "us-gov-east-1", 10758 }, 10759 }, 10760 "fips-us-gov-west-1": endpoint{ 10761 Hostname: "resource-groups.us-gov-west-1.amazonaws.com", 10762 CredentialScope: credentialScope{ 10763 Region: "us-gov-west-1", 10764 }, 10765 }, 10766 "us-gov-east-1": endpoint{}, 10767 "us-gov-west-1": endpoint{}, 10768 }, 10769 }, 10770 "route53": service{ 10771 PartitionEndpoint: "aws-us-gov-global", 10772 IsRegionalized: boxedFalse, 10773 10774 Endpoints: endpoints{ 10775 "aws-us-gov-global": endpoint{ 10776 Hostname: "route53.us-gov.amazonaws.com", 10777 CredentialScope: credentialScope{ 10778 Region: "us-gov-west-1", 10779 }, 10780 }, 10781 "fips-aws-us-gov-global": endpoint{ 10782 Hostname: "route53.us-gov.amazonaws.com", 10783 CredentialScope: credentialScope{ 10784 Region: "us-gov-west-1", 10785 }, 10786 }, 10787 }, 10788 }, 10789 "route53resolver": service{ 10790 10791 Endpoints: endpoints{ 10792 "us-gov-east-1": endpoint{}, 10793 "us-gov-west-1": endpoint{}, 10794 }, 10795 }, 10796 "runtime.lex": service{ 10797 Defaults: endpoint{ 10798 CredentialScope: credentialScope{ 10799 Service: "lex", 10800 }, 10801 }, 10802 Endpoints: endpoints{ 10803 "us-gov-west-1": endpoint{}, 10804 "us-gov-west-1-fips": endpoint{ 10805 Hostname: "runtime-fips.lex.us-gov-west-1.amazonaws.com", 10806 CredentialScope: credentialScope{ 10807 Region: "us-gov-west-1", 10808 }, 10809 }, 10810 }, 10811 }, 10812 "runtime.sagemaker": service{ 10813 10814 Endpoints: endpoints{ 10815 "us-gov-west-1": endpoint{}, 10816 "us-gov-west-1-fips": endpoint{ 10817 Hostname: "runtime.sagemaker.us-gov-west-1.amazonaws.com", 10818 CredentialScope: credentialScope{ 10819 Region: "us-gov-west-1", 10820 }, 10821 }, 10822 }, 10823 }, 10824 "s3": service{ 10825 Defaults: endpoint{ 10826 SignatureVersions: []string{"s3", "s3v4"}, 10827 10828 HasDualStack: boxedTrue, 10829 DualStackHostname: "{service}.dualstack.{region}.{dnsSuffix}", 10830 }, 10831 Endpoints: endpoints{ 10832 "accesspoint-us-gov-east-1": endpoint{ 10833 Hostname: "s3-accesspoint.us-gov-east-1.amazonaws.com", 10834 SignatureVersions: []string{"s3v4"}, 10835 }, 10836 "accesspoint-us-gov-west-1": endpoint{ 10837 Hostname: "s3-accesspoint.us-gov-west-1.amazonaws.com", 10838 SignatureVersions: []string{"s3v4"}, 10839 }, 10840 "fips-accesspoint-us-gov-east-1": endpoint{ 10841 Hostname: "s3-accesspoint-fips.us-gov-east-1.amazonaws.com", 10842 SignatureVersions: []string{"s3v4"}, 10843 }, 10844 "fips-accesspoint-us-gov-west-1": endpoint{ 10845 Hostname: "s3-accesspoint-fips.us-gov-west-1.amazonaws.com", 10846 SignatureVersions: []string{"s3v4"}, 10847 }, 10848 "fips-us-gov-west-1": endpoint{ 10849 Hostname: "s3-fips.us-gov-west-1.amazonaws.com", 10850 CredentialScope: credentialScope{ 10851 Region: "us-gov-west-1", 10852 }, 10853 }, 10854 "us-gov-east-1": endpoint{ 10855 Hostname: "s3.us-gov-east-1.amazonaws.com", 10856 Protocols: []string{"http", "https"}, 10857 }, 10858 "us-gov-west-1": endpoint{ 10859 Hostname: "s3.us-gov-west-1.amazonaws.com", 10860 Protocols: []string{"http", "https"}, 10861 }, 10862 }, 10863 }, 10864 "s3-control": service{ 10865 Defaults: endpoint{ 10866 Protocols: []string{"https"}, 10867 SignatureVersions: []string{"s3v4"}, 10868 10869 HasDualStack: boxedTrue, 10870 DualStackHostname: "{service}.dualstack.{region}.{dnsSuffix}", 10871 }, 10872 Endpoints: endpoints{ 10873 "us-gov-east-1": endpoint{ 10874 Hostname: "s3-control.us-gov-east-1.amazonaws.com", 10875 SignatureVersions: []string{"s3v4"}, 10876 CredentialScope: credentialScope{ 10877 Region: "us-gov-east-1", 10878 }, 10879 }, 10880 "us-gov-east-1-fips": endpoint{ 10881 Hostname: "s3-control-fips.us-gov-east-1.amazonaws.com", 10882 SignatureVersions: []string{"s3v4"}, 10883 CredentialScope: credentialScope{ 10884 Region: "us-gov-east-1", 10885 }, 10886 }, 10887 "us-gov-west-1": endpoint{ 10888 Hostname: "s3-control.us-gov-west-1.amazonaws.com", 10889 SignatureVersions: []string{"s3v4"}, 10890 CredentialScope: credentialScope{ 10891 Region: "us-gov-west-1", 10892 }, 10893 }, 10894 "us-gov-west-1-fips": endpoint{ 10895 Hostname: "s3-control-fips.us-gov-west-1.amazonaws.com", 10896 SignatureVersions: []string{"s3v4"}, 10897 CredentialScope: credentialScope{ 10898 Region: "us-gov-west-1", 10899 }, 10900 }, 10901 }, 10902 }, 10903 "secretsmanager": service{ 10904 10905 Endpoints: endpoints{ 10906 "us-gov-east-1": endpoint{}, 10907 "us-gov-east-1-fips": endpoint{ 10908 Hostname: "secretsmanager-fips.us-gov-east-1.amazonaws.com", 10909 CredentialScope: credentialScope{ 10910 Region: "us-gov-east-1", 10911 }, 10912 }, 10913 "us-gov-west-1": endpoint{}, 10914 "us-gov-west-1-fips": endpoint{ 10915 Hostname: "secretsmanager-fips.us-gov-west-1.amazonaws.com", 10916 CredentialScope: credentialScope{ 10917 Region: "us-gov-west-1", 10918 }, 10919 }, 10920 }, 10921 }, 10922 "securityhub": service{ 10923 10924 Endpoints: endpoints{ 10925 "fips-us-gov-east-1": endpoint{ 10926 Hostname: "securityhub-fips.us-gov-east-1.amazonaws.com", 10927 CredentialScope: credentialScope{ 10928 Region: "us-gov-east-1", 10929 }, 10930 }, 10931 "fips-us-gov-west-1": endpoint{ 10932 Hostname: "securityhub-fips.us-gov-west-1.amazonaws.com", 10933 CredentialScope: credentialScope{ 10934 Region: "us-gov-west-1", 10935 }, 10936 }, 10937 "us-gov-east-1": endpoint{}, 10938 "us-gov-west-1": endpoint{}, 10939 }, 10940 }, 10941 "serverlessrepo": service{ 10942 Defaults: endpoint{ 10943 Protocols: []string{"https"}, 10944 }, 10945 Endpoints: endpoints{ 10946 "us-gov-east-1": endpoint{ 10947 Hostname: "serverlessrepo.us-gov-east-1.amazonaws.com", 10948 Protocols: []string{"https"}, 10949 CredentialScope: credentialScope{ 10950 Region: "us-gov-east-1", 10951 }, 10952 }, 10953 "us-gov-west-1": endpoint{ 10954 Hostname: "serverlessrepo.us-gov-west-1.amazonaws.com", 10955 Protocols: []string{"https"}, 10956 CredentialScope: credentialScope{ 10957 Region: "us-gov-west-1", 10958 }, 10959 }, 10960 }, 10961 }, 10962 "servicecatalog": service{ 10963 10964 Endpoints: endpoints{ 10965 "us-gov-east-1": endpoint{}, 10966 "us-gov-east-1-fips": endpoint{ 10967 Hostname: "servicecatalog-fips.us-gov-east-1.amazonaws.com", 10968 CredentialScope: credentialScope{ 10969 Region: "us-gov-east-1", 10970 }, 10971 }, 10972 "us-gov-west-1": endpoint{}, 10973 "us-gov-west-1-fips": endpoint{ 10974 Hostname: "servicecatalog-fips.us-gov-west-1.amazonaws.com", 10975 CredentialScope: credentialScope{ 10976 Region: "us-gov-west-1", 10977 }, 10978 }, 10979 }, 10980 }, 10981 "servicecatalog-appregistry": service{ 10982 10983 Endpoints: endpoints{ 10984 "fips-us-gov-east-1": endpoint{ 10985 Hostname: "servicecatalog-appregistry.us-gov-east-1.amazonaws.com", 10986 CredentialScope: credentialScope{ 10987 Region: "us-gov-east-1", 10988 }, 10989 }, 10990 "fips-us-gov-west-1": endpoint{ 10991 Hostname: "servicecatalog-appregistry.us-gov-west-1.amazonaws.com", 10992 CredentialScope: credentialScope{ 10993 Region: "us-gov-west-1", 10994 }, 10995 }, 10996 "us-gov-east-1": endpoint{}, 10997 "us-gov-west-1": endpoint{}, 10998 }, 10999 }, 11000 "servicediscovery": service{ 11001 11002 Endpoints: endpoints{ 11003 "servicediscovery-fips": endpoint{ 11004 Hostname: "servicediscovery-fips.us-gov-west-1.amazonaws.com", 11005 CredentialScope: credentialScope{ 11006 Region: "us-gov-west-1", 11007 }, 11008 }, 11009 "us-gov-east-1": endpoint{}, 11010 "us-gov-west-1": endpoint{}, 11011 }, 11012 }, 11013 "servicequotas": service{ 11014 Defaults: endpoint{ 11015 Protocols: []string{"https"}, 11016 }, 11017 Endpoints: endpoints{ 11018 "fips-us-gov-east-1": endpoint{ 11019 Hostname: "servicequotas.us-gov-east-1.amazonaws.com", 11020 CredentialScope: credentialScope{ 11021 Region: "us-gov-east-1", 11022 }, 11023 }, 11024 "fips-us-gov-west-1": endpoint{ 11025 Hostname: "servicequotas.us-gov-west-1.amazonaws.com", 11026 CredentialScope: credentialScope{ 11027 Region: "us-gov-west-1", 11028 }, 11029 }, 11030 "us-gov-east-1": endpoint{}, 11031 "us-gov-west-1": endpoint{}, 11032 }, 11033 }, 11034 "sms": service{ 11035 11036 Endpoints: endpoints{ 11037 "fips-us-gov-east-1": endpoint{ 11038 Hostname: "sms-fips.us-gov-east-1.amazonaws.com", 11039 CredentialScope: credentialScope{ 11040 Region: "us-gov-east-1", 11041 }, 11042 }, 11043 "fips-us-gov-west-1": endpoint{ 11044 Hostname: "sms-fips.us-gov-west-1.amazonaws.com", 11045 CredentialScope: credentialScope{ 11046 Region: "us-gov-west-1", 11047 }, 11048 }, 11049 "us-gov-east-1": endpoint{}, 11050 "us-gov-west-1": endpoint{}, 11051 }, 11052 }, 11053 "snowball": service{ 11054 11055 Endpoints: endpoints{ 11056 "fips-us-gov-east-1": endpoint{ 11057 Hostname: "snowball-fips.us-gov-east-1.amazonaws.com", 11058 CredentialScope: credentialScope{ 11059 Region: "us-gov-east-1", 11060 }, 11061 }, 11062 "fips-us-gov-west-1": endpoint{ 11063 Hostname: "snowball-fips.us-gov-west-1.amazonaws.com", 11064 CredentialScope: credentialScope{ 11065 Region: "us-gov-west-1", 11066 }, 11067 }, 11068 "us-gov-east-1": endpoint{}, 11069 "us-gov-west-1": endpoint{}, 11070 }, 11071 }, 11072 "sns": service{ 11073 11074 Endpoints: endpoints{ 11075 "us-gov-east-1": endpoint{ 11076 Hostname: "sns.us-gov-east-1.amazonaws.com", 11077 CredentialScope: credentialScope{ 11078 Region: "us-gov-east-1", 11079 }, 11080 }, 11081 "us-gov-west-1": endpoint{ 11082 Hostname: "sns.us-gov-west-1.amazonaws.com", 11083 Protocols: []string{"http", "https"}, 11084 CredentialScope: credentialScope{ 11085 Region: "us-gov-west-1", 11086 }, 11087 }, 11088 }, 11089 }, 11090 "sqs": service{ 11091 11092 Endpoints: endpoints{ 11093 "us-gov-east-1": endpoint{ 11094 Hostname: "sqs.us-gov-east-1.amazonaws.com", 11095 CredentialScope: credentialScope{ 11096 Region: "us-gov-east-1", 11097 }, 11098 }, 11099 "us-gov-west-1": endpoint{ 11100 Hostname: "sqs.us-gov-west-1.amazonaws.com", 11101 SSLCommonName: "{region}.queue.{dnsSuffix}", 11102 Protocols: []string{"http", "https"}, 11103 CredentialScope: credentialScope{ 11104 Region: "us-gov-west-1", 11105 }, 11106 }, 11107 }, 11108 }, 11109 "ssm": service{ 11110 11111 Endpoints: endpoints{ 11112 "fips-us-gov-east-1": endpoint{ 11113 Hostname: "ssm.us-gov-east-1.amazonaws.com", 11114 CredentialScope: credentialScope{ 11115 Region: "us-gov-east-1", 11116 }, 11117 }, 11118 "fips-us-gov-west-1": endpoint{ 11119 Hostname: "ssm.us-gov-west-1.amazonaws.com", 11120 CredentialScope: credentialScope{ 11121 Region: "us-gov-west-1", 11122 }, 11123 }, 11124 "us-gov-east-1": endpoint{}, 11125 "us-gov-west-1": endpoint{}, 11126 }, 11127 }, 11128 "states": service{ 11129 11130 Endpoints: endpoints{ 11131 "fips-us-gov-east-1": endpoint{ 11132 Hostname: "states-fips.us-gov-east-1.amazonaws.com", 11133 CredentialScope: credentialScope{ 11134 Region: "us-gov-east-1", 11135 }, 11136 }, 11137 "fips-us-gov-west-1": endpoint{ 11138 Hostname: "states.us-gov-west-1.amazonaws.com", 11139 CredentialScope: credentialScope{ 11140 Region: "us-gov-west-1", 11141 }, 11142 }, 11143 "us-gov-east-1": endpoint{}, 11144 "us-gov-west-1": endpoint{}, 11145 }, 11146 }, 11147 "storagegateway": service{ 11148 11149 Endpoints: endpoints{ 11150 "fips": endpoint{ 11151 Hostname: "storagegateway-fips.us-gov-west-1.amazonaws.com", 11152 CredentialScope: credentialScope{ 11153 Region: "us-gov-west-1", 11154 }, 11155 }, 11156 "us-gov-east-1": endpoint{}, 11157 "us-gov-west-1": endpoint{}, 11158 }, 11159 }, 11160 "streams.dynamodb": service{ 11161 Defaults: endpoint{ 11162 CredentialScope: credentialScope{ 11163 Service: "dynamodb", 11164 }, 11165 }, 11166 Endpoints: endpoints{ 11167 "us-gov-east-1": endpoint{}, 11168 "us-gov-east-1-fips": endpoint{ 11169 Hostname: "dynamodb.us-gov-east-1.amazonaws.com", 11170 CredentialScope: credentialScope{ 11171 Region: "us-gov-east-1", 11172 }, 11173 }, 11174 "us-gov-west-1": endpoint{}, 11175 "us-gov-west-1-fips": endpoint{ 11176 Hostname: "dynamodb.us-gov-west-1.amazonaws.com", 11177 CredentialScope: credentialScope{ 11178 Region: "us-gov-west-1", 11179 }, 11180 }, 11181 }, 11182 }, 11183 "sts": service{ 11184 11185 Endpoints: endpoints{ 11186 "us-gov-east-1": endpoint{}, 11187 "us-gov-east-1-fips": endpoint{ 11188 Hostname: "sts.us-gov-east-1.amazonaws.com", 11189 CredentialScope: credentialScope{ 11190 Region: "us-gov-east-1", 11191 }, 11192 }, 11193 "us-gov-west-1": endpoint{}, 11194 "us-gov-west-1-fips": endpoint{ 11195 Hostname: "sts.us-gov-west-1.amazonaws.com", 11196 CredentialScope: credentialScope{ 11197 Region: "us-gov-west-1", 11198 }, 11199 }, 11200 }, 11201 }, 11202 "support": service{ 11203 PartitionEndpoint: "aws-us-gov-global", 11204 11205 Endpoints: endpoints{ 11206 "aws-us-gov-global": endpoint{ 11207 Hostname: "support.us-gov-west-1.amazonaws.com", 11208 CredentialScope: credentialScope{ 11209 Region: "us-gov-west-1", 11210 }, 11211 }, 11212 "fips-us-gov-west-1": endpoint{ 11213 Hostname: "support.us-gov-west-1.amazonaws.com", 11214 CredentialScope: credentialScope{ 11215 Region: "us-gov-west-1", 11216 }, 11217 }, 11218 }, 11219 }, 11220 "swf": service{ 11221 11222 Endpoints: endpoints{ 11223 "us-gov-east-1": endpoint{ 11224 Hostname: "swf.us-gov-east-1.amazonaws.com", 11225 CredentialScope: credentialScope{ 11226 Region: "us-gov-east-1", 11227 }, 11228 }, 11229 "us-gov-west-1": endpoint{ 11230 Hostname: "swf.us-gov-west-1.amazonaws.com", 11231 CredentialScope: credentialScope{ 11232 Region: "us-gov-west-1", 11233 }, 11234 }, 11235 }, 11236 }, 11237 "tagging": service{ 11238 11239 Endpoints: endpoints{ 11240 "us-gov-east-1": endpoint{}, 11241 "us-gov-west-1": endpoint{}, 11242 }, 11243 }, 11244 "textract": service{ 11245 11246 Endpoints: endpoints{ 11247 "fips-us-gov-east-1": endpoint{ 11248 Hostname: "textract-fips.us-gov-east-1.amazonaws.com", 11249 CredentialScope: credentialScope{ 11250 Region: "us-gov-east-1", 11251 }, 11252 }, 11253 "fips-us-gov-west-1": endpoint{ 11254 Hostname: "textract-fips.us-gov-west-1.amazonaws.com", 11255 CredentialScope: credentialScope{ 11256 Region: "us-gov-west-1", 11257 }, 11258 }, 11259 "us-gov-east-1": endpoint{}, 11260 "us-gov-west-1": endpoint{}, 11261 }, 11262 }, 11263 "transcribe": service{ 11264 Defaults: endpoint{ 11265 Protocols: []string{"https"}, 11266 }, 11267 Endpoints: endpoints{ 11268 "fips-us-gov-east-1": endpoint{ 11269 Hostname: "fips.transcribe.us-gov-east-1.amazonaws.com", 11270 CredentialScope: credentialScope{ 11271 Region: "us-gov-east-1", 11272 }, 11273 }, 11274 "fips-us-gov-west-1": endpoint{ 11275 Hostname: "fips.transcribe.us-gov-west-1.amazonaws.com", 11276 CredentialScope: credentialScope{ 11277 Region: "us-gov-west-1", 11278 }, 11279 }, 11280 "us-gov-east-1": endpoint{}, 11281 "us-gov-west-1": endpoint{}, 11282 }, 11283 }, 11284 "transfer": service{ 11285 11286 Endpoints: endpoints{ 11287 "fips-us-gov-east-1": endpoint{ 11288 Hostname: "transfer-fips.us-gov-east-1.amazonaws.com", 11289 CredentialScope: credentialScope{ 11290 Region: "us-gov-east-1", 11291 }, 11292 }, 11293 "fips-us-gov-west-1": endpoint{ 11294 Hostname: "transfer-fips.us-gov-west-1.amazonaws.com", 11295 CredentialScope: credentialScope{ 11296 Region: "us-gov-west-1", 11297 }, 11298 }, 11299 "us-gov-east-1": endpoint{}, 11300 "us-gov-west-1": endpoint{}, 11301 }, 11302 }, 11303 "translate": service{ 11304 Defaults: endpoint{ 11305 Protocols: []string{"https"}, 11306 }, 11307 Endpoints: endpoints{ 11308 "us-gov-west-1": endpoint{}, 11309 "us-gov-west-1-fips": endpoint{ 11310 Hostname: "translate-fips.us-gov-west-1.amazonaws.com", 11311 CredentialScope: credentialScope{ 11312 Region: "us-gov-west-1", 11313 }, 11314 }, 11315 }, 11316 }, 11317 "waf-regional": service{ 11318 11319 Endpoints: endpoints{ 11320 "fips-us-gov-east-1": endpoint{ 11321 Hostname: "waf-regional-fips.us-gov-east-1.amazonaws.com", 11322 CredentialScope: credentialScope{ 11323 Region: "us-gov-east-1", 11324 }, 11325 }, 11326 "fips-us-gov-west-1": endpoint{ 11327 Hostname: "waf-regional-fips.us-gov-west-1.amazonaws.com", 11328 CredentialScope: credentialScope{ 11329 Region: "us-gov-west-1", 11330 }, 11331 }, 11332 "us-gov-east-1": endpoint{ 11333 Hostname: "waf-regional.us-gov-east-1.amazonaws.com", 11334 CredentialScope: credentialScope{ 11335 Region: "us-gov-east-1", 11336 }, 11337 }, 11338 "us-gov-west-1": endpoint{ 11339 Hostname: "waf-regional.us-gov-west-1.amazonaws.com", 11340 CredentialScope: credentialScope{ 11341 Region: "us-gov-west-1", 11342 }, 11343 }, 11344 }, 11345 }, 11346 "workspaces": service{ 11347 11348 Endpoints: endpoints{ 11349 "fips-us-gov-west-1": endpoint{ 11350 Hostname: "workspaces-fips.us-gov-west-1.amazonaws.com", 11351 CredentialScope: credentialScope{ 11352 Region: "us-gov-west-1", 11353 }, 11354 }, 11355 "us-gov-west-1": endpoint{}, 11356 }, 11357 }, 11358 "xray": service{ 11359 11360 Endpoints: endpoints{ 11361 "fips-us-gov-east-1": endpoint{ 11362 Hostname: "xray-fips.us-gov-east-1.amazonaws.com", 11363 CredentialScope: credentialScope{ 11364 Region: "us-gov-east-1", 11365 }, 11366 }, 11367 "fips-us-gov-west-1": endpoint{ 11368 Hostname: "xray-fips.us-gov-west-1.amazonaws.com", 11369 CredentialScope: credentialScope{ 11370 Region: "us-gov-west-1", 11371 }, 11372 }, 11373 "us-gov-east-1": endpoint{}, 11374 "us-gov-west-1": endpoint{}, 11375 }, 11376 }, 11377 }, 11378 } 11379 11380 // AwsIsoPartition returns the Resolver for AWS ISO (US). 11381 func AwsIsoPartition() Partition { 11382 return awsisoPartition.Partition() 11383 } 11384 11385 var awsisoPartition = partition{ 11386 ID: "aws-iso", 11387 Name: "AWS ISO (US)", 11388 DNSSuffix: "c2s.ic.gov", 11389 RegionRegex: regionRegex{ 11390 Regexp: func() *regexp.Regexp { 11391 reg, _ := regexp.Compile("^us\\-iso\\-\\w+\\-\\d+$") 11392 return reg 11393 }(), 11394 }, 11395 Defaults: endpoint{ 11396 Hostname: "{service}.{region}.{dnsSuffix}", 11397 Protocols: []string{"https"}, 11398 SignatureVersions: []string{"v4"}, 11399 }, 11400 Regions: regions{ 11401 "us-iso-east-1": region{ 11402 Description: "US ISO East", 11403 }, 11404 }, 11405 Services: services{ 11406 "api.ecr": service{ 11407 11408 Endpoints: endpoints{ 11409 "us-iso-east-1": endpoint{ 11410 Hostname: "api.ecr.us-iso-east-1.c2s.ic.gov", 11411 CredentialScope: credentialScope{ 11412 Region: "us-iso-east-1", 11413 }, 11414 }, 11415 }, 11416 }, 11417 "api.sagemaker": service{ 11418 11419 Endpoints: endpoints{ 11420 "us-iso-east-1": endpoint{}, 11421 }, 11422 }, 11423 "apigateway": service{ 11424 11425 Endpoints: endpoints{ 11426 "us-iso-east-1": endpoint{}, 11427 }, 11428 }, 11429 "application-autoscaling": service{ 11430 Defaults: endpoint{ 11431 Protocols: []string{"http", "https"}, 11432 }, 11433 Endpoints: endpoints{ 11434 "us-iso-east-1": endpoint{}, 11435 }, 11436 }, 11437 "autoscaling": service{ 11438 11439 Endpoints: endpoints{ 11440 "us-iso-east-1": endpoint{ 11441 Protocols: []string{"http", "https"}, 11442 }, 11443 }, 11444 }, 11445 "cloudformation": service{ 11446 11447 Endpoints: endpoints{ 11448 "us-iso-east-1": endpoint{}, 11449 }, 11450 }, 11451 "cloudtrail": service{ 11452 11453 Endpoints: endpoints{ 11454 "us-iso-east-1": endpoint{}, 11455 }, 11456 }, 11457 "codedeploy": service{ 11458 11459 Endpoints: endpoints{ 11460 "us-iso-east-1": endpoint{}, 11461 }, 11462 }, 11463 "comprehend": service{ 11464 Defaults: endpoint{ 11465 Protocols: []string{"https"}, 11466 }, 11467 Endpoints: endpoints{ 11468 "us-iso-east-1": endpoint{}, 11469 }, 11470 }, 11471 "config": service{ 11472 11473 Endpoints: endpoints{ 11474 "us-iso-east-1": endpoint{}, 11475 }, 11476 }, 11477 "datapipeline": service{ 11478 11479 Endpoints: endpoints{ 11480 "us-iso-east-1": endpoint{}, 11481 }, 11482 }, 11483 "directconnect": service{ 11484 11485 Endpoints: endpoints{ 11486 "us-iso-east-1": endpoint{}, 11487 }, 11488 }, 11489 "dms": service{ 11490 11491 Endpoints: endpoints{ 11492 "dms-fips": endpoint{ 11493 Hostname: "dms.us-iso-east-1.c2s.ic.gov", 11494 CredentialScope: credentialScope{ 11495 Region: "us-iso-east-1", 11496 }, 11497 }, 11498 "us-iso-east-1": endpoint{}, 11499 }, 11500 }, 11501 "ds": service{ 11502 11503 Endpoints: endpoints{ 11504 "us-iso-east-1": endpoint{}, 11505 }, 11506 }, 11507 "dynamodb": service{ 11508 11509 Endpoints: endpoints{ 11510 "us-iso-east-1": endpoint{ 11511 Protocols: []string{"http", "https"}, 11512 }, 11513 }, 11514 }, 11515 "ec2": service{ 11516 11517 Endpoints: endpoints{ 11518 "us-iso-east-1": endpoint{}, 11519 }, 11520 }, 11521 "ecs": service{ 11522 11523 Endpoints: endpoints{ 11524 "us-iso-east-1": endpoint{}, 11525 }, 11526 }, 11527 "elasticache": service{ 11528 11529 Endpoints: endpoints{ 11530 "us-iso-east-1": endpoint{}, 11531 }, 11532 }, 11533 "elasticfilesystem": service{ 11534 11535 Endpoints: endpoints{ 11536 "fips-us-iso-east-1": endpoint{ 11537 Hostname: "elasticfilesystem-fips.us-iso-east-1.c2s.ic.gov", 11538 CredentialScope: credentialScope{ 11539 Region: "us-iso-east-1", 11540 }, 11541 }, 11542 "us-iso-east-1": endpoint{}, 11543 }, 11544 }, 11545 "elasticloadbalancing": service{ 11546 11547 Endpoints: endpoints{ 11548 "us-iso-east-1": endpoint{ 11549 Protocols: []string{"http", "https"}, 11550 }, 11551 }, 11552 }, 11553 "elasticmapreduce": service{ 11554 11555 Endpoints: endpoints{ 11556 "us-iso-east-1": endpoint{ 11557 Protocols: []string{"https"}, 11558 }, 11559 }, 11560 }, 11561 "es": service{ 11562 11563 Endpoints: endpoints{ 11564 "us-iso-east-1": endpoint{}, 11565 }, 11566 }, 11567 "events": service{ 11568 11569 Endpoints: endpoints{ 11570 "us-iso-east-1": endpoint{}, 11571 }, 11572 }, 11573 "firehose": service{ 11574 11575 Endpoints: endpoints{ 11576 "us-iso-east-1": endpoint{}, 11577 }, 11578 }, 11579 "glacier": service{ 11580 11581 Endpoints: endpoints{ 11582 "us-iso-east-1": endpoint{ 11583 Protocols: []string{"http", "https"}, 11584 }, 11585 }, 11586 }, 11587 "health": service{ 11588 11589 Endpoints: endpoints{ 11590 "us-iso-east-1": endpoint{}, 11591 }, 11592 }, 11593 "iam": service{ 11594 PartitionEndpoint: "aws-iso-global", 11595 IsRegionalized: boxedFalse, 11596 11597 Endpoints: endpoints{ 11598 "aws-iso-global": endpoint{ 11599 Hostname: "iam.us-iso-east-1.c2s.ic.gov", 11600 CredentialScope: credentialScope{ 11601 Region: "us-iso-east-1", 11602 }, 11603 }, 11604 }, 11605 }, 11606 "kinesis": service{ 11607 11608 Endpoints: endpoints{ 11609 "us-iso-east-1": endpoint{}, 11610 }, 11611 }, 11612 "kms": service{ 11613 11614 Endpoints: endpoints{ 11615 "ProdFips": endpoint{ 11616 Hostname: "kms-fips.us-iso-east-1.c2s.ic.gov", 11617 CredentialScope: credentialScope{ 11618 Region: "us-iso-east-1", 11619 }, 11620 }, 11621 "us-iso-east-1": endpoint{}, 11622 }, 11623 }, 11624 "lambda": service{ 11625 11626 Endpoints: endpoints{ 11627 "us-iso-east-1": endpoint{}, 11628 }, 11629 }, 11630 "license-manager": service{ 11631 11632 Endpoints: endpoints{ 11633 "us-iso-east-1": endpoint{}, 11634 }, 11635 }, 11636 "logs": service{ 11637 11638 Endpoints: endpoints{ 11639 "us-iso-east-1": endpoint{}, 11640 }, 11641 }, 11642 "medialive": service{ 11643 11644 Endpoints: endpoints{ 11645 "us-iso-east-1": endpoint{}, 11646 }, 11647 }, 11648 "mediapackage": service{ 11649 11650 Endpoints: endpoints{ 11651 "us-iso-east-1": endpoint{}, 11652 }, 11653 }, 11654 "monitoring": service{ 11655 11656 Endpoints: endpoints{ 11657 "us-iso-east-1": endpoint{}, 11658 }, 11659 }, 11660 "outposts": service{ 11661 11662 Endpoints: endpoints{ 11663 "us-iso-east-1": endpoint{}, 11664 }, 11665 }, 11666 "ram": service{ 11667 11668 Endpoints: endpoints{ 11669 "us-iso-east-1": endpoint{}, 11670 }, 11671 }, 11672 "rds": service{ 11673 11674 Endpoints: endpoints{ 11675 "us-iso-east-1": endpoint{}, 11676 }, 11677 }, 11678 "redshift": service{ 11679 11680 Endpoints: endpoints{ 11681 "us-iso-east-1": endpoint{}, 11682 }, 11683 }, 11684 "route53": service{ 11685 PartitionEndpoint: "aws-iso-global", 11686 IsRegionalized: boxedFalse, 11687 11688 Endpoints: endpoints{ 11689 "aws-iso-global": endpoint{ 11690 Hostname: "route53.c2s.ic.gov", 11691 CredentialScope: credentialScope{ 11692 Region: "us-iso-east-1", 11693 }, 11694 }, 11695 }, 11696 }, 11697 "route53resolver": service{ 11698 11699 Endpoints: endpoints{ 11700 "us-iso-east-1": endpoint{}, 11701 }, 11702 }, 11703 "runtime.sagemaker": service{ 11704 11705 Endpoints: endpoints{ 11706 "us-iso-east-1": endpoint{}, 11707 }, 11708 }, 11709 "s3": service{ 11710 Defaults: endpoint{ 11711 SignatureVersions: []string{"s3v4"}, 11712 }, 11713 Endpoints: endpoints{ 11714 "us-iso-east-1": endpoint{ 11715 Protocols: []string{"http", "https"}, 11716 SignatureVersions: []string{"s3v4"}, 11717 }, 11718 }, 11719 }, 11720 "secretsmanager": service{ 11721 11722 Endpoints: endpoints{ 11723 "us-iso-east-1": endpoint{}, 11724 }, 11725 }, 11726 "snowball": service{ 11727 11728 Endpoints: endpoints{ 11729 "us-iso-east-1": endpoint{}, 11730 }, 11731 }, 11732 "sns": service{ 11733 11734 Endpoints: endpoints{ 11735 "us-iso-east-1": endpoint{ 11736 Protocols: []string{"http", "https"}, 11737 }, 11738 }, 11739 }, 11740 "sqs": service{ 11741 11742 Endpoints: endpoints{ 11743 "us-iso-east-1": endpoint{ 11744 Protocols: []string{"http", "https"}, 11745 }, 11746 }, 11747 }, 11748 "ssm": service{ 11749 11750 Endpoints: endpoints{ 11751 "us-iso-east-1": endpoint{}, 11752 }, 11753 }, 11754 "states": service{ 11755 11756 Endpoints: endpoints{ 11757 "us-iso-east-1": endpoint{}, 11758 }, 11759 }, 11760 "streams.dynamodb": service{ 11761 Defaults: endpoint{ 11762 Protocols: []string{"http", "https"}, 11763 CredentialScope: credentialScope{ 11764 Service: "dynamodb", 11765 }, 11766 }, 11767 Endpoints: endpoints{ 11768 "us-iso-east-1": endpoint{ 11769 Protocols: []string{"http", "https"}, 11770 }, 11771 }, 11772 }, 11773 "sts": service{ 11774 11775 Endpoints: endpoints{ 11776 "us-iso-east-1": endpoint{}, 11777 }, 11778 }, 11779 "support": service{ 11780 PartitionEndpoint: "aws-iso-global", 11781 11782 Endpoints: endpoints{ 11783 "aws-iso-global": endpoint{ 11784 Hostname: "support.us-iso-east-1.c2s.ic.gov", 11785 CredentialScope: credentialScope{ 11786 Region: "us-iso-east-1", 11787 }, 11788 }, 11789 }, 11790 }, 11791 "swf": service{ 11792 11793 Endpoints: endpoints{ 11794 "us-iso-east-1": endpoint{}, 11795 }, 11796 }, 11797 "transcribe": service{ 11798 Defaults: endpoint{ 11799 Protocols: []string{"https"}, 11800 }, 11801 Endpoints: endpoints{ 11802 "us-iso-east-1": endpoint{}, 11803 }, 11804 }, 11805 "transcribestreaming": service{ 11806 11807 Endpoints: endpoints{ 11808 "us-iso-east-1": endpoint{}, 11809 }, 11810 }, 11811 "translate": service{ 11812 Defaults: endpoint{ 11813 Protocols: []string{"https"}, 11814 }, 11815 Endpoints: endpoints{ 11816 "us-iso-east-1": endpoint{}, 11817 }, 11818 }, 11819 "workspaces": service{ 11820 11821 Endpoints: endpoints{ 11822 "us-iso-east-1": endpoint{}, 11823 }, 11824 }, 11825 }, 11826 } 11827 11828 // AwsIsoBPartition returns the Resolver for AWS ISOB (US). 11829 func AwsIsoBPartition() Partition { 11830 return awsisobPartition.Partition() 11831 } 11832 11833 var awsisobPartition = partition{ 11834 ID: "aws-iso-b", 11835 Name: "AWS ISOB (US)", 11836 DNSSuffix: "sc2s.sgov.gov", 11837 RegionRegex: regionRegex{ 11838 Regexp: func() *regexp.Regexp { 11839 reg, _ := regexp.Compile("^us\\-isob\\-\\w+\\-\\d+$") 11840 return reg 11841 }(), 11842 }, 11843 Defaults: endpoint{ 11844 Hostname: "{service}.{region}.{dnsSuffix}", 11845 Protocols: []string{"https"}, 11846 SignatureVersions: []string{"v4"}, 11847 }, 11848 Regions: regions{ 11849 "us-isob-east-1": region{ 11850 Description: "US ISOB East (Ohio)", 11851 }, 11852 }, 11853 Services: services{ 11854 "api.ecr": service{ 11855 11856 Endpoints: endpoints{ 11857 "us-isob-east-1": endpoint{ 11858 Hostname: "api.ecr.us-isob-east-1.sc2s.sgov.gov", 11859 CredentialScope: credentialScope{ 11860 Region: "us-isob-east-1", 11861 }, 11862 }, 11863 }, 11864 }, 11865 "application-autoscaling": service{ 11866 Defaults: endpoint{ 11867 Protocols: []string{"http", "https"}, 11868 }, 11869 Endpoints: endpoints{ 11870 "us-isob-east-1": endpoint{}, 11871 }, 11872 }, 11873 "autoscaling": service{ 11874 Defaults: endpoint{ 11875 Protocols: []string{"http", "https"}, 11876 }, 11877 Endpoints: endpoints{ 11878 "us-isob-east-1": endpoint{}, 11879 }, 11880 }, 11881 "cloudformation": service{ 11882 11883 Endpoints: endpoints{ 11884 "us-isob-east-1": endpoint{}, 11885 }, 11886 }, 11887 "cloudtrail": service{ 11888 11889 Endpoints: endpoints{ 11890 "us-isob-east-1": endpoint{}, 11891 }, 11892 }, 11893 "codedeploy": service{ 11894 11895 Endpoints: endpoints{ 11896 "us-isob-east-1": endpoint{}, 11897 }, 11898 }, 11899 "config": service{ 11900 11901 Endpoints: endpoints{ 11902 "us-isob-east-1": endpoint{}, 11903 }, 11904 }, 11905 "directconnect": service{ 11906 11907 Endpoints: endpoints{ 11908 "us-isob-east-1": endpoint{}, 11909 }, 11910 }, 11911 "dms": service{ 11912 11913 Endpoints: endpoints{ 11914 "dms-fips": endpoint{ 11915 Hostname: "dms.us-isob-east-1.sc2s.sgov.gov", 11916 CredentialScope: credentialScope{ 11917 Region: "us-isob-east-1", 11918 }, 11919 }, 11920 "us-isob-east-1": endpoint{}, 11921 }, 11922 }, 11923 "ds": service{ 11924 11925 Endpoints: endpoints{ 11926 "us-isob-east-1": endpoint{}, 11927 }, 11928 }, 11929 "dynamodb": service{ 11930 Defaults: endpoint{ 11931 Protocols: []string{"http", "https"}, 11932 }, 11933 Endpoints: endpoints{ 11934 "us-isob-east-1": endpoint{}, 11935 }, 11936 }, 11937 "ec2": service{ 11938 Defaults: endpoint{ 11939 Protocols: []string{"http", "https"}, 11940 }, 11941 Endpoints: endpoints{ 11942 "us-isob-east-1": endpoint{}, 11943 }, 11944 }, 11945 "ecs": service{ 11946 11947 Endpoints: endpoints{ 11948 "us-isob-east-1": endpoint{}, 11949 }, 11950 }, 11951 "elasticache": service{ 11952 11953 Endpoints: endpoints{ 11954 "us-isob-east-1": endpoint{}, 11955 }, 11956 }, 11957 "elasticloadbalancing": service{ 11958 11959 Endpoints: endpoints{ 11960 "us-isob-east-1": endpoint{ 11961 Protocols: []string{"https"}, 11962 }, 11963 }, 11964 }, 11965 "elasticmapreduce": service{ 11966 11967 Endpoints: endpoints{ 11968 "us-isob-east-1": endpoint{}, 11969 }, 11970 }, 11971 "es": service{ 11972 11973 Endpoints: endpoints{ 11974 "us-isob-east-1": endpoint{}, 11975 }, 11976 }, 11977 "events": service{ 11978 11979 Endpoints: endpoints{ 11980 "us-isob-east-1": endpoint{}, 11981 }, 11982 }, 11983 "glacier": service{ 11984 11985 Endpoints: endpoints{ 11986 "us-isob-east-1": endpoint{}, 11987 }, 11988 }, 11989 "health": service{ 11990 11991 Endpoints: endpoints{ 11992 "us-isob-east-1": endpoint{}, 11993 }, 11994 }, 11995 "iam": service{ 11996 PartitionEndpoint: "aws-iso-b-global", 11997 IsRegionalized: boxedFalse, 11998 11999 Endpoints: endpoints{ 12000 "aws-iso-b-global": endpoint{ 12001 Hostname: "iam.us-isob-east-1.sc2s.sgov.gov", 12002 CredentialScope: credentialScope{ 12003 Region: "us-isob-east-1", 12004 }, 12005 }, 12006 }, 12007 }, 12008 "kinesis": service{ 12009 12010 Endpoints: endpoints{ 12011 "us-isob-east-1": endpoint{}, 12012 }, 12013 }, 12014 "kms": service{ 12015 12016 Endpoints: endpoints{ 12017 "ProdFips": endpoint{ 12018 Hostname: "kms-fips.us-isob-east-1.sc2s.sgov.gov", 12019 CredentialScope: credentialScope{ 12020 Region: "us-isob-east-1", 12021 }, 12022 }, 12023 "us-isob-east-1": endpoint{}, 12024 }, 12025 }, 12026 "lambda": service{ 12027 12028 Endpoints: endpoints{ 12029 "us-isob-east-1": endpoint{}, 12030 }, 12031 }, 12032 "license-manager": service{ 12033 12034 Endpoints: endpoints{ 12035 "us-isob-east-1": endpoint{}, 12036 }, 12037 }, 12038 "logs": service{ 12039 12040 Endpoints: endpoints{ 12041 "us-isob-east-1": endpoint{}, 12042 }, 12043 }, 12044 "monitoring": service{ 12045 12046 Endpoints: endpoints{ 12047 "us-isob-east-1": endpoint{}, 12048 }, 12049 }, 12050 "rds": service{ 12051 12052 Endpoints: endpoints{ 12053 "us-isob-east-1": endpoint{}, 12054 }, 12055 }, 12056 "redshift": service{ 12057 12058 Endpoints: endpoints{ 12059 "us-isob-east-1": endpoint{}, 12060 }, 12061 }, 12062 "route53": service{ 12063 PartitionEndpoint: "aws-iso-b-global", 12064 IsRegionalized: boxedFalse, 12065 12066 Endpoints: endpoints{ 12067 "aws-iso-b-global": endpoint{ 12068 Hostname: "route53.sc2s.sgov.gov", 12069 CredentialScope: credentialScope{ 12070 Region: "us-isob-east-1", 12071 }, 12072 }, 12073 }, 12074 }, 12075 "s3": service{ 12076 Defaults: endpoint{ 12077 Protocols: []string{"http", "https"}, 12078 SignatureVersions: []string{"s3v4"}, 12079 }, 12080 Endpoints: endpoints{ 12081 "us-isob-east-1": endpoint{}, 12082 }, 12083 }, 12084 "snowball": service{ 12085 12086 Endpoints: endpoints{ 12087 "us-isob-east-1": endpoint{}, 12088 }, 12089 }, 12090 "sns": service{ 12091 Defaults: endpoint{ 12092 Protocols: []string{"http", "https"}, 12093 }, 12094 Endpoints: endpoints{ 12095 "us-isob-east-1": endpoint{}, 12096 }, 12097 }, 12098 "sqs": service{ 12099 Defaults: endpoint{ 12100 SSLCommonName: "{region}.queue.{dnsSuffix}", 12101 Protocols: []string{"http", "https"}, 12102 }, 12103 Endpoints: endpoints{ 12104 "us-isob-east-1": endpoint{}, 12105 }, 12106 }, 12107 "ssm": service{ 12108 12109 Endpoints: endpoints{ 12110 "us-isob-east-1": endpoint{}, 12111 }, 12112 }, 12113 "states": service{ 12114 12115 Endpoints: endpoints{ 12116 "us-isob-east-1": endpoint{}, 12117 }, 12118 }, 12119 "streams.dynamodb": service{ 12120 Defaults: endpoint{ 12121 Protocols: []string{"http", "https"}, 12122 CredentialScope: credentialScope{ 12123 Service: "dynamodb", 12124 }, 12125 }, 12126 Endpoints: endpoints{ 12127 "us-isob-east-1": endpoint{}, 12128 }, 12129 }, 12130 "sts": service{ 12131 12132 Endpoints: endpoints{ 12133 "us-isob-east-1": endpoint{}, 12134 }, 12135 }, 12136 "support": service{ 12137 PartitionEndpoint: "aws-iso-b-global", 12138 12139 Endpoints: endpoints{ 12140 "aws-iso-b-global": endpoint{ 12141 Hostname: "support.us-isob-east-1.sc2s.sgov.gov", 12142 CredentialScope: credentialScope{ 12143 Region: "us-isob-east-1", 12144 }, 12145 }, 12146 }, 12147 }, 12148 "swf": service{ 12149 12150 Endpoints: endpoints{ 12151 "us-isob-east-1": endpoint{}, 12152 }, 12153 }, 12154 "tagging": service{ 12155 12156 Endpoints: endpoints{ 12157 "us-isob-east-1": endpoint{}, 12158 }, 12159 }, 12160 }, 12161 }