File tree Expand file tree Collapse file tree 2 files changed +50
-3
lines changed
clients/client-connectcampaigns/src
codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen Expand file tree Collapse file tree 2 files changed +50
-3
lines changed Original file line number Diff line number Diff line change 22import { getRegionInfo , PartitionHash , RegionHash } from "@aws-sdk/config-resolver" ;
33import { RegionInfoProvider , RegionInfoProviderOptions } from "@aws-sdk/types" ;
44
5- const regionHash : RegionHash = { } ;
5+ const regionHash : RegionHash = {
6+ "us-east-1" : {
7+ variants : [
8+ {
9+ hostname : "connect-campaigns-fips.us-east-1.amazonaws.com" ,
10+ tags : [ "fips" ] ,
11+ } ,
12+ ] ,
13+ } ,
14+ "us-west-2" : {
15+ variants : [
16+ {
17+ hostname : "connect-campaigns-fips.us-west-2.amazonaws.com" ,
18+ tags : [ "fips" ] ,
19+ } ,
20+ ] ,
21+ } ,
22+ } ;
623
724const partitionHash : PartitionHash = {
825 aws : {
@@ -23,6 +40,8 @@ const partitionHash: PartitionHash = {
2340 "eu-west-1" ,
2441 "eu-west-2" ,
2542 "eu-west-3" ,
43+ "fips-us-east-1" ,
44+ "fips-us-west-2" ,
2645 "me-central-1" ,
2746 "me-south-1" ,
2847 "sa-east-1" ,
Original file line number Diff line number Diff line change 35013501 "endpoints": {
35023502 "ap-southeast-2": {},
35033503 "eu-west-2": {},
3504- "us-east-1": {},
3505- "us-west-2": {}
3504+ "fips-us-east-1": {
3505+ "credentialScope": {
3506+ "region": "us-east-1"
3507+ },
3508+ "deprecated": true,
3509+ "hostname": "connect-campaigns-fips.us-east-1.amazonaws.com"
3510+ },
3511+ "fips-us-west-2": {
3512+ "credentialScope": {
3513+ "region": "us-west-2"
3514+ },
3515+ "deprecated": true,
3516+ "hostname": "connect-campaigns-fips.us-west-2.amazonaws.com"
3517+ },
3518+ "us-east-1": {
3519+ "variants": [
3520+ {
3521+ "hostname": "connect-campaigns-fips.us-east-1.amazonaws.com",
3522+ "tags": ["fips"]
3523+ }
3524+ ]
3525+ },
3526+ "us-west-2": {
3527+ "variants": [
3528+ {
3529+ "hostname": "connect-campaigns-fips.us-west-2.amazonaws.com",
3530+ "tags": ["fips"]
3531+ }
3532+ ]
3533+ }
35063534 }
35073535 },
35083536 "contact-lens": {
You can’t perform that action at this time.
0 commit comments