@aws-sdk/client-accessanalyzer 3.1074.0 → 3.1076.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.
- package/dist-cjs/index.js +2108 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/AccessAnalyzerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -134
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1762
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultAccessAnalyzerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "access-analyzer",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultAccessAnalyzerHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1844 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
85
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://access-analyzer-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://access-analyzer.{Region}.amazonaws.com", i],
|
|
95
|
+
["https://access-analyzer-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
96
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
97
|
+
["https://access-analyzer.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
98
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
99
|
+
["https://access-analyzer.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
100
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
const root = 2;
|
|
104
|
+
const r = 100_000_000;
|
|
105
|
+
const nodes = new Int32Array([
|
|
106
|
+
-1, 1, -1,
|
|
107
|
+
0, 13, 3,
|
|
108
|
+
1, 4, r + 12,
|
|
109
|
+
2, 5, r + 12,
|
|
110
|
+
3, 8, 6,
|
|
111
|
+
4, 7, r + 11,
|
|
112
|
+
5, r + 9, r + 10,
|
|
113
|
+
4, 11, 9,
|
|
114
|
+
6, 10, r + 8,
|
|
115
|
+
7, r + 6, r + 7,
|
|
116
|
+
5, 12, r + 5,
|
|
117
|
+
6, r + 4, r + 5,
|
|
118
|
+
3, r + 1, 14,
|
|
119
|
+
4, r + 2, r + 3,
|
|
120
|
+
]);
|
|
121
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
122
|
+
|
|
123
|
+
const cache = new EndpointCache({
|
|
124
|
+
size: 50,
|
|
125
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
126
|
+
});
|
|
127
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
128
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
129
|
+
endpointParams: endpointParams,
|
|
130
|
+
logger: context.logger,
|
|
131
|
+
}));
|
|
132
|
+
};
|
|
133
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
134
|
+
|
|
135
|
+
class AccessAnalyzerServiceException extends ServiceException {
|
|
136
|
+
constructor(options) {
|
|
137
|
+
super(options);
|
|
138
|
+
Object.setPrototypeOf(this, AccessAnalyzerServiceException.prototype);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
class AccessDeniedException extends AccessAnalyzerServiceException {
|
|
143
|
+
name = "AccessDeniedException";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "AccessDeniedException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
class ConflictException extends AccessAnalyzerServiceException {
|
|
155
|
+
name = "ConflictException";
|
|
156
|
+
$fault = "client";
|
|
157
|
+
resourceId;
|
|
158
|
+
resourceType;
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "ConflictException",
|
|
162
|
+
$fault: "client",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
166
|
+
this.resourceId = opts.resourceId;
|
|
167
|
+
this.resourceType = opts.resourceType;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
class InternalServerException extends AccessAnalyzerServiceException {
|
|
171
|
+
name = "InternalServerException";
|
|
172
|
+
$fault = "server";
|
|
173
|
+
$retryable = {};
|
|
174
|
+
retryAfterSeconds;
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "InternalServerException",
|
|
178
|
+
$fault: "server",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
182
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class ResourceNotFoundException extends AccessAnalyzerServiceException {
|
|
186
|
+
name = "ResourceNotFoundException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
resourceId;
|
|
189
|
+
resourceType;
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "ResourceNotFoundException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
197
|
+
this.resourceId = opts.resourceId;
|
|
198
|
+
this.resourceType = opts.resourceType;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class ServiceQuotaExceededException extends AccessAnalyzerServiceException {
|
|
202
|
+
name = "ServiceQuotaExceededException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
resourceId;
|
|
205
|
+
resourceType;
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "ServiceQuotaExceededException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
213
|
+
this.resourceId = opts.resourceId;
|
|
214
|
+
this.resourceType = opts.resourceType;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
class ThrottlingException extends AccessAnalyzerServiceException {
|
|
218
|
+
name = "ThrottlingException";
|
|
219
|
+
$fault = "client";
|
|
220
|
+
$retryable = {
|
|
221
|
+
throttling: true,
|
|
222
|
+
};
|
|
223
|
+
retryAfterSeconds;
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ThrottlingException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
231
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
class ValidationException extends AccessAnalyzerServiceException {
|
|
235
|
+
name = "ValidationException";
|
|
236
|
+
$fault = "client";
|
|
237
|
+
reason;
|
|
238
|
+
fieldList;
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "ValidationException",
|
|
242
|
+
$fault: "client",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
246
|
+
this.reason = opts.reason;
|
|
247
|
+
this.fieldList = opts.fieldList;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
class InvalidParameterException extends AccessAnalyzerServiceException {
|
|
251
|
+
name = "InvalidParameterException";
|
|
252
|
+
$fault = "client";
|
|
253
|
+
constructor(opts) {
|
|
254
|
+
super({
|
|
255
|
+
name: "InvalidParameterException",
|
|
256
|
+
$fault: "client",
|
|
257
|
+
...opts,
|
|
258
|
+
});
|
|
259
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
class UnprocessableEntityException extends AccessAnalyzerServiceException {
|
|
263
|
+
name = "UnprocessableEntityException";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
$retryable = {};
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "UnprocessableEntityException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
const _A = "Access";
|
|
277
|
+
const _AA = "AccountAggregations";
|
|
278
|
+
const _AAR = "ApplyArchiveRule";
|
|
279
|
+
const _AARR = "ApplyArchiveRuleRequest";
|
|
280
|
+
const _AC = "AnalyzerConfiguration";
|
|
281
|
+
const _ACPD = "AccessCheckPolicyDocument";
|
|
282
|
+
const _ADE = "AccessDeniedException";
|
|
283
|
+
const _AG = "AclGrantee";
|
|
284
|
+
const _AL = "AccessList";
|
|
285
|
+
const _ALn = "AnalyzersList";
|
|
286
|
+
const _AP = "AccessPreview";
|
|
287
|
+
const _APF = "AccessPreviewFinding";
|
|
288
|
+
const _APFL = "AccessPreviewFindingsList";
|
|
289
|
+
const _APL = "AccessPreviewsList";
|
|
290
|
+
const _APS = "AccessPreviewSummary";
|
|
291
|
+
const _APSR = "AccessPreviewStatusReason";
|
|
292
|
+
const _AR = "AnalysisRule";
|
|
293
|
+
const _ARC = "AnalysisRuleCriteria";
|
|
294
|
+
const _ARCL = "AnalysisRuleCriteriaList";
|
|
295
|
+
const _ARL = "AnalyzedResourcesList";
|
|
296
|
+
const _ARLr = "ArchiveRulesList";
|
|
297
|
+
const _ARS = "AnalyzedResourceSummary";
|
|
298
|
+
const _ARSr = "ArchiveRuleSummary";
|
|
299
|
+
const _ARn = "AnalyzedResource";
|
|
300
|
+
const _AS = "AnalyzerSummary";
|
|
301
|
+
const _C = "Criterion";
|
|
302
|
+
const _CA = "CreateAnalyzer";
|
|
303
|
+
const _CANG = "CheckAccessNotGranted";
|
|
304
|
+
const _CANGR = "CheckAccessNotGrantedRequest";
|
|
305
|
+
const _CANGRh = "CheckAccessNotGrantedResponse";
|
|
306
|
+
const _CAP = "CreateAccessPreview";
|
|
307
|
+
const _CAPR = "CreateAccessPreviewRequest";
|
|
308
|
+
const _CAPRr = "CreateAccessPreviewResponse";
|
|
309
|
+
const _CAR = "CreateAnalyzerRequest";
|
|
310
|
+
const _CARR = "CreateArchiveRuleRequest";
|
|
311
|
+
const _CARr = "CreateAnalyzerResponse";
|
|
312
|
+
const _CARre = "CreateArchiveRule";
|
|
313
|
+
const _CE = "ConflictException";
|
|
314
|
+
const _CM = "ConfigurationsMap";
|
|
315
|
+
const _CNNA = "CheckNoNewAccess";
|
|
316
|
+
const _CNNAR = "CheckNoNewAccessRequest";
|
|
317
|
+
const _CNNARh = "CheckNoNewAccessResponse";
|
|
318
|
+
const _CNPA = "CheckNoPublicAccess";
|
|
319
|
+
const _CNPAR = "CheckNoPublicAccessRequest";
|
|
320
|
+
const _CNPARh = "CheckNoPublicAccessResponse";
|
|
321
|
+
const _CPG = "CancelPolicyGeneration";
|
|
322
|
+
const _CPGR = "CancelPolicyGenerationRequest";
|
|
323
|
+
const _CPGRa = "CancelPolicyGenerationResponse";
|
|
324
|
+
const _CSLA = "CreateServiceLinkedAnalyzer";
|
|
325
|
+
const _CSLAR = "CreateServiceLinkedAnalyzerRequest";
|
|
326
|
+
const _CSLARr = "CreateServiceLinkedAnalyzerResponse";
|
|
327
|
+
const _CTD = "CloudTrailDetails";
|
|
328
|
+
const _CTP = "CloudTrailProperties";
|
|
329
|
+
const _Co = "Configuration";
|
|
330
|
+
const _DA = "DeleteAnalyzer";
|
|
331
|
+
const _DAR = "DeleteAnalyzerRequest";
|
|
332
|
+
const _DARR = "DeleteArchiveRuleRequest";
|
|
333
|
+
const _DARe = "DeleteArchiveRule";
|
|
334
|
+
const _DSC = "DynamodbStreamConfiguration";
|
|
335
|
+
const _DSLA = "DeleteServiceLinkedAnalyzer";
|
|
336
|
+
const _DSLAR = "DeleteServiceLinkedAnalyzerRequest";
|
|
337
|
+
const _DTC = "DynamodbTableConfiguration";
|
|
338
|
+
const _EAD = "ExternalAccessDetails";
|
|
339
|
+
const _EAFS = "ExternalAccessFindingsStatistics";
|
|
340
|
+
const _EFSC = "EfsFileSystemConfiguration";
|
|
341
|
+
const _ERC = "EcrRepositoryConfiguration";
|
|
342
|
+
const _ESC = "EbsSnapshotConfiguration";
|
|
343
|
+
const _F = "Finding";
|
|
344
|
+
const _FAAD = "FindingAggregationAccountDetails";
|
|
345
|
+
const _FCM = "FilterCriteriaMap";
|
|
346
|
+
const _FD = "FindingDetails";
|
|
347
|
+
const _FDL = "FindingDetailsList";
|
|
348
|
+
const _FL = "FindingsList";
|
|
349
|
+
const _FLV = "FindingsListV2";
|
|
350
|
+
const _FS = "FindingSource";
|
|
351
|
+
const _FSD = "FindingSourceDetail";
|
|
352
|
+
const _FSL = "FindingSourceList";
|
|
353
|
+
const _FSLi = "FindingsStatisticsList";
|
|
354
|
+
const _FSV = "FindingSummaryV2";
|
|
355
|
+
const _FSi = "FindingSummary";
|
|
356
|
+
const _FSin = "FindingsStatistics";
|
|
357
|
+
const _GA = "GetAnalyzer";
|
|
358
|
+
const _GAP = "GetAccessPreview";
|
|
359
|
+
const _GAPR = "GetAccessPreviewRequest";
|
|
360
|
+
const _GAPRe = "GetAccessPreviewResponse";
|
|
361
|
+
const _GAR = "GetAnalyzerRequest";
|
|
362
|
+
const _GARR = "GetAnalyzedResourceRequest";
|
|
363
|
+
const _GARRe = "GetAnalyzedResourceResponse";
|
|
364
|
+
const _GARRet = "GetArchiveRuleRequest";
|
|
365
|
+
const _GARRetr = "GetArchiveRuleResponse";
|
|
366
|
+
const _GARe = "GetAnalyzerResponse";
|
|
367
|
+
const _GARet = "GetAnalyzedResource";
|
|
368
|
+
const _GARetr = "GetArchiveRule";
|
|
369
|
+
const _GF = "GetFinding";
|
|
370
|
+
const _GFR = "GetFindingRequest";
|
|
371
|
+
const _GFRR = "GenerateFindingRecommendationRequest";
|
|
372
|
+
const _GFRRe = "GetFindingRecommendationRequest";
|
|
373
|
+
const _GFRRet = "GetFindingRecommendationResponse";
|
|
374
|
+
const _GFRe = "GetFindingResponse";
|
|
375
|
+
const _GFRen = "GenerateFindingRecommendation";
|
|
376
|
+
const _GFRet = "GetFindingRecommendation";
|
|
377
|
+
const _GFS = "GetFindingsStatistics";
|
|
378
|
+
const _GFSR = "GetFindingsStatisticsRequest";
|
|
379
|
+
const _GFSRe = "GetFindingsStatisticsResponse";
|
|
380
|
+
const _GFV = "GetFindingV2";
|
|
381
|
+
const _GFVR = "GetFindingV2Request";
|
|
382
|
+
const _GFVRe = "GetFindingV2Response";
|
|
383
|
+
const _GGP = "GetGeneratedPolicy";
|
|
384
|
+
const _GGPR = "GetGeneratedPolicyRequest";
|
|
385
|
+
const _GGPRe = "GetGeneratedPolicyResponse";
|
|
386
|
+
const _GP = "GeneratedPolicy";
|
|
387
|
+
const _GPL = "GeneratedPolicyList";
|
|
388
|
+
const _GPP = "GeneratedPolicyProperties";
|
|
389
|
+
const _GPR = "GeneratedPolicyResult";
|
|
390
|
+
const _IAAR = "InternalAccessAnalysisRule";
|
|
391
|
+
const _IAARC = "InternalAccessAnalysisRuleCriteria";
|
|
392
|
+
const _IAARCL = "InternalAccessAnalysisRuleCriteriaList";
|
|
393
|
+
const _IAC = "InternalAccessConfiguration";
|
|
394
|
+
const _IAD = "InternalAccessDetails";
|
|
395
|
+
const _IAFS = "InternalAccessFindingsStatistics";
|
|
396
|
+
const _IAR = "InlineArchiveRule";
|
|
397
|
+
const _IARL = "InlineArchiveRulesList";
|
|
398
|
+
const _IARTD = "InternalAccessResourceTypeDetails";
|
|
399
|
+
const _IARTSM = "InternalAccessResourceTypeStatisticsMap";
|
|
400
|
+
const _IC = "InternetConfiguration";
|
|
401
|
+
const _IPE = "InvalidParameterException";
|
|
402
|
+
const _IRC = "IamRoleConfiguration";
|
|
403
|
+
const _ISE = "InternalServerException";
|
|
404
|
+
const _JD = "JobDetails";
|
|
405
|
+
const _JE = "JobError";
|
|
406
|
+
const _KGC = "KmsGrantConfiguration";
|
|
407
|
+
const _KGCL = "KmsGrantConfigurationsList";
|
|
408
|
+
const _KGCm = "KmsGrantConstraints";
|
|
409
|
+
const _KKC = "KmsKeyConfiguration";
|
|
410
|
+
const _L = "Location";
|
|
411
|
+
const _LA = "ListAnalyzers";
|
|
412
|
+
const _LAP = "ListAccessPreviews";
|
|
413
|
+
const _LAPF = "ListAccessPreviewFindings";
|
|
414
|
+
const _LAPFR = "ListAccessPreviewFindingsRequest";
|
|
415
|
+
const _LAPFRi = "ListAccessPreviewFindingsResponse";
|
|
416
|
+
const _LAPR = "ListAccessPreviewsRequest";
|
|
417
|
+
const _LAPRi = "ListAccessPreviewsResponse";
|
|
418
|
+
const _LAR = "ListAnalyzersRequest";
|
|
419
|
+
const _LARR = "ListAnalyzedResourcesRequest";
|
|
420
|
+
const _LARRi = "ListAnalyzedResourcesResponse";
|
|
421
|
+
const _LARRis = "ListArchiveRulesRequest";
|
|
422
|
+
const _LARRist = "ListArchiveRulesResponse";
|
|
423
|
+
const _LARi = "ListAnalyzersResponse";
|
|
424
|
+
const _LARis = "ListAnalyzedResources";
|
|
425
|
+
const _LARist = "ListArchiveRules";
|
|
426
|
+
const _LF = "ListFindings";
|
|
427
|
+
const _LFR = "ListFindingsRequest";
|
|
428
|
+
const _LFRi = "ListFindingsResponse";
|
|
429
|
+
const _LFV = "ListFindingsV2";
|
|
430
|
+
const _LFVR = "ListFindingsV2Request";
|
|
431
|
+
const _LFVRi = "ListFindingsV2Response";
|
|
432
|
+
const _LL = "LocationList";
|
|
433
|
+
const _LPG = "ListPolicyGenerations";
|
|
434
|
+
const _LPGR = "ListPolicyGenerationsRequest";
|
|
435
|
+
const _LPGRi = "ListPolicyGenerationsResponse";
|
|
436
|
+
const _LTFR = "ListTagsForResource";
|
|
437
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
438
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
439
|
+
const _NOC = "NetworkOriginConfiguration";
|
|
440
|
+
const _P = "Position";
|
|
441
|
+
const _PE = "PathElement";
|
|
442
|
+
const _PEL = "PathElementList";
|
|
443
|
+
const _PG = "PolicyGeneration";
|
|
444
|
+
const _PGD = "PolicyGenerationDetails";
|
|
445
|
+
const _PGL = "PolicyGenerationList";
|
|
446
|
+
const _RA = "Retry-After";
|
|
447
|
+
const _RDCSAM = "RdsDbClusterSnapshotAttributesMap";
|
|
448
|
+
const _RDCSAV = "RdsDbClusterSnapshotAttributeValue";
|
|
449
|
+
const _RDCSC = "RdsDbClusterSnapshotConfiguration";
|
|
450
|
+
const _RDSAM = "RdsDbSnapshotAttributesMap";
|
|
451
|
+
const _RDSAV = "RdsDbSnapshotAttributeValue";
|
|
452
|
+
const _RDSC = "RdsDbSnapshotConfiguration";
|
|
453
|
+
const _RE = "RecommendationError";
|
|
454
|
+
const _RNFE = "ResourceNotFoundException";
|
|
455
|
+
const _RS = "ReasonSummary";
|
|
456
|
+
const _RSL = "ReasonSummaryList";
|
|
457
|
+
const _RSLe = "RecommendedStepList";
|
|
458
|
+
const _RSe = "RecommendedStep";
|
|
459
|
+
const _RTD = "ResourceTypeDetails";
|
|
460
|
+
const _RTSM = "ResourceTypeStatisticsMap";
|
|
461
|
+
const _S = "Span";
|
|
462
|
+
const _SAPC = "S3AccessPointConfiguration";
|
|
463
|
+
const _SAPCM = "S3AccessPointConfigurationsMap";
|
|
464
|
+
const _SBAGC = "S3BucketAclGrantConfiguration";
|
|
465
|
+
const _SBAGCL = "S3BucketAclGrantConfigurationsList";
|
|
466
|
+
const _SBC = "S3BucketConfiguration";
|
|
467
|
+
const _SC = "SortCriteria";
|
|
468
|
+
const _SEDAPC = "S3ExpressDirectoryAccessPointConfiguration";
|
|
469
|
+
const _SEDAPCM = "S3ExpressDirectoryAccessPointConfigurationsMap";
|
|
470
|
+
const _SEDBC = "S3ExpressDirectoryBucketConfiguration";
|
|
471
|
+
const _SMSC = "SecretsManagerSecretConfiguration";
|
|
472
|
+
const _SPABC = "S3PublicAccessBlockConfiguration";
|
|
473
|
+
const _SPG = "StartPolicyGeneration";
|
|
474
|
+
const _SPGR = "StartPolicyGenerationRequest";
|
|
475
|
+
const _SPGRt = "StartPolicyGenerationResponse";
|
|
476
|
+
const _SQC = "SqsQueueConfiguration";
|
|
477
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
478
|
+
const _SR = "StatusReason";
|
|
479
|
+
const _SRS = "StartResourceScan";
|
|
480
|
+
const _SRSR = "StartResourceScanRequest";
|
|
481
|
+
const _STC = "SnsTopicConfiguration";
|
|
482
|
+
const _Su = "Substring";
|
|
483
|
+
const _T = "Trail";
|
|
484
|
+
const _TE = "ThrottlingException";
|
|
485
|
+
const _TL = "TagsList";
|
|
486
|
+
const _TLr = "TrailList";
|
|
487
|
+
const _TP = "TrailProperties";
|
|
488
|
+
const _TPL = "TrailPropertiesList";
|
|
489
|
+
const _TR = "TagResource";
|
|
490
|
+
const _TRR = "TagResourceRequest";
|
|
491
|
+
const _TRRa = "TagResourceResponse";
|
|
492
|
+
const _UA = "UnusedAction";
|
|
493
|
+
const _UAC = "UnusedAccessConfiguration";
|
|
494
|
+
const _UAFS = "UnusedAccessFindingsStatistics";
|
|
495
|
+
const _UAL = "UnusedActionList";
|
|
496
|
+
const _UAR = "UpdateAnalyzerRequest";
|
|
497
|
+
const _UARR = "UpdateArchiveRuleRequest";
|
|
498
|
+
const _UARp = "UpdateAnalyzerResponse";
|
|
499
|
+
const _UARpd = "UpdateArchiveRule";
|
|
500
|
+
const _UATS = "UnusedAccessTypeStatistics";
|
|
501
|
+
const _UATSL = "UnusedAccessTypeStatisticsList";
|
|
502
|
+
const _UAp = "UpdateAnalyzer";
|
|
503
|
+
const _UEE = "UnprocessableEntityException";
|
|
504
|
+
const _UF = "UpdateFindings";
|
|
505
|
+
const _UFR = "UpdateFindingsRequest";
|
|
506
|
+
const _UIRD = "UnusedIamRoleDetails";
|
|
507
|
+
const _UIUAKD = "UnusedIamUserAccessKeyDetails";
|
|
508
|
+
const _UIUPD = "UnusedIamUserPasswordDetails";
|
|
509
|
+
const _UPD = "UnusedPermissionDetails";
|
|
510
|
+
const _UPRS = "UnusedPermissionsRecommendedStep";
|
|
511
|
+
const _UR = "UntagResource";
|
|
512
|
+
const _URR = "UntagResourceRequest";
|
|
513
|
+
const _URRn = "UntagResourceResponse";
|
|
514
|
+
const _VC = "VpcConfiguration";
|
|
515
|
+
const _VE = "ValidationException";
|
|
516
|
+
const _VEF = "ValidationExceptionField";
|
|
517
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
518
|
+
const _VP = "ValidatePolicy";
|
|
519
|
+
const _VPF = "ValidatePolicyFinding";
|
|
520
|
+
const _VPFL = "ValidatePolicyFindingList";
|
|
521
|
+
const _VPR = "ValidatePolicyRequest";
|
|
522
|
+
const _VPRa = "ValidatePolicyResponse";
|
|
523
|
+
const _a = "actions";
|
|
524
|
+
const _aA = "analyzerArn";
|
|
525
|
+
const _aAn = "analyzedAt";
|
|
526
|
+
const _aI = "accountIds";
|
|
527
|
+
const _aKI = "accessKeyId";
|
|
528
|
+
const _aN = "analyzerName";
|
|
529
|
+
const _aNt = "attributeName";
|
|
530
|
+
const _aP = "accessPreview";
|
|
531
|
+
const _aPA = "accessPointArn";
|
|
532
|
+
const _aPAc = "accessPointAccount";
|
|
533
|
+
const _aPI = "accessPreviewId";
|
|
534
|
+
const _aPP = "accessPointPolicy";
|
|
535
|
+
const _aPc = "accessPreviews";
|
|
536
|
+
const _aPcc = "accessPoints";
|
|
537
|
+
const _aR = "accessRole";
|
|
538
|
+
const _aRl = "allRegions";
|
|
539
|
+
const _aRn = "analysisRule";
|
|
540
|
+
const _aRna = "analyzedResources";
|
|
541
|
+
const _aRr = "archiveRules";
|
|
542
|
+
const _aRrc = "archiveRule";
|
|
543
|
+
const _aT = "accessType";
|
|
544
|
+
const _ac = "action";
|
|
545
|
+
const _acc = "access";
|
|
546
|
+
const _acco = "account";
|
|
547
|
+
const _an = "analyzer";
|
|
548
|
+
const _ana = "analyzers";
|
|
549
|
+
const _ar = "arn";
|
|
550
|
+
const _at = "attributes";
|
|
551
|
+
const _bAG = "bucketAclGrants";
|
|
552
|
+
const _bP = "bucketPolicy";
|
|
553
|
+
const _bPAB = "bucketPublicAccessBlock";
|
|
554
|
+
const _c = "client";
|
|
555
|
+
const _cA = "createdAt";
|
|
556
|
+
const _cAo = "completedAt";
|
|
557
|
+
const _cO = "completedOn";
|
|
558
|
+
const _cT = "changeType";
|
|
559
|
+
const _cTA = "cloudTrailArn";
|
|
560
|
+
const _cTD = "cloudTrailDetails";
|
|
561
|
+
const _cTP = "cloudTrailProperties";
|
|
562
|
+
const _cTl = "clientToken";
|
|
563
|
+
const _co = "configurations";
|
|
564
|
+
const _cod = "code";
|
|
565
|
+
const _col = "column";
|
|
566
|
+
const _con = "condition";
|
|
567
|
+
const _conf = "configuration";
|
|
568
|
+
const _cons = "constraints";
|
|
569
|
+
const _cont = "contains";
|
|
570
|
+
const _d = "details";
|
|
571
|
+
const _dS = "dynamodbStream";
|
|
572
|
+
const _dT = "dynamodbTable";
|
|
573
|
+
const _de = "detail";
|
|
574
|
+
const _des = "description";
|
|
575
|
+
const _e = "error";
|
|
576
|
+
const _eAD = "externalAccessDetails";
|
|
577
|
+
const _eAFS = "externalAccessFindingsStatistics";
|
|
578
|
+
const _eCE = "encryptionContextEquals";
|
|
579
|
+
const _eCS = "encryptionContextSubset";
|
|
580
|
+
const _eFI = "existingFindingId";
|
|
581
|
+
const _eFS = "existingFindingStatus";
|
|
582
|
+
const _eFSf = "efsFileSystem";
|
|
583
|
+
const _ePD = "existingPolicyDocument";
|
|
584
|
+
const _ePI = "existingPolicyId";
|
|
585
|
+
const _eR = "ecrRepository";
|
|
586
|
+
const _eS = "ebsSnapshot";
|
|
587
|
+
const _eT = "endTime";
|
|
588
|
+
const _en = "end";
|
|
589
|
+
const _eq = "eq";
|
|
590
|
+
const _ex = "exclusions";
|
|
591
|
+
const _exi = "exists";
|
|
592
|
+
const _f = "filter";
|
|
593
|
+
const _fD = "findingDetails";
|
|
594
|
+
const _fL = "fieldList";
|
|
595
|
+
const _fS = "findingsStatistics";
|
|
596
|
+
const _fSP = "fileSystemPolicy";
|
|
597
|
+
const _fT = "findingType";
|
|
598
|
+
const _fi = "finding";
|
|
599
|
+
const _fin = "findings";
|
|
600
|
+
const _g = "groups";
|
|
601
|
+
const _gP = "generatedPolicies";
|
|
602
|
+
const _gPR = "generatedPolicyResult";
|
|
603
|
+
const _gPr = "granteePrincipal";
|
|
604
|
+
const _gr = "grants";
|
|
605
|
+
const _gra = "grantee";
|
|
606
|
+
const _h = "http";
|
|
607
|
+
const _hE = "httpError";
|
|
608
|
+
const _hH = "httpHeader";
|
|
609
|
+
const _hQ = "httpQuery";
|
|
610
|
+
const _i = "id";
|
|
611
|
+
const _iA = "issuingAccount";
|
|
612
|
+
const _iAD = "internalAccessDetails";
|
|
613
|
+
const _iAFS = "internalAccessFindingsStatistics";
|
|
614
|
+
const _iAn = "internalAccess";
|
|
615
|
+
const _iC = "isComplete";
|
|
616
|
+
const _iCn = "internetConfiguration";
|
|
617
|
+
const _iCs = "issueCode";
|
|
618
|
+
const _iP = "isPublic";
|
|
619
|
+
const _iPA = "ignorePublicAcls";
|
|
620
|
+
const _iR = "iamRole";
|
|
621
|
+
const _iRP = "includeResourcePlaceholders";
|
|
622
|
+
const _iSLT = "includeServiceLevelTemplate";
|
|
623
|
+
const _iT = "idempotencyToken";
|
|
624
|
+
const _id = "ids";
|
|
625
|
+
const _in = "inclusions";
|
|
626
|
+
const _ind = "index";
|
|
627
|
+
const _jD = "jobDetails";
|
|
628
|
+
const _jE = "jobError";
|
|
629
|
+
const _jI = "jobId";
|
|
630
|
+
const _k = "key";
|
|
631
|
+
const _kK = "kmsKey";
|
|
632
|
+
const _kKI = "kmsKeyId";
|
|
633
|
+
const _kP = "keyPolicies";
|
|
634
|
+
const _l = "line";
|
|
635
|
+
const _lA = "lastAccessed";
|
|
636
|
+
const _lML = "learnMoreLink";
|
|
637
|
+
const _lRA = "lastResourceAnalyzed";
|
|
638
|
+
const _lRAA = "lastResourceAnalyzedAt";
|
|
639
|
+
const _lUA = "lastUpdatedAt";
|
|
640
|
+
const _le = "length";
|
|
641
|
+
const _lo = "locations";
|
|
642
|
+
const _loc = "locale";
|
|
643
|
+
const _m = "message";
|
|
644
|
+
const _mB = "managedBy";
|
|
645
|
+
const _mR = "maxResults";
|
|
646
|
+
const _n = "name";
|
|
647
|
+
const _nO = "networkOrigin";
|
|
648
|
+
const _nOAF = "numberOfActiveFindings";
|
|
649
|
+
const _nPD = "newPolicyDocument";
|
|
650
|
+
const _nT = "nextToken";
|
|
651
|
+
const _ne = "neq";
|
|
652
|
+
const _o = "operations";
|
|
653
|
+
const _oB = "orderBy";
|
|
654
|
+
const _of = "offset";
|
|
655
|
+
const _p = "principal";
|
|
656
|
+
const _pA = "principalArn";
|
|
657
|
+
const _pAB = "publicAccessBlock";
|
|
658
|
+
const _pD = "policyDocument";
|
|
659
|
+
const _pG = "policyGenerations";
|
|
660
|
+
const _pGD = "policyGenerationDetails";
|
|
661
|
+
const _pOA = "principalOwnerAccount";
|
|
662
|
+
const _pT = "policyType";
|
|
663
|
+
const _pTr = "principalType";
|
|
664
|
+
const _pUA = "policyUpdatedAt";
|
|
665
|
+
const _pa = "path";
|
|
666
|
+
const _pe = "permission";
|
|
667
|
+
const _po = "policy";
|
|
668
|
+
const _pr = "properties";
|
|
669
|
+
const _qP = "queuePolicy";
|
|
670
|
+
const _r = "reason";
|
|
671
|
+
const _rA = "resourceArn";
|
|
672
|
+
const _rAS = "retryAfterSeconds";
|
|
673
|
+
const _rAe = "resourceArns";
|
|
674
|
+
const _rAec = "recommendedAction";
|
|
675
|
+
const _rCPR = "resourceControlPolicyRestriction";
|
|
676
|
+
const _rDCS = "rdsDbClusterSnapshot";
|
|
677
|
+
const _rDS = "rdsDbSnapshot";
|
|
678
|
+
const _rI = "resourceId";
|
|
679
|
+
const _rN = "ruleName";
|
|
680
|
+
const _rOA = "resourceOwnerAccount";
|
|
681
|
+
const _rP = "repositoryPolicy";
|
|
682
|
+
const _rPB = "restrictPublicBuckets";
|
|
683
|
+
const _rPe = "retiringPrincipal";
|
|
684
|
+
const _rPec = "recommendedPolicy";
|
|
685
|
+
const _rS = "recommendedSteps";
|
|
686
|
+
const _rT = "resourceType";
|
|
687
|
+
const _rTS = "resourceTypeStatistics";
|
|
688
|
+
const _rTe = "resourceTags";
|
|
689
|
+
const _rTec = "recommendationType";
|
|
690
|
+
const _rTes = "resourceTypes";
|
|
691
|
+
const _re = "resources";
|
|
692
|
+
const _rea = "reasons";
|
|
693
|
+
const _reg = "regions";
|
|
694
|
+
const _res = "resource";
|
|
695
|
+
const _resu = "result";
|
|
696
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.accessanalyzer";
|
|
697
|
+
const _sA = "startedAt";
|
|
698
|
+
const _sB = "s3Bucket";
|
|
699
|
+
const _sCPR = "serviceControlPolicyRestriction";
|
|
700
|
+
const _sEDB = "s3ExpressDirectoryBucket";
|
|
701
|
+
const _sI = "statementIndex";
|
|
702
|
+
const _sIt = "statementId";
|
|
703
|
+
const _sMS = "secretsManagerSecret";
|
|
704
|
+
const _sN = "serviceNamespace";
|
|
705
|
+
const _sO = "startedOn";
|
|
706
|
+
const _sP = "streamPolicy";
|
|
707
|
+
const _sPe = "secretPolicy";
|
|
708
|
+
const _sQ = "sqsQueue";
|
|
709
|
+
const _sR = "statusReason";
|
|
710
|
+
const _sT = "startTime";
|
|
711
|
+
const _sTn = "snsTopic";
|
|
712
|
+
const _sV = "sharedVia";
|
|
713
|
+
const _se = "server";
|
|
714
|
+
const _so = "sources";
|
|
715
|
+
const _sor = "sort";
|
|
716
|
+
const _sp = "span";
|
|
717
|
+
const _st = "status";
|
|
718
|
+
const _sta = "start";
|
|
719
|
+
const _su = "substring";
|
|
720
|
+
const _t = "type";
|
|
721
|
+
const _tA = "topAccounts";
|
|
722
|
+
const _tACA = "totalActiveCrossAccount";
|
|
723
|
+
const _tAE = "totalActiveErrors";
|
|
724
|
+
const _tAF = "totalActiveFindings";
|
|
725
|
+
const _tAFo = "totalArchivedFindings";
|
|
726
|
+
const _tAP = "totalActivePublic";
|
|
727
|
+
const _tK = "tagKeys";
|
|
728
|
+
const _tP = "trailProperties";
|
|
729
|
+
const _tPa = "tablePolicy";
|
|
730
|
+
const _tPo = "topicPolicy";
|
|
731
|
+
const _tPr = "trustPolicy";
|
|
732
|
+
const _tRF = "totalResolvedFindings";
|
|
733
|
+
const _ta = "tags";
|
|
734
|
+
const _to = "total";
|
|
735
|
+
const _tr = "trails";
|
|
736
|
+
const _u = "uri";
|
|
737
|
+
const _uA = "updatedAt";
|
|
738
|
+
const _uAA = "unusedAccessAge";
|
|
739
|
+
const _uAFS = "unusedAccessFindingsStatistics";
|
|
740
|
+
const _uAT = "unusedAccessType";
|
|
741
|
+
const _uATS = "unusedAccessTypeStatistics";
|
|
742
|
+
const _uAn = "unusedAccess";
|
|
743
|
+
const _uI = "userIds";
|
|
744
|
+
const _uIRD = "unusedIamRoleDetails";
|
|
745
|
+
const _uIUAKD = "unusedIamUserAccessKeyDetails";
|
|
746
|
+
const _uIUPD = "unusedIamUserPasswordDetails";
|
|
747
|
+
const _uPD = "unusedPermissionDetails";
|
|
748
|
+
const _uPRS = "unusedPermissionsRecommendedStep";
|
|
749
|
+
const _v = "value";
|
|
750
|
+
const _vC = "vpcConfiguration";
|
|
751
|
+
const _vI = "vpcId";
|
|
752
|
+
const _vPRT = "validatePolicyResourceType";
|
|
753
|
+
const n0 = "com.amazonaws.accessanalyzer";
|
|
754
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
755
|
+
var AccessAnalyzerServiceException$ = [-3, _s, "AccessAnalyzerServiceException", 0, [], []];
|
|
756
|
+
_s_registry.registerError(AccessAnalyzerServiceException$, AccessAnalyzerServiceException);
|
|
757
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
758
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
759
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
760
|
+
[_m],
|
|
761
|
+
[0], 1
|
|
762
|
+
];
|
|
763
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
764
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
765
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
766
|
+
[_m, _rI, _rT],
|
|
767
|
+
[0, 0, 0], 3
|
|
768
|
+
];
|
|
769
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
770
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
771
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
772
|
+
[_m, _rAS],
|
|
773
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
774
|
+
];
|
|
775
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
776
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
777
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
778
|
+
[_m],
|
|
779
|
+
[0], 1
|
|
780
|
+
];
|
|
781
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
782
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
783
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
784
|
+
[_m, _rI, _rT],
|
|
785
|
+
[0, 0, 0], 3
|
|
786
|
+
];
|
|
787
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
788
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
789
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
790
|
+
[_m, _rI, _rT],
|
|
791
|
+
[0, 0, 0], 3
|
|
792
|
+
];
|
|
793
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
794
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
795
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
796
|
+
[_m, _rAS],
|
|
797
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
798
|
+
];
|
|
799
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
800
|
+
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
801
|
+
{ [_e]: _c, [_hE]: 422 },
|
|
802
|
+
[_m],
|
|
803
|
+
[0], 1
|
|
804
|
+
];
|
|
805
|
+
n0_registry.registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
806
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
807
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
808
|
+
[_m, _r, _fL],
|
|
809
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
810
|
+
];
|
|
811
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
812
|
+
const errorTypeRegistries = [
|
|
813
|
+
_s_registry,
|
|
814
|
+
n0_registry,
|
|
815
|
+
];
|
|
816
|
+
var AccessCheckPolicyDocument = [0, n0, _ACPD, 8, 0];
|
|
817
|
+
var Access$ = [3, n0, _A,
|
|
818
|
+
0,
|
|
819
|
+
[_a, _re],
|
|
820
|
+
[64 | 0, 64 | 0]
|
|
821
|
+
];
|
|
822
|
+
var AccessPreview$ = [3, n0, _AP,
|
|
823
|
+
0,
|
|
824
|
+
[_i, _aA, _co, _cA, _st, _sR],
|
|
825
|
+
[0, 0, () => ConfigurationsMap, 5, 0, () => AccessPreviewStatusReason$], 5
|
|
826
|
+
];
|
|
827
|
+
var AccessPreviewFinding$ = [3, n0, _APF,
|
|
828
|
+
0,
|
|
829
|
+
[_i, _rT, _cA, _cT, _st, _rOA, _eFI, _eFS, _p, _ac, _con, _res, _iP, _e, _so, _rCPR],
|
|
830
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 128 | 0, 64 | 0, 128 | 0, 0, 2, 0, () => FindingSourceList, 0], 6
|
|
831
|
+
];
|
|
832
|
+
var AccessPreviewStatusReason$ = [3, n0, _APSR,
|
|
833
|
+
0,
|
|
834
|
+
[_cod],
|
|
835
|
+
[0], 1
|
|
836
|
+
];
|
|
837
|
+
var AccessPreviewSummary$ = [3, n0, _APS,
|
|
838
|
+
0,
|
|
839
|
+
[_i, _aA, _cA, _st, _sR],
|
|
840
|
+
[0, 0, 5, 0, () => AccessPreviewStatusReason$], 4
|
|
841
|
+
];
|
|
842
|
+
var AnalysisRule$ = [3, n0, _AR,
|
|
843
|
+
0,
|
|
844
|
+
[_ex],
|
|
845
|
+
[() => AnalysisRuleCriteriaList]
|
|
846
|
+
];
|
|
847
|
+
var AnalysisRuleCriteria$ = [3, n0, _ARC,
|
|
848
|
+
0,
|
|
849
|
+
[_aI, _rTe],
|
|
850
|
+
[64 | 0, [1, n0, _TL, 0, 128 | 0]]
|
|
851
|
+
];
|
|
852
|
+
var AnalyzedResource$ = [3, n0, _ARn,
|
|
853
|
+
0,
|
|
854
|
+
[_rA, _rT, _cA, _aAn, _uA, _iP, _rOA, _a, _sV, _st, _e],
|
|
855
|
+
[0, 0, 5, 5, 5, 2, 0, 64 | 0, 64 | 0, 0, 0], 7
|
|
856
|
+
];
|
|
857
|
+
var AnalyzedResourceSummary$ = [3, n0, _ARS,
|
|
858
|
+
0,
|
|
859
|
+
[_rA, _rOA, _rT],
|
|
860
|
+
[0, 0, 0], 3
|
|
861
|
+
];
|
|
862
|
+
var AnalyzerSummary$ = [3, n0, _AS,
|
|
863
|
+
0,
|
|
864
|
+
[_ar, _n, _t, _cA, _st, _lRA, _lRAA, _ta, _sR, _conf, _mB],
|
|
865
|
+
[0, 0, 0, 5, 0, 0, 5, 128 | 0, () => StatusReason$, () => AnalyzerConfiguration$, 0], 5
|
|
866
|
+
];
|
|
867
|
+
var ApplyArchiveRuleRequest$ = [3, n0, _AARR,
|
|
868
|
+
0,
|
|
869
|
+
[_aA, _rN, _cTl],
|
|
870
|
+
[0, 0, [0, 4]], 2
|
|
871
|
+
];
|
|
872
|
+
var ArchiveRuleSummary$ = [3, n0, _ARSr,
|
|
873
|
+
0,
|
|
874
|
+
[_rN, _f, _cA, _uA],
|
|
875
|
+
[0, () => FilterCriteriaMap, 5, 5], 4
|
|
876
|
+
];
|
|
877
|
+
var CancelPolicyGenerationRequest$ = [3, n0, _CPGR,
|
|
878
|
+
0,
|
|
879
|
+
[_jI],
|
|
880
|
+
[[0, 1]], 1
|
|
881
|
+
];
|
|
882
|
+
var CancelPolicyGenerationResponse$ = [3, n0, _CPGRa,
|
|
883
|
+
0,
|
|
884
|
+
[],
|
|
885
|
+
[]
|
|
886
|
+
];
|
|
887
|
+
var CheckAccessNotGrantedRequest$ = [3, n0, _CANGR,
|
|
888
|
+
0,
|
|
889
|
+
[_pD, _acc, _pT],
|
|
890
|
+
[[() => AccessCheckPolicyDocument, 0], () => AccessList, 0], 3
|
|
891
|
+
];
|
|
892
|
+
var CheckAccessNotGrantedResponse$ = [3, n0, _CANGRh,
|
|
893
|
+
0,
|
|
894
|
+
[_resu, _m, _rea],
|
|
895
|
+
[0, 0, () => ReasonSummaryList]
|
|
896
|
+
];
|
|
897
|
+
var CheckNoNewAccessRequest$ = [3, n0, _CNNAR,
|
|
898
|
+
0,
|
|
899
|
+
[_nPD, _ePD, _pT],
|
|
900
|
+
[[() => AccessCheckPolicyDocument, 0], [() => AccessCheckPolicyDocument, 0], 0], 3
|
|
901
|
+
];
|
|
902
|
+
var CheckNoNewAccessResponse$ = [3, n0, _CNNARh,
|
|
903
|
+
0,
|
|
904
|
+
[_resu, _m, _rea],
|
|
905
|
+
[0, 0, () => ReasonSummaryList]
|
|
906
|
+
];
|
|
907
|
+
var CheckNoPublicAccessRequest$ = [3, n0, _CNPAR,
|
|
908
|
+
0,
|
|
909
|
+
[_pD, _rT],
|
|
910
|
+
[[() => AccessCheckPolicyDocument, 0], 0], 2
|
|
911
|
+
];
|
|
912
|
+
var CheckNoPublicAccessResponse$ = [3, n0, _CNPARh,
|
|
913
|
+
0,
|
|
914
|
+
[_resu, _m, _rea],
|
|
915
|
+
[0, 0, () => ReasonSummaryList]
|
|
916
|
+
];
|
|
917
|
+
var CloudTrailDetails$ = [3, n0, _CTD,
|
|
918
|
+
0,
|
|
919
|
+
[_tr, _aR, _sT, _eT],
|
|
920
|
+
[() => TrailList, 0, 5, 5], 3
|
|
921
|
+
];
|
|
922
|
+
var CloudTrailProperties$ = [3, n0, _CTP,
|
|
923
|
+
0,
|
|
924
|
+
[_tP, _sT, _eT],
|
|
925
|
+
[() => TrailPropertiesList, 5, 5], 3
|
|
926
|
+
];
|
|
927
|
+
var CreateAccessPreviewRequest$ = [3, n0, _CAPR,
|
|
928
|
+
0,
|
|
929
|
+
[_aA, _co, _cTl],
|
|
930
|
+
[0, () => ConfigurationsMap, [0, 4]], 2
|
|
931
|
+
];
|
|
932
|
+
var CreateAccessPreviewResponse$ = [3, n0, _CAPRr,
|
|
933
|
+
0,
|
|
934
|
+
[_i],
|
|
935
|
+
[0], 1
|
|
936
|
+
];
|
|
937
|
+
var CreateAnalyzerRequest$ = [3, n0, _CAR,
|
|
938
|
+
0,
|
|
939
|
+
[_aN, _t, _aRr, _ta, _cTl, _conf],
|
|
940
|
+
[0, 0, () => InlineArchiveRulesList, 128 | 0, [0, 4], () => AnalyzerConfiguration$], 2
|
|
941
|
+
];
|
|
942
|
+
var CreateAnalyzerResponse$ = [3, n0, _CARr,
|
|
943
|
+
0,
|
|
944
|
+
[_ar],
|
|
945
|
+
[0]
|
|
946
|
+
];
|
|
947
|
+
var CreateArchiveRuleRequest$ = [3, n0, _CARR,
|
|
948
|
+
0,
|
|
949
|
+
[_aN, _rN, _f, _cTl],
|
|
950
|
+
[[0, 1], 0, () => FilterCriteriaMap, [0, 4]], 3
|
|
951
|
+
];
|
|
952
|
+
var CreateServiceLinkedAnalyzerRequest$ = [3, n0, _CSLAR,
|
|
953
|
+
0,
|
|
954
|
+
[_t, _aRr, _cTl, _conf],
|
|
955
|
+
[0, () => InlineArchiveRulesList, [0, 4], () => AnalyzerConfiguration$], 1
|
|
956
|
+
];
|
|
957
|
+
var CreateServiceLinkedAnalyzerResponse$ = [3, n0, _CSLARr,
|
|
958
|
+
0,
|
|
959
|
+
[_ar],
|
|
960
|
+
[0]
|
|
961
|
+
];
|
|
962
|
+
var Criterion$ = [3, n0, _C,
|
|
963
|
+
0,
|
|
964
|
+
[_eq, _ne, _cont, _exi],
|
|
965
|
+
[64 | 0, 64 | 0, 64 | 0, 2]
|
|
966
|
+
];
|
|
967
|
+
var DeleteAnalyzerRequest$ = [3, n0, _DAR,
|
|
968
|
+
0,
|
|
969
|
+
[_aN, _cTl],
|
|
970
|
+
[[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
|
|
971
|
+
];
|
|
972
|
+
var DeleteArchiveRuleRequest$ = [3, n0, _DARR,
|
|
973
|
+
0,
|
|
974
|
+
[_aN, _rN, _cTl],
|
|
975
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
976
|
+
];
|
|
977
|
+
var DeleteServiceLinkedAnalyzerRequest$ = [3, n0, _DSLAR,
|
|
978
|
+
0,
|
|
979
|
+
[_aN, _cTl],
|
|
980
|
+
[[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
|
|
981
|
+
];
|
|
982
|
+
var DynamodbStreamConfiguration$ = [3, n0, _DSC,
|
|
983
|
+
0,
|
|
984
|
+
[_sP],
|
|
985
|
+
[0]
|
|
986
|
+
];
|
|
987
|
+
var DynamodbTableConfiguration$ = [3, n0, _DTC,
|
|
988
|
+
0,
|
|
989
|
+
[_tPa],
|
|
990
|
+
[0]
|
|
991
|
+
];
|
|
992
|
+
var EbsSnapshotConfiguration$ = [3, n0, _ESC,
|
|
993
|
+
0,
|
|
994
|
+
[_uI, _g, _kKI],
|
|
995
|
+
[64 | 0, 64 | 0, 0]
|
|
996
|
+
];
|
|
997
|
+
var EcrRepositoryConfiguration$ = [3, n0, _ERC,
|
|
998
|
+
0,
|
|
999
|
+
[_rP],
|
|
1000
|
+
[0]
|
|
1001
|
+
];
|
|
1002
|
+
var EfsFileSystemConfiguration$ = [3, n0, _EFSC,
|
|
1003
|
+
0,
|
|
1004
|
+
[_fSP],
|
|
1005
|
+
[0]
|
|
1006
|
+
];
|
|
1007
|
+
var ExternalAccessDetails$ = [3, n0, _EAD,
|
|
1008
|
+
0,
|
|
1009
|
+
[_con, _ac, _iP, _p, _so, _rCPR],
|
|
1010
|
+
[128 | 0, 64 | 0, 2, 128 | 0, () => FindingSourceList, 0], 1
|
|
1011
|
+
];
|
|
1012
|
+
var ExternalAccessFindingsStatistics$ = [3, n0, _EAFS,
|
|
1013
|
+
0,
|
|
1014
|
+
[_rTS, _tAF, _tAFo, _tRF],
|
|
1015
|
+
[() => ResourceTypeStatisticsMap, 1, 1, 1]
|
|
1016
|
+
];
|
|
1017
|
+
var Finding$ = [3, n0, _F,
|
|
1018
|
+
0,
|
|
1019
|
+
[_i, _rT, _con, _cA, _aAn, _uA, _st, _rOA, _p, _ac, _res, _iP, _e, _so, _rCPR],
|
|
1020
|
+
[0, 0, 128 | 0, 5, 5, 5, 0, 0, 128 | 0, 64 | 0, 0, 2, 0, () => FindingSourceList, 0], 8
|
|
1021
|
+
];
|
|
1022
|
+
var FindingAggregationAccountDetails$ = [3, n0, _FAAD,
|
|
1023
|
+
0,
|
|
1024
|
+
[_acco, _nOAF, _d],
|
|
1025
|
+
[0, 1, 128 | 1]
|
|
1026
|
+
];
|
|
1027
|
+
var FindingSource$ = [3, n0, _FS,
|
|
1028
|
+
0,
|
|
1029
|
+
[_t, _de],
|
|
1030
|
+
[0, () => FindingSourceDetail$], 1
|
|
1031
|
+
];
|
|
1032
|
+
var FindingSourceDetail$ = [3, n0, _FSD,
|
|
1033
|
+
0,
|
|
1034
|
+
[_aPA, _aPAc],
|
|
1035
|
+
[0, 0]
|
|
1036
|
+
];
|
|
1037
|
+
var FindingSummary$ = [3, n0, _FSi,
|
|
1038
|
+
0,
|
|
1039
|
+
[_i, _rT, _con, _cA, _aAn, _uA, _st, _rOA, _p, _ac, _res, _iP, _e, _so, _rCPR],
|
|
1040
|
+
[0, 0, 128 | 0, 5, 5, 5, 0, 0, 128 | 0, 64 | 0, 0, 2, 0, () => FindingSourceList, 0], 8
|
|
1041
|
+
];
|
|
1042
|
+
var FindingSummaryV2$ = [3, n0, _FSV,
|
|
1043
|
+
0,
|
|
1044
|
+
[_aAn, _cA, _i, _rT, _rOA, _st, _uA, _e, _res, _fT],
|
|
1045
|
+
[5, 5, 0, 0, 0, 0, 5, 0, 0, 0], 7
|
|
1046
|
+
];
|
|
1047
|
+
var GeneratedPolicy$ = [3, n0, _GP,
|
|
1048
|
+
0,
|
|
1049
|
+
[_po],
|
|
1050
|
+
[0], 1
|
|
1051
|
+
];
|
|
1052
|
+
var GeneratedPolicyProperties$ = [3, n0, _GPP,
|
|
1053
|
+
0,
|
|
1054
|
+
[_pA, _iC, _cTP],
|
|
1055
|
+
[0, 2, () => CloudTrailProperties$], 1
|
|
1056
|
+
];
|
|
1057
|
+
var GeneratedPolicyResult$ = [3, n0, _GPR,
|
|
1058
|
+
0,
|
|
1059
|
+
[_pr, _gP],
|
|
1060
|
+
[() => GeneratedPolicyProperties$, () => GeneratedPolicyList], 1
|
|
1061
|
+
];
|
|
1062
|
+
var GenerateFindingRecommendationRequest$ = [3, n0, _GFRR,
|
|
1063
|
+
0,
|
|
1064
|
+
[_aA, _i],
|
|
1065
|
+
[[0, { [_hQ]: _aA }], [0, 1]], 2
|
|
1066
|
+
];
|
|
1067
|
+
var GetAccessPreviewRequest$ = [3, n0, _GAPR,
|
|
1068
|
+
0,
|
|
1069
|
+
[_aPI, _aA],
|
|
1070
|
+
[[0, 1], [0, { [_hQ]: _aA }]], 2
|
|
1071
|
+
];
|
|
1072
|
+
var GetAccessPreviewResponse$ = [3, n0, _GAPRe,
|
|
1073
|
+
0,
|
|
1074
|
+
[_aP],
|
|
1075
|
+
[() => AccessPreview$], 1
|
|
1076
|
+
];
|
|
1077
|
+
var GetAnalyzedResourceRequest$ = [3, n0, _GARR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_aA, _rA],
|
|
1080
|
+
[[0, { [_hQ]: _aA }], [0, { [_hQ]: _rA }]], 2
|
|
1081
|
+
];
|
|
1082
|
+
var GetAnalyzedResourceResponse$ = [3, n0, _GARRe,
|
|
1083
|
+
0,
|
|
1084
|
+
[_res],
|
|
1085
|
+
[() => AnalyzedResource$]
|
|
1086
|
+
];
|
|
1087
|
+
var GetAnalyzerRequest$ = [3, n0, _GAR,
|
|
1088
|
+
0,
|
|
1089
|
+
[_aN],
|
|
1090
|
+
[[0, 1]], 1
|
|
1091
|
+
];
|
|
1092
|
+
var GetAnalyzerResponse$ = [3, n0, _GARe,
|
|
1093
|
+
0,
|
|
1094
|
+
[_an],
|
|
1095
|
+
[() => AnalyzerSummary$], 1
|
|
1096
|
+
];
|
|
1097
|
+
var GetArchiveRuleRequest$ = [3, n0, _GARRet,
|
|
1098
|
+
0,
|
|
1099
|
+
[_aN, _rN],
|
|
1100
|
+
[[0, 1], [0, 1]], 2
|
|
1101
|
+
];
|
|
1102
|
+
var GetArchiveRuleResponse$ = [3, n0, _GARRetr,
|
|
1103
|
+
0,
|
|
1104
|
+
[_aRrc],
|
|
1105
|
+
[() => ArchiveRuleSummary$], 1
|
|
1106
|
+
];
|
|
1107
|
+
var GetFindingRecommendationRequest$ = [3, n0, _GFRRe,
|
|
1108
|
+
0,
|
|
1109
|
+
[_aA, _i, _mR, _nT],
|
|
1110
|
+
[[0, { [_hQ]: _aA }], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1111
|
+
];
|
|
1112
|
+
var GetFindingRecommendationResponse$ = [3, n0, _GFRRet,
|
|
1113
|
+
0,
|
|
1114
|
+
[_sA, _rA, _rTec, _st, _cAo, _nT, _e, _rS],
|
|
1115
|
+
[5, 0, 0, 0, 5, 0, () => RecommendationError$, () => RecommendedStepList], 4
|
|
1116
|
+
];
|
|
1117
|
+
var GetFindingRequest$ = [3, n0, _GFR,
|
|
1118
|
+
0,
|
|
1119
|
+
[_aA, _i],
|
|
1120
|
+
[[0, { [_hQ]: _aA }], [0, 1]], 2
|
|
1121
|
+
];
|
|
1122
|
+
var GetFindingResponse$ = [3, n0, _GFRe,
|
|
1123
|
+
0,
|
|
1124
|
+
[_fi],
|
|
1125
|
+
[() => Finding$]
|
|
1126
|
+
];
|
|
1127
|
+
var GetFindingsStatisticsRequest$ = [3, n0, _GFSR,
|
|
1128
|
+
0,
|
|
1129
|
+
[_aA],
|
|
1130
|
+
[0], 1
|
|
1131
|
+
];
|
|
1132
|
+
var GetFindingsStatisticsResponse$ = [3, n0, _GFSRe,
|
|
1133
|
+
0,
|
|
1134
|
+
[_fS, _lUA],
|
|
1135
|
+
[() => FindingsStatisticsList, 5]
|
|
1136
|
+
];
|
|
1137
|
+
var GetFindingV2Request$ = [3, n0, _GFVR,
|
|
1138
|
+
0,
|
|
1139
|
+
[_aA, _i, _mR, _nT],
|
|
1140
|
+
[[0, { [_hQ]: _aA }], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1141
|
+
];
|
|
1142
|
+
var GetFindingV2Response$ = [3, n0, _GFVRe,
|
|
1143
|
+
0,
|
|
1144
|
+
[_aAn, _cA, _i, _rT, _rOA, _st, _uA, _fD, _e, _nT, _res, _fT],
|
|
1145
|
+
[5, 5, 0, 0, 0, 0, 5, () => FindingDetailsList, 0, 0, 0, 0], 8
|
|
1146
|
+
];
|
|
1147
|
+
var GetGeneratedPolicyRequest$ = [3, n0, _GGPR,
|
|
1148
|
+
0,
|
|
1149
|
+
[_jI, _iRP, _iSLT],
|
|
1150
|
+
[[0, 1], [2, { [_hQ]: _iRP }], [2, { [_hQ]: _iSLT }]], 1
|
|
1151
|
+
];
|
|
1152
|
+
var GetGeneratedPolicyResponse$ = [3, n0, _GGPRe,
|
|
1153
|
+
0,
|
|
1154
|
+
[_jD, _gPR],
|
|
1155
|
+
[() => JobDetails$, () => GeneratedPolicyResult$], 2
|
|
1156
|
+
];
|
|
1157
|
+
var IamRoleConfiguration$ = [3, n0, _IRC,
|
|
1158
|
+
0,
|
|
1159
|
+
[_tPr],
|
|
1160
|
+
[0]
|
|
1161
|
+
];
|
|
1162
|
+
var InlineArchiveRule$ = [3, n0, _IAR,
|
|
1163
|
+
0,
|
|
1164
|
+
[_rN, _f],
|
|
1165
|
+
[0, () => FilterCriteriaMap], 2
|
|
1166
|
+
];
|
|
1167
|
+
var InternalAccessAnalysisRule$ = [3, n0, _IAAR,
|
|
1168
|
+
0,
|
|
1169
|
+
[_in],
|
|
1170
|
+
[() => InternalAccessAnalysisRuleCriteriaList]
|
|
1171
|
+
];
|
|
1172
|
+
var InternalAccessAnalysisRuleCriteria$ = [3, n0, _IAARC,
|
|
1173
|
+
0,
|
|
1174
|
+
[_aI, _rTes, _rAe],
|
|
1175
|
+
[64 | 0, 64 | 0, 64 | 0]
|
|
1176
|
+
];
|
|
1177
|
+
var InternalAccessConfiguration$ = [3, n0, _IAC,
|
|
1178
|
+
0,
|
|
1179
|
+
[_aRn],
|
|
1180
|
+
[() => InternalAccessAnalysisRule$]
|
|
1181
|
+
];
|
|
1182
|
+
var InternalAccessDetails$ = [3, n0, _IAD,
|
|
1183
|
+
0,
|
|
1184
|
+
[_ac, _con, _p, _pOA, _aT, _pTr, _so, _rCPR, _sCPR],
|
|
1185
|
+
[64 | 0, 128 | 0, 128 | 0, 0, 0, 0, () => FindingSourceList, 0, 0]
|
|
1186
|
+
];
|
|
1187
|
+
var InternalAccessFindingsStatistics$ = [3, n0, _IAFS,
|
|
1188
|
+
0,
|
|
1189
|
+
[_rTS, _tAF, _tAFo, _tRF],
|
|
1190
|
+
[() => InternalAccessResourceTypeStatisticsMap, 1, 1, 1]
|
|
1191
|
+
];
|
|
1192
|
+
var InternalAccessResourceTypeDetails$ = [3, n0, _IARTD,
|
|
1193
|
+
0,
|
|
1194
|
+
[_tAF, _tRF, _tAFo],
|
|
1195
|
+
[1, 1, 1]
|
|
1196
|
+
];
|
|
1197
|
+
var InternetConfiguration$ = [3, n0, _IC,
|
|
1198
|
+
0,
|
|
1199
|
+
[],
|
|
1200
|
+
[]
|
|
1201
|
+
];
|
|
1202
|
+
var JobDetails$ = [3, n0, _JD,
|
|
1203
|
+
0,
|
|
1204
|
+
[_jI, _st, _sO, _cO, _jE],
|
|
1205
|
+
[0, 0, 5, 5, () => JobError$], 3
|
|
1206
|
+
];
|
|
1207
|
+
var JobError$ = [3, n0, _JE,
|
|
1208
|
+
0,
|
|
1209
|
+
[_cod, _m],
|
|
1210
|
+
[0, 0], 2
|
|
1211
|
+
];
|
|
1212
|
+
var KmsGrantConfiguration$ = [3, n0, _KGC,
|
|
1213
|
+
0,
|
|
1214
|
+
[_o, _gPr, _iA, _rPe, _cons],
|
|
1215
|
+
[64 | 0, 0, 0, 0, () => KmsGrantConstraints$], 3
|
|
1216
|
+
];
|
|
1217
|
+
var KmsGrantConstraints$ = [3, n0, _KGCm,
|
|
1218
|
+
0,
|
|
1219
|
+
[_eCE, _eCS],
|
|
1220
|
+
[128 | 0, 128 | 0]
|
|
1221
|
+
];
|
|
1222
|
+
var KmsKeyConfiguration$ = [3, n0, _KKC,
|
|
1223
|
+
0,
|
|
1224
|
+
[_kP, _gr],
|
|
1225
|
+
[128 | 0, () => KmsGrantConfigurationsList]
|
|
1226
|
+
];
|
|
1227
|
+
var ListAccessPreviewFindingsRequest$ = [3, n0, _LAPFR,
|
|
1228
|
+
0,
|
|
1229
|
+
[_aPI, _aA, _f, _nT, _mR],
|
|
1230
|
+
[[0, 1], 0, () => FilterCriteriaMap, 0, 1], 2
|
|
1231
|
+
];
|
|
1232
|
+
var ListAccessPreviewFindingsResponse$ = [3, n0, _LAPFRi,
|
|
1233
|
+
0,
|
|
1234
|
+
[_fin, _nT],
|
|
1235
|
+
[() => AccessPreviewFindingsList, 0], 1
|
|
1236
|
+
];
|
|
1237
|
+
var ListAccessPreviewsRequest$ = [3, n0, _LAPR,
|
|
1238
|
+
0,
|
|
1239
|
+
[_aA, _nT, _mR],
|
|
1240
|
+
[[0, { [_hQ]: _aA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1241
|
+
];
|
|
1242
|
+
var ListAccessPreviewsResponse$ = [3, n0, _LAPRi,
|
|
1243
|
+
0,
|
|
1244
|
+
[_aPc, _nT],
|
|
1245
|
+
[() => AccessPreviewsList, 0], 1
|
|
1246
|
+
];
|
|
1247
|
+
var ListAnalyzedResourcesRequest$ = [3, n0, _LARR,
|
|
1248
|
+
0,
|
|
1249
|
+
[_aA, _rT, _nT, _mR],
|
|
1250
|
+
[0, 0, 0, 1], 1
|
|
1251
|
+
];
|
|
1252
|
+
var ListAnalyzedResourcesResponse$ = [3, n0, _LARRi,
|
|
1253
|
+
0,
|
|
1254
|
+
[_aRna, _nT],
|
|
1255
|
+
[() => AnalyzedResourcesList, 0], 1
|
|
1256
|
+
];
|
|
1257
|
+
var ListAnalyzersRequest$ = [3, n0, _LAR,
|
|
1258
|
+
0,
|
|
1259
|
+
[_nT, _mR, _t],
|
|
1260
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _t }]]
|
|
1261
|
+
];
|
|
1262
|
+
var ListAnalyzersResponse$ = [3, n0, _LARi,
|
|
1263
|
+
0,
|
|
1264
|
+
[_ana, _nT],
|
|
1265
|
+
[() => AnalyzersList, 0], 1
|
|
1266
|
+
];
|
|
1267
|
+
var ListArchiveRulesRequest$ = [3, n0, _LARRis,
|
|
1268
|
+
0,
|
|
1269
|
+
[_aN, _nT, _mR],
|
|
1270
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1271
|
+
];
|
|
1272
|
+
var ListArchiveRulesResponse$ = [3, n0, _LARRist,
|
|
1273
|
+
0,
|
|
1274
|
+
[_aRr, _nT],
|
|
1275
|
+
[() => ArchiveRulesList, 0], 1
|
|
1276
|
+
];
|
|
1277
|
+
var ListFindingsRequest$ = [3, n0, _LFR,
|
|
1278
|
+
0,
|
|
1279
|
+
[_aA, _f, _sor, _nT, _mR],
|
|
1280
|
+
[0, () => FilterCriteriaMap, () => SortCriteria$, 0, 1], 1
|
|
1281
|
+
];
|
|
1282
|
+
var ListFindingsResponse$ = [3, n0, _LFRi,
|
|
1283
|
+
0,
|
|
1284
|
+
[_fin, _nT],
|
|
1285
|
+
[() => FindingsList, 0], 1
|
|
1286
|
+
];
|
|
1287
|
+
var ListFindingsV2Request$ = [3, n0, _LFVR,
|
|
1288
|
+
0,
|
|
1289
|
+
[_aA, _f, _mR, _nT, _sor],
|
|
1290
|
+
[0, () => FilterCriteriaMap, 1, 0, () => SortCriteria$], 1
|
|
1291
|
+
];
|
|
1292
|
+
var ListFindingsV2Response$ = [3, n0, _LFVRi,
|
|
1293
|
+
0,
|
|
1294
|
+
[_fin, _nT],
|
|
1295
|
+
[() => FindingsListV2, 0], 1
|
|
1296
|
+
];
|
|
1297
|
+
var ListPolicyGenerationsRequest$ = [3, n0, _LPGR,
|
|
1298
|
+
0,
|
|
1299
|
+
[_pA, _mR, _nT],
|
|
1300
|
+
[[0, { [_hQ]: _pA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1301
|
+
];
|
|
1302
|
+
var ListPolicyGenerationsResponse$ = [3, n0, _LPGRi,
|
|
1303
|
+
0,
|
|
1304
|
+
[_pG, _nT],
|
|
1305
|
+
[() => PolicyGenerationList, 0], 1
|
|
1306
|
+
];
|
|
1307
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1308
|
+
0,
|
|
1309
|
+
[_rA],
|
|
1310
|
+
[[0, 1]], 1
|
|
1311
|
+
];
|
|
1312
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1313
|
+
0,
|
|
1314
|
+
[_ta],
|
|
1315
|
+
[128 | 0]
|
|
1316
|
+
];
|
|
1317
|
+
var Location$ = [3, n0, _L,
|
|
1318
|
+
0,
|
|
1319
|
+
[_pa, _sp],
|
|
1320
|
+
[() => PathElementList, () => Span$], 2
|
|
1321
|
+
];
|
|
1322
|
+
var PolicyGeneration$ = [3, n0, _PG,
|
|
1323
|
+
0,
|
|
1324
|
+
[_jI, _pA, _st, _sO, _cO],
|
|
1325
|
+
[0, 0, 0, 5, 5], 4
|
|
1326
|
+
];
|
|
1327
|
+
var PolicyGenerationDetails$ = [3, n0, _PGD,
|
|
1328
|
+
0,
|
|
1329
|
+
[_pA],
|
|
1330
|
+
[0], 1
|
|
1331
|
+
];
|
|
1332
|
+
var Position$ = [3, n0, _P,
|
|
1333
|
+
0,
|
|
1334
|
+
[_l, _col, _of],
|
|
1335
|
+
[1, 1, 1], 3
|
|
1336
|
+
];
|
|
1337
|
+
var RdsDbClusterSnapshotConfiguration$ = [3, n0, _RDCSC,
|
|
1338
|
+
0,
|
|
1339
|
+
[_at, _kKI],
|
|
1340
|
+
[() => RdsDbClusterSnapshotAttributesMap, 0]
|
|
1341
|
+
];
|
|
1342
|
+
var RdsDbSnapshotConfiguration$ = [3, n0, _RDSC,
|
|
1343
|
+
0,
|
|
1344
|
+
[_at, _kKI],
|
|
1345
|
+
[() => RdsDbSnapshotAttributesMap, 0]
|
|
1346
|
+
];
|
|
1347
|
+
var ReasonSummary$ = [3, n0, _RS,
|
|
1348
|
+
0,
|
|
1349
|
+
[_des, _sI, _sIt],
|
|
1350
|
+
[0, 1, 0]
|
|
1351
|
+
];
|
|
1352
|
+
var RecommendationError$ = [3, n0, _RE,
|
|
1353
|
+
0,
|
|
1354
|
+
[_cod, _m],
|
|
1355
|
+
[0, 0], 2
|
|
1356
|
+
];
|
|
1357
|
+
var ResourceTypeDetails$ = [3, n0, _RTD,
|
|
1358
|
+
0,
|
|
1359
|
+
[_tAP, _tACA, _tAE],
|
|
1360
|
+
[1, 1, 1]
|
|
1361
|
+
];
|
|
1362
|
+
var S3AccessPointConfiguration$ = [3, n0, _SAPC,
|
|
1363
|
+
0,
|
|
1364
|
+
[_aPP, _pAB, _nO],
|
|
1365
|
+
[0, () => S3PublicAccessBlockConfiguration$, () => NetworkOriginConfiguration$]
|
|
1366
|
+
];
|
|
1367
|
+
var S3BucketAclGrantConfiguration$ = [3, n0, _SBAGC,
|
|
1368
|
+
0,
|
|
1369
|
+
[_pe, _gra],
|
|
1370
|
+
[0, () => AclGrantee$], 2
|
|
1371
|
+
];
|
|
1372
|
+
var S3BucketConfiguration$ = [3, n0, _SBC,
|
|
1373
|
+
0,
|
|
1374
|
+
[_bP, _bAG, _bPAB, _aPcc],
|
|
1375
|
+
[0, () => S3BucketAclGrantConfigurationsList, () => S3PublicAccessBlockConfiguration$, () => S3AccessPointConfigurationsMap]
|
|
1376
|
+
];
|
|
1377
|
+
var S3ExpressDirectoryAccessPointConfiguration$ = [3, n0, _SEDAPC,
|
|
1378
|
+
0,
|
|
1379
|
+
[_aPP, _nO],
|
|
1380
|
+
[0, () => NetworkOriginConfiguration$]
|
|
1381
|
+
];
|
|
1382
|
+
var S3ExpressDirectoryBucketConfiguration$ = [3, n0, _SEDBC,
|
|
1383
|
+
0,
|
|
1384
|
+
[_bP, _aPcc],
|
|
1385
|
+
[0, () => S3ExpressDirectoryAccessPointConfigurationsMap]
|
|
1386
|
+
];
|
|
1387
|
+
var S3PublicAccessBlockConfiguration$ = [3, n0, _SPABC,
|
|
1388
|
+
0,
|
|
1389
|
+
[_iPA, _rPB],
|
|
1390
|
+
[2, 2], 2
|
|
1391
|
+
];
|
|
1392
|
+
var SecretsManagerSecretConfiguration$ = [3, n0, _SMSC,
|
|
1393
|
+
0,
|
|
1394
|
+
[_kKI, _sPe],
|
|
1395
|
+
[0, 0]
|
|
1396
|
+
];
|
|
1397
|
+
var SnsTopicConfiguration$ = [3, n0, _STC,
|
|
1398
|
+
0,
|
|
1399
|
+
[_tPo],
|
|
1400
|
+
[0]
|
|
1401
|
+
];
|
|
1402
|
+
var SortCriteria$ = [3, n0, _SC,
|
|
1403
|
+
0,
|
|
1404
|
+
[_aNt, _oB],
|
|
1405
|
+
[0, 0]
|
|
1406
|
+
];
|
|
1407
|
+
var Span$ = [3, n0, _S,
|
|
1408
|
+
0,
|
|
1409
|
+
[_sta, _en],
|
|
1410
|
+
[() => Position$, () => Position$], 2
|
|
1411
|
+
];
|
|
1412
|
+
var SqsQueueConfiguration$ = [3, n0, _SQC,
|
|
1413
|
+
0,
|
|
1414
|
+
[_qP],
|
|
1415
|
+
[0]
|
|
1416
|
+
];
|
|
1417
|
+
var StartPolicyGenerationRequest$ = [3, n0, _SPGR,
|
|
1418
|
+
0,
|
|
1419
|
+
[_pGD, _cTD, _cTl],
|
|
1420
|
+
[() => PolicyGenerationDetails$, () => CloudTrailDetails$, [0, 4]], 1
|
|
1421
|
+
];
|
|
1422
|
+
var StartPolicyGenerationResponse$ = [3, n0, _SPGRt,
|
|
1423
|
+
0,
|
|
1424
|
+
[_jI],
|
|
1425
|
+
[0], 1
|
|
1426
|
+
];
|
|
1427
|
+
var StartResourceScanRequest$ = [3, n0, _SRSR,
|
|
1428
|
+
0,
|
|
1429
|
+
[_aA, _rA, _rOA],
|
|
1430
|
+
[0, 0, 0], 2
|
|
1431
|
+
];
|
|
1432
|
+
var StatusReason$ = [3, n0, _SR,
|
|
1433
|
+
0,
|
|
1434
|
+
[_cod],
|
|
1435
|
+
[0], 1
|
|
1436
|
+
];
|
|
1437
|
+
var Substring$ = [3, n0, _Su,
|
|
1438
|
+
0,
|
|
1439
|
+
[_sta, _le],
|
|
1440
|
+
[1, 1], 2
|
|
1441
|
+
];
|
|
1442
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1443
|
+
0,
|
|
1444
|
+
[_rA, _ta],
|
|
1445
|
+
[[0, 1], 128 | 0], 2
|
|
1446
|
+
];
|
|
1447
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1448
|
+
0,
|
|
1449
|
+
[],
|
|
1450
|
+
[]
|
|
1451
|
+
];
|
|
1452
|
+
var Trail$ = [3, n0, _T,
|
|
1453
|
+
0,
|
|
1454
|
+
[_cTA, _reg, _aRl],
|
|
1455
|
+
[0, 64 | 0, 2], 1
|
|
1456
|
+
];
|
|
1457
|
+
var TrailProperties$ = [3, n0, _TP,
|
|
1458
|
+
0,
|
|
1459
|
+
[_cTA, _reg, _aRl],
|
|
1460
|
+
[0, 64 | 0, 2], 1
|
|
1461
|
+
];
|
|
1462
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1463
|
+
0,
|
|
1464
|
+
[_rA, _tK],
|
|
1465
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1466
|
+
];
|
|
1467
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1468
|
+
0,
|
|
1469
|
+
[],
|
|
1470
|
+
[]
|
|
1471
|
+
];
|
|
1472
|
+
var UnusedAccessConfiguration$ = [3, n0, _UAC,
|
|
1473
|
+
0,
|
|
1474
|
+
[_uAA, _aRn],
|
|
1475
|
+
[1, () => AnalysisRule$]
|
|
1476
|
+
];
|
|
1477
|
+
var UnusedAccessFindingsStatistics$ = [3, n0, _UAFS,
|
|
1478
|
+
0,
|
|
1479
|
+
[_uATS, _tA, _tAF, _tAFo, _tRF],
|
|
1480
|
+
[() => UnusedAccessTypeStatisticsList, () => AccountAggregations, 1, 1, 1]
|
|
1481
|
+
];
|
|
1482
|
+
var UnusedAccessTypeStatistics$ = [3, n0, _UATS,
|
|
1483
|
+
0,
|
|
1484
|
+
[_uAT, _to],
|
|
1485
|
+
[0, 1]
|
|
1486
|
+
];
|
|
1487
|
+
var UnusedAction$ = [3, n0, _UA,
|
|
1488
|
+
0,
|
|
1489
|
+
[_ac, _lA],
|
|
1490
|
+
[0, 5], 1
|
|
1491
|
+
];
|
|
1492
|
+
var UnusedIamRoleDetails$ = [3, n0, _UIRD,
|
|
1493
|
+
0,
|
|
1494
|
+
[_lA],
|
|
1495
|
+
[5]
|
|
1496
|
+
];
|
|
1497
|
+
var UnusedIamUserAccessKeyDetails$ = [3, n0, _UIUAKD,
|
|
1498
|
+
0,
|
|
1499
|
+
[_aKI, _lA],
|
|
1500
|
+
[0, 5], 1
|
|
1501
|
+
];
|
|
1502
|
+
var UnusedIamUserPasswordDetails$ = [3, n0, _UIUPD,
|
|
1503
|
+
0,
|
|
1504
|
+
[_lA],
|
|
1505
|
+
[5]
|
|
1506
|
+
];
|
|
1507
|
+
var UnusedPermissionDetails$ = [3, n0, _UPD,
|
|
1508
|
+
0,
|
|
1509
|
+
[_sN, _a, _lA],
|
|
1510
|
+
[0, () => UnusedActionList, 5], 1
|
|
1511
|
+
];
|
|
1512
|
+
var UnusedPermissionsRecommendedStep$ = [3, n0, _UPRS,
|
|
1513
|
+
0,
|
|
1514
|
+
[_rAec, _pUA, _rPec, _ePI],
|
|
1515
|
+
[0, 5, 0, 0], 1
|
|
1516
|
+
];
|
|
1517
|
+
var UpdateAnalyzerRequest$ = [3, n0, _UAR,
|
|
1518
|
+
0,
|
|
1519
|
+
[_aN, _conf],
|
|
1520
|
+
[[0, 1], () => AnalyzerConfiguration$], 1
|
|
1521
|
+
];
|
|
1522
|
+
var UpdateAnalyzerResponse$ = [3, n0, _UARp,
|
|
1523
|
+
0,
|
|
1524
|
+
[_conf],
|
|
1525
|
+
[() => AnalyzerConfiguration$]
|
|
1526
|
+
];
|
|
1527
|
+
var UpdateArchiveRuleRequest$ = [3, n0, _UARR,
|
|
1528
|
+
0,
|
|
1529
|
+
[_aN, _rN, _f, _cTl],
|
|
1530
|
+
[[0, 1], [0, 1], () => FilterCriteriaMap, [0, 4]], 3
|
|
1531
|
+
];
|
|
1532
|
+
var UpdateFindingsRequest$ = [3, n0, _UFR,
|
|
1533
|
+
0,
|
|
1534
|
+
[_aA, _st, _id, _rA, _cTl],
|
|
1535
|
+
[0, 0, 64 | 0, 0, [0, 4]], 2
|
|
1536
|
+
];
|
|
1537
|
+
var ValidatePolicyFinding$ = [3, n0, _VPF,
|
|
1538
|
+
0,
|
|
1539
|
+
[_fD, _fT, _iCs, _lML, _lo],
|
|
1540
|
+
[0, 0, 0, 0, () => LocationList], 5
|
|
1541
|
+
];
|
|
1542
|
+
var ValidatePolicyRequest$ = [3, n0, _VPR,
|
|
1543
|
+
0,
|
|
1544
|
+
[_pD, _pT, _loc, _mR, _nT, _vPRT],
|
|
1545
|
+
[0, 0, 0, [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0], 2
|
|
1546
|
+
];
|
|
1547
|
+
var ValidatePolicyResponse$ = [3, n0, _VPRa,
|
|
1548
|
+
0,
|
|
1549
|
+
[_fin, _nT],
|
|
1550
|
+
[() => ValidatePolicyFindingList, 0], 1
|
|
1551
|
+
];
|
|
1552
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1553
|
+
0,
|
|
1554
|
+
[_n, _m],
|
|
1555
|
+
[0, 0], 2
|
|
1556
|
+
];
|
|
1557
|
+
var VpcConfiguration$ = [3, n0, _VC,
|
|
1558
|
+
0,
|
|
1559
|
+
[_vI],
|
|
1560
|
+
[0], 1
|
|
1561
|
+
];
|
|
1562
|
+
var __Unit = "unit";
|
|
1563
|
+
var AccessList = [1, n0, _AL,
|
|
1564
|
+
0, () => Access$
|
|
1565
|
+
];
|
|
1566
|
+
var AccessPreviewFindingsList = [1, n0, _APFL,
|
|
1567
|
+
0, () => AccessPreviewFinding$
|
|
1568
|
+
];
|
|
1569
|
+
var AccessPreviewsList = [1, n0, _APL,
|
|
1570
|
+
0, () => AccessPreviewSummary$
|
|
1571
|
+
];
|
|
1572
|
+
var AccountAggregations = [1, n0, _AA,
|
|
1573
|
+
0, () => FindingAggregationAccountDetails$
|
|
1574
|
+
];
|
|
1575
|
+
var AnalysisRuleCriteriaList = [1, n0, _ARCL,
|
|
1576
|
+
0, () => AnalysisRuleCriteria$
|
|
1577
|
+
];
|
|
1578
|
+
var AnalyzedResourcesList = [1, n0, _ARL,
|
|
1579
|
+
0, () => AnalyzedResourceSummary$
|
|
1580
|
+
];
|
|
1581
|
+
var AnalyzersList = [1, n0, _ALn,
|
|
1582
|
+
0, () => AnalyzerSummary$
|
|
1583
|
+
];
|
|
1584
|
+
var ArchiveRulesList = [1, n0, _ARLr,
|
|
1585
|
+
0, () => ArchiveRuleSummary$
|
|
1586
|
+
];
|
|
1587
|
+
var FindingDetailsList = [1, n0, _FDL,
|
|
1588
|
+
0, () => FindingDetails$
|
|
1589
|
+
];
|
|
1590
|
+
var FindingsList = [1, n0, _FL,
|
|
1591
|
+
0, () => FindingSummary$
|
|
1592
|
+
];
|
|
1593
|
+
var FindingsListV2 = [1, n0, _FLV,
|
|
1594
|
+
0, () => FindingSummaryV2$
|
|
1595
|
+
];
|
|
1596
|
+
var FindingSourceList = [1, n0, _FSL,
|
|
1597
|
+
0, () => FindingSource$
|
|
1598
|
+
];
|
|
1599
|
+
var FindingsStatisticsList = [1, n0, _FSLi,
|
|
1600
|
+
0, () => FindingsStatistics$
|
|
1601
|
+
];
|
|
1602
|
+
var GeneratedPolicyList = [1, n0, _GPL,
|
|
1603
|
+
0, () => GeneratedPolicy$
|
|
1604
|
+
];
|
|
1605
|
+
var InlineArchiveRulesList = [1, n0, _IARL,
|
|
1606
|
+
0, () => InlineArchiveRule$
|
|
1607
|
+
];
|
|
1608
|
+
var InternalAccessAnalysisRuleCriteriaList = [1, n0, _IAARCL,
|
|
1609
|
+
0, () => InternalAccessAnalysisRuleCriteria$
|
|
1610
|
+
];
|
|
1611
|
+
var KmsGrantConfigurationsList = [1, n0, _KGCL,
|
|
1612
|
+
0, () => KmsGrantConfiguration$
|
|
1613
|
+
];
|
|
1614
|
+
var LocationList = [1, n0, _LL,
|
|
1615
|
+
0, () => Location$
|
|
1616
|
+
];
|
|
1617
|
+
var PathElementList = [1, n0, _PEL,
|
|
1618
|
+
0, () => PathElement$
|
|
1619
|
+
];
|
|
1620
|
+
var PolicyGenerationList = [1, n0, _PGL,
|
|
1621
|
+
0, () => PolicyGeneration$
|
|
1622
|
+
];
|
|
1623
|
+
var ReasonSummaryList = [1, n0, _RSL,
|
|
1624
|
+
0, () => ReasonSummary$
|
|
1625
|
+
];
|
|
1626
|
+
var RecommendedStepList = [1, n0, _RSLe,
|
|
1627
|
+
0, () => RecommendedStep$
|
|
1628
|
+
];
|
|
1629
|
+
var S3BucketAclGrantConfigurationsList = [1, n0, _SBAGCL,
|
|
1630
|
+
0, () => S3BucketAclGrantConfiguration$
|
|
1631
|
+
];
|
|
1632
|
+
var TrailList = [1, n0, _TLr,
|
|
1633
|
+
0, () => Trail$
|
|
1634
|
+
];
|
|
1635
|
+
var TrailPropertiesList = [1, n0, _TPL,
|
|
1636
|
+
0, () => TrailProperties$
|
|
1637
|
+
];
|
|
1638
|
+
var UnusedAccessTypeStatisticsList = [1, n0, _UATSL,
|
|
1639
|
+
0, () => UnusedAccessTypeStatistics$
|
|
1640
|
+
];
|
|
1641
|
+
var UnusedActionList = [1, n0, _UAL,
|
|
1642
|
+
0, () => UnusedAction$
|
|
1643
|
+
];
|
|
1644
|
+
var ValidatePolicyFindingList = [1, n0, _VPFL,
|
|
1645
|
+
0, () => ValidatePolicyFinding$
|
|
1646
|
+
];
|
|
1647
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1648
|
+
0, () => ValidationExceptionField$
|
|
1649
|
+
];
|
|
1650
|
+
var ConfigurationsMap = [2, n0, _CM,
|
|
1651
|
+
0, 0, () => Configuration$
|
|
1652
|
+
];
|
|
1653
|
+
var FilterCriteriaMap = [2, n0, _FCM,
|
|
1654
|
+
0, 0, () => Criterion$
|
|
1655
|
+
];
|
|
1656
|
+
var InternalAccessResourceTypeStatisticsMap = [2, n0, _IARTSM,
|
|
1657
|
+
0, 0, () => InternalAccessResourceTypeDetails$
|
|
1658
|
+
];
|
|
1659
|
+
var RdsDbClusterSnapshotAttributesMap = [2, n0, _RDCSAM,
|
|
1660
|
+
0, 0, () => RdsDbClusterSnapshotAttributeValue$
|
|
1661
|
+
];
|
|
1662
|
+
var RdsDbSnapshotAttributesMap = [2, n0, _RDSAM,
|
|
1663
|
+
0, 0, () => RdsDbSnapshotAttributeValue$
|
|
1664
|
+
];
|
|
1665
|
+
var ResourceTypeStatisticsMap = [2, n0, _RTSM,
|
|
1666
|
+
0, 0, () => ResourceTypeDetails$
|
|
1667
|
+
];
|
|
1668
|
+
var S3AccessPointConfigurationsMap = [2, n0, _SAPCM,
|
|
1669
|
+
0, 0, () => S3AccessPointConfiguration$
|
|
1670
|
+
];
|
|
1671
|
+
var S3ExpressDirectoryAccessPointConfigurationsMap = [2, n0, _SEDAPCM,
|
|
1672
|
+
0, 0, () => S3ExpressDirectoryAccessPointConfiguration$
|
|
1673
|
+
];
|
|
1674
|
+
var AclGrantee$ = [4, n0, _AG,
|
|
1675
|
+
0,
|
|
1676
|
+
[_i, _u],
|
|
1677
|
+
[0, 0]
|
|
1678
|
+
];
|
|
1679
|
+
var AnalyzerConfiguration$ = [4, n0, _AC,
|
|
1680
|
+
0,
|
|
1681
|
+
[_uAn, _iAn],
|
|
1682
|
+
[() => UnusedAccessConfiguration$, () => InternalAccessConfiguration$]
|
|
1683
|
+
];
|
|
1684
|
+
var Configuration$ = [4, n0, _Co,
|
|
1685
|
+
0,
|
|
1686
|
+
[_eS, _eR, _iR, _eFSf, _kK, _rDCS, _rDS, _sMS, _sB, _sTn, _sQ, _sEDB, _dS, _dT],
|
|
1687
|
+
[() => EbsSnapshotConfiguration$, () => EcrRepositoryConfiguration$, () => IamRoleConfiguration$, () => EfsFileSystemConfiguration$, () => KmsKeyConfiguration$, () => RdsDbClusterSnapshotConfiguration$, () => RdsDbSnapshotConfiguration$, () => SecretsManagerSecretConfiguration$, () => S3BucketConfiguration$, () => SnsTopicConfiguration$, () => SqsQueueConfiguration$, () => S3ExpressDirectoryBucketConfiguration$, () => DynamodbStreamConfiguration$, () => DynamodbTableConfiguration$]
|
|
1688
|
+
];
|
|
1689
|
+
var FindingDetails$ = [4, n0, _FD,
|
|
1690
|
+
0,
|
|
1691
|
+
[_iAD, _eAD, _uPD, _uIUAKD, _uIRD, _uIUPD],
|
|
1692
|
+
[() => InternalAccessDetails$, () => ExternalAccessDetails$, () => UnusedPermissionDetails$, () => UnusedIamUserAccessKeyDetails$, () => UnusedIamRoleDetails$, () => UnusedIamUserPasswordDetails$]
|
|
1693
|
+
];
|
|
1694
|
+
var FindingsStatistics$ = [4, n0, _FSin,
|
|
1695
|
+
0,
|
|
1696
|
+
[_eAFS, _iAFS, _uAFS],
|
|
1697
|
+
[() => ExternalAccessFindingsStatistics$, () => InternalAccessFindingsStatistics$, () => UnusedAccessFindingsStatistics$]
|
|
1698
|
+
];
|
|
1699
|
+
var NetworkOriginConfiguration$ = [4, n0, _NOC,
|
|
1700
|
+
0,
|
|
1701
|
+
[_vC, _iCn],
|
|
1702
|
+
[() => VpcConfiguration$, () => InternetConfiguration$]
|
|
1703
|
+
];
|
|
1704
|
+
var PathElement$ = [4, n0, _PE,
|
|
1705
|
+
0,
|
|
1706
|
+
[_ind, _k, _su, _v],
|
|
1707
|
+
[1, 0, () => Substring$, 0]
|
|
1708
|
+
];
|
|
1709
|
+
var RdsDbClusterSnapshotAttributeValue$ = [4, n0, _RDCSAV,
|
|
1710
|
+
0,
|
|
1711
|
+
[_aI],
|
|
1712
|
+
[64 | 0]
|
|
1713
|
+
];
|
|
1714
|
+
var RdsDbSnapshotAttributeValue$ = [4, n0, _RDSAV,
|
|
1715
|
+
0,
|
|
1716
|
+
[_aI],
|
|
1717
|
+
[64 | 0]
|
|
1718
|
+
];
|
|
1719
|
+
var RecommendedStep$ = [4, n0, _RSe,
|
|
1720
|
+
0,
|
|
1721
|
+
[_uPRS],
|
|
1722
|
+
[() => UnusedPermissionsRecommendedStep$]
|
|
1723
|
+
];
|
|
1724
|
+
var ApplyArchiveRule$ = [9, n0, _AAR,
|
|
1725
|
+
{ [_h]: ["PUT", "/archive-rule", 200] }, () => ApplyArchiveRuleRequest$, () => __Unit
|
|
1726
|
+
];
|
|
1727
|
+
var CancelPolicyGeneration$ = [9, n0, _CPG,
|
|
1728
|
+
{ [_h]: ["PUT", "/policy/generation/{jobId}", 200] }, () => CancelPolicyGenerationRequest$, () => CancelPolicyGenerationResponse$
|
|
1729
|
+
];
|
|
1730
|
+
var CheckAccessNotGranted$ = [9, n0, _CANG,
|
|
1731
|
+
{ [_h]: ["POST", "/policy/check-access-not-granted", 200] }, () => CheckAccessNotGrantedRequest$, () => CheckAccessNotGrantedResponse$
|
|
1732
|
+
];
|
|
1733
|
+
var CheckNoNewAccess$ = [9, n0, _CNNA,
|
|
1734
|
+
{ [_h]: ["POST", "/policy/check-no-new-access", 200] }, () => CheckNoNewAccessRequest$, () => CheckNoNewAccessResponse$
|
|
1735
|
+
];
|
|
1736
|
+
var CheckNoPublicAccess$ = [9, n0, _CNPA,
|
|
1737
|
+
{ [_h]: ["POST", "/policy/check-no-public-access", 200] }, () => CheckNoPublicAccessRequest$, () => CheckNoPublicAccessResponse$
|
|
1738
|
+
];
|
|
1739
|
+
var CreateAccessPreview$ = [9, n0, _CAP,
|
|
1740
|
+
{ [_h]: ["PUT", "/access-preview", 200] }, () => CreateAccessPreviewRequest$, () => CreateAccessPreviewResponse$
|
|
1741
|
+
];
|
|
1742
|
+
var CreateAnalyzer$ = [9, n0, _CA,
|
|
1743
|
+
{ [_h]: ["PUT", "/analyzer", 200] }, () => CreateAnalyzerRequest$, () => CreateAnalyzerResponse$
|
|
1744
|
+
];
|
|
1745
|
+
var CreateArchiveRule$ = [9, n0, _CARre,
|
|
1746
|
+
{ [_h]: ["PUT", "/analyzer/{analyzerName}/archive-rule", 200] }, () => CreateArchiveRuleRequest$, () => __Unit
|
|
1747
|
+
];
|
|
1748
|
+
var CreateServiceLinkedAnalyzer$ = [9, n0, _CSLA,
|
|
1749
|
+
{ [_h]: ["PUT", "/service-linked-analyzer", 200] }, () => CreateServiceLinkedAnalyzerRequest$, () => CreateServiceLinkedAnalyzerResponse$
|
|
1750
|
+
];
|
|
1751
|
+
var DeleteAnalyzer$ = [9, n0, _DA,
|
|
1752
|
+
{ [_h]: ["DELETE", "/analyzer/{analyzerName}", 200] }, () => DeleteAnalyzerRequest$, () => __Unit
|
|
1753
|
+
];
|
|
1754
|
+
var DeleteArchiveRule$ = [9, n0, _DARe,
|
|
1755
|
+
{ [_h]: ["DELETE", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => DeleteArchiveRuleRequest$, () => __Unit
|
|
1756
|
+
];
|
|
1757
|
+
var DeleteServiceLinkedAnalyzer$ = [9, n0, _DSLA,
|
|
1758
|
+
{ [_h]: ["DELETE", "/service-linked-analyzer/{analyzerName}", 200] }, () => DeleteServiceLinkedAnalyzerRequest$, () => __Unit
|
|
1759
|
+
];
|
|
1760
|
+
var GenerateFindingRecommendation$ = [9, n0, _GFRen,
|
|
1761
|
+
{ [_h]: ["POST", "/recommendation/{id}", 200] }, () => GenerateFindingRecommendationRequest$, () => __Unit
|
|
1762
|
+
];
|
|
1763
|
+
var GetAccessPreview$ = [9, n0, _GAP,
|
|
1764
|
+
{ [_h]: ["GET", "/access-preview/{accessPreviewId}", 200] }, () => GetAccessPreviewRequest$, () => GetAccessPreviewResponse$
|
|
1765
|
+
];
|
|
1766
|
+
var GetAnalyzedResource$ = [9, n0, _GARet,
|
|
1767
|
+
{ [_h]: ["GET", "/analyzed-resource", 200] }, () => GetAnalyzedResourceRequest$, () => GetAnalyzedResourceResponse$
|
|
1768
|
+
];
|
|
1769
|
+
var GetAnalyzer$ = [9, n0, _GA,
|
|
1770
|
+
{ [_h]: ["GET", "/analyzer/{analyzerName}", 200] }, () => GetAnalyzerRequest$, () => GetAnalyzerResponse$
|
|
1771
|
+
];
|
|
1772
|
+
var GetArchiveRule$ = [9, n0, _GARetr,
|
|
1773
|
+
{ [_h]: ["GET", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => GetArchiveRuleRequest$, () => GetArchiveRuleResponse$
|
|
1774
|
+
];
|
|
1775
|
+
var GetFinding$ = [9, n0, _GF,
|
|
1776
|
+
{ [_h]: ["GET", "/finding/{id}", 200] }, () => GetFindingRequest$, () => GetFindingResponse$
|
|
1777
|
+
];
|
|
1778
|
+
var GetFindingRecommendation$ = [9, n0, _GFRet,
|
|
1779
|
+
{ [_h]: ["GET", "/recommendation/{id}", 200] }, () => GetFindingRecommendationRequest$, () => GetFindingRecommendationResponse$
|
|
1780
|
+
];
|
|
1781
|
+
var GetFindingsStatistics$ = [9, n0, _GFS,
|
|
1782
|
+
{ [_h]: ["POST", "/analyzer/findings/statistics", 200] }, () => GetFindingsStatisticsRequest$, () => GetFindingsStatisticsResponse$
|
|
1783
|
+
];
|
|
1784
|
+
var GetFindingV2$ = [9, n0, _GFV,
|
|
1785
|
+
{ [_h]: ["GET", "/findingv2/{id}", 200] }, () => GetFindingV2Request$, () => GetFindingV2Response$
|
|
1786
|
+
];
|
|
1787
|
+
var GetGeneratedPolicy$ = [9, n0, _GGP,
|
|
1788
|
+
{ [_h]: ["GET", "/policy/generation/{jobId}", 200] }, () => GetGeneratedPolicyRequest$, () => GetGeneratedPolicyResponse$
|
|
1789
|
+
];
|
|
1790
|
+
var ListAccessPreviewFindings$ = [9, n0, _LAPF,
|
|
1791
|
+
{ [_h]: ["POST", "/access-preview/{accessPreviewId}", 200] }, () => ListAccessPreviewFindingsRequest$, () => ListAccessPreviewFindingsResponse$
|
|
1792
|
+
];
|
|
1793
|
+
var ListAccessPreviews$ = [9, n0, _LAP,
|
|
1794
|
+
{ [_h]: ["GET", "/access-preview", 200] }, () => ListAccessPreviewsRequest$, () => ListAccessPreviewsResponse$
|
|
1795
|
+
];
|
|
1796
|
+
var ListAnalyzedResources$ = [9, n0, _LARis,
|
|
1797
|
+
{ [_h]: ["POST", "/analyzed-resource", 200] }, () => ListAnalyzedResourcesRequest$, () => ListAnalyzedResourcesResponse$
|
|
1798
|
+
];
|
|
1799
|
+
var ListAnalyzers$ = [9, n0, _LA,
|
|
1800
|
+
{ [_h]: ["GET", "/analyzer", 200] }, () => ListAnalyzersRequest$, () => ListAnalyzersResponse$
|
|
1801
|
+
];
|
|
1802
|
+
var ListArchiveRules$ = [9, n0, _LARist,
|
|
1803
|
+
{ [_h]: ["GET", "/analyzer/{analyzerName}/archive-rule", 200] }, () => ListArchiveRulesRequest$, () => ListArchiveRulesResponse$
|
|
1804
|
+
];
|
|
1805
|
+
var ListFindings$ = [9, n0, _LF,
|
|
1806
|
+
{ [_h]: ["POST", "/finding", 200] }, () => ListFindingsRequest$, () => ListFindingsResponse$
|
|
1807
|
+
];
|
|
1808
|
+
var ListFindingsV2$ = [9, n0, _LFV,
|
|
1809
|
+
{ [_h]: ["POST", "/findingv2", 200] }, () => ListFindingsV2Request$, () => ListFindingsV2Response$
|
|
1810
|
+
];
|
|
1811
|
+
var ListPolicyGenerations$ = [9, n0, _LPG,
|
|
1812
|
+
{ [_h]: ["GET", "/policy/generation", 200] }, () => ListPolicyGenerationsRequest$, () => ListPolicyGenerationsResponse$
|
|
1813
|
+
];
|
|
1814
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1815
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1816
|
+
];
|
|
1817
|
+
var StartPolicyGeneration$ = [9, n0, _SPG,
|
|
1818
|
+
{ [_h]: ["PUT", "/policy/generation", 200] }, () => StartPolicyGenerationRequest$, () => StartPolicyGenerationResponse$
|
|
1819
|
+
];
|
|
1820
|
+
var StartResourceScan$ = [9, n0, _SRS,
|
|
1821
|
+
{ [_h]: ["POST", "/resource/scan", 200] }, () => StartResourceScanRequest$, () => __Unit
|
|
1822
|
+
];
|
|
1823
|
+
var TagResource$ = [9, n0, _TR,
|
|
1824
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1825
|
+
];
|
|
1826
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1827
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1828
|
+
];
|
|
1829
|
+
var UpdateAnalyzer$ = [9, n0, _UAp,
|
|
1830
|
+
{ [_h]: ["PUT", "/analyzer/{analyzerName}", 200] }, () => UpdateAnalyzerRequest$, () => UpdateAnalyzerResponse$
|
|
1831
|
+
];
|
|
1832
|
+
var UpdateArchiveRule$ = [9, n0, _UARpd,
|
|
1833
|
+
{ [_h]: ["PUT", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => UpdateArchiveRuleRequest$, () => __Unit
|
|
1834
|
+
];
|
|
1835
|
+
var UpdateFindings$ = [9, n0, _UF,
|
|
1836
|
+
{ [_h]: ["PUT", "/finding", 200] }, () => UpdateFindingsRequest$, () => __Unit
|
|
1837
|
+
];
|
|
1838
|
+
var ValidatePolicy$ = [9, n0, _VP,
|
|
1839
|
+
{ [_h]: ["POST", "/policy/validation", 200] }, () => ValidatePolicyRequest$, () => ValidatePolicyResponse$
|
|
1840
|
+
];
|
|
1841
|
+
|
|
1842
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1843
|
+
return {
|
|
1844
|
+
apiVersion: "2019-11-01",
|
|
1845
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1846
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1847
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1848
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1849
|
+
extensions: config?.extensions ?? [],
|
|
1850
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAccessAnalyzerHttpAuthSchemeProvider,
|
|
1851
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1852
|
+
{
|
|
1853
|
+
schemeId: "aws.auth#sigv4",
|
|
1854
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1855
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1856
|
+
},
|
|
1857
|
+
],
|
|
1858
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1859
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1860
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1861
|
+
defaultNamespace: "com.amazonaws.accessanalyzer",
|
|
1862
|
+
errorTypeRegistries,
|
|
1863
|
+
version: "2019-11-01",
|
|
1864
|
+
serviceTarget: "AccessAnalyzer",
|
|
1865
|
+
},
|
|
1866
|
+
serviceId: config?.serviceId ?? "AccessAnalyzer",
|
|
1867
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1868
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1869
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1870
|
+
};
|
|
1871
|
+
};
|
|
1872
|
+
|
|
1873
|
+
const getRuntimeConfig = (config) => {
|
|
1874
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1875
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1876
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1877
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1878
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1879
|
+
const loaderConfig = {
|
|
1880
|
+
profile: config?.profile,
|
|
1881
|
+
logger: clientSharedValues.logger,
|
|
1882
|
+
};
|
|
1883
|
+
return {
|
|
1884
|
+
...clientSharedValues,
|
|
1885
|
+
...config,
|
|
1886
|
+
runtime: "node",
|
|
1887
|
+
defaultsMode,
|
|
1888
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1889
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1890
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1891
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1892
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1893
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1894
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1895
|
+
retryMode: config?.retryMode ??
|
|
1896
|
+
loadConfig({
|
|
1897
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1898
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1899
|
+
}, config),
|
|
1900
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1901
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1902
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1903
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1904
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1907
|
+
|
|
34
1908
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1909
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1910
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -890,80 +2764,299 @@ const ValidatePolicyFindingType = {
|
|
|
890
2764
|
WARNING: "WARNING",
|
|
891
2765
|
};
|
|
892
2766
|
|
|
2767
|
+
exports.Access$ = Access$;
|
|
893
2768
|
exports.AccessAnalyzer = AccessAnalyzer;
|
|
894
2769
|
exports.AccessAnalyzerClient = AccessAnalyzerClient;
|
|
2770
|
+
exports.AccessAnalyzerServiceException = AccessAnalyzerServiceException;
|
|
2771
|
+
exports.AccessAnalyzerServiceException$ = AccessAnalyzerServiceException$;
|
|
895
2772
|
exports.AccessCheckPolicyType = AccessCheckPolicyType;
|
|
896
2773
|
exports.AccessCheckResourceType = AccessCheckResourceType;
|
|
2774
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2775
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2776
|
+
exports.AccessPreview$ = AccessPreview$;
|
|
2777
|
+
exports.AccessPreviewFinding$ = AccessPreviewFinding$;
|
|
897
2778
|
exports.AccessPreviewStatus = AccessPreviewStatus;
|
|
2779
|
+
exports.AccessPreviewStatusReason$ = AccessPreviewStatusReason$;
|
|
898
2780
|
exports.AccessPreviewStatusReasonCode = AccessPreviewStatusReasonCode;
|
|
2781
|
+
exports.AccessPreviewSummary$ = AccessPreviewSummary$;
|
|
2782
|
+
exports.AclGrantee$ = AclGrantee$;
|
|
899
2783
|
exports.AclPermission = AclPermission;
|
|
2784
|
+
exports.AnalysisRule$ = AnalysisRule$;
|
|
2785
|
+
exports.AnalysisRuleCriteria$ = AnalysisRuleCriteria$;
|
|
2786
|
+
exports.AnalyzedResource$ = AnalyzedResource$;
|
|
2787
|
+
exports.AnalyzedResourceSummary$ = AnalyzedResourceSummary$;
|
|
2788
|
+
exports.AnalyzerConfiguration$ = AnalyzerConfiguration$;
|
|
900
2789
|
exports.AnalyzerStatus = AnalyzerStatus;
|
|
2790
|
+
exports.AnalyzerSummary$ = AnalyzerSummary$;
|
|
2791
|
+
exports.ApplyArchiveRule$ = ApplyArchiveRule$;
|
|
901
2792
|
exports.ApplyArchiveRuleCommand = ApplyArchiveRuleCommand;
|
|
2793
|
+
exports.ApplyArchiveRuleRequest$ = ApplyArchiveRuleRequest$;
|
|
2794
|
+
exports.ArchiveRuleSummary$ = ArchiveRuleSummary$;
|
|
2795
|
+
exports.CancelPolicyGeneration$ = CancelPolicyGeneration$;
|
|
902
2796
|
exports.CancelPolicyGenerationCommand = CancelPolicyGenerationCommand;
|
|
2797
|
+
exports.CancelPolicyGenerationRequest$ = CancelPolicyGenerationRequest$;
|
|
2798
|
+
exports.CancelPolicyGenerationResponse$ = CancelPolicyGenerationResponse$;
|
|
2799
|
+
exports.CheckAccessNotGranted$ = CheckAccessNotGranted$;
|
|
903
2800
|
exports.CheckAccessNotGrantedCommand = CheckAccessNotGrantedCommand;
|
|
2801
|
+
exports.CheckAccessNotGrantedRequest$ = CheckAccessNotGrantedRequest$;
|
|
2802
|
+
exports.CheckAccessNotGrantedResponse$ = CheckAccessNotGrantedResponse$;
|
|
904
2803
|
exports.CheckAccessNotGrantedResult = CheckAccessNotGrantedResult;
|
|
2804
|
+
exports.CheckNoNewAccess$ = CheckNoNewAccess$;
|
|
905
2805
|
exports.CheckNoNewAccessCommand = CheckNoNewAccessCommand;
|
|
2806
|
+
exports.CheckNoNewAccessRequest$ = CheckNoNewAccessRequest$;
|
|
2807
|
+
exports.CheckNoNewAccessResponse$ = CheckNoNewAccessResponse$;
|
|
906
2808
|
exports.CheckNoNewAccessResult = CheckNoNewAccessResult;
|
|
2809
|
+
exports.CheckNoPublicAccess$ = CheckNoPublicAccess$;
|
|
907
2810
|
exports.CheckNoPublicAccessCommand = CheckNoPublicAccessCommand;
|
|
2811
|
+
exports.CheckNoPublicAccessRequest$ = CheckNoPublicAccessRequest$;
|
|
2812
|
+
exports.CheckNoPublicAccessResponse$ = CheckNoPublicAccessResponse$;
|
|
908
2813
|
exports.CheckNoPublicAccessResult = CheckNoPublicAccessResult;
|
|
2814
|
+
exports.CloudTrailDetails$ = CloudTrailDetails$;
|
|
2815
|
+
exports.CloudTrailProperties$ = CloudTrailProperties$;
|
|
2816
|
+
exports.Configuration$ = Configuration$;
|
|
2817
|
+
exports.ConflictException = ConflictException;
|
|
2818
|
+
exports.ConflictException$ = ConflictException$;
|
|
2819
|
+
exports.CreateAccessPreview$ = CreateAccessPreview$;
|
|
909
2820
|
exports.CreateAccessPreviewCommand = CreateAccessPreviewCommand;
|
|
2821
|
+
exports.CreateAccessPreviewRequest$ = CreateAccessPreviewRequest$;
|
|
2822
|
+
exports.CreateAccessPreviewResponse$ = CreateAccessPreviewResponse$;
|
|
2823
|
+
exports.CreateAnalyzer$ = CreateAnalyzer$;
|
|
910
2824
|
exports.CreateAnalyzerCommand = CreateAnalyzerCommand;
|
|
2825
|
+
exports.CreateAnalyzerRequest$ = CreateAnalyzerRequest$;
|
|
2826
|
+
exports.CreateAnalyzerResponse$ = CreateAnalyzerResponse$;
|
|
2827
|
+
exports.CreateArchiveRule$ = CreateArchiveRule$;
|
|
911
2828
|
exports.CreateArchiveRuleCommand = CreateArchiveRuleCommand;
|
|
2829
|
+
exports.CreateArchiveRuleRequest$ = CreateArchiveRuleRequest$;
|
|
2830
|
+
exports.CreateServiceLinkedAnalyzer$ = CreateServiceLinkedAnalyzer$;
|
|
912
2831
|
exports.CreateServiceLinkedAnalyzerCommand = CreateServiceLinkedAnalyzerCommand;
|
|
2832
|
+
exports.CreateServiceLinkedAnalyzerRequest$ = CreateServiceLinkedAnalyzerRequest$;
|
|
2833
|
+
exports.CreateServiceLinkedAnalyzerResponse$ = CreateServiceLinkedAnalyzerResponse$;
|
|
2834
|
+
exports.Criterion$ = Criterion$;
|
|
2835
|
+
exports.DeleteAnalyzer$ = DeleteAnalyzer$;
|
|
913
2836
|
exports.DeleteAnalyzerCommand = DeleteAnalyzerCommand;
|
|
2837
|
+
exports.DeleteAnalyzerRequest$ = DeleteAnalyzerRequest$;
|
|
2838
|
+
exports.DeleteArchiveRule$ = DeleteArchiveRule$;
|
|
914
2839
|
exports.DeleteArchiveRuleCommand = DeleteArchiveRuleCommand;
|
|
2840
|
+
exports.DeleteArchiveRuleRequest$ = DeleteArchiveRuleRequest$;
|
|
2841
|
+
exports.DeleteServiceLinkedAnalyzer$ = DeleteServiceLinkedAnalyzer$;
|
|
915
2842
|
exports.DeleteServiceLinkedAnalyzerCommand = DeleteServiceLinkedAnalyzerCommand;
|
|
2843
|
+
exports.DeleteServiceLinkedAnalyzerRequest$ = DeleteServiceLinkedAnalyzerRequest$;
|
|
2844
|
+
exports.DynamodbStreamConfiguration$ = DynamodbStreamConfiguration$;
|
|
2845
|
+
exports.DynamodbTableConfiguration$ = DynamodbTableConfiguration$;
|
|
2846
|
+
exports.EbsSnapshotConfiguration$ = EbsSnapshotConfiguration$;
|
|
2847
|
+
exports.EcrRepositoryConfiguration$ = EcrRepositoryConfiguration$;
|
|
2848
|
+
exports.EfsFileSystemConfiguration$ = EfsFileSystemConfiguration$;
|
|
2849
|
+
exports.ExternalAccessDetails$ = ExternalAccessDetails$;
|
|
2850
|
+
exports.ExternalAccessFindingsStatistics$ = ExternalAccessFindingsStatistics$;
|
|
2851
|
+
exports.Finding$ = Finding$;
|
|
2852
|
+
exports.FindingAggregationAccountDetails$ = FindingAggregationAccountDetails$;
|
|
916
2853
|
exports.FindingChangeType = FindingChangeType;
|
|
2854
|
+
exports.FindingDetails$ = FindingDetails$;
|
|
2855
|
+
exports.FindingSource$ = FindingSource$;
|
|
2856
|
+
exports.FindingSourceDetail$ = FindingSourceDetail$;
|
|
917
2857
|
exports.FindingSourceType = FindingSourceType;
|
|
918
2858
|
exports.FindingStatus = FindingStatus;
|
|
919
2859
|
exports.FindingStatusUpdate = FindingStatusUpdate;
|
|
2860
|
+
exports.FindingSummary$ = FindingSummary$;
|
|
2861
|
+
exports.FindingSummaryV2$ = FindingSummaryV2$;
|
|
920
2862
|
exports.FindingType = FindingType;
|
|
2863
|
+
exports.FindingsStatistics$ = FindingsStatistics$;
|
|
2864
|
+
exports.GenerateFindingRecommendation$ = GenerateFindingRecommendation$;
|
|
921
2865
|
exports.GenerateFindingRecommendationCommand = GenerateFindingRecommendationCommand;
|
|
2866
|
+
exports.GenerateFindingRecommendationRequest$ = GenerateFindingRecommendationRequest$;
|
|
2867
|
+
exports.GeneratedPolicy$ = GeneratedPolicy$;
|
|
2868
|
+
exports.GeneratedPolicyProperties$ = GeneratedPolicyProperties$;
|
|
2869
|
+
exports.GeneratedPolicyResult$ = GeneratedPolicyResult$;
|
|
2870
|
+
exports.GetAccessPreview$ = GetAccessPreview$;
|
|
922
2871
|
exports.GetAccessPreviewCommand = GetAccessPreviewCommand;
|
|
2872
|
+
exports.GetAccessPreviewRequest$ = GetAccessPreviewRequest$;
|
|
2873
|
+
exports.GetAccessPreviewResponse$ = GetAccessPreviewResponse$;
|
|
2874
|
+
exports.GetAnalyzedResource$ = GetAnalyzedResource$;
|
|
923
2875
|
exports.GetAnalyzedResourceCommand = GetAnalyzedResourceCommand;
|
|
2876
|
+
exports.GetAnalyzedResourceRequest$ = GetAnalyzedResourceRequest$;
|
|
2877
|
+
exports.GetAnalyzedResourceResponse$ = GetAnalyzedResourceResponse$;
|
|
2878
|
+
exports.GetAnalyzer$ = GetAnalyzer$;
|
|
924
2879
|
exports.GetAnalyzerCommand = GetAnalyzerCommand;
|
|
2880
|
+
exports.GetAnalyzerRequest$ = GetAnalyzerRequest$;
|
|
2881
|
+
exports.GetAnalyzerResponse$ = GetAnalyzerResponse$;
|
|
2882
|
+
exports.GetArchiveRule$ = GetArchiveRule$;
|
|
925
2883
|
exports.GetArchiveRuleCommand = GetArchiveRuleCommand;
|
|
2884
|
+
exports.GetArchiveRuleRequest$ = GetArchiveRuleRequest$;
|
|
2885
|
+
exports.GetArchiveRuleResponse$ = GetArchiveRuleResponse$;
|
|
2886
|
+
exports.GetFinding$ = GetFinding$;
|
|
926
2887
|
exports.GetFindingCommand = GetFindingCommand;
|
|
2888
|
+
exports.GetFindingRecommendation$ = GetFindingRecommendation$;
|
|
927
2889
|
exports.GetFindingRecommendationCommand = GetFindingRecommendationCommand;
|
|
2890
|
+
exports.GetFindingRecommendationRequest$ = GetFindingRecommendationRequest$;
|
|
2891
|
+
exports.GetFindingRecommendationResponse$ = GetFindingRecommendationResponse$;
|
|
2892
|
+
exports.GetFindingRequest$ = GetFindingRequest$;
|
|
2893
|
+
exports.GetFindingResponse$ = GetFindingResponse$;
|
|
2894
|
+
exports.GetFindingV2$ = GetFindingV2$;
|
|
928
2895
|
exports.GetFindingV2Command = GetFindingV2Command;
|
|
2896
|
+
exports.GetFindingV2Request$ = GetFindingV2Request$;
|
|
2897
|
+
exports.GetFindingV2Response$ = GetFindingV2Response$;
|
|
2898
|
+
exports.GetFindingsStatistics$ = GetFindingsStatistics$;
|
|
929
2899
|
exports.GetFindingsStatisticsCommand = GetFindingsStatisticsCommand;
|
|
2900
|
+
exports.GetFindingsStatisticsRequest$ = GetFindingsStatisticsRequest$;
|
|
2901
|
+
exports.GetFindingsStatisticsResponse$ = GetFindingsStatisticsResponse$;
|
|
2902
|
+
exports.GetGeneratedPolicy$ = GetGeneratedPolicy$;
|
|
930
2903
|
exports.GetGeneratedPolicyCommand = GetGeneratedPolicyCommand;
|
|
2904
|
+
exports.GetGeneratedPolicyRequest$ = GetGeneratedPolicyRequest$;
|
|
2905
|
+
exports.GetGeneratedPolicyResponse$ = GetGeneratedPolicyResponse$;
|
|
2906
|
+
exports.IamRoleConfiguration$ = IamRoleConfiguration$;
|
|
2907
|
+
exports.InlineArchiveRule$ = InlineArchiveRule$;
|
|
2908
|
+
exports.InternalAccessAnalysisRule$ = InternalAccessAnalysisRule$;
|
|
2909
|
+
exports.InternalAccessAnalysisRuleCriteria$ = InternalAccessAnalysisRuleCriteria$;
|
|
2910
|
+
exports.InternalAccessConfiguration$ = InternalAccessConfiguration$;
|
|
2911
|
+
exports.InternalAccessDetails$ = InternalAccessDetails$;
|
|
2912
|
+
exports.InternalAccessFindingsStatistics$ = InternalAccessFindingsStatistics$;
|
|
2913
|
+
exports.InternalAccessResourceTypeDetails$ = InternalAccessResourceTypeDetails$;
|
|
931
2914
|
exports.InternalAccessType = InternalAccessType;
|
|
2915
|
+
exports.InternalServerException = InternalServerException;
|
|
2916
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2917
|
+
exports.InternetConfiguration$ = InternetConfiguration$;
|
|
2918
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2919
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2920
|
+
exports.JobDetails$ = JobDetails$;
|
|
2921
|
+
exports.JobError$ = JobError$;
|
|
932
2922
|
exports.JobErrorCode = JobErrorCode;
|
|
933
2923
|
exports.JobStatus = JobStatus;
|
|
2924
|
+
exports.KmsGrantConfiguration$ = KmsGrantConfiguration$;
|
|
2925
|
+
exports.KmsGrantConstraints$ = KmsGrantConstraints$;
|
|
934
2926
|
exports.KmsGrantOperation = KmsGrantOperation;
|
|
2927
|
+
exports.KmsKeyConfiguration$ = KmsKeyConfiguration$;
|
|
2928
|
+
exports.ListAccessPreviewFindings$ = ListAccessPreviewFindings$;
|
|
935
2929
|
exports.ListAccessPreviewFindingsCommand = ListAccessPreviewFindingsCommand;
|
|
2930
|
+
exports.ListAccessPreviewFindingsRequest$ = ListAccessPreviewFindingsRequest$;
|
|
2931
|
+
exports.ListAccessPreviewFindingsResponse$ = ListAccessPreviewFindingsResponse$;
|
|
2932
|
+
exports.ListAccessPreviews$ = ListAccessPreviews$;
|
|
936
2933
|
exports.ListAccessPreviewsCommand = ListAccessPreviewsCommand;
|
|
2934
|
+
exports.ListAccessPreviewsRequest$ = ListAccessPreviewsRequest$;
|
|
2935
|
+
exports.ListAccessPreviewsResponse$ = ListAccessPreviewsResponse$;
|
|
2936
|
+
exports.ListAnalyzedResources$ = ListAnalyzedResources$;
|
|
937
2937
|
exports.ListAnalyzedResourcesCommand = ListAnalyzedResourcesCommand;
|
|
2938
|
+
exports.ListAnalyzedResourcesRequest$ = ListAnalyzedResourcesRequest$;
|
|
2939
|
+
exports.ListAnalyzedResourcesResponse$ = ListAnalyzedResourcesResponse$;
|
|
2940
|
+
exports.ListAnalyzers$ = ListAnalyzers$;
|
|
938
2941
|
exports.ListAnalyzersCommand = ListAnalyzersCommand;
|
|
2942
|
+
exports.ListAnalyzersRequest$ = ListAnalyzersRequest$;
|
|
2943
|
+
exports.ListAnalyzersResponse$ = ListAnalyzersResponse$;
|
|
2944
|
+
exports.ListArchiveRules$ = ListArchiveRules$;
|
|
939
2945
|
exports.ListArchiveRulesCommand = ListArchiveRulesCommand;
|
|
2946
|
+
exports.ListArchiveRulesRequest$ = ListArchiveRulesRequest$;
|
|
2947
|
+
exports.ListArchiveRulesResponse$ = ListArchiveRulesResponse$;
|
|
2948
|
+
exports.ListFindings$ = ListFindings$;
|
|
940
2949
|
exports.ListFindingsCommand = ListFindingsCommand;
|
|
2950
|
+
exports.ListFindingsRequest$ = ListFindingsRequest$;
|
|
2951
|
+
exports.ListFindingsResponse$ = ListFindingsResponse$;
|
|
2952
|
+
exports.ListFindingsV2$ = ListFindingsV2$;
|
|
941
2953
|
exports.ListFindingsV2Command = ListFindingsV2Command;
|
|
2954
|
+
exports.ListFindingsV2Request$ = ListFindingsV2Request$;
|
|
2955
|
+
exports.ListFindingsV2Response$ = ListFindingsV2Response$;
|
|
2956
|
+
exports.ListPolicyGenerations$ = ListPolicyGenerations$;
|
|
942
2957
|
exports.ListPolicyGenerationsCommand = ListPolicyGenerationsCommand;
|
|
2958
|
+
exports.ListPolicyGenerationsRequest$ = ListPolicyGenerationsRequest$;
|
|
2959
|
+
exports.ListPolicyGenerationsResponse$ = ListPolicyGenerationsResponse$;
|
|
2960
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
943
2961
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2962
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2963
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
944
2964
|
exports.Locale = Locale;
|
|
2965
|
+
exports.Location$ = Location$;
|
|
2966
|
+
exports.NetworkOriginConfiguration$ = NetworkOriginConfiguration$;
|
|
945
2967
|
exports.OrderBy = OrderBy;
|
|
2968
|
+
exports.PathElement$ = PathElement$;
|
|
2969
|
+
exports.PolicyGeneration$ = PolicyGeneration$;
|
|
2970
|
+
exports.PolicyGenerationDetails$ = PolicyGenerationDetails$;
|
|
946
2971
|
exports.PolicyType = PolicyType;
|
|
2972
|
+
exports.Position$ = Position$;
|
|
947
2973
|
exports.PrincipalType = PrincipalType;
|
|
2974
|
+
exports.RdsDbClusterSnapshotAttributeValue$ = RdsDbClusterSnapshotAttributeValue$;
|
|
2975
|
+
exports.RdsDbClusterSnapshotConfiguration$ = RdsDbClusterSnapshotConfiguration$;
|
|
2976
|
+
exports.RdsDbSnapshotAttributeValue$ = RdsDbSnapshotAttributeValue$;
|
|
2977
|
+
exports.RdsDbSnapshotConfiguration$ = RdsDbSnapshotConfiguration$;
|
|
948
2978
|
exports.ReasonCode = ReasonCode;
|
|
2979
|
+
exports.ReasonSummary$ = ReasonSummary$;
|
|
2980
|
+
exports.RecommendationError$ = RecommendationError$;
|
|
949
2981
|
exports.RecommendationType = RecommendationType;
|
|
950
2982
|
exports.RecommendedRemediationAction = RecommendedRemediationAction;
|
|
2983
|
+
exports.RecommendedStep$ = RecommendedStep$;
|
|
951
2984
|
exports.ResourceControlPolicyRestriction = ResourceControlPolicyRestriction;
|
|
2985
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2986
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
952
2987
|
exports.ResourceType = ResourceType;
|
|
2988
|
+
exports.ResourceTypeDetails$ = ResourceTypeDetails$;
|
|
2989
|
+
exports.S3AccessPointConfiguration$ = S3AccessPointConfiguration$;
|
|
2990
|
+
exports.S3BucketAclGrantConfiguration$ = S3BucketAclGrantConfiguration$;
|
|
2991
|
+
exports.S3BucketConfiguration$ = S3BucketConfiguration$;
|
|
2992
|
+
exports.S3ExpressDirectoryAccessPointConfiguration$ = S3ExpressDirectoryAccessPointConfiguration$;
|
|
2993
|
+
exports.S3ExpressDirectoryBucketConfiguration$ = S3ExpressDirectoryBucketConfiguration$;
|
|
2994
|
+
exports.S3PublicAccessBlockConfiguration$ = S3PublicAccessBlockConfiguration$;
|
|
2995
|
+
exports.SecretsManagerSecretConfiguration$ = SecretsManagerSecretConfiguration$;
|
|
953
2996
|
exports.ServiceControlPolicyRestriction = ServiceControlPolicyRestriction;
|
|
2997
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2998
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2999
|
+
exports.SnsTopicConfiguration$ = SnsTopicConfiguration$;
|
|
3000
|
+
exports.SortCriteria$ = SortCriteria$;
|
|
3001
|
+
exports.Span$ = Span$;
|
|
3002
|
+
exports.SqsQueueConfiguration$ = SqsQueueConfiguration$;
|
|
3003
|
+
exports.StartPolicyGeneration$ = StartPolicyGeneration$;
|
|
954
3004
|
exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
|
|
3005
|
+
exports.StartPolicyGenerationRequest$ = StartPolicyGenerationRequest$;
|
|
3006
|
+
exports.StartPolicyGenerationResponse$ = StartPolicyGenerationResponse$;
|
|
3007
|
+
exports.StartResourceScan$ = StartResourceScan$;
|
|
955
3008
|
exports.StartResourceScanCommand = StartResourceScanCommand;
|
|
3009
|
+
exports.StartResourceScanRequest$ = StartResourceScanRequest$;
|
|
956
3010
|
exports.Status = Status;
|
|
3011
|
+
exports.StatusReason$ = StatusReason$;
|
|
3012
|
+
exports.Substring$ = Substring$;
|
|
3013
|
+
exports.TagResource$ = TagResource$;
|
|
957
3014
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3015
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3016
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3017
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3018
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3019
|
+
exports.Trail$ = Trail$;
|
|
3020
|
+
exports.TrailProperties$ = TrailProperties$;
|
|
958
3021
|
exports.Type = Type;
|
|
3022
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
3023
|
+
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
3024
|
+
exports.UntagResource$ = UntagResource$;
|
|
959
3025
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3026
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3027
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3028
|
+
exports.UnusedAccessConfiguration$ = UnusedAccessConfiguration$;
|
|
3029
|
+
exports.UnusedAccessFindingsStatistics$ = UnusedAccessFindingsStatistics$;
|
|
3030
|
+
exports.UnusedAccessTypeStatistics$ = UnusedAccessTypeStatistics$;
|
|
3031
|
+
exports.UnusedAction$ = UnusedAction$;
|
|
3032
|
+
exports.UnusedIamRoleDetails$ = UnusedIamRoleDetails$;
|
|
3033
|
+
exports.UnusedIamUserAccessKeyDetails$ = UnusedIamUserAccessKeyDetails$;
|
|
3034
|
+
exports.UnusedIamUserPasswordDetails$ = UnusedIamUserPasswordDetails$;
|
|
3035
|
+
exports.UnusedPermissionDetails$ = UnusedPermissionDetails$;
|
|
3036
|
+
exports.UnusedPermissionsRecommendedStep$ = UnusedPermissionsRecommendedStep$;
|
|
3037
|
+
exports.UpdateAnalyzer$ = UpdateAnalyzer$;
|
|
960
3038
|
exports.UpdateAnalyzerCommand = UpdateAnalyzerCommand;
|
|
3039
|
+
exports.UpdateAnalyzerRequest$ = UpdateAnalyzerRequest$;
|
|
3040
|
+
exports.UpdateAnalyzerResponse$ = UpdateAnalyzerResponse$;
|
|
3041
|
+
exports.UpdateArchiveRule$ = UpdateArchiveRule$;
|
|
961
3042
|
exports.UpdateArchiveRuleCommand = UpdateArchiveRuleCommand;
|
|
3043
|
+
exports.UpdateArchiveRuleRequest$ = UpdateArchiveRuleRequest$;
|
|
3044
|
+
exports.UpdateFindings$ = UpdateFindings$;
|
|
962
3045
|
exports.UpdateFindingsCommand = UpdateFindingsCommand;
|
|
3046
|
+
exports.UpdateFindingsRequest$ = UpdateFindingsRequest$;
|
|
3047
|
+
exports.ValidatePolicy$ = ValidatePolicy$;
|
|
963
3048
|
exports.ValidatePolicyCommand = ValidatePolicyCommand;
|
|
3049
|
+
exports.ValidatePolicyFinding$ = ValidatePolicyFinding$;
|
|
964
3050
|
exports.ValidatePolicyFindingType = ValidatePolicyFindingType;
|
|
3051
|
+
exports.ValidatePolicyRequest$ = ValidatePolicyRequest$;
|
|
965
3052
|
exports.ValidatePolicyResourceType = ValidatePolicyResourceType;
|
|
3053
|
+
exports.ValidatePolicyResponse$ = ValidatePolicyResponse$;
|
|
3054
|
+
exports.ValidationException = ValidationException;
|
|
3055
|
+
exports.ValidationException$ = ValidationException$;
|
|
3056
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
966
3057
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3058
|
+
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
3059
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
967
3060
|
exports.paginateGetFindingRecommendation = paginateGetFindingRecommendation;
|
|
968
3061
|
exports.paginateGetFindingV2 = paginateGetFindingV2;
|
|
969
3062
|
exports.paginateListAccessPreviewFindings = paginateListAccessPreviewFindings;
|