@aws-sdk/client-accessanalyzer 3.194.0 → 3.197.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist-cjs/AccessAnalyzerClient.js +11 -8
  3. package/dist-cjs/commands/ApplyArchiveRuleCommand.js +10 -0
  4. package/dist-cjs/commands/CancelPolicyGenerationCommand.js +10 -0
  5. package/dist-cjs/commands/CreateAccessPreviewCommand.js +10 -0
  6. package/dist-cjs/commands/CreateAnalyzerCommand.js +10 -0
  7. package/dist-cjs/commands/CreateArchiveRuleCommand.js +10 -0
  8. package/dist-cjs/commands/DeleteAnalyzerCommand.js +10 -0
  9. package/dist-cjs/commands/DeleteArchiveRuleCommand.js +10 -0
  10. package/dist-cjs/commands/GetAccessPreviewCommand.js +10 -0
  11. package/dist-cjs/commands/GetAnalyzedResourceCommand.js +10 -0
  12. package/dist-cjs/commands/GetAnalyzerCommand.js +10 -0
  13. package/dist-cjs/commands/GetArchiveRuleCommand.js +10 -0
  14. package/dist-cjs/commands/GetFindingCommand.js +10 -0
  15. package/dist-cjs/commands/GetGeneratedPolicyCommand.js +10 -0
  16. package/dist-cjs/commands/ListAccessPreviewFindingsCommand.js +10 -0
  17. package/dist-cjs/commands/ListAccessPreviewsCommand.js +10 -0
  18. package/dist-cjs/commands/ListAnalyzedResourcesCommand.js +10 -0
  19. package/dist-cjs/commands/ListAnalyzersCommand.js +10 -0
  20. package/dist-cjs/commands/ListArchiveRulesCommand.js +10 -0
  21. package/dist-cjs/commands/ListFindingsCommand.js +10 -0
  22. package/dist-cjs/commands/ListPolicyGenerationsCommand.js +10 -0
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
  24. package/dist-cjs/commands/StartPolicyGenerationCommand.js +10 -0
  25. package/dist-cjs/commands/StartResourceScanCommand.js +10 -0
  26. package/dist-cjs/commands/TagResourceCommand.js +10 -0
  27. package/dist-cjs/commands/UntagResourceCommand.js +10 -0
  28. package/dist-cjs/commands/UpdateArchiveRuleCommand.js +10 -0
  29. package/dist-cjs/commands/UpdateFindingsCommand.js +10 -0
  30. package/dist-cjs/commands/ValidatePolicyCommand.js +10 -0
  31. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  32. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  33. package/dist-cjs/endpoint/ruleset.js +318 -0
  34. package/dist-cjs/models/models_0.js +93 -3
  35. package/dist-cjs/protocols/Aws_restJson1.js +259 -0
  36. package/dist-cjs/runtimeConfig.shared.js +3 -3
  37. package/dist-es/AccessAnalyzerClient.js +12 -9
  38. package/dist-es/commands/ApplyArchiveRuleCommand.js +10 -0
  39. package/dist-es/commands/CancelPolicyGenerationCommand.js +10 -0
  40. package/dist-es/commands/CreateAccessPreviewCommand.js +10 -0
  41. package/dist-es/commands/CreateAnalyzerCommand.js +10 -0
  42. package/dist-es/commands/CreateArchiveRuleCommand.js +10 -0
  43. package/dist-es/commands/DeleteAnalyzerCommand.js +10 -0
  44. package/dist-es/commands/DeleteArchiveRuleCommand.js +10 -0
  45. package/dist-es/commands/GetAccessPreviewCommand.js +10 -0
  46. package/dist-es/commands/GetAnalyzedResourceCommand.js +10 -0
  47. package/dist-es/commands/GetAnalyzerCommand.js +10 -0
  48. package/dist-es/commands/GetArchiveRuleCommand.js +10 -0
  49. package/dist-es/commands/GetFindingCommand.js +10 -0
  50. package/dist-es/commands/GetGeneratedPolicyCommand.js +10 -0
  51. package/dist-es/commands/ListAccessPreviewFindingsCommand.js +10 -0
  52. package/dist-es/commands/ListAccessPreviewsCommand.js +10 -0
  53. package/dist-es/commands/ListAnalyzedResourcesCommand.js +10 -0
  54. package/dist-es/commands/ListAnalyzersCommand.js +10 -0
  55. package/dist-es/commands/ListArchiveRulesCommand.js +10 -0
  56. package/dist-es/commands/ListFindingsCommand.js +10 -0
  57. package/dist-es/commands/ListPolicyGenerationsCommand.js +10 -0
  58. package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
  59. package/dist-es/commands/StartPolicyGenerationCommand.js +10 -0
  60. package/dist-es/commands/StartResourceScanCommand.js +10 -0
  61. package/dist-es/commands/TagResourceCommand.js +10 -0
  62. package/dist-es/commands/UntagResourceCommand.js +10 -0
  63. package/dist-es/commands/UpdateArchiveRuleCommand.js +10 -0
  64. package/dist-es/commands/UpdateFindingsCommand.js +10 -0
  65. package/dist-es/commands/ValidatePolicyCommand.js +10 -0
  66. package/dist-es/endpoint/EndpointParameters.js +8 -0
  67. package/dist-es/endpoint/endpointResolver.js +8 -0
  68. package/dist-es/endpoint/ruleset.js +315 -0
  69. package/dist-es/models/models_0.js +82 -0
  70. package/dist-es/protocols/Aws_restJson1.js +260 -1
  71. package/dist-es/runtimeConfig.shared.js +2 -2
  72. package/dist-types/AccessAnalyzerClient.d.ts +6 -9
  73. package/dist-types/commands/ApplyArchiveRuleCommand.d.ts +2 -0
  74. package/dist-types/commands/CancelPolicyGenerationCommand.d.ts +2 -0
  75. package/dist-types/commands/CreateAccessPreviewCommand.d.ts +2 -0
  76. package/dist-types/commands/CreateAnalyzerCommand.d.ts +2 -0
  77. package/dist-types/commands/CreateArchiveRuleCommand.d.ts +2 -0
  78. package/dist-types/commands/DeleteAnalyzerCommand.d.ts +2 -0
  79. package/dist-types/commands/DeleteArchiveRuleCommand.d.ts +2 -0
  80. package/dist-types/commands/GetAccessPreviewCommand.d.ts +2 -0
  81. package/dist-types/commands/GetAnalyzedResourceCommand.d.ts +2 -0
  82. package/dist-types/commands/GetAnalyzerCommand.d.ts +2 -0
  83. package/dist-types/commands/GetArchiveRuleCommand.d.ts +2 -0
  84. package/dist-types/commands/GetFindingCommand.d.ts +2 -0
  85. package/dist-types/commands/GetGeneratedPolicyCommand.d.ts +2 -0
  86. package/dist-types/commands/ListAccessPreviewFindingsCommand.d.ts +2 -0
  87. package/dist-types/commands/ListAccessPreviewsCommand.d.ts +2 -0
  88. package/dist-types/commands/ListAnalyzedResourcesCommand.d.ts +2 -0
  89. package/dist-types/commands/ListAnalyzersCommand.d.ts +2 -0
  90. package/dist-types/commands/ListArchiveRulesCommand.d.ts +2 -0
  91. package/dist-types/commands/ListFindingsCommand.d.ts +2 -0
  92. package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +2 -0
  93. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  94. package/dist-types/commands/StartPolicyGenerationCommand.d.ts +2 -0
  95. package/dist-types/commands/StartResourceScanCommand.d.ts +2 -0
  96. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  97. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  98. package/dist-types/commands/UpdateArchiveRuleCommand.d.ts +2 -0
  99. package/dist-types/commands/UpdateFindingsCommand.d.ts +2 -0
  100. package/dist-types/commands/ValidatePolicyCommand.d.ts +2 -0
  101. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  102. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  103. package/dist-types/endpoint/ruleset.d.ts +2 -0
  104. package/dist-types/models/models_0.d.ts +475 -5
  105. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  106. package/dist-types/runtimeConfig.d.ts +4 -2
  107. package/dist-types/runtimeConfig.native.d.ts +4 -2
  108. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  109. package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +15 -8
  110. package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +2 -0
  111. package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +2 -0
  112. package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +2 -0
  113. package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +2 -0
  114. package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +2 -0
  115. package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +2 -0
  116. package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +2 -0
  117. package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +2 -0
  118. package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +2 -0
  119. package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +2 -0
  120. package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +2 -0
  121. package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +2 -0
  122. package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +2 -0
  123. package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +2 -0
  124. package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +2 -0
  125. package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +2 -0
  126. package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +2 -0
  127. package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +2 -0
  128. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +2 -0
  129. package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +2 -0
  130. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
  131. package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +2 -0
  132. package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +2 -0
  133. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
  134. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
  135. package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +2 -0
  136. package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +2 -0
  137. package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +2 -0
  138. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  139. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  140. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  141. package/dist-types/ts3.4/models/models_0.d.ts +227 -0
  142. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +23 -4
  143. package/dist-types/ts3.4/runtimeConfig.d.ts +23 -4
  144. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
  145. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  146. package/package.json +28 -26
  147. package/dist-cjs/endpoints.js +0 -196
  148. package/dist-es/endpoints.js +0 -192
  149. package/dist-types/endpoints.d.ts +0 -2
  150. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -1,196 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.defaultRegionInfoProvider = void 0;
