File tree Expand file tree Collapse file tree 2 files changed +110
-1
lines changed
clients/client-keyspaces/src
codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen Expand file tree Collapse file tree 2 files changed +110
-1
lines changed Original file line number Diff line number Diff line change 2
2
import { getRegionInfo , PartitionHash , RegionHash } from "@aws-sdk/config-resolver" ;
3
3
import { RegionInfoProvider , RegionInfoProviderOptions } from "@aws-sdk/types" ;
4
4
5
- const regionHash : RegionHash = { } ;
5
+ const regionHash : RegionHash = {
6
+ "us-east-1" : {
7
+ variants : [
8
+ {
9
+ hostname : "cassandra-fips.us-east-1.amazonaws.com" ,
10
+ tags : [ "fips" ] ,
11
+ } ,
12
+ ] ,
13
+ } ,
14
+ "us-gov-east-1" : {
15
+ variants : [
16
+ {
17
+ hostname : "cassandra.us-gov-east-1.amazonaws.com" ,
18
+ tags : [ ] ,
19
+ } ,
20
+ ] ,
21
+ signingRegion : "us-gov-east-1" ,
22
+ } ,
23
+ "us-gov-west-1" : {
24
+ variants : [
25
+ {
26
+ hostname : "cassandra.us-gov-west-1.amazonaws.com" ,
27
+ tags : [ ] ,
28
+ } ,
29
+ ] ,
30
+ signingRegion : "us-gov-west-1" ,
31
+ } ,
32
+ "us-west-2" : {
33
+ variants : [
34
+ {
35
+ hostname : "cassandra-fips.us-west-2.amazonaws.com" ,
36
+ tags : [ "fips" ] ,
37
+ } ,
38
+ ] ,
39
+ } ,
40
+ } ;
6
41
7
42
const partitionHash : PartitionHash = {
8
43
aws : {
@@ -23,6 +58,8 @@ const partitionHash: PartitionHash = {
23
58
"eu-west-1" ,
24
59
"eu-west-2" ,
25
60
"eu-west-3" ,
61
+ "fips-us-east-1" ,
62
+ "fips-us-west-2" ,
26
63
"me-south-1" ,
27
64
"sa-east-1" ,
28
65
"us-east-1" ,
Original file line number Diff line number Diff line change 2041
2041
"isRegionalized": false,
2042
2042
"partitionEndpoint": "aws-global"
2043
2043
},
2044
+ "cassandra": {
2045
+ "endpoints": {
2046
+ "ap-east-1": {},
2047
+ "ap-northeast-1": {},
2048
+ "ap-northeast-2": {},
2049
+ "ap-south-1": {},
2050
+ "ap-southeast-1": {},
2051
+ "ap-southeast-2": {},
2052
+ "ca-central-1": {},
2053
+ "eu-central-1": {},
2054
+ "eu-north-1": {},
2055
+ "eu-west-1": {},
2056
+ "eu-west-2": {},
2057
+ "eu-west-3": {},
2058
+ "fips-us-east-1": {
2059
+ "credentialScope": {
2060
+ "region": "us-east-1"
2061
+ },
2062
+ "deprecated": true,
2063
+ "hostname": "cassandra-fips.us-east-1.amazonaws.com"
2064
+ },
2065
+ "fips-us-west-2": {
2066
+ "credentialScope": {
2067
+ "region": "us-west-2"
2068
+ },
2069
+ "deprecated": true,
2070
+ "hostname": "cassandra-fips.us-west-2.amazonaws.com"
2071
+ },
2072
+ "me-south-1": {},
2073
+ "sa-east-1": {},
2074
+ "us-east-1": {
2075
+ "variants": [
2076
+ {
2077
+ "hostname": "cassandra-fips.us-east-1.amazonaws.com",
2078
+ "tags": ["fips"]
2079
+ }
2080
+ ]
2081
+ },
2082
+ "us-east-2": {},
2083
+ "us-west-1": {},
2084
+ "us-west-2": {
2085
+ "variants": [
2086
+ {
2087
+ "hostname": "cassandra-fips.us-west-2.amazonaws.com",
2088
+ "tags": ["fips"]
2089
+ }
2090
+ ]
2091
+ }
2092
+ }
2093
+ },
2044
2094
"catalog.marketplace": {
2045
2095
"endpoints": {
2046
2096
"us-east-1": {}
16176
16226
"isRegionalized": false,
16177
16227
"partitionEndpoint": "aws-cn-global"
16178
16228
},
16229
+ "cassandra": {
16230
+ "endpoints": {
16231
+ "cn-north-1": {},
16232
+ "cn-northwest-1": {}
16233
+ }
16234
+ },
16179
16235
"ce": {
16180
16236
"endpoints": {
16181
16237
"aws-cn-global": {
17724
17780
}
17725
17781
}
17726
17782
},
17783
+ "cassandra": {
17784
+ "endpoints": {
17785
+ "us-gov-east-1": {
17786
+ "credentialScope": {
17787
+ "region": "us-gov-east-1"
17788
+ },
17789
+ "hostname": "cassandra.us-gov-east-1.amazonaws.com"
17790
+ },
17791
+ "us-gov-west-1": {
17792
+ "credentialScope": {
17793
+ "region": "us-gov-west-1"
17794
+ },
17795
+ "hostname": "cassandra.us-gov-west-1.amazonaws.com"
17796
+ }
17797
+ }
17798
+ },
17727
17799
"cloudcontrolapi": {
17728
17800
"endpoints": {
17729
17801
"fips-us-gov-east-1": {
You can’t perform that action at this time.
0 commit comments