4
- const config_resolver_1 = require("@aws-sdk/config-resolver");
5
- const regionHash = {
6
- "ca-central-1": {
7
- variants: [
8
- {
9
- hostname: "access-analyzer-fips.ca-central-1.amazonaws.com",
10
- tags: ["fips"],
11
- },
12
- ],
13
- },
14
- "us-east-1": {
15
- variants: [
16
- {
17
- hostname: "access-analyzer-fips.us-east-1.amazonaws.com",
18
- tags: ["fips"],
19
- },
20
- ],
21
- },
22
- "us-east-2": {
23
- variants: [
24
- {
25
- hostname: "access-analyzer-fips.us-east-2.amazonaws.com",
26
- tags: ["fips"],
27
- },
28
- ],
29
- },
30
- "us-gov-east-1": {
31
- variants: [
32
- {
33
- hostname: "access-analyzer.us-gov-east-1.amazonaws.com",
34
- tags: [],
35
- },
36
- ],
37
- signingRegion: "us-gov-east-1",
38
- },
39
- "us-gov-west-1": {
40
- variants: [
41
- {
42
- hostname: "access-analyzer.us-gov-west-1.amazonaws.com",
43
- tags: [],
44
- },
45
- ],
46
- signingRegion: "us-gov-west-1",
47
- },
48
- "us-west-1": {
49
- variants: [
50
- {
51
- hostname: "access-analyzer-fips.us-west-1.amazonaws.com",
52
- tags: ["fips"],
53
- },
54
- ],
55
- },
56
- "us-west-2": {
57
- variants: [
58
- {
59
- hostname: "access-analyzer-fips.us-west-2.amazonaws.com",
60
- tags: ["fips"],
61
- },
62
- ],
63
- },
64
- };
65
- const partitionHash = {
66
- aws: {
67
- regions: [
68
- "af-south-1",
69
- "ap-east-1",
70
- "ap-northeast-1",
71
- "ap-northeast-2",
72
- "ap-northeast-3",
73
- "ap-south-1",
74
- "ap-southeast-1",
75
- "ap-southeast-2",
76
- "ap-southeast-3",
77
- "ca-central-1",
78
- "eu-central-1",
79
- "eu-north-1",
80
- "eu-south-1",
81
- "eu-west-1",
82
- "eu-west-2",
83
- "eu-west-3",
84
- "fips-ca-central-1",
85
- "fips-us-east-1",
86
- "fips-us-east-2",
87
- "fips-us-west-1",
88
- "fips-us-west-2",
89
- "me-central-1",
90
- "me-south-1",
91
- "sa-east-1",
92
- "us-east-1",
93
- "us-east-2",
94
- "us-west-1",
95
- "us-west-2",
96
- ],
97
- regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
98
- variants: [
99
- {
100
- hostname: "access-analyzer.{region}.amazonaws.com",
101
- tags: [],
102
- },
103
- {
104
- hostname: "access-analyzer-fips.{region}.amazonaws.com",
105
- tags: ["fips"],
106
- },
107
- {
108
- hostname: "access-analyzer-fips.{region}.api.aws",
109
- tags: ["dualstack", "fips"],
110
- },
111
- {
112
- hostname: "access-analyzer.{region}.api.aws",
113
- tags: ["dualstack"],
114
- },
115
- ],
116
- },
117
- "aws-cn": {
118
- regions: ["cn-north-1", "cn-northwest-1"],
119
- regionRegex: "^cn\\-\\w+\\-\\d+$",
120
- variants: [
121
- {
122
- hostname: "access-analyzer.{region}.amazonaws.com.cn",
123
- tags: [],
124
- },
125
- {
126
- hostname: "access-analyzer-fips.{region}.amazonaws.com.cn",
127
- tags: ["fips"],
128
- },
129
- {
130
- hostname: "access-analyzer-fips.{region}.api.amazonwebservices.com.cn",
131
- tags: ["dualstack", "fips"],
132
- },
133
- {
134
- hostname: "access-analyzer.{region}.api.amazonwebservices.com.cn",
135
- tags: ["dualstack"],
136
- },
137
- ],
138
- },
139
- "aws-iso": {
140
- regions: ["us-iso-east-1", "us-iso-west-1"],
141
- regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
142
- variants: [
143
- {
144
- hostname: "access-analyzer.{region}.c2s.ic.gov",
145
- tags: [],
146
- },
147
- {
148
- hostname: "access-analyzer-fips.{region}.c2s.ic.gov",
149
- tags: ["fips"],
150
- },
151
- ],
152
- },
153
- "aws-iso-b": {
154
- regions: ["us-isob-east-1"],
155
- regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
156
- variants: [
157
- {
158
- hostname: "access-analyzer.{region}.sc2s.sgov.gov",
159
- tags: [],
160
- },
161
- {
162
- hostname: "access-analyzer-fips.{region}.sc2s.sgov.gov",
163
- tags: ["fips"],
164
- },
165
- ],
166
- },
167
- "aws-us-gov": {
168
- regions: ["us-gov-east-1", "us-gov-west-1"],
169
- regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
170
- variants: [
171
- {
172
- hostname: "access-analyzer.{region}.amazonaws.com",
173
- tags: [],
174
- },
175
- {
176
- hostname: "access-analyzer-fips.{region}.amazonaws.com",
177
- tags: ["fips"],
178
- },
179
- {
180
- hostname: "access-analyzer-fips.{region}.api.aws",
181
- tags: ["dualstack", "fips"],
182
- },
183
- {
184
- hostname: "access-analyzer.{region}.api.aws",
185
- tags: ["dualstack"],
186
- },
187
- ],
188
- },
189
- };
190
- const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
191
- ...options,
192
- signingService: "access-analyzer",
193
- regionHash,
194
- partitionHash,
195
- });
196
- exports.defaultRegionInfoProvider = defaultRegionInfoProvider;
@@ -1,192 +0,0 @@
1
- import { getRegionInfo } from "@aws-sdk/config-resolver";
2
- const regionHash = {
3
- "ca-central-1": {
4
- variants: [
5
- {
6
- hostname: "access-analyzer-fips.ca-central-1.amazonaws.com",
7
- tags: ["fips"],
8
- },
9
- ],
10
- },
11
- "us-east-1": {
12
- variants: [
13
- {
14
- hostname: "access-analyzer-fips.us-east-1.amazonaws.com",
15
- tags: ["fips"],
16
- },
17
- ],
18
- },
19
- "us-east-2": {
20
- variants: [
21
- {
22
- hostname: "access-analyzer-fips.us-east-2.amazonaws.com",
23
- tags: ["fips"],
24
- },
25
- ],
26
- },
27
- "us-gov-east-1": {
28
- variants: [
29
- {
30
- hostname: "access-analyzer.us-gov-east-1.amazonaws.com",
31
- tags: [],
32
- },
33
- ],
34
- signingRegion: "us-gov-east-1",
35
- },
36
- "us-gov-west-1": {
37
- variants: [
38
- {
39
- hostname: "access-analyzer.us-gov-west-1.amazonaws.com",
40
- tags: [],
41
- },
42
- ],
43
- signingRegion: "us-gov-west-1",
44
- },
45
- "us-west-1": {
46
- variants: [
47
- {
48
- hostname: "access-analyzer-fips.us-west-1.amazonaws.com",
49
- tags: ["fips"],
50
- },
51
- ],
52
- },
53
- "us-west-2": {
54
- variants: [
55
- {
56
- hostname: "access-analyzer-fips.us-west-2.amazonaws.com",
57
- tags: ["fips"],
58
- },
59
- ],
60
- },
61
- };
62
- const partitionHash = {
63
- aws: {
64
- regions: [
65
- "af-south-1",
66
- "ap-east-1",
67
- "ap-northeast-1",
68
- "ap-northeast-2",
69
- "ap-northeast-3",
70
- "ap-south-1",
71
- "ap-southeast-1",
72
- "ap-southeast-2",
73
- "ap-southeast-3",
74
- "ca-central-1",
75
- "eu-central-1",
76
- "eu-north-1",
77
- "eu-south-1",
78
- "eu-west-1",
79
- "eu-west-2",
80
- "eu-west-3",
81
- "fips-ca-central-1",
82
- "fips-us-east-1",
83
- "fips-us-east-2",
84
- "fips-us-west-1",
85
- "fips-us-west-2",
86
- "me-central-1",
87
- "me-south-1",
88
- "sa-east-1",
89
- "us-east-1",
90
- "us-east-2",
91
- "us-west-1",
92
- "us-west-2",
93
- ],
94
- regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
95
- variants: [
96
- {
97
- hostname: "access-analyzer.{region}.amazonaws.com",
98
- tags: [],
99
- },
100
- {
101
- hostname: "access-analyzer-fips.{region}.amazonaws.com",
102
- tags: ["fips"],
103
- },
104
- {
105
- hostname: "access-analyzer-fips.{region}.api.aws",
106
- tags: ["dualstack", "fips"],
107
- },
108
- {
109
- hostname: "access-analyzer.{region}.api.aws",
110
- tags: ["dualstack"],
111
- },
112
- ],
113
- },
114
- "aws-cn": {
115
- regions: ["cn-north-1", "cn-northwest-1"],
116
- regionRegex: "^cn\\-\\w+\\-\\d+$",
117
- variants: [
118
- {
119
- hostname: "access-analyzer.{region}.amazonaws.com.cn",
120
- tags: [],
121
- },
122
- {
123
- hostname: "access-analyzer-fips.{region}.amazonaws.com.cn",
124
- tags: ["fips"],
125
- },
126
- {
127
- hostname: "access-analyzer-fips.{region}.api.amazonwebservices.com.cn",
128
- tags: ["dualstack", "fips"],
129
- },
130
- {
131
- hostname: "access-analyzer.{region}.api.amazonwebservices.com.cn",
132
- tags: ["dualstack"],
133
- },
134
- ],
135
- },
136
- "aws-iso": {
137
- regions: ["us-iso-east-1", "us-iso-west-1"],
138
- regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
139
- variants: [
140
- {
141
- hostname: "access-analyzer.{region}.c2s.ic.gov",
142
- tags: [],
143
- },
144
- {
145
- hostname: "access-analyzer-fips.{region}.c2s.ic.gov",
146
- tags: ["fips"],
147
- },
148
- ],
149
- },
150
- "aws-iso-b": {
151
- regions: ["us-isob-east-1"],
152
- regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
153
- variants: [
154
- {
155
- hostname: "access-analyzer.{region}.sc2s.sgov.gov",
156
- tags: [],
157
- },
158
- {
159
- hostname: "access-analyzer-fips.{region}.sc2s.sgov.gov",
160
- tags: ["fips"],
161
- },
162
- ],
163
- },
164
- "aws-us-gov": {
165
- regions: ["us-gov-east-1", "us-gov-west-1"],
166
- regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
167
- variants: [
168
- {
169
- hostname: "access-analyzer.{region}.amazonaws.com",
170
- tags: [],
171
- },
172
- {
173
- hostname: "access-analyzer-fips.{region}.amazonaws.com",
174
- tags: ["fips"],
175
- },
176
- {
177
- hostname: "access-analyzer-fips.{region}.api.aws",
178
- tags: ["dualstack", "fips"],
179
- },
180
- {
181
- hostname: "access-analyzer.{region}.api.aws",
182
- tags: ["dualstack"],
183
- },
184
- ],
185
- },
186
- };
187
- export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
188
- ...options,
189
- signingService: "access-analyzer",
190
- regionHash,
191
- partitionHash,
192
- });
@@ -1,2 +0,0 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,2 +0,0 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;