@aws-sdk/client-accessanalyzer 3.986.0 → 3.988.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 +56 -1924
- package/dist-cjs/models/AccessAnalyzerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +146 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1573 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +89 -83
- package/dist-types/schemas/schemas_0.d.ts +17 -10
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -10
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var AccessAnalyzerServiceException = require('./models/AccessAnalyzerServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1680 +113,6 @@ class AccessAnalyzerClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AccessAnalyzerServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, AccessAnalyzerServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends AccessAnalyzerServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends AccessAnalyzerServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
resourceId;
|
|
136
|
-
resourceType;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
this.resourceId = opts.resourceId;
|
|
145
|
-
this.resourceType = opts.resourceType;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends AccessAnalyzerServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
retryAfterSeconds;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ResourceNotFoundException extends AccessAnalyzerServiceException {
|
|
164
|
-
name = "ResourceNotFoundException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
resourceId;
|
|
167
|
-
resourceType;
|
|
168
|
-
constructor(opts) {
|
|
169
|
-
super({
|
|
170
|
-
name: "ResourceNotFoundException",
|
|
171
|
-
$fault: "client",
|
|
172
|
-
...opts,
|
|
173
|
-
});
|
|
174
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
175
|
-
this.resourceId = opts.resourceId;
|
|
176
|
-
this.resourceType = opts.resourceType;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
class ServiceQuotaExceededException extends AccessAnalyzerServiceException {
|
|
180
|
-
name = "ServiceQuotaExceededException";
|
|
181
|
-
$fault = "client";
|
|
182
|
-
resourceId;
|
|
183
|
-
resourceType;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ServiceQuotaExceededException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
191
|
-
this.resourceId = opts.resourceId;
|
|
192
|
-
this.resourceType = opts.resourceType;
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
class ThrottlingException extends AccessAnalyzerServiceException {
|
|
196
|
-
name = "ThrottlingException";
|
|
197
|
-
$fault = "client";
|
|
198
|
-
$retryable = {
|
|
199
|
-
throttling: true,
|
|
200
|
-
};
|
|
201
|
-
retryAfterSeconds;
|
|
202
|
-
constructor(opts) {
|
|
203
|
-
super({
|
|
204
|
-
name: "ThrottlingException",
|
|
205
|
-
$fault: "client",
|
|
206
|
-
...opts,
|
|
207
|
-
});
|
|
208
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
209
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
class ValidationException extends AccessAnalyzerServiceException {
|
|
213
|
-
name = "ValidationException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
reason;
|
|
216
|
-
fieldList;
|
|
217
|
-
constructor(opts) {
|
|
218
|
-
super({
|
|
219
|
-
name: "ValidationException",
|
|
220
|
-
$fault: "client",
|
|
221
|
-
...opts,
|
|
222
|
-
});
|
|
223
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
224
|
-
this.reason = opts.reason;
|
|
225
|
-
this.fieldList = opts.fieldList;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class InvalidParameterException extends AccessAnalyzerServiceException {
|
|
229
|
-
name = "InvalidParameterException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "InvalidParameterException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class UnprocessableEntityException extends AccessAnalyzerServiceException {
|
|
241
|
-
name = "UnprocessableEntityException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
$retryable = {};
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "UnprocessableEntityException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
const _A = "Access";
|
|
255
|
-
const _AA = "AccountAggregations";
|
|
256
|
-
const _AAR = "ApplyArchiveRule";
|
|
257
|
-
const _AARR = "ApplyArchiveRuleRequest";
|
|
258
|
-
const _AC = "AnalyzerConfiguration";
|
|
259
|
-
const _ACPD = "AccessCheckPolicyDocument";
|
|
260
|
-
const _ADE = "AccessDeniedException";
|
|
261
|
-
const _AG = "AclGrantee";
|
|
262
|
-
const _AL = "AccessList";
|
|
263
|
-
const _ALn = "AnalyzersList";
|
|
264
|
-
const _AP = "AccessPreview";
|
|
265
|
-
const _APF = "AccessPreviewFinding";
|
|
266
|
-
const _APFL = "AccessPreviewFindingsList";
|
|
267
|
-
const _APL = "AccessPreviewsList";
|
|
268
|
-
const _APS = "AccessPreviewSummary";
|
|
269
|
-
const _APSR = "AccessPreviewStatusReason";
|
|
270
|
-
const _AR = "AnalysisRule";
|
|
271
|
-
const _ARC = "AnalysisRuleCriteria";
|
|
272
|
-
const _ARCL = "AnalysisRuleCriteriaList";
|
|
273
|
-
const _ARL = "AnalyzedResourcesList";
|
|
274
|
-
const _ARLr = "ArchiveRulesList";
|
|
275
|
-
const _ARS = "AnalyzedResourceSummary";
|
|
276
|
-
const _ARSr = "ArchiveRuleSummary";
|
|
277
|
-
const _ARn = "AnalyzedResource";
|
|
278
|
-
const _AS = "AnalyzerSummary";
|
|
279
|
-
const _C = "Criterion";
|
|
280
|
-
const _CA = "CreateAnalyzer";
|
|
281
|
-
const _CANG = "CheckAccessNotGranted";
|
|
282
|
-
const _CANGR = "CheckAccessNotGrantedRequest";
|
|
283
|
-
const _CANGRh = "CheckAccessNotGrantedResponse";
|
|
284
|
-
const _CAP = "CreateAccessPreview";
|
|
285
|
-
const _CAPR = "CreateAccessPreviewRequest";
|
|
286
|
-
const _CAPRr = "CreateAccessPreviewResponse";
|
|
287
|
-
const _CAR = "CreateAnalyzerRequest";
|
|
288
|
-
const _CARR = "CreateArchiveRuleRequest";
|
|
289
|
-
const _CARr = "CreateAnalyzerResponse";
|
|
290
|
-
const _CARre = "CreateArchiveRule";
|
|
291
|
-
const _CE = "ConflictException";
|
|
292
|
-
const _CM = "ConfigurationsMap";
|
|
293
|
-
const _CNNA = "CheckNoNewAccess";
|
|
294
|
-
const _CNNAR = "CheckNoNewAccessRequest";
|
|
295
|
-
const _CNNARh = "CheckNoNewAccessResponse";
|
|
296
|
-
const _CNPA = "CheckNoPublicAccess";
|
|
297
|
-
const _CNPAR = "CheckNoPublicAccessRequest";
|
|
298
|
-
const _CNPARh = "CheckNoPublicAccessResponse";
|
|
299
|
-
const _CPG = "CancelPolicyGeneration";
|
|
300
|
-
const _CPGR = "CancelPolicyGenerationRequest";
|
|
301
|
-
const _CPGRa = "CancelPolicyGenerationResponse";
|
|
302
|
-
const _CTD = "CloudTrailDetails";
|
|
303
|
-
const _CTP = "CloudTrailProperties";
|
|
304
|
-
const _Co = "Configuration";
|
|
305
|
-
const _DA = "DeleteAnalyzer";
|
|
306
|
-
const _DAR = "DeleteAnalyzerRequest";
|
|
307
|
-
const _DARR = "DeleteArchiveRuleRequest";
|
|
308
|
-
const _DARe = "DeleteArchiveRule";
|
|
309
|
-
const _DSC = "DynamodbStreamConfiguration";
|
|
310
|
-
const _DTC = "DynamodbTableConfiguration";
|
|
311
|
-
const _EAD = "ExternalAccessDetails";
|
|
312
|
-
const _EAFS = "ExternalAccessFindingsStatistics";
|
|
313
|
-
const _EFSC = "EfsFileSystemConfiguration";
|
|
314
|
-
const _ERC = "EcrRepositoryConfiguration";
|
|
315
|
-
const _ESC = "EbsSnapshotConfiguration";
|
|
316
|
-
const _F = "Finding";
|
|
317
|
-
const _FAAD = "FindingAggregationAccountDetails";
|
|
318
|
-
const _FCM = "FilterCriteriaMap";
|
|
319
|
-
const _FD = "FindingDetails";
|
|
320
|
-
const _FDL = "FindingDetailsList";
|
|
321
|
-
const _FL = "FindingsList";
|
|
322
|
-
const _FLV = "FindingsListV2";
|
|
323
|
-
const _FS = "FindingSource";
|
|
324
|
-
const _FSD = "FindingSourceDetail";
|
|
325
|
-
const _FSL = "FindingSourceList";
|
|
326
|
-
const _FSLi = "FindingsStatisticsList";
|
|
327
|
-
const _FSV = "FindingSummaryV2";
|
|
328
|
-
const _FSi = "FindingSummary";
|
|
329
|
-
const _FSin = "FindingsStatistics";
|
|
330
|
-
const _GA = "GetAnalyzer";
|
|
331
|
-
const _GAP = "GetAccessPreview";
|
|
332
|
-
const _GAPR = "GetAccessPreviewRequest";
|
|
333
|
-
const _GAPRe = "GetAccessPreviewResponse";
|
|
334
|
-
const _GAR = "GetAnalyzerRequest";
|
|
335
|
-
const _GARR = "GetAnalyzedResourceRequest";
|
|
336
|
-
const _GARRe = "GetAnalyzedResourceResponse";
|
|
337
|
-
const _GARRet = "GetArchiveRuleRequest";
|
|
338
|
-
const _GARRetr = "GetArchiveRuleResponse";
|
|
339
|
-
const _GARe = "GetAnalyzerResponse";
|
|
340
|
-
const _GARet = "GetAnalyzedResource";
|
|
341
|
-
const _GARetr = "GetArchiveRule";
|
|
342
|
-
const _GF = "GetFinding";
|
|
343
|
-
const _GFR = "GetFindingRequest";
|
|
344
|
-
const _GFRR = "GenerateFindingRecommendationRequest";
|
|
345
|
-
const _GFRRe = "GetFindingRecommendationRequest";
|
|
346
|
-
const _GFRRet = "GetFindingRecommendationResponse";
|
|
347
|
-
const _GFRe = "GetFindingResponse";
|
|
348
|
-
const _GFRen = "GenerateFindingRecommendation";
|
|
349
|
-
const _GFRet = "GetFindingRecommendation";
|
|
350
|
-
const _GFS = "GetFindingsStatistics";
|
|
351
|
-
const _GFSR = "GetFindingsStatisticsRequest";
|
|
352
|
-
const _GFSRe = "GetFindingsStatisticsResponse";
|
|
353
|
-
const _GFV = "GetFindingV2";
|
|
354
|
-
const _GFVR = "GetFindingV2Request";
|
|
355
|
-
const _GFVRe = "GetFindingV2Response";
|
|
356
|
-
const _GGP = "GetGeneratedPolicy";
|
|
357
|
-
const _GGPR = "GetGeneratedPolicyRequest";
|
|
358
|
-
const _GGPRe = "GetGeneratedPolicyResponse";
|
|
359
|
-
const _GP = "GeneratedPolicy";
|
|
360
|
-
const _GPL = "GeneratedPolicyList";
|
|
361
|
-
const _GPP = "GeneratedPolicyProperties";
|
|
362
|
-
const _GPR = "GeneratedPolicyResult";
|
|
363
|
-
const _IAAR = "InternalAccessAnalysisRule";
|
|
364
|
-
const _IAARC = "InternalAccessAnalysisRuleCriteria";
|
|
365
|
-
const _IAARCL = "InternalAccessAnalysisRuleCriteriaList";
|
|
366
|
-
const _IAC = "InternalAccessConfiguration";
|
|
367
|
-
const _IAD = "InternalAccessDetails";
|
|
368
|
-
const _IAFS = "InternalAccessFindingsStatistics";
|
|
369
|
-
const _IAR = "InlineArchiveRule";
|
|
370
|
-
const _IARL = "InlineArchiveRulesList";
|
|
371
|
-
const _IARTD = "InternalAccessResourceTypeDetails";
|
|
372
|
-
const _IARTSM = "InternalAccessResourceTypeStatisticsMap";
|
|
373
|
-
const _IC = "InternetConfiguration";
|
|
374
|
-
const _IPE = "InvalidParameterException";
|
|
375
|
-
const _IRC = "IamRoleConfiguration";
|
|
376
|
-
const _ISE = "InternalServerException";
|
|
377
|
-
const _JD = "JobDetails";
|
|
378
|
-
const _JE = "JobError";
|
|
379
|
-
const _KGC = "KmsGrantConfiguration";
|
|
380
|
-
const _KGCL = "KmsGrantConfigurationsList";
|
|
381
|
-
const _KGCm = "KmsGrantConstraints";
|
|
382
|
-
const _KKC = "KmsKeyConfiguration";
|
|
383
|
-
const _L = "Location";
|
|
384
|
-
const _LA = "ListAnalyzers";
|
|
385
|
-
const _LAP = "ListAccessPreviews";
|
|
386
|
-
const _LAPF = "ListAccessPreviewFindings";
|
|
387
|
-
const _LAPFR = "ListAccessPreviewFindingsRequest";
|
|
388
|
-
const _LAPFRi = "ListAccessPreviewFindingsResponse";
|
|
389
|
-
const _LAPR = "ListAccessPreviewsRequest";
|
|
390
|
-
const _LAPRi = "ListAccessPreviewsResponse";
|
|
391
|
-
const _LAR = "ListAnalyzersRequest";
|
|
392
|
-
const _LARR = "ListAnalyzedResourcesRequest";
|
|
393
|
-
const _LARRi = "ListAnalyzedResourcesResponse";
|
|
394
|
-
const _LARRis = "ListArchiveRulesRequest";
|
|
395
|
-
const _LARRist = "ListArchiveRulesResponse";
|
|
396
|
-
const _LARi = "ListAnalyzersResponse";
|
|
397
|
-
const _LARis = "ListAnalyzedResources";
|
|
398
|
-
const _LARist = "ListArchiveRules";
|
|
399
|
-
const _LF = "ListFindings";
|
|
400
|
-
const _LFR = "ListFindingsRequest";
|
|
401
|
-
const _LFRi = "ListFindingsResponse";
|
|
402
|
-
const _LFV = "ListFindingsV2";
|
|
403
|
-
const _LFVR = "ListFindingsV2Request";
|
|
404
|
-
const _LFVRi = "ListFindingsV2Response";
|
|
405
|
-
const _LL = "LocationList";
|
|
406
|
-
const _LPG = "ListPolicyGenerations";
|
|
407
|
-
const _LPGR = "ListPolicyGenerationsRequest";
|
|
408
|
-
const _LPGRi = "ListPolicyGenerationsResponse";
|
|
409
|
-
const _LTFR = "ListTagsForResource";
|
|
410
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
411
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
412
|
-
const _NOC = "NetworkOriginConfiguration";
|
|
413
|
-
const _P = "Position";
|
|
414
|
-
const _PE = "PathElement";
|
|
415
|
-
const _PEL = "PathElementList";
|
|
416
|
-
const _PG = "PolicyGeneration";
|
|
417
|
-
const _PGD = "PolicyGenerationDetails";
|
|
418
|
-
const _PGL = "PolicyGenerationList";
|
|
419
|
-
const _RA = "Retry-After";
|
|
420
|
-
const _RDCSAM = "RdsDbClusterSnapshotAttributesMap";
|
|
421
|
-
const _RDCSAV = "RdsDbClusterSnapshotAttributeValue";
|
|
422
|
-
const _RDCSC = "RdsDbClusterSnapshotConfiguration";
|
|
423
|
-
const _RDSAM = "RdsDbSnapshotAttributesMap";
|
|
424
|
-
const _RDSAV = "RdsDbSnapshotAttributeValue";
|
|
425
|
-
const _RDSC = "RdsDbSnapshotConfiguration";
|
|
426
|
-
const _RE = "RecommendationError";
|
|
427
|
-
const _RNFE = "ResourceNotFoundException";
|
|
428
|
-
const _RS = "ReasonSummary";
|
|
429
|
-
const _RSL = "ReasonSummaryList";
|
|
430
|
-
const _RSLe = "RecommendedStepList";
|
|
431
|
-
const _RSe = "RecommendedStep";
|
|
432
|
-
const _RTD = "ResourceTypeDetails";
|
|
433
|
-
const _RTSM = "ResourceTypeStatisticsMap";
|
|
434
|
-
const _S = "Span";
|
|
435
|
-
const _SAPC = "S3AccessPointConfiguration";
|
|
436
|
-
const _SAPCM = "S3AccessPointConfigurationsMap";
|
|
437
|
-
const _SBAGC = "S3BucketAclGrantConfiguration";
|
|
438
|
-
const _SBAGCL = "S3BucketAclGrantConfigurationsList";
|
|
439
|
-
const _SBC = "S3BucketConfiguration";
|
|
440
|
-
const _SC = "SortCriteria";
|
|
441
|
-
const _SEDAPC = "S3ExpressDirectoryAccessPointConfiguration";
|
|
442
|
-
const _SEDAPCM = "S3ExpressDirectoryAccessPointConfigurationsMap";
|
|
443
|
-
const _SEDBC = "S3ExpressDirectoryBucketConfiguration";
|
|
444
|
-
const _SMSC = "SecretsManagerSecretConfiguration";
|
|
445
|
-
const _SPABC = "S3PublicAccessBlockConfiguration";
|
|
446
|
-
const _SPG = "StartPolicyGeneration";
|
|
447
|
-
const _SPGR = "StartPolicyGenerationRequest";
|
|
448
|
-
const _SPGRt = "StartPolicyGenerationResponse";
|
|
449
|
-
const _SQC = "SqsQueueConfiguration";
|
|
450
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
451
|
-
const _SR = "StatusReason";
|
|
452
|
-
const _SRS = "StartResourceScan";
|
|
453
|
-
const _SRSR = "StartResourceScanRequest";
|
|
454
|
-
const _STC = "SnsTopicConfiguration";
|
|
455
|
-
const _Su = "Substring";
|
|
456
|
-
const _T = "Trail";
|
|
457
|
-
const _TE = "ThrottlingException";
|
|
458
|
-
const _TL = "TagsList";
|
|
459
|
-
const _TLr = "TrailList";
|
|
460
|
-
const _TP = "TrailProperties";
|
|
461
|
-
const _TPL = "TrailPropertiesList";
|
|
462
|
-
const _TR = "TagResource";
|
|
463
|
-
const _TRR = "TagResourceRequest";
|
|
464
|
-
const _TRRa = "TagResourceResponse";
|
|
465
|
-
const _UA = "UnusedAction";
|
|
466
|
-
const _UAC = "UnusedAccessConfiguration";
|
|
467
|
-
const _UAFS = "UnusedAccessFindingsStatistics";
|
|
468
|
-
const _UAL = "UnusedActionList";
|
|
469
|
-
const _UAR = "UpdateAnalyzerRequest";
|
|
470
|
-
const _UARR = "UpdateArchiveRuleRequest";
|
|
471
|
-
const _UARp = "UpdateAnalyzerResponse";
|
|
472
|
-
const _UARpd = "UpdateArchiveRule";
|
|
473
|
-
const _UATS = "UnusedAccessTypeStatistics";
|
|
474
|
-
const _UATSL = "UnusedAccessTypeStatisticsList";
|
|
475
|
-
const _UAp = "UpdateAnalyzer";
|
|
476
|
-
const _UEE = "UnprocessableEntityException";
|
|
477
|
-
const _UF = "UpdateFindings";
|
|
478
|
-
const _UFR = "UpdateFindingsRequest";
|
|
479
|
-
const _UIRD = "UnusedIamRoleDetails";
|
|
480
|
-
const _UIUAKD = "UnusedIamUserAccessKeyDetails";
|
|
481
|
-
const _UIUPD = "UnusedIamUserPasswordDetails";
|
|
482
|
-
const _UPD = "UnusedPermissionDetails";
|
|
483
|
-
const _UPRS = "UnusedPermissionsRecommendedStep";
|
|
484
|
-
const _UR = "UntagResource";
|
|
485
|
-
const _URR = "UntagResourceRequest";
|
|
486
|
-
const _URRn = "UntagResourceResponse";
|
|
487
|
-
const _VC = "VpcConfiguration";
|
|
488
|
-
const _VE = "ValidationException";
|
|
489
|
-
const _VEF = "ValidationExceptionField";
|
|
490
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
491
|
-
const _VP = "ValidatePolicy";
|
|
492
|
-
const _VPF = "ValidatePolicyFinding";
|
|
493
|
-
const _VPFL = "ValidatePolicyFindingList";
|
|
494
|
-
const _VPR = "ValidatePolicyRequest";
|
|
495
|
-
const _VPRa = "ValidatePolicyResponse";
|
|
496
|
-
const _a = "actions";
|
|
497
|
-
const _aA = "analyzerArn";
|
|
498
|
-
const _aAn = "analyzedAt";
|
|
499
|
-
const _aI = "accountIds";
|
|
500
|
-
const _aKI = "accessKeyId";
|
|
501
|
-
const _aN = "analyzerName";
|
|
502
|
-
const _aNt = "attributeName";
|
|
503
|
-
const _aP = "accessPreview";
|
|
504
|
-
const _aPA = "accessPointArn";
|
|
505
|
-
const _aPAc = "accessPointAccount";
|
|
506
|
-
const _aPI = "accessPreviewId";
|
|
507
|
-
const _aPP = "accessPointPolicy";
|
|
508
|
-
const _aPc = "accessPreviews";
|
|
509
|
-
const _aPcc = "accessPoints";
|
|
510
|
-
const _aR = "accessRole";
|
|
511
|
-
const _aRl = "allRegions";
|
|
512
|
-
const _aRn = "analysisRule";
|
|
513
|
-
const _aRna = "analyzedResources";
|
|
514
|
-
const _aRr = "archiveRules";
|
|
515
|
-
const _aRrc = "archiveRule";
|
|
516
|
-
const _aT = "accessType";
|
|
517
|
-
const _ac = "action";
|
|
518
|
-
const _acc = "access";
|
|
519
|
-
const _acco = "account";
|
|
520
|
-
const _an = "analyzer";
|
|
521
|
-
const _ana = "analyzers";
|
|
522
|
-
const _ar = "arn";
|
|
523
|
-
const _at = "attributes";
|
|
524
|
-
const _bAG = "bucketAclGrants";
|
|
525
|
-
const _bP = "bucketPolicy";
|
|
526
|
-
const _bPAB = "bucketPublicAccessBlock";
|
|
527
|
-
const _c = "client";
|
|
528
|
-
const _cA = "createdAt";
|
|
529
|
-
const _cAo = "completedAt";
|
|
530
|
-
const _cO = "completedOn";
|
|
531
|
-
const _cT = "changeType";
|
|
532
|
-
const _cTA = "cloudTrailArn";
|
|
533
|
-
const _cTD = "cloudTrailDetails";
|
|
534
|
-
const _cTP = "cloudTrailProperties";
|
|
535
|
-
const _cTl = "clientToken";
|
|
536
|
-
const _co = "configurations";
|
|
537
|
-
const _cod = "code";
|
|
538
|
-
const _col = "column";
|
|
539
|
-
const _con = "condition";
|
|
540
|
-
const _conf = "configuration";
|
|
541
|
-
const _cons = "constraints";
|
|
542
|
-
const _cont = "contains";
|
|
543
|
-
const _d = "details";
|
|
544
|
-
const _dS = "dynamodbStream";
|
|
545
|
-
const _dT = "dynamodbTable";
|
|
546
|
-
const _de = "detail";
|
|
547
|
-
const _des = "description";
|
|
548
|
-
const _e = "error";
|
|
549
|
-
const _eAD = "externalAccessDetails";
|
|
550
|
-
const _eAFS = "externalAccessFindingsStatistics";
|
|
551
|
-
const _eCE = "encryptionContextEquals";
|
|
552
|
-
const _eCS = "encryptionContextSubset";
|
|
553
|
-
const _eFI = "existingFindingId";
|
|
554
|
-
const _eFS = "existingFindingStatus";
|
|
555
|
-
const _eFSf = "efsFileSystem";
|
|
556
|
-
const _ePD = "existingPolicyDocument";
|
|
557
|
-
const _ePI = "existingPolicyId";
|
|
558
|
-
const _eR = "ecrRepository";
|
|
559
|
-
const _eS = "ebsSnapshot";
|
|
560
|
-
const _eT = "endTime";
|
|
561
|
-
const _en = "end";
|
|
562
|
-
const _eq = "eq";
|
|
563
|
-
const _ex = "exclusions";
|
|
564
|
-
const _exi = "exists";
|
|
565
|
-
const _f = "filter";
|
|
566
|
-
const _fD = "findingDetails";
|
|
567
|
-
const _fL = "fieldList";
|
|
568
|
-
const _fS = "findingsStatistics";
|
|
569
|
-
const _fSP = "fileSystemPolicy";
|
|
570
|
-
const _fT = "findingType";
|
|
571
|
-
const _fi = "finding";
|
|
572
|
-
const _fin = "findings";
|
|
573
|
-
const _g = "groups";
|
|
574
|
-
const _gP = "generatedPolicies";
|
|
575
|
-
const _gPR = "generatedPolicyResult";
|
|
576
|
-
const _gPr = "granteePrincipal";
|
|
577
|
-
const _gr = "grants";
|
|
578
|
-
const _gra = "grantee";
|
|
579
|
-
const _h = "http";
|
|
580
|
-
const _hE = "httpError";
|
|
581
|
-
const _hH = "httpHeader";
|
|
582
|
-
const _hQ = "httpQuery";
|
|
583
|
-
const _i = "id";
|
|
584
|
-
const _iA = "issuingAccount";
|
|
585
|
-
const _iAD = "internalAccessDetails";
|
|
586
|
-
const _iAFS = "internalAccessFindingsStatistics";
|
|
587
|
-
const _iAn = "internalAccess";
|
|
588
|
-
const _iC = "isComplete";
|
|
589
|
-
const _iCn = "internetConfiguration";
|
|
590
|
-
const _iCs = "issueCode";
|
|
591
|
-
const _iP = "isPublic";
|
|
592
|
-
const _iPA = "ignorePublicAcls";
|
|
593
|
-
const _iR = "iamRole";
|
|
594
|
-
const _iRP = "includeResourcePlaceholders";
|
|
595
|
-
const _iSLT = "includeServiceLevelTemplate";
|
|
596
|
-
const _iT = "idempotencyToken";
|
|
597
|
-
const _id = "ids";
|
|
598
|
-
const _in = "inclusions";
|
|
599
|
-
const _ind = "index";
|
|
600
|
-
const _jD = "jobDetails";
|
|
601
|
-
const _jE = "jobError";
|
|
602
|
-
const _jI = "jobId";
|
|
603
|
-
const _k = "key";
|
|
604
|
-
const _kK = "kmsKey";
|
|
605
|
-
const _kKI = "kmsKeyId";
|
|
606
|
-
const _kP = "keyPolicies";
|
|
607
|
-
const _l = "line";
|
|
608
|
-
const _lA = "lastAccessed";
|
|
609
|
-
const _lML = "learnMoreLink";
|
|
610
|
-
const _lRA = "lastResourceAnalyzed";
|
|
611
|
-
const _lRAA = "lastResourceAnalyzedAt";
|
|
612
|
-
const _lUA = "lastUpdatedAt";
|
|
613
|
-
const _le = "length";
|
|
614
|
-
const _lo = "locations";
|
|
615
|
-
const _loc = "locale";
|
|
616
|
-
const _m = "message";
|
|
617
|
-
const _mR = "maxResults";
|
|
618
|
-
const _n = "name";
|
|
619
|
-
const _nO = "networkOrigin";
|
|
620
|
-
const _nOAF = "numberOfActiveFindings";
|
|
621
|
-
const _nPD = "newPolicyDocument";
|
|
622
|
-
const _nT = "nextToken";
|
|
623
|
-
const _ne = "neq";
|
|
624
|
-
const _o = "operations";
|
|
625
|
-
const _oB = "orderBy";
|
|
626
|
-
const _of = "offset";
|
|
627
|
-
const _p = "principal";
|
|
628
|
-
const _pA = "principalArn";
|
|
629
|
-
const _pAB = "publicAccessBlock";
|
|
630
|
-
const _pD = "policyDocument";
|
|
631
|
-
const _pG = "policyGenerations";
|
|
632
|
-
const _pGD = "policyGenerationDetails";
|
|
633
|
-
const _pOA = "principalOwnerAccount";
|
|
634
|
-
const _pT = "policyType";
|
|
635
|
-
const _pTr = "principalType";
|
|
636
|
-
const _pUA = "policyUpdatedAt";
|
|
637
|
-
const _pa = "path";
|
|
638
|
-
const _pe = "permission";
|
|
639
|
-
const _po = "policy";
|
|
640
|
-
const _pr = "properties";
|
|
641
|
-
const _qP = "queuePolicy";
|
|
642
|
-
const _r = "resources";
|
|
643
|
-
const _rA = "resourceArn";
|
|
644
|
-
const _rAS = "retryAfterSeconds";
|
|
645
|
-
const _rAe = "resourceArns";
|
|
646
|
-
const _rAec = "recommendedAction";
|
|
647
|
-
const _rCPR = "resourceControlPolicyRestriction";
|
|
648
|
-
const _rDCS = "rdsDbClusterSnapshot";
|
|
649
|
-
const _rDS = "rdsDbSnapshot";
|
|
650
|
-
const _rI = "resourceId";
|
|
651
|
-
const _rN = "ruleName";
|
|
652
|
-
const _rOA = "resourceOwnerAccount";
|
|
653
|
-
const _rP = "repositoryPolicy";
|
|
654
|
-
const _rPB = "restrictPublicBuckets";
|
|
655
|
-
const _rPe = "retiringPrincipal";
|
|
656
|
-
const _rPec = "recommendedPolicy";
|
|
657
|
-
const _rS = "recommendedSteps";
|
|
658
|
-
const _rT = "resourceType";
|
|
659
|
-
const _rTS = "resourceTypeStatistics";
|
|
660
|
-
const _rTe = "resourceTags";
|
|
661
|
-
const _rTec = "recommendationType";
|
|
662
|
-
const _rTes = "resourceTypes";
|
|
663
|
-
const _re = "resource";
|
|
664
|
-
const _rea = "reasons";
|
|
665
|
-
const _reas = "reason";
|
|
666
|
-
const _reg = "regions";
|
|
667
|
-
const _res = "result";
|
|
668
|
-
const _s = "status";
|
|
669
|
-
const _sA = "startedAt";
|
|
670
|
-
const _sB = "s3Bucket";
|
|
671
|
-
const _sCPR = "serviceControlPolicyRestriction";
|
|
672
|
-
const _sEDB = "s3ExpressDirectoryBucket";
|
|
673
|
-
const _sI = "statementIndex";
|
|
674
|
-
const _sIt = "statementId";
|
|
675
|
-
const _sMS = "secretsManagerSecret";
|
|
676
|
-
const _sN = "serviceNamespace";
|
|
677
|
-
const _sO = "startedOn";
|
|
678
|
-
const _sP = "streamPolicy";
|
|
679
|
-
const _sPe = "secretPolicy";
|
|
680
|
-
const _sQ = "sqsQueue";
|
|
681
|
-
const _sR = "statusReason";
|
|
682
|
-
const _sT = "startTime";
|
|
683
|
-
const _sTn = "snsTopic";
|
|
684
|
-
const _sV = "sharedVia";
|
|
685
|
-
const _se = "server";
|
|
686
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.accessanalyzer";
|
|
687
|
-
const _so = "sources";
|
|
688
|
-
const _sor = "sort";
|
|
689
|
-
const _sp = "span";
|
|
690
|
-
const _st = "start";
|
|
691
|
-
const _su = "substring";
|
|
692
|
-
const _t = "type";
|
|
693
|
-
const _tA = "topAccounts";
|
|
694
|
-
const _tACA = "totalActiveCrossAccount";
|
|
695
|
-
const _tAE = "totalActiveErrors";
|
|
696
|
-
const _tAF = "totalActiveFindings";
|
|
697
|
-
const _tAFo = "totalArchivedFindings";
|
|
698
|
-
const _tAP = "totalActivePublic";
|
|
699
|
-
const _tK = "tagKeys";
|
|
700
|
-
const _tP = "trailProperties";
|
|
701
|
-
const _tPa = "tablePolicy";
|
|
702
|
-
const _tPo = "topicPolicy";
|
|
703
|
-
const _tPr = "trustPolicy";
|
|
704
|
-
const _tRF = "totalResolvedFindings";
|
|
705
|
-
const _ta = "tags";
|
|
706
|
-
const _to = "total";
|
|
707
|
-
const _tr = "trails";
|
|
708
|
-
const _u = "uri";
|
|
709
|
-
const _uA = "updatedAt";
|
|
710
|
-
const _uAA = "unusedAccessAge";
|
|
711
|
-
const _uAFS = "unusedAccessFindingsStatistics";
|
|
712
|
-
const _uAT = "unusedAccessType";
|
|
713
|
-
const _uATS = "unusedAccessTypeStatistics";
|
|
714
|
-
const _uAn = "unusedAccess";
|
|
715
|
-
const _uI = "userIds";
|
|
716
|
-
const _uIRD = "unusedIamRoleDetails";
|
|
717
|
-
const _uIUAKD = "unusedIamUserAccessKeyDetails";
|
|
718
|
-
const _uIUPD = "unusedIamUserPasswordDetails";
|
|
719
|
-
const _uPD = "unusedPermissionDetails";
|
|
720
|
-
const _uPRS = "unusedPermissionsRecommendedStep";
|
|
721
|
-
const _v = "value";
|
|
722
|
-
const _vC = "vpcConfiguration";
|
|
723
|
-
const _vI = "vpcId";
|
|
724
|
-
const _vPRT = "validatePolicyResourceType";
|
|
725
|
-
const n0 = "com.amazonaws.accessanalyzer";
|
|
726
|
-
var AccessCheckPolicyDocument = [0, n0, _ACPD, 8, 0];
|
|
727
|
-
var Access$ = [3, n0, _A,
|
|
728
|
-
0,
|
|
729
|
-
[_a, _r],
|
|
730
|
-
[64 | 0, 64 | 0]
|
|
731
|
-
];
|
|
732
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
733
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
734
|
-
[_m],
|
|
735
|
-
[0], 1
|
|
736
|
-
];
|
|
737
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
738
|
-
var AccessPreview$ = [3, n0, _AP,
|
|
739
|
-
0,
|
|
740
|
-
[_i, _aA, _co, _cA, _s, _sR],
|
|
741
|
-
[0, 0, () => ConfigurationsMap, 5, 0, () => AccessPreviewStatusReason$], 5
|
|
742
|
-
];
|
|
743
|
-
var AccessPreviewFinding$ = [3, n0, _APF,
|
|
744
|
-
0,
|
|
745
|
-
[_i, _rT, _cA, _cT, _s, _rOA, _eFI, _eFS, _p, _ac, _con, _re, _iP, _e, _so, _rCPR],
|
|
746
|
-
[0, 0, 5, 0, 0, 0, 0, 0, 128 | 0, 64 | 0, 128 | 0, 0, 2, 0, () => FindingSourceList, 0], 6
|
|
747
|
-
];
|
|
748
|
-
var AccessPreviewStatusReason$ = [3, n0, _APSR,
|
|
749
|
-
0,
|
|
750
|
-
[_cod],
|
|
751
|
-
[0], 1
|
|
752
|
-
];
|
|
753
|
-
var AccessPreviewSummary$ = [3, n0, _APS,
|
|
754
|
-
0,
|
|
755
|
-
[_i, _aA, _cA, _s, _sR],
|
|
756
|
-
[0, 0, 5, 0, () => AccessPreviewStatusReason$], 4
|
|
757
|
-
];
|
|
758
|
-
var AnalysisRule$ = [3, n0, _AR,
|
|
759
|
-
0,
|
|
760
|
-
[_ex],
|
|
761
|
-
[() => AnalysisRuleCriteriaList]
|
|
762
|
-
];
|
|
763
|
-
var AnalysisRuleCriteria$ = [3, n0, _ARC,
|
|
764
|
-
0,
|
|
765
|
-
[_aI, _rTe],
|
|
766
|
-
[64 | 0, [1, n0, _TL, 0, 128 | 0]]
|
|
767
|
-
];
|
|
768
|
-
var AnalyzedResource$ = [3, n0, _ARn,
|
|
769
|
-
0,
|
|
770
|
-
[_rA, _rT, _cA, _aAn, _uA, _iP, _rOA, _a, _sV, _s, _e],
|
|
771
|
-
[0, 0, 5, 5, 5, 2, 0, 64 | 0, 64 | 0, 0, 0], 7
|
|
772
|
-
];
|
|
773
|
-
var AnalyzedResourceSummary$ = [3, n0, _ARS,
|
|
774
|
-
0,
|
|
775
|
-
[_rA, _rOA, _rT],
|
|
776
|
-
[0, 0, 0], 3
|
|
777
|
-
];
|
|
778
|
-
var AnalyzerSummary$ = [3, n0, _AS,
|
|
779
|
-
0,
|
|
780
|
-
[_ar, _n, _t, _cA, _s, _lRA, _lRAA, _ta, _sR, _conf],
|
|
781
|
-
[0, 0, 0, 5, 0, 0, 5, 128 | 0, () => StatusReason$, () => AnalyzerConfiguration$], 5
|
|
782
|
-
];
|
|
783
|
-
var ApplyArchiveRuleRequest$ = [3, n0, _AARR,
|
|
784
|
-
0,
|
|
785
|
-
[_aA, _rN, _cTl],
|
|
786
|
-
[0, 0, [0, 4]], 2
|
|
787
|
-
];
|
|
788
|
-
var ArchiveRuleSummary$ = [3, n0, _ARSr,
|
|
789
|
-
0,
|
|
790
|
-
[_rN, _f, _cA, _uA],
|
|
791
|
-
[0, () => FilterCriteriaMap, 5, 5], 4
|
|
792
|
-
];
|
|
793
|
-
var CancelPolicyGenerationRequest$ = [3, n0, _CPGR,
|
|
794
|
-
0,
|
|
795
|
-
[_jI],
|
|
796
|
-
[[0, 1]], 1
|
|
797
|
-
];
|
|
798
|
-
var CancelPolicyGenerationResponse$ = [3, n0, _CPGRa,
|
|
799
|
-
0,
|
|
800
|
-
[],
|
|
801
|
-
[]
|
|
802
|
-
];
|
|
803
|
-
var CheckAccessNotGrantedRequest$ = [3, n0, _CANGR,
|
|
804
|
-
0,
|
|
805
|
-
[_pD, _acc, _pT],
|
|
806
|
-
[[() => AccessCheckPolicyDocument, 0], () => AccessList, 0], 3
|
|
807
|
-
];
|
|
808
|
-
var CheckAccessNotGrantedResponse$ = [3, n0, _CANGRh,
|
|
809
|
-
0,
|
|
810
|
-
[_res, _m, _rea],
|
|
811
|
-
[0, 0, () => ReasonSummaryList]
|
|
812
|
-
];
|
|
813
|
-
var CheckNoNewAccessRequest$ = [3, n0, _CNNAR,
|
|
814
|
-
0,
|
|
815
|
-
[_nPD, _ePD, _pT],
|
|
816
|
-
[[() => AccessCheckPolicyDocument, 0], [() => AccessCheckPolicyDocument, 0], 0], 3
|
|
817
|
-
];
|
|
818
|
-
var CheckNoNewAccessResponse$ = [3, n0, _CNNARh,
|
|
819
|
-
0,
|
|
820
|
-
[_res, _m, _rea],
|
|
821
|
-
[0, 0, () => ReasonSummaryList]
|
|
822
|
-
];
|
|
823
|
-
var CheckNoPublicAccessRequest$ = [3, n0, _CNPAR,
|
|
824
|
-
0,
|
|
825
|
-
[_pD, _rT],
|
|
826
|
-
[[() => AccessCheckPolicyDocument, 0], 0], 2
|
|
827
|
-
];
|
|
828
|
-
var CheckNoPublicAccessResponse$ = [3, n0, _CNPARh,
|
|
829
|
-
0,
|
|
830
|
-
[_res, _m, _rea],
|
|
831
|
-
[0, 0, () => ReasonSummaryList]
|
|
832
|
-
];
|
|
833
|
-
var CloudTrailDetails$ = [3, n0, _CTD,
|
|
834
|
-
0,
|
|
835
|
-
[_tr, _aR, _sT, _eT],
|
|
836
|
-
[() => TrailList, 0, 5, 5], 3
|
|
837
|
-
];
|
|
838
|
-
var CloudTrailProperties$ = [3, n0, _CTP,
|
|
839
|
-
0,
|
|
840
|
-
[_tP, _sT, _eT],
|
|
841
|
-
[() => TrailPropertiesList, 5, 5], 3
|
|
842
|
-
];
|
|
843
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
844
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
845
|
-
[_m, _rI, _rT],
|
|
846
|
-
[0, 0, 0], 3
|
|
847
|
-
];
|
|
848
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
849
|
-
var CreateAccessPreviewRequest$ = [3, n0, _CAPR,
|
|
850
|
-
0,
|
|
851
|
-
[_aA, _co, _cTl],
|
|
852
|
-
[0, () => ConfigurationsMap, [0, 4]], 2
|
|
853
|
-
];
|
|
854
|
-
var CreateAccessPreviewResponse$ = [3, n0, _CAPRr,
|
|
855
|
-
0,
|
|
856
|
-
[_i],
|
|
857
|
-
[0], 1
|
|
858
|
-
];
|
|
859
|
-
var CreateAnalyzerRequest$ = [3, n0, _CAR,
|
|
860
|
-
0,
|
|
861
|
-
[_aN, _t, _aRr, _ta, _cTl, _conf],
|
|
862
|
-
[0, 0, () => InlineArchiveRulesList, 128 | 0, [0, 4], () => AnalyzerConfiguration$], 2
|
|
863
|
-
];
|
|
864
|
-
var CreateAnalyzerResponse$ = [3, n0, _CARr,
|
|
865
|
-
0,
|
|
866
|
-
[_ar],
|
|
867
|
-
[0]
|
|
868
|
-
];
|
|
869
|
-
var CreateArchiveRuleRequest$ = [3, n0, _CARR,
|
|
870
|
-
0,
|
|
871
|
-
[_aN, _rN, _f, _cTl],
|
|
872
|
-
[[0, 1], 0, () => FilterCriteriaMap, [0, 4]], 3
|
|
873
|
-
];
|
|
874
|
-
var Criterion$ = [3, n0, _C,
|
|
875
|
-
0,
|
|
876
|
-
[_eq, _ne, _cont, _exi],
|
|
877
|
-
[64 | 0, 64 | 0, 64 | 0, 2]
|
|
878
|
-
];
|
|
879
|
-
var DeleteAnalyzerRequest$ = [3, n0, _DAR,
|
|
880
|
-
0,
|
|
881
|
-
[_aN, _cTl],
|
|
882
|
-
[[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
|
|
883
|
-
];
|
|
884
|
-
var DeleteArchiveRuleRequest$ = [3, n0, _DARR,
|
|
885
|
-
0,
|
|
886
|
-
[_aN, _rN, _cTl],
|
|
887
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
888
|
-
];
|
|
889
|
-
var DynamodbStreamConfiguration$ = [3, n0, _DSC,
|
|
890
|
-
0,
|
|
891
|
-
[_sP],
|
|
892
|
-
[0]
|
|
893
|
-
];
|
|
894
|
-
var DynamodbTableConfiguration$ = [3, n0, _DTC,
|
|
895
|
-
0,
|
|
896
|
-
[_tPa],
|
|
897
|
-
[0]
|
|
898
|
-
];
|
|
899
|
-
var EbsSnapshotConfiguration$ = [3, n0, _ESC,
|
|
900
|
-
0,
|
|
901
|
-
[_uI, _g, _kKI],
|
|
902
|
-
[64 | 0, 64 | 0, 0]
|
|
903
|
-
];
|
|
904
|
-
var EcrRepositoryConfiguration$ = [3, n0, _ERC,
|
|
905
|
-
0,
|
|
906
|
-
[_rP],
|
|
907
|
-
[0]
|
|
908
|
-
];
|
|
909
|
-
var EfsFileSystemConfiguration$ = [3, n0, _EFSC,
|
|
910
|
-
0,
|
|
911
|
-
[_fSP],
|
|
912
|
-
[0]
|
|
913
|
-
];
|
|
914
|
-
var ExternalAccessDetails$ = [3, n0, _EAD,
|
|
915
|
-
0,
|
|
916
|
-
[_con, _ac, _iP, _p, _so, _rCPR],
|
|
917
|
-
[128 | 0, 64 | 0, 2, 128 | 0, () => FindingSourceList, 0], 1
|
|
918
|
-
];
|
|
919
|
-
var ExternalAccessFindingsStatistics$ = [3, n0, _EAFS,
|
|
920
|
-
0,
|
|
921
|
-
[_rTS, _tAF, _tAFo, _tRF],
|
|
922
|
-
[() => ResourceTypeStatisticsMap, 1, 1, 1]
|
|
923
|
-
];
|
|
924
|
-
var Finding$ = [3, n0, _F,
|
|
925
|
-
0,
|
|
926
|
-
[_i, _rT, _con, _cA, _aAn, _uA, _s, _rOA, _p, _ac, _re, _iP, _e, _so, _rCPR],
|
|
927
|
-
[0, 0, 128 | 0, 5, 5, 5, 0, 0, 128 | 0, 64 | 0, 0, 2, 0, () => FindingSourceList, 0], 8
|
|
928
|
-
];
|
|
929
|
-
var FindingAggregationAccountDetails$ = [3, n0, _FAAD,
|
|
930
|
-
0,
|
|
931
|
-
[_acco, _nOAF, _d],
|
|
932
|
-
[0, 1, 128 | 1]
|
|
933
|
-
];
|
|
934
|
-
var FindingSource$ = [3, n0, _FS,
|
|
935
|
-
0,
|
|
936
|
-
[_t, _de],
|
|
937
|
-
[0, () => FindingSourceDetail$], 1
|
|
938
|
-
];
|
|
939
|
-
var FindingSourceDetail$ = [3, n0, _FSD,
|
|
940
|
-
0,
|
|
941
|
-
[_aPA, _aPAc],
|
|
942
|
-
[0, 0]
|
|
943
|
-
];
|
|
944
|
-
var FindingSummary$ = [3, n0, _FSi,
|
|
945
|
-
0,
|
|
946
|
-
[_i, _rT, _con, _cA, _aAn, _uA, _s, _rOA, _p, _ac, _re, _iP, _e, _so, _rCPR],
|
|
947
|
-
[0, 0, 128 | 0, 5, 5, 5, 0, 0, 128 | 0, 64 | 0, 0, 2, 0, () => FindingSourceList, 0], 8
|
|
948
|
-
];
|
|
949
|
-
var FindingSummaryV2$ = [3, n0, _FSV,
|
|
950
|
-
0,
|
|
951
|
-
[_aAn, _cA, _i, _rT, _rOA, _s, _uA, _e, _re, _fT],
|
|
952
|
-
[5, 5, 0, 0, 0, 0, 5, 0, 0, 0], 7
|
|
953
|
-
];
|
|
954
|
-
var GeneratedPolicy$ = [3, n0, _GP,
|
|
955
|
-
0,
|
|
956
|
-
[_po],
|
|
957
|
-
[0], 1
|
|
958
|
-
];
|
|
959
|
-
var GeneratedPolicyProperties$ = [3, n0, _GPP,
|
|
960
|
-
0,
|
|
961
|
-
[_pA, _iC, _cTP],
|
|
962
|
-
[0, 2, () => CloudTrailProperties$], 1
|
|
963
|
-
];
|
|
964
|
-
var GeneratedPolicyResult$ = [3, n0, _GPR,
|
|
965
|
-
0,
|
|
966
|
-
[_pr, _gP],
|
|
967
|
-
[() => GeneratedPolicyProperties$, () => GeneratedPolicyList], 1
|
|
968
|
-
];
|
|
969
|
-
var GenerateFindingRecommendationRequest$ = [3, n0, _GFRR,
|
|
970
|
-
0,
|
|
971
|
-
[_aA, _i],
|
|
972
|
-
[[0, { [_hQ]: _aA }], [0, 1]], 2
|
|
973
|
-
];
|
|
974
|
-
var GetAccessPreviewRequest$ = [3, n0, _GAPR,
|
|
975
|
-
0,
|
|
976
|
-
[_aPI, _aA],
|
|
977
|
-
[[0, 1], [0, { [_hQ]: _aA }]], 2
|
|
978
|
-
];
|
|
979
|
-
var GetAccessPreviewResponse$ = [3, n0, _GAPRe,
|
|
980
|
-
0,
|
|
981
|
-
[_aP],
|
|
982
|
-
[() => AccessPreview$], 1
|
|
983
|
-
];
|
|
984
|
-
var GetAnalyzedResourceRequest$ = [3, n0, _GARR,
|
|
985
|
-
0,
|
|
986
|
-
[_aA, _rA],
|
|
987
|
-
[[0, { [_hQ]: _aA }], [0, { [_hQ]: _rA }]], 2
|
|
988
|
-
];
|
|
989
|
-
var GetAnalyzedResourceResponse$ = [3, n0, _GARRe,
|
|
990
|
-
0,
|
|
991
|
-
[_re],
|
|
992
|
-
[() => AnalyzedResource$]
|
|
993
|
-
];
|
|
994
|
-
var GetAnalyzerRequest$ = [3, n0, _GAR,
|
|
995
|
-
0,
|
|
996
|
-
[_aN],
|
|
997
|
-
[[0, 1]], 1
|
|
998
|
-
];
|
|
999
|
-
var GetAnalyzerResponse$ = [3, n0, _GARe,
|
|
1000
|
-
0,
|
|
1001
|
-
[_an],
|
|
1002
|
-
[() => AnalyzerSummary$], 1
|
|
1003
|
-
];
|
|
1004
|
-
var GetArchiveRuleRequest$ = [3, n0, _GARRet,
|
|
1005
|
-
0,
|
|
1006
|
-
[_aN, _rN],
|
|
1007
|
-
[[0, 1], [0, 1]], 2
|
|
1008
|
-
];
|
|
1009
|
-
var GetArchiveRuleResponse$ = [3, n0, _GARRetr,
|
|
1010
|
-
0,
|
|
1011
|
-
[_aRrc],
|
|
1012
|
-
[() => ArchiveRuleSummary$], 1
|
|
1013
|
-
];
|
|
1014
|
-
var GetFindingRecommendationRequest$ = [3, n0, _GFRRe,
|
|
1015
|
-
0,
|
|
1016
|
-
[_aA, _i, _mR, _nT],
|
|
1017
|
-
[[0, { [_hQ]: _aA }], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1018
|
-
];
|
|
1019
|
-
var GetFindingRecommendationResponse$ = [3, n0, _GFRRet,
|
|
1020
|
-
0,
|
|
1021
|
-
[_sA, _rA, _rTec, _s, _cAo, _nT, _e, _rS],
|
|
1022
|
-
[5, 0, 0, 0, 5, 0, () => RecommendationError$, () => RecommendedStepList], 4
|
|
1023
|
-
];
|
|
1024
|
-
var GetFindingRequest$ = [3, n0, _GFR,
|
|
1025
|
-
0,
|
|
1026
|
-
[_aA, _i],
|
|
1027
|
-
[[0, { [_hQ]: _aA }], [0, 1]], 2
|
|
1028
|
-
];
|
|
1029
|
-
var GetFindingResponse$ = [3, n0, _GFRe,
|
|
1030
|
-
0,
|
|
1031
|
-
[_fi],
|
|
1032
|
-
[() => Finding$]
|
|
1033
|
-
];
|
|
1034
|
-
var GetFindingsStatisticsRequest$ = [3, n0, _GFSR,
|
|
1035
|
-
0,
|
|
1036
|
-
[_aA],
|
|
1037
|
-
[0], 1
|
|
1038
|
-
];
|
|
1039
|
-
var GetFindingsStatisticsResponse$ = [3, n0, _GFSRe,
|
|
1040
|
-
0,
|
|
1041
|
-
[_fS, _lUA],
|
|
1042
|
-
[() => FindingsStatisticsList, 5]
|
|
1043
|
-
];
|
|
1044
|
-
var GetFindingV2Request$ = [3, n0, _GFVR,
|
|
1045
|
-
0,
|
|
1046
|
-
[_aA, _i, _mR, _nT],
|
|
1047
|
-
[[0, { [_hQ]: _aA }], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1048
|
-
];
|
|
1049
|
-
var GetFindingV2Response$ = [3, n0, _GFVRe,
|
|
1050
|
-
0,
|
|
1051
|
-
[_aAn, _cA, _i, _rT, _rOA, _s, _uA, _fD, _e, _nT, _re, _fT],
|
|
1052
|
-
[5, 5, 0, 0, 0, 0, 5, () => FindingDetailsList, 0, 0, 0, 0], 8
|
|
1053
|
-
];
|
|
1054
|
-
var GetGeneratedPolicyRequest$ = [3, n0, _GGPR,
|
|
1055
|
-
0,
|
|
1056
|
-
[_jI, _iRP, _iSLT],
|
|
1057
|
-
[[0, 1], [2, { [_hQ]: _iRP }], [2, { [_hQ]: _iSLT }]], 1
|
|
1058
|
-
];
|
|
1059
|
-
var GetGeneratedPolicyResponse$ = [3, n0, _GGPRe,
|
|
1060
|
-
0,
|
|
1061
|
-
[_jD, _gPR],
|
|
1062
|
-
[() => JobDetails$, () => GeneratedPolicyResult$], 2
|
|
1063
|
-
];
|
|
1064
|
-
var IamRoleConfiguration$ = [3, n0, _IRC,
|
|
1065
|
-
0,
|
|
1066
|
-
[_tPr],
|
|
1067
|
-
[0]
|
|
1068
|
-
];
|
|
1069
|
-
var InlineArchiveRule$ = [3, n0, _IAR,
|
|
1070
|
-
0,
|
|
1071
|
-
[_rN, _f],
|
|
1072
|
-
[0, () => FilterCriteriaMap], 2
|
|
1073
|
-
];
|
|
1074
|
-
var InternalAccessAnalysisRule$ = [3, n0, _IAAR,
|
|
1075
|
-
0,
|
|
1076
|
-
[_in],
|
|
1077
|
-
[() => InternalAccessAnalysisRuleCriteriaList]
|
|
1078
|
-
];
|
|
1079
|
-
var InternalAccessAnalysisRuleCriteria$ = [3, n0, _IAARC,
|
|
1080
|
-
0,
|
|
1081
|
-
[_aI, _rTes, _rAe],
|
|
1082
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
1083
|
-
];
|
|
1084
|
-
var InternalAccessConfiguration$ = [3, n0, _IAC,
|
|
1085
|
-
0,
|
|
1086
|
-
[_aRn],
|
|
1087
|
-
[() => InternalAccessAnalysisRule$]
|
|
1088
|
-
];
|
|
1089
|
-
var InternalAccessDetails$ = [3, n0, _IAD,
|
|
1090
|
-
0,
|
|
1091
|
-
[_ac, _con, _p, _pOA, _aT, _pTr, _so, _rCPR, _sCPR],
|
|
1092
|
-
[64 | 0, 128 | 0, 128 | 0, 0, 0, 0, () => FindingSourceList, 0, 0]
|
|
1093
|
-
];
|
|
1094
|
-
var InternalAccessFindingsStatistics$ = [3, n0, _IAFS,
|
|
1095
|
-
0,
|
|
1096
|
-
[_rTS, _tAF, _tAFo, _tRF],
|
|
1097
|
-
[() => InternalAccessResourceTypeStatisticsMap, 1, 1, 1]
|
|
1098
|
-
];
|
|
1099
|
-
var InternalAccessResourceTypeDetails$ = [3, n0, _IARTD,
|
|
1100
|
-
0,
|
|
1101
|
-
[_tAF, _tRF, _tAFo],
|
|
1102
|
-
[1, 1, 1]
|
|
1103
|
-
];
|
|
1104
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1105
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1106
|
-
[_m, _rAS],
|
|
1107
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
1108
|
-
];
|
|
1109
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1110
|
-
var InternetConfiguration$ = [3, n0, _IC,
|
|
1111
|
-
0,
|
|
1112
|
-
[],
|
|
1113
|
-
[]
|
|
1114
|
-
];
|
|
1115
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1116
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1117
|
-
[_m],
|
|
1118
|
-
[0], 1
|
|
1119
|
-
];
|
|
1120
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1121
|
-
var JobDetails$ = [3, n0, _JD,
|
|
1122
|
-
0,
|
|
1123
|
-
[_jI, _s, _sO, _cO, _jE],
|
|
1124
|
-
[0, 0, 5, 5, () => JobError$], 3
|
|
1125
|
-
];
|
|
1126
|
-
var JobError$ = [3, n0, _JE,
|
|
1127
|
-
0,
|
|
1128
|
-
[_cod, _m],
|
|
1129
|
-
[0, 0], 2
|
|
1130
|
-
];
|
|
1131
|
-
var KmsGrantConfiguration$ = [3, n0, _KGC,
|
|
1132
|
-
0,
|
|
1133
|
-
[_o, _gPr, _iA, _rPe, _cons],
|
|
1134
|
-
[64 | 0, 0, 0, 0, () => KmsGrantConstraints$], 3
|
|
1135
|
-
];
|
|
1136
|
-
var KmsGrantConstraints$ = [3, n0, _KGCm,
|
|
1137
|
-
0,
|
|
1138
|
-
[_eCE, _eCS],
|
|
1139
|
-
[128 | 0, 128 | 0]
|
|
1140
|
-
];
|
|
1141
|
-
var KmsKeyConfiguration$ = [3, n0, _KKC,
|
|
1142
|
-
0,
|
|
1143
|
-
[_kP, _gr],
|
|
1144
|
-
[128 | 0, () => KmsGrantConfigurationsList]
|
|
1145
|
-
];
|
|
1146
|
-
var ListAccessPreviewFindingsRequest$ = [3, n0, _LAPFR,
|
|
1147
|
-
0,
|
|
1148
|
-
[_aPI, _aA, _f, _nT, _mR],
|
|
1149
|
-
[[0, 1], 0, () => FilterCriteriaMap, 0, 1], 2
|
|
1150
|
-
];
|
|
1151
|
-
var ListAccessPreviewFindingsResponse$ = [3, n0, _LAPFRi,
|
|
1152
|
-
0,
|
|
1153
|
-
[_fin, _nT],
|
|
1154
|
-
[() => AccessPreviewFindingsList, 0], 1
|
|
1155
|
-
];
|
|
1156
|
-
var ListAccessPreviewsRequest$ = [3, n0, _LAPR,
|
|
1157
|
-
0,
|
|
1158
|
-
[_aA, _nT, _mR],
|
|
1159
|
-
[[0, { [_hQ]: _aA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1160
|
-
];
|
|
1161
|
-
var ListAccessPreviewsResponse$ = [3, n0, _LAPRi,
|
|
1162
|
-
0,
|
|
1163
|
-
[_aPc, _nT],
|
|
1164
|
-
[() => AccessPreviewsList, 0], 1
|
|
1165
|
-
];
|
|
1166
|
-
var ListAnalyzedResourcesRequest$ = [3, n0, _LARR,
|
|
1167
|
-
0,
|
|
1168
|
-
[_aA, _rT, _nT, _mR],
|
|
1169
|
-
[0, 0, 0, 1], 1
|
|
1170
|
-
];
|
|
1171
|
-
var ListAnalyzedResourcesResponse$ = [3, n0, _LARRi,
|
|
1172
|
-
0,
|
|
1173
|
-
[_aRna, _nT],
|
|
1174
|
-
[() => AnalyzedResourcesList, 0], 1
|
|
1175
|
-
];
|
|
1176
|
-
var ListAnalyzersRequest$ = [3, n0, _LAR,
|
|
1177
|
-
0,
|
|
1178
|
-
[_nT, _mR, _t],
|
|
1179
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _t }]]
|
|
1180
|
-
];
|
|
1181
|
-
var ListAnalyzersResponse$ = [3, n0, _LARi,
|
|
1182
|
-
0,
|
|
1183
|
-
[_ana, _nT],
|
|
1184
|
-
[() => AnalyzersList, 0], 1
|
|
1185
|
-
];
|
|
1186
|
-
var ListArchiveRulesRequest$ = [3, n0, _LARRis,
|
|
1187
|
-
0,
|
|
1188
|
-
[_aN, _nT, _mR],
|
|
1189
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1190
|
-
];
|
|
1191
|
-
var ListArchiveRulesResponse$ = [3, n0, _LARRist,
|
|
1192
|
-
0,
|
|
1193
|
-
[_aRr, _nT],
|
|
1194
|
-
[() => ArchiveRulesList, 0], 1
|
|
1195
|
-
];
|
|
1196
|
-
var ListFindingsRequest$ = [3, n0, _LFR,
|
|
1197
|
-
0,
|
|
1198
|
-
[_aA, _f, _sor, _nT, _mR],
|
|
1199
|
-
[0, () => FilterCriteriaMap, () => SortCriteria$, 0, 1], 1
|
|
1200
|
-
];
|
|
1201
|
-
var ListFindingsResponse$ = [3, n0, _LFRi,
|
|
1202
|
-
0,
|
|
1203
|
-
[_fin, _nT],
|
|
1204
|
-
[() => FindingsList, 0], 1
|
|
1205
|
-
];
|
|
1206
|
-
var ListFindingsV2Request$ = [3, n0, _LFVR,
|
|
1207
|
-
0,
|
|
1208
|
-
[_aA, _f, _mR, _nT, _sor],
|
|
1209
|
-
[0, () => FilterCriteriaMap, 1, 0, () => SortCriteria$], 1
|
|
1210
|
-
];
|
|
1211
|
-
var ListFindingsV2Response$ = [3, n0, _LFVRi,
|
|
1212
|
-
0,
|
|
1213
|
-
[_fin, _nT],
|
|
1214
|
-
[() => FindingsListV2, 0], 1
|
|
1215
|
-
];
|
|
1216
|
-
var ListPolicyGenerationsRequest$ = [3, n0, _LPGR,
|
|
1217
|
-
0,
|
|
1218
|
-
[_pA, _mR, _nT],
|
|
1219
|
-
[[0, { [_hQ]: _pA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1220
|
-
];
|
|
1221
|
-
var ListPolicyGenerationsResponse$ = [3, n0, _LPGRi,
|
|
1222
|
-
0,
|
|
1223
|
-
[_pG, _nT],
|
|
1224
|
-
[() => PolicyGenerationList, 0], 1
|
|
1225
|
-
];
|
|
1226
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1227
|
-
0,
|
|
1228
|
-
[_rA],
|
|
1229
|
-
[[0, 1]], 1
|
|
1230
|
-
];
|
|
1231
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1232
|
-
0,
|
|
1233
|
-
[_ta],
|
|
1234
|
-
[128 | 0]
|
|
1235
|
-
];
|
|
1236
|
-
var Location$ = [3, n0, _L,
|
|
1237
|
-
0,
|
|
1238
|
-
[_pa, _sp],
|
|
1239
|
-
[() => PathElementList, () => Span$], 2
|
|
1240
|
-
];
|
|
1241
|
-
var PolicyGeneration$ = [3, n0, _PG,
|
|
1242
|
-
0,
|
|
1243
|
-
[_jI, _pA, _s, _sO, _cO],
|
|
1244
|
-
[0, 0, 0, 5, 5], 4
|
|
1245
|
-
];
|
|
1246
|
-
var PolicyGenerationDetails$ = [3, n0, _PGD,
|
|
1247
|
-
0,
|
|
1248
|
-
[_pA],
|
|
1249
|
-
[0], 1
|
|
1250
|
-
];
|
|
1251
|
-
var Position$ = [3, n0, _P,
|
|
1252
|
-
0,
|
|
1253
|
-
[_l, _col, _of],
|
|
1254
|
-
[1, 1, 1], 3
|
|
1255
|
-
];
|
|
1256
|
-
var RdsDbClusterSnapshotConfiguration$ = [3, n0, _RDCSC,
|
|
1257
|
-
0,
|
|
1258
|
-
[_at, _kKI],
|
|
1259
|
-
[() => RdsDbClusterSnapshotAttributesMap, 0]
|
|
1260
|
-
];
|
|
1261
|
-
var RdsDbSnapshotConfiguration$ = [3, n0, _RDSC,
|
|
1262
|
-
0,
|
|
1263
|
-
[_at, _kKI],
|
|
1264
|
-
[() => RdsDbSnapshotAttributesMap, 0]
|
|
1265
|
-
];
|
|
1266
|
-
var ReasonSummary$ = [3, n0, _RS,
|
|
1267
|
-
0,
|
|
1268
|
-
[_des, _sI, _sIt],
|
|
1269
|
-
[0, 1, 0]
|
|
1270
|
-
];
|
|
1271
|
-
var RecommendationError$ = [3, n0, _RE,
|
|
1272
|
-
0,
|
|
1273
|
-
[_cod, _m],
|
|
1274
|
-
[0, 0], 2
|
|
1275
|
-
];
|
|
1276
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1277
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1278
|
-
[_m, _rI, _rT],
|
|
1279
|
-
[0, 0, 0], 3
|
|
1280
|
-
];
|
|
1281
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1282
|
-
var ResourceTypeDetails$ = [3, n0, _RTD,
|
|
1283
|
-
0,
|
|
1284
|
-
[_tAP, _tACA, _tAE],
|
|
1285
|
-
[1, 1, 1]
|
|
1286
|
-
];
|
|
1287
|
-
var S3AccessPointConfiguration$ = [3, n0, _SAPC,
|
|
1288
|
-
0,
|
|
1289
|
-
[_aPP, _pAB, _nO],
|
|
1290
|
-
[0, () => S3PublicAccessBlockConfiguration$, () => NetworkOriginConfiguration$]
|
|
1291
|
-
];
|
|
1292
|
-
var S3BucketAclGrantConfiguration$ = [3, n0, _SBAGC,
|
|
1293
|
-
0,
|
|
1294
|
-
[_pe, _gra],
|
|
1295
|
-
[0, () => AclGrantee$], 2
|
|
1296
|
-
];
|
|
1297
|
-
var S3BucketConfiguration$ = [3, n0, _SBC,
|
|
1298
|
-
0,
|
|
1299
|
-
[_bP, _bAG, _bPAB, _aPcc],
|
|
1300
|
-
[0, () => S3BucketAclGrantConfigurationsList, () => S3PublicAccessBlockConfiguration$, () => S3AccessPointConfigurationsMap]
|
|
1301
|
-
];
|
|
1302
|
-
var S3ExpressDirectoryAccessPointConfiguration$ = [3, n0, _SEDAPC,
|
|
1303
|
-
0,
|
|
1304
|
-
[_aPP, _nO],
|
|
1305
|
-
[0, () => NetworkOriginConfiguration$]
|
|
1306
|
-
];
|
|
1307
|
-
var S3ExpressDirectoryBucketConfiguration$ = [3, n0, _SEDBC,
|
|
1308
|
-
0,
|
|
1309
|
-
[_bP, _aPcc],
|
|
1310
|
-
[0, () => S3ExpressDirectoryAccessPointConfigurationsMap]
|
|
1311
|
-
];
|
|
1312
|
-
var S3PublicAccessBlockConfiguration$ = [3, n0, _SPABC,
|
|
1313
|
-
0,
|
|
1314
|
-
[_iPA, _rPB],
|
|
1315
|
-
[2, 2], 2
|
|
1316
|
-
];
|
|
1317
|
-
var SecretsManagerSecretConfiguration$ = [3, n0, _SMSC,
|
|
1318
|
-
0,
|
|
1319
|
-
[_kKI, _sPe],
|
|
1320
|
-
[0, 0]
|
|
1321
|
-
];
|
|
1322
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1323
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1324
|
-
[_m, _rI, _rT],
|
|
1325
|
-
[0, 0, 0], 3
|
|
1326
|
-
];
|
|
1327
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1328
|
-
var SnsTopicConfiguration$ = [3, n0, _STC,
|
|
1329
|
-
0,
|
|
1330
|
-
[_tPo],
|
|
1331
|
-
[0]
|
|
1332
|
-
];
|
|
1333
|
-
var SortCriteria$ = [3, n0, _SC,
|
|
1334
|
-
0,
|
|
1335
|
-
[_aNt, _oB],
|
|
1336
|
-
[0, 0]
|
|
1337
|
-
];
|
|
1338
|
-
var Span$ = [3, n0, _S,
|
|
1339
|
-
0,
|
|
1340
|
-
[_st, _en],
|
|
1341
|
-
[() => Position$, () => Position$], 2
|
|
1342
|
-
];
|
|
1343
|
-
var SqsQueueConfiguration$ = [3, n0, _SQC,
|
|
1344
|
-
0,
|
|
1345
|
-
[_qP],
|
|
1346
|
-
[0]
|
|
1347
|
-
];
|
|
1348
|
-
var StartPolicyGenerationRequest$ = [3, n0, _SPGR,
|
|
1349
|
-
0,
|
|
1350
|
-
[_pGD, _cTD, _cTl],
|
|
1351
|
-
[() => PolicyGenerationDetails$, () => CloudTrailDetails$, [0, 4]], 1
|
|
1352
|
-
];
|
|
1353
|
-
var StartPolicyGenerationResponse$ = [3, n0, _SPGRt,
|
|
1354
|
-
0,
|
|
1355
|
-
[_jI],
|
|
1356
|
-
[0], 1
|
|
1357
|
-
];
|
|
1358
|
-
var StartResourceScanRequest$ = [3, n0, _SRSR,
|
|
1359
|
-
0,
|
|
1360
|
-
[_aA, _rA, _rOA],
|
|
1361
|
-
[0, 0, 0], 2
|
|
1362
|
-
];
|
|
1363
|
-
var StatusReason$ = [3, n0, _SR,
|
|
1364
|
-
0,
|
|
1365
|
-
[_cod],
|
|
1366
|
-
[0], 1
|
|
1367
|
-
];
|
|
1368
|
-
var Substring$ = [3, n0, _Su,
|
|
1369
|
-
0,
|
|
1370
|
-
[_st, _le],
|
|
1371
|
-
[1, 1], 2
|
|
1372
|
-
];
|
|
1373
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1374
|
-
0,
|
|
1375
|
-
[_rA, _ta],
|
|
1376
|
-
[[0, 1], 128 | 0], 2
|
|
1377
|
-
];
|
|
1378
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1379
|
-
0,
|
|
1380
|
-
[],
|
|
1381
|
-
[]
|
|
1382
|
-
];
|
|
1383
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1384
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1385
|
-
[_m, _rAS],
|
|
1386
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
1387
|
-
];
|
|
1388
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1389
|
-
var Trail$ = [3, n0, _T,
|
|
1390
|
-
0,
|
|
1391
|
-
[_cTA, _reg, _aRl],
|
|
1392
|
-
[0, 64 | 0, 2], 1
|
|
1393
|
-
];
|
|
1394
|
-
var TrailProperties$ = [3, n0, _TP,
|
|
1395
|
-
0,
|
|
1396
|
-
[_cTA, _reg, _aRl],
|
|
1397
|
-
[0, 64 | 0, 2], 1
|
|
1398
|
-
];
|
|
1399
|
-
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
1400
|
-
{ [_e]: _c, [_hE]: 422 },
|
|
1401
|
-
[_m],
|
|
1402
|
-
[0], 1
|
|
1403
|
-
];
|
|
1404
|
-
schema.TypeRegistry.for(n0).registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
1405
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1406
|
-
0,
|
|
1407
|
-
[_rA, _tK],
|
|
1408
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1409
|
-
];
|
|
1410
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1411
|
-
0,
|
|
1412
|
-
[],
|
|
1413
|
-
[]
|
|
1414
|
-
];
|
|
1415
|
-
var UnusedAccessConfiguration$ = [3, n0, _UAC,
|
|
1416
|
-
0,
|
|
1417
|
-
[_uAA, _aRn],
|
|
1418
|
-
[1, () => AnalysisRule$]
|
|
1419
|
-
];
|
|
1420
|
-
var UnusedAccessFindingsStatistics$ = [3, n0, _UAFS,
|
|
1421
|
-
0,
|
|
1422
|
-
[_uATS, _tA, _tAF, _tAFo, _tRF],
|
|
1423
|
-
[() => UnusedAccessTypeStatisticsList, () => AccountAggregations, 1, 1, 1]
|
|
1424
|
-
];
|
|
1425
|
-
var UnusedAccessTypeStatistics$ = [3, n0, _UATS,
|
|
1426
|
-
0,
|
|
1427
|
-
[_uAT, _to],
|
|
1428
|
-
[0, 1]
|
|
1429
|
-
];
|
|
1430
|
-
var UnusedAction$ = [3, n0, _UA,
|
|
1431
|
-
0,
|
|
1432
|
-
[_ac, _lA],
|
|
1433
|
-
[0, 5], 1
|
|
1434
|
-
];
|
|
1435
|
-
var UnusedIamRoleDetails$ = [3, n0, _UIRD,
|
|
1436
|
-
0,
|
|
1437
|
-
[_lA],
|
|
1438
|
-
[5]
|
|
1439
|
-
];
|
|
1440
|
-
var UnusedIamUserAccessKeyDetails$ = [3, n0, _UIUAKD,
|
|
1441
|
-
0,
|
|
1442
|
-
[_aKI, _lA],
|
|
1443
|
-
[0, 5], 1
|
|
1444
|
-
];
|
|
1445
|
-
var UnusedIamUserPasswordDetails$ = [3, n0, _UIUPD,
|
|
1446
|
-
0,
|
|
1447
|
-
[_lA],
|
|
1448
|
-
[5]
|
|
1449
|
-
];
|
|
1450
|
-
var UnusedPermissionDetails$ = [3, n0, _UPD,
|
|
1451
|
-
0,
|
|
1452
|
-
[_sN, _a, _lA],
|
|
1453
|
-
[0, () => UnusedActionList, 5], 1
|
|
1454
|
-
];
|
|
1455
|
-
var UnusedPermissionsRecommendedStep$ = [3, n0, _UPRS,
|
|
1456
|
-
0,
|
|
1457
|
-
[_rAec, _pUA, _rPec, _ePI],
|
|
1458
|
-
[0, 5, 0, 0], 1
|
|
1459
|
-
];
|
|
1460
|
-
var UpdateAnalyzerRequest$ = [3, n0, _UAR,
|
|
1461
|
-
0,
|
|
1462
|
-
[_aN, _conf],
|
|
1463
|
-
[[0, 1], () => AnalyzerConfiguration$], 1
|
|
1464
|
-
];
|
|
1465
|
-
var UpdateAnalyzerResponse$ = [3, n0, _UARp,
|
|
1466
|
-
0,
|
|
1467
|
-
[_conf],
|
|
1468
|
-
[() => AnalyzerConfiguration$]
|
|
1469
|
-
];
|
|
1470
|
-
var UpdateArchiveRuleRequest$ = [3, n0, _UARR,
|
|
1471
|
-
0,
|
|
1472
|
-
[_aN, _rN, _f, _cTl],
|
|
1473
|
-
[[0, 1], [0, 1], () => FilterCriteriaMap, [0, 4]], 3
|
|
1474
|
-
];
|
|
1475
|
-
var UpdateFindingsRequest$ = [3, n0, _UFR,
|
|
1476
|
-
0,
|
|
1477
|
-
[_aA, _s, _id, _rA, _cTl],
|
|
1478
|
-
[0, 0, 64 | 0, 0, [0, 4]], 2
|
|
1479
|
-
];
|
|
1480
|
-
var ValidatePolicyFinding$ = [3, n0, _VPF,
|
|
1481
|
-
0,
|
|
1482
|
-
[_fD, _fT, _iCs, _lML, _lo],
|
|
1483
|
-
[0, 0, 0, 0, () => LocationList], 5
|
|
1484
|
-
];
|
|
1485
|
-
var ValidatePolicyRequest$ = [3, n0, _VPR,
|
|
1486
|
-
0,
|
|
1487
|
-
[_pD, _pT, _loc, _mR, _nT, _vPRT],
|
|
1488
|
-
[0, 0, 0, [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0], 2
|
|
1489
|
-
];
|
|
1490
|
-
var ValidatePolicyResponse$ = [3, n0, _VPRa,
|
|
1491
|
-
0,
|
|
1492
|
-
[_fin, _nT],
|
|
1493
|
-
[() => ValidatePolicyFindingList, 0], 1
|
|
1494
|
-
];
|
|
1495
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1496
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1497
|
-
[_m, _reas, _fL],
|
|
1498
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
1499
|
-
];
|
|
1500
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1501
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1502
|
-
0,
|
|
1503
|
-
[_n, _m],
|
|
1504
|
-
[0, 0], 2
|
|
1505
|
-
];
|
|
1506
|
-
var VpcConfiguration$ = [3, n0, _VC,
|
|
1507
|
-
0,
|
|
1508
|
-
[_vI],
|
|
1509
|
-
[0], 1
|
|
1510
|
-
];
|
|
1511
|
-
var __Unit = "unit";
|
|
1512
|
-
var AccessAnalyzerServiceException$ = [-3, _sm, "AccessAnalyzerServiceException", 0, [], []];
|
|
1513
|
-
schema.TypeRegistry.for(_sm).registerError(AccessAnalyzerServiceException$, AccessAnalyzerServiceException);
|
|
1514
|
-
var AccessList = [1, n0, _AL,
|
|
1515
|
-
0, () => Access$
|
|
1516
|
-
];
|
|
1517
|
-
var AccessPreviewFindingsList = [1, n0, _APFL,
|
|
1518
|
-
0, () => AccessPreviewFinding$
|
|
1519
|
-
];
|
|
1520
|
-
var AccessPreviewsList = [1, n0, _APL,
|
|
1521
|
-
0, () => AccessPreviewSummary$
|
|
1522
|
-
];
|
|
1523
|
-
var AccountAggregations = [1, n0, _AA,
|
|
1524
|
-
0, () => FindingAggregationAccountDetails$
|
|
1525
|
-
];
|
|
1526
|
-
var AnalysisRuleCriteriaList = [1, n0, _ARCL,
|
|
1527
|
-
0, () => AnalysisRuleCriteria$
|
|
1528
|
-
];
|
|
1529
|
-
var AnalyzedResourcesList = [1, n0, _ARL,
|
|
1530
|
-
0, () => AnalyzedResourceSummary$
|
|
1531
|
-
];
|
|
1532
|
-
var AnalyzersList = [1, n0, _ALn,
|
|
1533
|
-
0, () => AnalyzerSummary$
|
|
1534
|
-
];
|
|
1535
|
-
var ArchiveRulesList = [1, n0, _ARLr,
|
|
1536
|
-
0, () => ArchiveRuleSummary$
|
|
1537
|
-
];
|
|
1538
|
-
var FindingDetailsList = [1, n0, _FDL,
|
|
1539
|
-
0, () => FindingDetails$
|
|
1540
|
-
];
|
|
1541
|
-
var FindingsList = [1, n0, _FL,
|
|
1542
|
-
0, () => FindingSummary$
|
|
1543
|
-
];
|
|
1544
|
-
var FindingsListV2 = [1, n0, _FLV,
|
|
1545
|
-
0, () => FindingSummaryV2$
|
|
1546
|
-
];
|
|
1547
|
-
var FindingSourceList = [1, n0, _FSL,
|
|
1548
|
-
0, () => FindingSource$
|
|
1549
|
-
];
|
|
1550
|
-
var FindingsStatisticsList = [1, n0, _FSLi,
|
|
1551
|
-
0, () => FindingsStatistics$
|
|
1552
|
-
];
|
|
1553
|
-
var GeneratedPolicyList = [1, n0, _GPL,
|
|
1554
|
-
0, () => GeneratedPolicy$
|
|
1555
|
-
];
|
|
1556
|
-
var InlineArchiveRulesList = [1, n0, _IARL,
|
|
1557
|
-
0, () => InlineArchiveRule$
|
|
1558
|
-
];
|
|
1559
|
-
var InternalAccessAnalysisRuleCriteriaList = [1, n0, _IAARCL,
|
|
1560
|
-
0, () => InternalAccessAnalysisRuleCriteria$
|
|
1561
|
-
];
|
|
1562
|
-
var KmsGrantConfigurationsList = [1, n0, _KGCL,
|
|
1563
|
-
0, () => KmsGrantConfiguration$
|
|
1564
|
-
];
|
|
1565
|
-
var LocationList = [1, n0, _LL,
|
|
1566
|
-
0, () => Location$
|
|
1567
|
-
];
|
|
1568
|
-
var PathElementList = [1, n0, _PEL,
|
|
1569
|
-
0, () => PathElement$
|
|
1570
|
-
];
|
|
1571
|
-
var PolicyGenerationList = [1, n0, _PGL,
|
|
1572
|
-
0, () => PolicyGeneration$
|
|
1573
|
-
];
|
|
1574
|
-
var ReasonSummaryList = [1, n0, _RSL,
|
|
1575
|
-
0, () => ReasonSummary$
|
|
1576
|
-
];
|
|
1577
|
-
var RecommendedStepList = [1, n0, _RSLe,
|
|
1578
|
-
0, () => RecommendedStep$
|
|
1579
|
-
];
|
|
1580
|
-
var S3BucketAclGrantConfigurationsList = [1, n0, _SBAGCL,
|
|
1581
|
-
0, () => S3BucketAclGrantConfiguration$
|
|
1582
|
-
];
|
|
1583
|
-
var TrailList = [1, n0, _TLr,
|
|
1584
|
-
0, () => Trail$
|
|
1585
|
-
];
|
|
1586
|
-
var TrailPropertiesList = [1, n0, _TPL,
|
|
1587
|
-
0, () => TrailProperties$
|
|
1588
|
-
];
|
|
1589
|
-
var UnusedAccessTypeStatisticsList = [1, n0, _UATSL,
|
|
1590
|
-
0, () => UnusedAccessTypeStatistics$
|
|
1591
|
-
];
|
|
1592
|
-
var UnusedActionList = [1, n0, _UAL,
|
|
1593
|
-
0, () => UnusedAction$
|
|
1594
|
-
];
|
|
1595
|
-
var ValidatePolicyFindingList = [1, n0, _VPFL,
|
|
1596
|
-
0, () => ValidatePolicyFinding$
|
|
1597
|
-
];
|
|
1598
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1599
|
-
0, () => ValidationExceptionField$
|
|
1600
|
-
];
|
|
1601
|
-
var ConfigurationsMap = [2, n0, _CM,
|
|
1602
|
-
0, 0, () => Configuration$
|
|
1603
|
-
];
|
|
1604
|
-
var FilterCriteriaMap = [2, n0, _FCM,
|
|
1605
|
-
0, 0, () => Criterion$
|
|
1606
|
-
];
|
|
1607
|
-
var InternalAccessResourceTypeStatisticsMap = [2, n0, _IARTSM,
|
|
1608
|
-
0, 0, () => InternalAccessResourceTypeDetails$
|
|
1609
|
-
];
|
|
1610
|
-
var RdsDbClusterSnapshotAttributesMap = [2, n0, _RDCSAM,
|
|
1611
|
-
0, 0, () => RdsDbClusterSnapshotAttributeValue$
|
|
1612
|
-
];
|
|
1613
|
-
var RdsDbSnapshotAttributesMap = [2, n0, _RDSAM,
|
|
1614
|
-
0, 0, () => RdsDbSnapshotAttributeValue$
|
|
1615
|
-
];
|
|
1616
|
-
var ResourceTypeStatisticsMap = [2, n0, _RTSM,
|
|
1617
|
-
0, 0, () => ResourceTypeDetails$
|
|
1618
|
-
];
|
|
1619
|
-
var S3AccessPointConfigurationsMap = [2, n0, _SAPCM,
|
|
1620
|
-
0, 0, () => S3AccessPointConfiguration$
|
|
1621
|
-
];
|
|
1622
|
-
var S3ExpressDirectoryAccessPointConfigurationsMap = [2, n0, _SEDAPCM,
|
|
1623
|
-
0, 0, () => S3ExpressDirectoryAccessPointConfiguration$
|
|
1624
|
-
];
|
|
1625
|
-
var AclGrantee$ = [4, n0, _AG,
|
|
1626
|
-
0,
|
|
1627
|
-
[_i, _u],
|
|
1628
|
-
[0, 0]
|
|
1629
|
-
];
|
|
1630
|
-
var AnalyzerConfiguration$ = [4, n0, _AC,
|
|
1631
|
-
0,
|
|
1632
|
-
[_uAn, _iAn],
|
|
1633
|
-
[() => UnusedAccessConfiguration$, () => InternalAccessConfiguration$]
|
|
1634
|
-
];
|
|
1635
|
-
var Configuration$ = [4, n0, _Co,
|
|
1636
|
-
0,
|
|
1637
|
-
[_eS, _eR, _iR, _eFSf, _kK, _rDCS, _rDS, _sMS, _sB, _sTn, _sQ, _sEDB, _dS, _dT],
|
|
1638
|
-
[() => EbsSnapshotConfiguration$, () => EcrRepositoryConfiguration$, () => IamRoleConfiguration$, () => EfsFileSystemConfiguration$, () => KmsKeyConfiguration$, () => RdsDbClusterSnapshotConfiguration$, () => RdsDbSnapshotConfiguration$, () => SecretsManagerSecretConfiguration$, () => S3BucketConfiguration$, () => SnsTopicConfiguration$, () => SqsQueueConfiguration$, () => S3ExpressDirectoryBucketConfiguration$, () => DynamodbStreamConfiguration$, () => DynamodbTableConfiguration$]
|
|
1639
|
-
];
|
|
1640
|
-
var FindingDetails$ = [4, n0, _FD,
|
|
1641
|
-
0,
|
|
1642
|
-
[_iAD, _eAD, _uPD, _uIUAKD, _uIRD, _uIUPD],
|
|
1643
|
-
[() => InternalAccessDetails$, () => ExternalAccessDetails$, () => UnusedPermissionDetails$, () => UnusedIamUserAccessKeyDetails$, () => UnusedIamRoleDetails$, () => UnusedIamUserPasswordDetails$]
|
|
1644
|
-
];
|
|
1645
|
-
var FindingsStatistics$ = [4, n0, _FSin,
|
|
1646
|
-
0,
|
|
1647
|
-
[_eAFS, _iAFS, _uAFS],
|
|
1648
|
-
[() => ExternalAccessFindingsStatistics$, () => InternalAccessFindingsStatistics$, () => UnusedAccessFindingsStatistics$]
|
|
1649
|
-
];
|
|
1650
|
-
var NetworkOriginConfiguration$ = [4, n0, _NOC,
|
|
1651
|
-
0,
|
|
1652
|
-
[_vC, _iCn],
|
|
1653
|
-
[() => VpcConfiguration$, () => InternetConfiguration$]
|
|
1654
|
-
];
|
|
1655
|
-
var PathElement$ = [4, n0, _PE,
|
|
1656
|
-
0,
|
|
1657
|
-
[_ind, _k, _su, _v],
|
|
1658
|
-
[1, 0, () => Substring$, 0]
|
|
1659
|
-
];
|
|
1660
|
-
var RdsDbClusterSnapshotAttributeValue$ = [4, n0, _RDCSAV,
|
|
1661
|
-
0,
|
|
1662
|
-
[_aI],
|
|
1663
|
-
[64 | 0]
|
|
1664
|
-
];
|
|
1665
|
-
var RdsDbSnapshotAttributeValue$ = [4, n0, _RDSAV,
|
|
1666
|
-
0,
|
|
1667
|
-
[_aI],
|
|
1668
|
-
[64 | 0]
|
|
1669
|
-
];
|
|
1670
|
-
var RecommendedStep$ = [4, n0, _RSe,
|
|
1671
|
-
0,
|
|
1672
|
-
[_uPRS],
|
|
1673
|
-
[() => UnusedPermissionsRecommendedStep$]
|
|
1674
|
-
];
|
|
1675
|
-
var ApplyArchiveRule$ = [9, n0, _AAR,
|
|
1676
|
-
{ [_h]: ["PUT", "/archive-rule", 200] }, () => ApplyArchiveRuleRequest$, () => __Unit
|
|
1677
|
-
];
|
|
1678
|
-
var CancelPolicyGeneration$ = [9, n0, _CPG,
|
|
1679
|
-
{ [_h]: ["PUT", "/policy/generation/{jobId}", 200] }, () => CancelPolicyGenerationRequest$, () => CancelPolicyGenerationResponse$
|
|
1680
|
-
];
|
|
1681
|
-
var CheckAccessNotGranted$ = [9, n0, _CANG,
|
|
1682
|
-
{ [_h]: ["POST", "/policy/check-access-not-granted", 200] }, () => CheckAccessNotGrantedRequest$, () => CheckAccessNotGrantedResponse$
|
|
1683
|
-
];
|
|
1684
|
-
var CheckNoNewAccess$ = [9, n0, _CNNA,
|
|
1685
|
-
{ [_h]: ["POST", "/policy/check-no-new-access", 200] }, () => CheckNoNewAccessRequest$, () => CheckNoNewAccessResponse$
|
|
1686
|
-
];
|
|
1687
|
-
var CheckNoPublicAccess$ = [9, n0, _CNPA,
|
|
1688
|
-
{ [_h]: ["POST", "/policy/check-no-public-access", 200] }, () => CheckNoPublicAccessRequest$, () => CheckNoPublicAccessResponse$
|
|
1689
|
-
];
|
|
1690
|
-
var CreateAccessPreview$ = [9, n0, _CAP,
|
|
1691
|
-
{ [_h]: ["PUT", "/access-preview", 200] }, () => CreateAccessPreviewRequest$, () => CreateAccessPreviewResponse$
|
|
1692
|
-
];
|
|
1693
|
-
var CreateAnalyzer$ = [9, n0, _CA,
|
|
1694
|
-
{ [_h]: ["PUT", "/analyzer", 200] }, () => CreateAnalyzerRequest$, () => CreateAnalyzerResponse$
|
|
1695
|
-
];
|
|
1696
|
-
var CreateArchiveRule$ = [9, n0, _CARre,
|
|
1697
|
-
{ [_h]: ["PUT", "/analyzer/{analyzerName}/archive-rule", 200] }, () => CreateArchiveRuleRequest$, () => __Unit
|
|
1698
|
-
];
|
|
1699
|
-
var DeleteAnalyzer$ = [9, n0, _DA,
|
|
1700
|
-
{ [_h]: ["DELETE", "/analyzer/{analyzerName}", 200] }, () => DeleteAnalyzerRequest$, () => __Unit
|
|
1701
|
-
];
|
|
1702
|
-
var DeleteArchiveRule$ = [9, n0, _DARe,
|
|
1703
|
-
{ [_h]: ["DELETE", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => DeleteArchiveRuleRequest$, () => __Unit
|
|
1704
|
-
];
|
|
1705
|
-
var GenerateFindingRecommendation$ = [9, n0, _GFRen,
|
|
1706
|
-
{ [_h]: ["POST", "/recommendation/{id}", 200] }, () => GenerateFindingRecommendationRequest$, () => __Unit
|
|
1707
|
-
];
|
|
1708
|
-
var GetAccessPreview$ = [9, n0, _GAP,
|
|
1709
|
-
{ [_h]: ["GET", "/access-preview/{accessPreviewId}", 200] }, () => GetAccessPreviewRequest$, () => GetAccessPreviewResponse$
|
|
1710
|
-
];
|
|
1711
|
-
var GetAnalyzedResource$ = [9, n0, _GARet,
|
|
1712
|
-
{ [_h]: ["GET", "/analyzed-resource", 200] }, () => GetAnalyzedResourceRequest$, () => GetAnalyzedResourceResponse$
|
|
1713
|
-
];
|
|
1714
|
-
var GetAnalyzer$ = [9, n0, _GA,
|
|
1715
|
-
{ [_h]: ["GET", "/analyzer/{analyzerName}", 200] }, () => GetAnalyzerRequest$, () => GetAnalyzerResponse$
|
|
1716
|
-
];
|
|
1717
|
-
var GetArchiveRule$ = [9, n0, _GARetr,
|
|
1718
|
-
{ [_h]: ["GET", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => GetArchiveRuleRequest$, () => GetArchiveRuleResponse$
|
|
1719
|
-
];
|
|
1720
|
-
var GetFinding$ = [9, n0, _GF,
|
|
1721
|
-
{ [_h]: ["GET", "/finding/{id}", 200] }, () => GetFindingRequest$, () => GetFindingResponse$
|
|
1722
|
-
];
|
|
1723
|
-
var GetFindingRecommendation$ = [9, n0, _GFRet,
|
|
1724
|
-
{ [_h]: ["GET", "/recommendation/{id}", 200] }, () => GetFindingRecommendationRequest$, () => GetFindingRecommendationResponse$
|
|
1725
|
-
];
|
|
1726
|
-
var GetFindingsStatistics$ = [9, n0, _GFS,
|
|
1727
|
-
{ [_h]: ["POST", "/analyzer/findings/statistics", 200] }, () => GetFindingsStatisticsRequest$, () => GetFindingsStatisticsResponse$
|
|
1728
|
-
];
|
|
1729
|
-
var GetFindingV2$ = [9, n0, _GFV,
|
|
1730
|
-
{ [_h]: ["GET", "/findingv2/{id}", 200] }, () => GetFindingV2Request$, () => GetFindingV2Response$
|
|
1731
|
-
];
|
|
1732
|
-
var GetGeneratedPolicy$ = [9, n0, _GGP,
|
|
1733
|
-
{ [_h]: ["GET", "/policy/generation/{jobId}", 200] }, () => GetGeneratedPolicyRequest$, () => GetGeneratedPolicyResponse$
|
|
1734
|
-
];
|
|
1735
|
-
var ListAccessPreviewFindings$ = [9, n0, _LAPF,
|
|
1736
|
-
{ [_h]: ["POST", "/access-preview/{accessPreviewId}", 200] }, () => ListAccessPreviewFindingsRequest$, () => ListAccessPreviewFindingsResponse$
|
|
1737
|
-
];
|
|
1738
|
-
var ListAccessPreviews$ = [9, n0, _LAP,
|
|
1739
|
-
{ [_h]: ["GET", "/access-preview", 200] }, () => ListAccessPreviewsRequest$, () => ListAccessPreviewsResponse$
|
|
1740
|
-
];
|
|
1741
|
-
var ListAnalyzedResources$ = [9, n0, _LARis,
|
|
1742
|
-
{ [_h]: ["POST", "/analyzed-resource", 200] }, () => ListAnalyzedResourcesRequest$, () => ListAnalyzedResourcesResponse$
|
|
1743
|
-
];
|
|
1744
|
-
var ListAnalyzers$ = [9, n0, _LA,
|
|
1745
|
-
{ [_h]: ["GET", "/analyzer", 200] }, () => ListAnalyzersRequest$, () => ListAnalyzersResponse$
|
|
1746
|
-
];
|
|
1747
|
-
var ListArchiveRules$ = [9, n0, _LARist,
|
|
1748
|
-
{ [_h]: ["GET", "/analyzer/{analyzerName}/archive-rule", 200] }, () => ListArchiveRulesRequest$, () => ListArchiveRulesResponse$
|
|
1749
|
-
];
|
|
1750
|
-
var ListFindings$ = [9, n0, _LF,
|
|
1751
|
-
{ [_h]: ["POST", "/finding", 200] }, () => ListFindingsRequest$, () => ListFindingsResponse$
|
|
1752
|
-
];
|
|
1753
|
-
var ListFindingsV2$ = [9, n0, _LFV,
|
|
1754
|
-
{ [_h]: ["POST", "/findingv2", 200] }, () => ListFindingsV2Request$, () => ListFindingsV2Response$
|
|
1755
|
-
];
|
|
1756
|
-
var ListPolicyGenerations$ = [9, n0, _LPG,
|
|
1757
|
-
{ [_h]: ["GET", "/policy/generation", 200] }, () => ListPolicyGenerationsRequest$, () => ListPolicyGenerationsResponse$
|
|
1758
|
-
];
|
|
1759
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1760
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1761
|
-
];
|
|
1762
|
-
var StartPolicyGeneration$ = [9, n0, _SPG,
|
|
1763
|
-
{ [_h]: ["PUT", "/policy/generation", 200] }, () => StartPolicyGenerationRequest$, () => StartPolicyGenerationResponse$
|
|
1764
|
-
];
|
|
1765
|
-
var StartResourceScan$ = [9, n0, _SRS,
|
|
1766
|
-
{ [_h]: ["POST", "/resource/scan", 200] }, () => StartResourceScanRequest$, () => __Unit
|
|
1767
|
-
];
|
|
1768
|
-
var TagResource$ = [9, n0, _TR,
|
|
1769
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1770
|
-
];
|
|
1771
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1772
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1773
|
-
];
|
|
1774
|
-
var UpdateAnalyzer$ = [9, n0, _UAp,
|
|
1775
|
-
{ [_h]: ["PUT", "/analyzer/{analyzerName}", 200] }, () => UpdateAnalyzerRequest$, () => UpdateAnalyzerResponse$
|
|
1776
|
-
];
|
|
1777
|
-
var UpdateArchiveRule$ = [9, n0, _UARpd,
|
|
1778
|
-
{ [_h]: ["PUT", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => UpdateArchiveRuleRequest$, () => __Unit
|
|
1779
|
-
];
|
|
1780
|
-
var UpdateFindings$ = [9, n0, _UF,
|
|
1781
|
-
{ [_h]: ["PUT", "/finding", 200] }, () => UpdateFindingsRequest$, () => __Unit
|
|
1782
|
-
];
|
|
1783
|
-
var ValidatePolicy$ = [9, n0, _VP,
|
|
1784
|
-
{ [_h]: ["POST", "/policy/validation", 200] }, () => ValidatePolicyRequest$, () => ValidatePolicyResponse$
|
|
1785
|
-
];
|
|
1786
|
-
|
|
1787
116
|
class ApplyArchiveRuleCommand extends smithyClient.Command
|
|
1788
117
|
.classBuilder()
|
|
1789
118
|
.ep(commonParams)
|
|
@@ -1792,7 +121,7 @@ class ApplyArchiveRuleCommand extends smithyClient.Command
|
|
|
1792
121
|
})
|
|
1793
122
|
.s("AccessAnalyzer", "ApplyArchiveRule", {})
|
|
1794
123
|
.n("AccessAnalyzerClient", "ApplyArchiveRuleCommand")
|
|
1795
|
-
.sc(ApplyArchiveRule$)
|
|
124
|
+
.sc(schemas_0.ApplyArchiveRule$)
|
|
1796
125
|
.build() {
|
|
1797
126
|
}
|
|
1798
127
|
|
|
@@ -1804,7 +133,7 @@ class CancelPolicyGenerationCommand extends smithyClient.Command
|
|
|
1804
133
|
})
|
|
1805
134
|
.s("AccessAnalyzer", "CancelPolicyGeneration", {})
|
|
1806
135
|
.n("AccessAnalyzerClient", "CancelPolicyGenerationCommand")
|
|
1807
|
-
.sc(CancelPolicyGeneration$)
|
|
136
|
+
.sc(schemas_0.CancelPolicyGeneration$)
|
|
1808
137
|
.build() {
|
|
1809
138
|
}
|
|
1810
139
|
|
|
@@ -1816,7 +145,7 @@ class CheckAccessNotGrantedCommand extends smithyClient.Command
|
|
|
1816
145
|
})
|
|
1817
146
|
.s("AccessAnalyzer", "CheckAccessNotGranted", {})
|
|
1818
147
|
.n("AccessAnalyzerClient", "CheckAccessNotGrantedCommand")
|
|
1819
|
-
.sc(CheckAccessNotGranted$)
|
|
148
|
+
.sc(schemas_0.CheckAccessNotGranted$)
|
|
1820
149
|
.build() {
|
|
1821
150
|
}
|
|
1822
151
|
|
|
@@ -1828,7 +157,7 @@ class CheckNoNewAccessCommand extends smithyClient.Command
|
|
|
1828
157
|
})
|
|
1829
158
|
.s("AccessAnalyzer", "CheckNoNewAccess", {})
|
|
1830
159
|
.n("AccessAnalyzerClient", "CheckNoNewAccessCommand")
|
|
1831
|
-
.sc(CheckNoNewAccess$)
|
|
160
|
+
.sc(schemas_0.CheckNoNewAccess$)
|
|
1832
161
|
.build() {
|
|
1833
162
|
}
|
|
1834
163
|
|
|
@@ -1840,7 +169,7 @@ class CheckNoPublicAccessCommand extends smithyClient.Command
|
|
|
1840
169
|
})
|
|
1841
170
|
.s("AccessAnalyzer", "CheckNoPublicAccess", {})
|
|
1842
171
|
.n("AccessAnalyzerClient", "CheckNoPublicAccessCommand")
|
|
1843
|
-
.sc(CheckNoPublicAccess$)
|
|
172
|
+
.sc(schemas_0.CheckNoPublicAccess$)
|
|
1844
173
|
.build() {
|
|
1845
174
|
}
|
|
1846
175
|
|
|
@@ -1852,7 +181,7 @@ class CreateAccessPreviewCommand extends smithyClient.Command
|
|
|
1852
181
|
})
|
|
1853
182
|
.s("AccessAnalyzer", "CreateAccessPreview", {})
|
|
1854
183
|
.n("AccessAnalyzerClient", "CreateAccessPreviewCommand")
|
|
1855
|
-
.sc(CreateAccessPreview$)
|
|
184
|
+
.sc(schemas_0.CreateAccessPreview$)
|
|
1856
185
|
.build() {
|
|
1857
186
|
}
|
|
1858
187
|
|
|
@@ -1864,7 +193,7 @@ class CreateAnalyzerCommand extends smithyClient.Command
|
|
|
1864
193
|
})
|
|
1865
194
|
.s("AccessAnalyzer", "CreateAnalyzer", {})
|
|
1866
195
|
.n("AccessAnalyzerClient", "CreateAnalyzerCommand")
|
|
1867
|
-
.sc(CreateAnalyzer$)
|
|
196
|
+
.sc(schemas_0.CreateAnalyzer$)
|
|
1868
197
|
.build() {
|
|
1869
198
|
}
|
|
1870
199
|
|
|
@@ -1876,7 +205,7 @@ class CreateArchiveRuleCommand extends smithyClient.Command
|
|
|
1876
205
|
})
|
|
1877
206
|
.s("AccessAnalyzer", "CreateArchiveRule", {})
|
|
1878
207
|
.n("AccessAnalyzerClient", "CreateArchiveRuleCommand")
|
|
1879
|
-
.sc(CreateArchiveRule$)
|
|
208
|
+
.sc(schemas_0.CreateArchiveRule$)
|
|
1880
209
|
.build() {
|
|
1881
210
|
}
|
|
1882
211
|
|
|
@@ -1888,7 +217,7 @@ class DeleteAnalyzerCommand extends smithyClient.Command
|
|
|
1888
217
|
})
|
|
1889
218
|
.s("AccessAnalyzer", "DeleteAnalyzer", {})
|
|
1890
219
|
.n("AccessAnalyzerClient", "DeleteAnalyzerCommand")
|
|
1891
|
-
.sc(DeleteAnalyzer$)
|
|
220
|
+
.sc(schemas_0.DeleteAnalyzer$)
|
|
1892
221
|
.build() {
|
|
1893
222
|
}
|
|
1894
223
|
|
|
@@ -1900,7 +229,7 @@ class DeleteArchiveRuleCommand extends smithyClient.Command
|
|
|
1900
229
|
})
|
|
1901
230
|
.s("AccessAnalyzer", "DeleteArchiveRule", {})
|
|
1902
231
|
.n("AccessAnalyzerClient", "DeleteArchiveRuleCommand")
|
|
1903
|
-
.sc(DeleteArchiveRule$)
|
|
232
|
+
.sc(schemas_0.DeleteArchiveRule$)
|
|
1904
233
|
.build() {
|
|
1905
234
|
}
|
|
1906
235
|
|
|
@@ -1912,7 +241,7 @@ class GenerateFindingRecommendationCommand extends smithyClient.Command
|
|
|
1912
241
|
})
|
|
1913
242
|
.s("AccessAnalyzer", "GenerateFindingRecommendation", {})
|
|
1914
243
|
.n("AccessAnalyzerClient", "GenerateFindingRecommendationCommand")
|
|
1915
|
-
.sc(GenerateFindingRecommendation$)
|
|
244
|
+
.sc(schemas_0.GenerateFindingRecommendation$)
|
|
1916
245
|
.build() {
|
|
1917
246
|
}
|
|
1918
247
|
|
|
@@ -1924,7 +253,7 @@ class GetAccessPreviewCommand extends smithyClient.Command
|
|
|
1924
253
|
})
|
|
1925
254
|
.s("AccessAnalyzer", "GetAccessPreview", {})
|
|
1926
255
|
.n("AccessAnalyzerClient", "GetAccessPreviewCommand")
|
|
1927
|
-
.sc(GetAccessPreview$)
|
|
256
|
+
.sc(schemas_0.GetAccessPreview$)
|
|
1928
257
|
.build() {
|
|
1929
258
|
}
|
|
1930
259
|
|
|
@@ -1936,7 +265,7 @@ class GetAnalyzedResourceCommand extends smithyClient.Command
|
|
|
1936
265
|
})
|
|
1937
266
|
.s("AccessAnalyzer", "GetAnalyzedResource", {})
|
|
1938
267
|
.n("AccessAnalyzerClient", "GetAnalyzedResourceCommand")
|
|
1939
|
-
.sc(GetAnalyzedResource$)
|
|
268
|
+
.sc(schemas_0.GetAnalyzedResource$)
|
|
1940
269
|
.build() {
|
|
1941
270
|
}
|
|
1942
271
|
|
|
@@ -1948,7 +277,7 @@ class GetAnalyzerCommand extends smithyClient.Command
|
|
|
1948
277
|
})
|
|
1949
278
|
.s("AccessAnalyzer", "GetAnalyzer", {})
|
|
1950
279
|
.n("AccessAnalyzerClient", "GetAnalyzerCommand")
|
|
1951
|
-
.sc(GetAnalyzer$)
|
|
280
|
+
.sc(schemas_0.GetAnalyzer$)
|
|
1952
281
|
.build() {
|
|
1953
282
|
}
|
|
1954
283
|
|
|
@@ -1960,7 +289,7 @@ class GetArchiveRuleCommand extends smithyClient.Command
|
|
|
1960
289
|
})
|
|
1961
290
|
.s("AccessAnalyzer", "GetArchiveRule", {})
|
|
1962
291
|
.n("AccessAnalyzerClient", "GetArchiveRuleCommand")
|
|
1963
|
-
.sc(GetArchiveRule$)
|
|
292
|
+
.sc(schemas_0.GetArchiveRule$)
|
|
1964
293
|
.build() {
|
|
1965
294
|
}
|
|
1966
295
|
|
|
@@ -1972,7 +301,7 @@ class GetFindingCommand extends smithyClient.Command
|
|
|
1972
301
|
})
|
|
1973
302
|
.s("AccessAnalyzer", "GetFinding", {})
|
|
1974
303
|
.n("AccessAnalyzerClient", "GetFindingCommand")
|
|
1975
|
-
.sc(GetFinding$)
|
|
304
|
+
.sc(schemas_0.GetFinding$)
|
|
1976
305
|
.build() {
|
|
1977
306
|
}
|
|
1978
307
|
|
|
@@ -1984,7 +313,7 @@ class GetFindingRecommendationCommand extends smithyClient.Command
|
|
|
1984
313
|
})
|
|
1985
314
|
.s("AccessAnalyzer", "GetFindingRecommendation", {})
|
|
1986
315
|
.n("AccessAnalyzerClient", "GetFindingRecommendationCommand")
|
|
1987
|
-
.sc(GetFindingRecommendation$)
|
|
316
|
+
.sc(schemas_0.GetFindingRecommendation$)
|
|
1988
317
|
.build() {
|
|
1989
318
|
}
|
|
1990
319
|
|
|
@@ -1996,7 +325,7 @@ class GetFindingsStatisticsCommand extends smithyClient.Command
|
|
|
1996
325
|
})
|
|
1997
326
|
.s("AccessAnalyzer", "GetFindingsStatistics", {})
|
|
1998
327
|
.n("AccessAnalyzerClient", "GetFindingsStatisticsCommand")
|
|
1999
|
-
.sc(GetFindingsStatistics$)
|
|
328
|
+
.sc(schemas_0.GetFindingsStatistics$)
|
|
2000
329
|
.build() {
|
|
2001
330
|
}
|
|
2002
331
|
|
|
@@ -2008,7 +337,7 @@ class GetFindingV2Command extends smithyClient.Command
|
|
|
2008
337
|
})
|
|
2009
338
|
.s("AccessAnalyzer", "GetFindingV2", {})
|
|
2010
339
|
.n("AccessAnalyzerClient", "GetFindingV2Command")
|
|
2011
|
-
.sc(GetFindingV2$)
|
|
340
|
+
.sc(schemas_0.GetFindingV2$)
|
|
2012
341
|
.build() {
|
|
2013
342
|
}
|
|
2014
343
|
|
|
@@ -2020,7 +349,7 @@ class GetGeneratedPolicyCommand extends smithyClient.Command
|
|
|
2020
349
|
})
|
|
2021
350
|
.s("AccessAnalyzer", "GetGeneratedPolicy", {})
|
|
2022
351
|
.n("AccessAnalyzerClient", "GetGeneratedPolicyCommand")
|
|
2023
|
-
.sc(GetGeneratedPolicy$)
|
|
352
|
+
.sc(schemas_0.GetGeneratedPolicy$)
|
|
2024
353
|
.build() {
|
|
2025
354
|
}
|
|
2026
355
|
|
|
@@ -2032,7 +361,7 @@ class ListAccessPreviewFindingsCommand extends smithyClient.Command
|
|
|
2032
361
|
})
|
|
2033
362
|
.s("AccessAnalyzer", "ListAccessPreviewFindings", {})
|
|
2034
363
|
.n("AccessAnalyzerClient", "ListAccessPreviewFindingsCommand")
|
|
2035
|
-
.sc(ListAccessPreviewFindings$)
|
|
364
|
+
.sc(schemas_0.ListAccessPreviewFindings$)
|
|
2036
365
|
.build() {
|
|
2037
366
|
}
|
|
2038
367
|
|
|
@@ -2044,7 +373,7 @@ class ListAccessPreviewsCommand extends smithyClient.Command
|
|
|
2044
373
|
})
|
|
2045
374
|
.s("AccessAnalyzer", "ListAccessPreviews", {})
|
|
2046
375
|
.n("AccessAnalyzerClient", "ListAccessPreviewsCommand")
|
|
2047
|
-
.sc(ListAccessPreviews$)
|
|
376
|
+
.sc(schemas_0.ListAccessPreviews$)
|
|
2048
377
|
.build() {
|
|
2049
378
|
}
|
|
2050
379
|
|
|
@@ -2056,7 +385,7 @@ class ListAnalyzedResourcesCommand extends smithyClient.Command
|
|
|
2056
385
|
})
|
|
2057
386
|
.s("AccessAnalyzer", "ListAnalyzedResources", {})
|
|
2058
387
|
.n("AccessAnalyzerClient", "ListAnalyzedResourcesCommand")
|
|
2059
|
-
.sc(ListAnalyzedResources$)
|
|
388
|
+
.sc(schemas_0.ListAnalyzedResources$)
|
|
2060
389
|
.build() {
|
|
2061
390
|
}
|
|
2062
391
|
|
|
@@ -2068,7 +397,7 @@ class ListAnalyzersCommand extends smithyClient.Command
|
|
|
2068
397
|
})
|
|
2069
398
|
.s("AccessAnalyzer", "ListAnalyzers", {})
|
|
2070
399
|
.n("AccessAnalyzerClient", "ListAnalyzersCommand")
|
|
2071
|
-
.sc(ListAnalyzers$)
|
|
400
|
+
.sc(schemas_0.ListAnalyzers$)
|
|
2072
401
|
.build() {
|
|
2073
402
|
}
|
|
2074
403
|
|
|
@@ -2080,7 +409,7 @@ class ListArchiveRulesCommand extends smithyClient.Command
|
|
|
2080
409
|
})
|
|
2081
410
|
.s("AccessAnalyzer", "ListArchiveRules", {})
|
|
2082
411
|
.n("AccessAnalyzerClient", "ListArchiveRulesCommand")
|
|
2083
|
-
.sc(ListArchiveRules$)
|
|
412
|
+
.sc(schemas_0.ListArchiveRules$)
|
|
2084
413
|
.build() {
|
|
2085
414
|
}
|
|
2086
415
|
|
|
@@ -2092,7 +421,7 @@ class ListFindingsCommand extends smithyClient.Command
|
|
|
2092
421
|
})
|
|
2093
422
|
.s("AccessAnalyzer", "ListFindings", {})
|
|
2094
423
|
.n("AccessAnalyzerClient", "ListFindingsCommand")
|
|
2095
|
-
.sc(ListFindings$)
|
|
424
|
+
.sc(schemas_0.ListFindings$)
|
|
2096
425
|
.build() {
|
|
2097
426
|
}
|
|
2098
427
|
|
|
@@ -2104,7 +433,7 @@ class ListFindingsV2Command extends smithyClient.Command
|
|
|
2104
433
|
})
|
|
2105
434
|
.s("AccessAnalyzer", "ListFindingsV2", {})
|
|
2106
435
|
.n("AccessAnalyzerClient", "ListFindingsV2Command")
|
|
2107
|
-
.sc(ListFindingsV2$)
|
|
436
|
+
.sc(schemas_0.ListFindingsV2$)
|
|
2108
437
|
.build() {
|
|
2109
438
|
}
|
|
2110
439
|
|
|
@@ -2116,7 +445,7 @@ class ListPolicyGenerationsCommand extends smithyClient.Command
|
|
|
2116
445
|
})
|
|
2117
446
|
.s("AccessAnalyzer", "ListPolicyGenerations", {})
|
|
2118
447
|
.n("AccessAnalyzerClient", "ListPolicyGenerationsCommand")
|
|
2119
|
-
.sc(ListPolicyGenerations$)
|
|
448
|
+
.sc(schemas_0.ListPolicyGenerations$)
|
|
2120
449
|
.build() {
|
|
2121
450
|
}
|
|
2122
451
|
|
|
@@ -2128,7 +457,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2128
457
|
})
|
|
2129
458
|
.s("AccessAnalyzer", "ListTagsForResource", {})
|
|
2130
459
|
.n("AccessAnalyzerClient", "ListTagsForResourceCommand")
|
|
2131
|
-
.sc(ListTagsForResource$)
|
|
460
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2132
461
|
.build() {
|
|
2133
462
|
}
|
|
2134
463
|
|
|
@@ -2140,7 +469,7 @@ class StartPolicyGenerationCommand extends smithyClient.Command
|
|
|
2140
469
|
})
|
|
2141
470
|
.s("AccessAnalyzer", "StartPolicyGeneration", {})
|
|
2142
471
|
.n("AccessAnalyzerClient", "StartPolicyGenerationCommand")
|
|
2143
|
-
.sc(StartPolicyGeneration$)
|
|
472
|
+
.sc(schemas_0.StartPolicyGeneration$)
|
|
2144
473
|
.build() {
|
|
2145
474
|
}
|
|
2146
475
|
|
|
@@ -2152,7 +481,7 @@ class StartResourceScanCommand extends smithyClient.Command
|
|
|
2152
481
|
})
|
|
2153
482
|
.s("AccessAnalyzer", "StartResourceScan", {})
|
|
2154
483
|
.n("AccessAnalyzerClient", "StartResourceScanCommand")
|
|
2155
|
-
.sc(StartResourceScan$)
|
|
484
|
+
.sc(schemas_0.StartResourceScan$)
|
|
2156
485
|
.build() {
|
|
2157
486
|
}
|
|
2158
487
|
|
|
@@ -2164,7 +493,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2164
493
|
})
|
|
2165
494
|
.s("AccessAnalyzer", "TagResource", {})
|
|
2166
495
|
.n("AccessAnalyzerClient", "TagResourceCommand")
|
|
2167
|
-
.sc(TagResource$)
|
|
496
|
+
.sc(schemas_0.TagResource$)
|
|
2168
497
|
.build() {
|
|
2169
498
|
}
|
|
2170
499
|
|
|
@@ -2176,7 +505,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2176
505
|
})
|
|
2177
506
|
.s("AccessAnalyzer", "UntagResource", {})
|
|
2178
507
|
.n("AccessAnalyzerClient", "UntagResourceCommand")
|
|
2179
|
-
.sc(UntagResource$)
|
|
508
|
+
.sc(schemas_0.UntagResource$)
|
|
2180
509
|
.build() {
|
|
2181
510
|
}
|
|
2182
511
|
|
|
@@ -2188,7 +517,7 @@ class UpdateAnalyzerCommand extends smithyClient.Command
|
|
|
2188
517
|
})
|
|
2189
518
|
.s("AccessAnalyzer", "UpdateAnalyzer", {})
|
|
2190
519
|
.n("AccessAnalyzerClient", "UpdateAnalyzerCommand")
|
|
2191
|
-
.sc(UpdateAnalyzer$)
|
|
520
|
+
.sc(schemas_0.UpdateAnalyzer$)
|
|
2192
521
|
.build() {
|
|
2193
522
|
}
|
|
2194
523
|
|
|
@@ -2200,7 +529,7 @@ class UpdateArchiveRuleCommand extends smithyClient.Command
|
|
|
2200
529
|
})
|
|
2201
530
|
.s("AccessAnalyzer", "UpdateArchiveRule", {})
|
|
2202
531
|
.n("AccessAnalyzerClient", "UpdateArchiveRuleCommand")
|
|
2203
|
-
.sc(UpdateArchiveRule$)
|
|
532
|
+
.sc(schemas_0.UpdateArchiveRule$)
|
|
2204
533
|
.build() {
|
|
2205
534
|
}
|
|
2206
535
|
|
|
@@ -2212,7 +541,7 @@ class UpdateFindingsCommand extends smithyClient.Command
|
|
|
2212
541
|
})
|
|
2213
542
|
.s("AccessAnalyzer", "UpdateFindings", {})
|
|
2214
543
|
.n("AccessAnalyzerClient", "UpdateFindingsCommand")
|
|
2215
|
-
.sc(UpdateFindings$)
|
|
544
|
+
.sc(schemas_0.UpdateFindings$)
|
|
2216
545
|
.build() {
|
|
2217
546
|
}
|
|
2218
547
|
|
|
@@ -2224,7 +553,7 @@ class ValidatePolicyCommand extends smithyClient.Command
|
|
|
2224
553
|
})
|
|
2225
554
|
.s("AccessAnalyzer", "ValidatePolicy", {})
|
|
2226
555
|
.n("AccessAnalyzerClient", "ValidatePolicyCommand")
|
|
2227
|
-
.sc(ValidatePolicy$)
|
|
556
|
+
.sc(schemas_0.ValidatePolicy$)
|
|
2228
557
|
.build() {
|
|
2229
558
|
}
|
|
2230
559
|
|
|
@@ -2545,291 +874,82 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2545
874
|
enumerable: true,
|
|
2546
875
|
get: function () { return smithyClient.Client; }
|
|
2547
876
|
});
|
|
2548
|
-
exports
|
|
877
|
+
Object.defineProperty(exports, "AccessAnalyzerServiceException", {
|
|
878
|
+
enumerable: true,
|
|
879
|
+
get: function () { return AccessAnalyzerServiceException.AccessAnalyzerServiceException; }
|
|
880
|
+
});
|
|
2549
881
|
exports.AccessAnalyzer = AccessAnalyzer;
|
|
2550
882
|
exports.AccessAnalyzerClient = AccessAnalyzerClient;
|
|
2551
|
-
exports.AccessAnalyzerServiceException = AccessAnalyzerServiceException;
|
|
2552
|
-
exports.AccessAnalyzerServiceException$ = AccessAnalyzerServiceException$;
|
|
2553
883
|
exports.AccessCheckPolicyType = AccessCheckPolicyType;
|
|
2554
884
|
exports.AccessCheckResourceType = AccessCheckResourceType;
|
|
2555
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2556
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2557
|
-
exports.AccessPreview$ = AccessPreview$;
|
|
2558
|
-
exports.AccessPreviewFinding$ = AccessPreviewFinding$;
|
|
2559
885
|
exports.AccessPreviewStatus = AccessPreviewStatus;
|
|
2560
|
-
exports.AccessPreviewStatusReason$ = AccessPreviewStatusReason$;
|
|
2561
886
|
exports.AccessPreviewStatusReasonCode = AccessPreviewStatusReasonCode;
|
|
2562
|
-
exports.AccessPreviewSummary$ = AccessPreviewSummary$;
|
|
2563
|
-
exports.AclGrantee$ = AclGrantee$;
|
|
2564
887
|
exports.AclPermission = AclPermission;
|
|
2565
|
-
exports.AnalysisRule$ = AnalysisRule$;
|
|
2566
|
-
exports.AnalysisRuleCriteria$ = AnalysisRuleCriteria$;
|
|
2567
|
-
exports.AnalyzedResource$ = AnalyzedResource$;
|
|
2568
|
-
exports.AnalyzedResourceSummary$ = AnalyzedResourceSummary$;
|
|
2569
|
-
exports.AnalyzerConfiguration$ = AnalyzerConfiguration$;
|
|
2570
888
|
exports.AnalyzerStatus = AnalyzerStatus;
|
|
2571
|
-
exports.AnalyzerSummary$ = AnalyzerSummary$;
|
|
2572
|
-
exports.ApplyArchiveRule$ = ApplyArchiveRule$;
|
|
2573
889
|
exports.ApplyArchiveRuleCommand = ApplyArchiveRuleCommand;
|
|
2574
|
-
exports.ApplyArchiveRuleRequest$ = ApplyArchiveRuleRequest$;
|
|
2575
|
-
exports.ArchiveRuleSummary$ = ArchiveRuleSummary$;
|
|
2576
|
-
exports.CancelPolicyGeneration$ = CancelPolicyGeneration$;
|
|
2577
890
|
exports.CancelPolicyGenerationCommand = CancelPolicyGenerationCommand;
|
|
2578
|
-
exports.CancelPolicyGenerationRequest$ = CancelPolicyGenerationRequest$;
|
|
2579
|
-
exports.CancelPolicyGenerationResponse$ = CancelPolicyGenerationResponse$;
|
|
2580
|
-
exports.CheckAccessNotGranted$ = CheckAccessNotGranted$;
|
|
2581
891
|
exports.CheckAccessNotGrantedCommand = CheckAccessNotGrantedCommand;
|
|
2582
|
-
exports.CheckAccessNotGrantedRequest$ = CheckAccessNotGrantedRequest$;
|
|
2583
|
-
exports.CheckAccessNotGrantedResponse$ = CheckAccessNotGrantedResponse$;
|
|
2584
892
|
exports.CheckAccessNotGrantedResult = CheckAccessNotGrantedResult;
|
|
2585
|
-
exports.CheckNoNewAccess$ = CheckNoNewAccess$;
|
|
2586
893
|
exports.CheckNoNewAccessCommand = CheckNoNewAccessCommand;
|
|
2587
|
-
exports.CheckNoNewAccessRequest$ = CheckNoNewAccessRequest$;
|
|
2588
|
-
exports.CheckNoNewAccessResponse$ = CheckNoNewAccessResponse$;
|
|
2589
894
|
exports.CheckNoNewAccessResult = CheckNoNewAccessResult;
|
|
2590
|
-
exports.CheckNoPublicAccess$ = CheckNoPublicAccess$;
|
|
2591
895
|
exports.CheckNoPublicAccessCommand = CheckNoPublicAccessCommand;
|
|
2592
|
-
exports.CheckNoPublicAccessRequest$ = CheckNoPublicAccessRequest$;
|
|
2593
|
-
exports.CheckNoPublicAccessResponse$ = CheckNoPublicAccessResponse$;
|
|
2594
896
|
exports.CheckNoPublicAccessResult = CheckNoPublicAccessResult;
|
|
2595
|
-
exports.CloudTrailDetails$ = CloudTrailDetails$;
|
|
2596
|
-
exports.CloudTrailProperties$ = CloudTrailProperties$;
|
|
2597
|
-
exports.Configuration$ = Configuration$;
|
|
2598
|
-
exports.ConflictException = ConflictException;
|
|
2599
|
-
exports.ConflictException$ = ConflictException$;
|
|
2600
|
-
exports.CreateAccessPreview$ = CreateAccessPreview$;
|
|
2601
897
|
exports.CreateAccessPreviewCommand = CreateAccessPreviewCommand;
|
|
2602
|
-
exports.CreateAccessPreviewRequest$ = CreateAccessPreviewRequest$;
|
|
2603
|
-
exports.CreateAccessPreviewResponse$ = CreateAccessPreviewResponse$;
|
|
2604
|
-
exports.CreateAnalyzer$ = CreateAnalyzer$;
|
|
2605
898
|
exports.CreateAnalyzerCommand = CreateAnalyzerCommand;
|
|
2606
|
-
exports.CreateAnalyzerRequest$ = CreateAnalyzerRequest$;
|
|
2607
|
-
exports.CreateAnalyzerResponse$ = CreateAnalyzerResponse$;
|
|
2608
|
-
exports.CreateArchiveRule$ = CreateArchiveRule$;
|
|
2609
899
|
exports.CreateArchiveRuleCommand = CreateArchiveRuleCommand;
|
|
2610
|
-
exports.CreateArchiveRuleRequest$ = CreateArchiveRuleRequest$;
|
|
2611
|
-
exports.Criterion$ = Criterion$;
|
|
2612
|
-
exports.DeleteAnalyzer$ = DeleteAnalyzer$;
|
|
2613
900
|
exports.DeleteAnalyzerCommand = DeleteAnalyzerCommand;
|
|
2614
|
-
exports.DeleteAnalyzerRequest$ = DeleteAnalyzerRequest$;
|
|
2615
|
-
exports.DeleteArchiveRule$ = DeleteArchiveRule$;
|
|
2616
901
|
exports.DeleteArchiveRuleCommand = DeleteArchiveRuleCommand;
|
|
2617
|
-
exports.DeleteArchiveRuleRequest$ = DeleteArchiveRuleRequest$;
|
|
2618
|
-
exports.DynamodbStreamConfiguration$ = DynamodbStreamConfiguration$;
|
|
2619
|
-
exports.DynamodbTableConfiguration$ = DynamodbTableConfiguration$;
|
|
2620
|
-
exports.EbsSnapshotConfiguration$ = EbsSnapshotConfiguration$;
|
|
2621
|
-
exports.EcrRepositoryConfiguration$ = EcrRepositoryConfiguration$;
|
|
2622
|
-
exports.EfsFileSystemConfiguration$ = EfsFileSystemConfiguration$;
|
|
2623
|
-
exports.ExternalAccessDetails$ = ExternalAccessDetails$;
|
|
2624
|
-
exports.ExternalAccessFindingsStatistics$ = ExternalAccessFindingsStatistics$;
|
|
2625
|
-
exports.Finding$ = Finding$;
|
|
2626
|
-
exports.FindingAggregationAccountDetails$ = FindingAggregationAccountDetails$;
|
|
2627
902
|
exports.FindingChangeType = FindingChangeType;
|
|
2628
|
-
exports.FindingDetails$ = FindingDetails$;
|
|
2629
|
-
exports.FindingSource$ = FindingSource$;
|
|
2630
|
-
exports.FindingSourceDetail$ = FindingSourceDetail$;
|
|
2631
903
|
exports.FindingSourceType = FindingSourceType;
|
|
2632
904
|
exports.FindingStatus = FindingStatus;
|
|
2633
905
|
exports.FindingStatusUpdate = FindingStatusUpdate;
|
|
2634
|
-
exports.FindingSummary$ = FindingSummary$;
|
|
2635
|
-
exports.FindingSummaryV2$ = FindingSummaryV2$;
|
|
2636
906
|
exports.FindingType = FindingType;
|
|
2637
|
-
exports.FindingsStatistics$ = FindingsStatistics$;
|
|
2638
|
-
exports.GenerateFindingRecommendation$ = GenerateFindingRecommendation$;
|
|
2639
907
|
exports.GenerateFindingRecommendationCommand = GenerateFindingRecommendationCommand;
|
|
2640
|
-
exports.GenerateFindingRecommendationRequest$ = GenerateFindingRecommendationRequest$;
|
|
2641
|
-
exports.GeneratedPolicy$ = GeneratedPolicy$;
|
|
2642
|
-
exports.GeneratedPolicyProperties$ = GeneratedPolicyProperties$;
|
|
2643
|
-
exports.GeneratedPolicyResult$ = GeneratedPolicyResult$;
|
|
2644
|
-
exports.GetAccessPreview$ = GetAccessPreview$;
|
|
2645
908
|
exports.GetAccessPreviewCommand = GetAccessPreviewCommand;
|
|
2646
|
-
exports.GetAccessPreviewRequest$ = GetAccessPreviewRequest$;
|
|
2647
|
-
exports.GetAccessPreviewResponse$ = GetAccessPreviewResponse$;
|
|
2648
|
-
exports.GetAnalyzedResource$ = GetAnalyzedResource$;
|
|
2649
909
|
exports.GetAnalyzedResourceCommand = GetAnalyzedResourceCommand;
|
|
2650
|
-
exports.GetAnalyzedResourceRequest$ = GetAnalyzedResourceRequest$;
|
|
2651
|
-
exports.GetAnalyzedResourceResponse$ = GetAnalyzedResourceResponse$;
|
|
2652
|
-
exports.GetAnalyzer$ = GetAnalyzer$;
|
|
2653
910
|
exports.GetAnalyzerCommand = GetAnalyzerCommand;
|
|
2654
|
-
exports.GetAnalyzerRequest$ = GetAnalyzerRequest$;
|
|
2655
|
-
exports.GetAnalyzerResponse$ = GetAnalyzerResponse$;
|
|
2656
|
-
exports.GetArchiveRule$ = GetArchiveRule$;
|
|
2657
911
|
exports.GetArchiveRuleCommand = GetArchiveRuleCommand;
|
|
2658
|
-
exports.GetArchiveRuleRequest$ = GetArchiveRuleRequest$;
|
|
2659
|
-
exports.GetArchiveRuleResponse$ = GetArchiveRuleResponse$;
|
|
2660
|
-
exports.GetFinding$ = GetFinding$;
|
|
2661
912
|
exports.GetFindingCommand = GetFindingCommand;
|
|
2662
|
-
exports.GetFindingRecommendation$ = GetFindingRecommendation$;
|
|
2663
913
|
exports.GetFindingRecommendationCommand = GetFindingRecommendationCommand;
|
|
2664
|
-
exports.GetFindingRecommendationRequest$ = GetFindingRecommendationRequest$;
|
|
2665
|
-
exports.GetFindingRecommendationResponse$ = GetFindingRecommendationResponse$;
|
|
2666
|
-
exports.GetFindingRequest$ = GetFindingRequest$;
|
|
2667
|
-
exports.GetFindingResponse$ = GetFindingResponse$;
|
|
2668
|
-
exports.GetFindingV2$ = GetFindingV2$;
|
|
2669
914
|
exports.GetFindingV2Command = GetFindingV2Command;
|
|
2670
|
-
exports.GetFindingV2Request$ = GetFindingV2Request$;
|
|
2671
|
-
exports.GetFindingV2Response$ = GetFindingV2Response$;
|
|
2672
|
-
exports.GetFindingsStatistics$ = GetFindingsStatistics$;
|
|
2673
915
|
exports.GetFindingsStatisticsCommand = GetFindingsStatisticsCommand;
|
|
2674
|
-
exports.GetFindingsStatisticsRequest$ = GetFindingsStatisticsRequest$;
|
|
2675
|
-
exports.GetFindingsStatisticsResponse$ = GetFindingsStatisticsResponse$;
|
|
2676
|
-
exports.GetGeneratedPolicy$ = GetGeneratedPolicy$;
|
|
2677
916
|
exports.GetGeneratedPolicyCommand = GetGeneratedPolicyCommand;
|
|
2678
|
-
exports.GetGeneratedPolicyRequest$ = GetGeneratedPolicyRequest$;
|
|
2679
|
-
exports.GetGeneratedPolicyResponse$ = GetGeneratedPolicyResponse$;
|
|
2680
|
-
exports.IamRoleConfiguration$ = IamRoleConfiguration$;
|
|
2681
|
-
exports.InlineArchiveRule$ = InlineArchiveRule$;
|
|
2682
|
-
exports.InternalAccessAnalysisRule$ = InternalAccessAnalysisRule$;
|
|
2683
|
-
exports.InternalAccessAnalysisRuleCriteria$ = InternalAccessAnalysisRuleCriteria$;
|
|
2684
|
-
exports.InternalAccessConfiguration$ = InternalAccessConfiguration$;
|
|
2685
|
-
exports.InternalAccessDetails$ = InternalAccessDetails$;
|
|
2686
|
-
exports.InternalAccessFindingsStatistics$ = InternalAccessFindingsStatistics$;
|
|
2687
|
-
exports.InternalAccessResourceTypeDetails$ = InternalAccessResourceTypeDetails$;
|
|
2688
917
|
exports.InternalAccessType = InternalAccessType;
|
|
2689
|
-
exports.InternalServerException = InternalServerException;
|
|
2690
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2691
|
-
exports.InternetConfiguration$ = InternetConfiguration$;
|
|
2692
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2693
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2694
|
-
exports.JobDetails$ = JobDetails$;
|
|
2695
|
-
exports.JobError$ = JobError$;
|
|
2696
918
|
exports.JobErrorCode = JobErrorCode;
|
|
2697
919
|
exports.JobStatus = JobStatus;
|
|
2698
|
-
exports.KmsGrantConfiguration$ = KmsGrantConfiguration$;
|
|
2699
|
-
exports.KmsGrantConstraints$ = KmsGrantConstraints$;
|
|
2700
920
|
exports.KmsGrantOperation = KmsGrantOperation;
|
|
2701
|
-
exports.KmsKeyConfiguration$ = KmsKeyConfiguration$;
|
|
2702
|
-
exports.ListAccessPreviewFindings$ = ListAccessPreviewFindings$;
|
|
2703
921
|
exports.ListAccessPreviewFindingsCommand = ListAccessPreviewFindingsCommand;
|
|
2704
|
-
exports.ListAccessPreviewFindingsRequest$ = ListAccessPreviewFindingsRequest$;
|
|
2705
|
-
exports.ListAccessPreviewFindingsResponse$ = ListAccessPreviewFindingsResponse$;
|
|
2706
|
-
exports.ListAccessPreviews$ = ListAccessPreviews$;
|
|
2707
922
|
exports.ListAccessPreviewsCommand = ListAccessPreviewsCommand;
|
|
2708
|
-
exports.ListAccessPreviewsRequest$ = ListAccessPreviewsRequest$;
|
|
2709
|
-
exports.ListAccessPreviewsResponse$ = ListAccessPreviewsResponse$;
|
|
2710
|
-
exports.ListAnalyzedResources$ = ListAnalyzedResources$;
|
|
2711
923
|
exports.ListAnalyzedResourcesCommand = ListAnalyzedResourcesCommand;
|
|
2712
|
-
exports.ListAnalyzedResourcesRequest$ = ListAnalyzedResourcesRequest$;
|
|
2713
|
-
exports.ListAnalyzedResourcesResponse$ = ListAnalyzedResourcesResponse$;
|
|
2714
|
-
exports.ListAnalyzers$ = ListAnalyzers$;
|
|
2715
924
|
exports.ListAnalyzersCommand = ListAnalyzersCommand;
|
|
2716
|
-
exports.ListAnalyzersRequest$ = ListAnalyzersRequest$;
|
|
2717
|
-
exports.ListAnalyzersResponse$ = ListAnalyzersResponse$;
|
|
2718
|
-
exports.ListArchiveRules$ = ListArchiveRules$;
|
|
2719
925
|
exports.ListArchiveRulesCommand = ListArchiveRulesCommand;
|
|
2720
|
-
exports.ListArchiveRulesRequest$ = ListArchiveRulesRequest$;
|
|
2721
|
-
exports.ListArchiveRulesResponse$ = ListArchiveRulesResponse$;
|
|
2722
|
-
exports.ListFindings$ = ListFindings$;
|
|
2723
926
|
exports.ListFindingsCommand = ListFindingsCommand;
|
|
2724
|
-
exports.ListFindingsRequest$ = ListFindingsRequest$;
|
|
2725
|
-
exports.ListFindingsResponse$ = ListFindingsResponse$;
|
|
2726
|
-
exports.ListFindingsV2$ = ListFindingsV2$;
|
|
2727
927
|
exports.ListFindingsV2Command = ListFindingsV2Command;
|
|
2728
|
-
exports.ListFindingsV2Request$ = ListFindingsV2Request$;
|
|
2729
|
-
exports.ListFindingsV2Response$ = ListFindingsV2Response$;
|
|
2730
|
-
exports.ListPolicyGenerations$ = ListPolicyGenerations$;
|
|
2731
928
|
exports.ListPolicyGenerationsCommand = ListPolicyGenerationsCommand;
|
|
2732
|
-
exports.ListPolicyGenerationsRequest$ = ListPolicyGenerationsRequest$;
|
|
2733
|
-
exports.ListPolicyGenerationsResponse$ = ListPolicyGenerationsResponse$;
|
|
2734
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2735
929
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2736
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2737
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2738
930
|
exports.Locale = Locale;
|
|
2739
|
-
exports.Location$ = Location$;
|
|
2740
|
-
exports.NetworkOriginConfiguration$ = NetworkOriginConfiguration$;
|
|
2741
931
|
exports.OrderBy = OrderBy;
|
|
2742
|
-
exports.PathElement$ = PathElement$;
|
|
2743
|
-
exports.PolicyGeneration$ = PolicyGeneration$;
|
|
2744
|
-
exports.PolicyGenerationDetails$ = PolicyGenerationDetails$;
|
|
2745
932
|
exports.PolicyType = PolicyType;
|
|
2746
|
-
exports.Position$ = Position$;
|
|
2747
933
|
exports.PrincipalType = PrincipalType;
|
|
2748
|
-
exports.RdsDbClusterSnapshotAttributeValue$ = RdsDbClusterSnapshotAttributeValue$;
|
|
2749
|
-
exports.RdsDbClusterSnapshotConfiguration$ = RdsDbClusterSnapshotConfiguration$;
|
|
2750
|
-
exports.RdsDbSnapshotAttributeValue$ = RdsDbSnapshotAttributeValue$;
|
|
2751
|
-
exports.RdsDbSnapshotConfiguration$ = RdsDbSnapshotConfiguration$;
|
|
2752
934
|
exports.ReasonCode = ReasonCode;
|
|
2753
|
-
exports.ReasonSummary$ = ReasonSummary$;
|
|
2754
|
-
exports.RecommendationError$ = RecommendationError$;
|
|
2755
935
|
exports.RecommendationType = RecommendationType;
|
|
2756
936
|
exports.RecommendedRemediationAction = RecommendedRemediationAction;
|
|
2757
|
-
exports.RecommendedStep$ = RecommendedStep$;
|
|
2758
937
|
exports.ResourceControlPolicyRestriction = ResourceControlPolicyRestriction;
|
|
2759
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2760
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2761
938
|
exports.ResourceType = ResourceType;
|
|
2762
|
-
exports.ResourceTypeDetails$ = ResourceTypeDetails$;
|
|
2763
|
-
exports.S3AccessPointConfiguration$ = S3AccessPointConfiguration$;
|
|
2764
|
-
exports.S3BucketAclGrantConfiguration$ = S3BucketAclGrantConfiguration$;
|
|
2765
|
-
exports.S3BucketConfiguration$ = S3BucketConfiguration$;
|
|
2766
|
-
exports.S3ExpressDirectoryAccessPointConfiguration$ = S3ExpressDirectoryAccessPointConfiguration$;
|
|
2767
|
-
exports.S3ExpressDirectoryBucketConfiguration$ = S3ExpressDirectoryBucketConfiguration$;
|
|
2768
|
-
exports.S3PublicAccessBlockConfiguration$ = S3PublicAccessBlockConfiguration$;
|
|
2769
|
-
exports.SecretsManagerSecretConfiguration$ = SecretsManagerSecretConfiguration$;
|
|
2770
939
|
exports.ServiceControlPolicyRestriction = ServiceControlPolicyRestriction;
|
|
2771
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2772
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2773
|
-
exports.SnsTopicConfiguration$ = SnsTopicConfiguration$;
|
|
2774
|
-
exports.SortCriteria$ = SortCriteria$;
|
|
2775
|
-
exports.Span$ = Span$;
|
|
2776
|
-
exports.SqsQueueConfiguration$ = SqsQueueConfiguration$;
|
|
2777
|
-
exports.StartPolicyGeneration$ = StartPolicyGeneration$;
|
|
2778
940
|
exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
|
|
2779
|
-
exports.StartPolicyGenerationRequest$ = StartPolicyGenerationRequest$;
|
|
2780
|
-
exports.StartPolicyGenerationResponse$ = StartPolicyGenerationResponse$;
|
|
2781
|
-
exports.StartResourceScan$ = StartResourceScan$;
|
|
2782
941
|
exports.StartResourceScanCommand = StartResourceScanCommand;
|
|
2783
|
-
exports.StartResourceScanRequest$ = StartResourceScanRequest$;
|
|
2784
942
|
exports.Status = Status;
|
|
2785
|
-
exports.StatusReason$ = StatusReason$;
|
|
2786
|
-
exports.Substring$ = Substring$;
|
|
2787
|
-
exports.TagResource$ = TagResource$;
|
|
2788
943
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2789
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2790
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2791
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2792
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2793
|
-
exports.Trail$ = Trail$;
|
|
2794
|
-
exports.TrailProperties$ = TrailProperties$;
|
|
2795
944
|
exports.Type = Type;
|
|
2796
|
-
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
2797
|
-
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
2798
|
-
exports.UntagResource$ = UntagResource$;
|
|
2799
945
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2800
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2801
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2802
|
-
exports.UnusedAccessConfiguration$ = UnusedAccessConfiguration$;
|
|
2803
|
-
exports.UnusedAccessFindingsStatistics$ = UnusedAccessFindingsStatistics$;
|
|
2804
|
-
exports.UnusedAccessTypeStatistics$ = UnusedAccessTypeStatistics$;
|
|
2805
|
-
exports.UnusedAction$ = UnusedAction$;
|
|
2806
|
-
exports.UnusedIamRoleDetails$ = UnusedIamRoleDetails$;
|
|
2807
|
-
exports.UnusedIamUserAccessKeyDetails$ = UnusedIamUserAccessKeyDetails$;
|
|
2808
|
-
exports.UnusedIamUserPasswordDetails$ = UnusedIamUserPasswordDetails$;
|
|
2809
|
-
exports.UnusedPermissionDetails$ = UnusedPermissionDetails$;
|
|
2810
|
-
exports.UnusedPermissionsRecommendedStep$ = UnusedPermissionsRecommendedStep$;
|
|
2811
|
-
exports.UpdateAnalyzer$ = UpdateAnalyzer$;
|
|
2812
946
|
exports.UpdateAnalyzerCommand = UpdateAnalyzerCommand;
|
|
2813
|
-
exports.UpdateAnalyzerRequest$ = UpdateAnalyzerRequest$;
|
|
2814
|
-
exports.UpdateAnalyzerResponse$ = UpdateAnalyzerResponse$;
|
|
2815
|
-
exports.UpdateArchiveRule$ = UpdateArchiveRule$;
|
|
2816
947
|
exports.UpdateArchiveRuleCommand = UpdateArchiveRuleCommand;
|
|
2817
|
-
exports.UpdateArchiveRuleRequest$ = UpdateArchiveRuleRequest$;
|
|
2818
|
-
exports.UpdateFindings$ = UpdateFindings$;
|
|
2819
948
|
exports.UpdateFindingsCommand = UpdateFindingsCommand;
|
|
2820
|
-
exports.UpdateFindingsRequest$ = UpdateFindingsRequest$;
|
|
2821
|
-
exports.ValidatePolicy$ = ValidatePolicy$;
|
|
2822
949
|
exports.ValidatePolicyCommand = ValidatePolicyCommand;
|
|
2823
|
-
exports.ValidatePolicyFinding$ = ValidatePolicyFinding$;
|
|
2824
950
|
exports.ValidatePolicyFindingType = ValidatePolicyFindingType;
|
|
2825
|
-
exports.ValidatePolicyRequest$ = ValidatePolicyRequest$;
|
|
2826
951
|
exports.ValidatePolicyResourceType = ValidatePolicyResourceType;
|
|
2827
|
-
exports.ValidatePolicyResponse$ = ValidatePolicyResponse$;
|
|
2828
|
-
exports.ValidationException = ValidationException;
|
|
2829
|
-
exports.ValidationException$ = ValidationException$;
|
|
2830
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2831
952
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2832
|
-
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
2833
953
|
exports.paginateGetFindingRecommendation = paginateGetFindingRecommendation;
|
|
2834
954
|
exports.paginateGetFindingV2 = paginateGetFindingV2;
|
|
2835
955
|
exports.paginateListAccessPreviewFindings = paginateListAccessPreviewFindings;
|
|
@@ -2841,3 +961,15 @@ exports.paginateListFindings = paginateListFindings;
|
|
|
2841
961
|
exports.paginateListFindingsV2 = paginateListFindingsV2;
|
|
2842
962
|
exports.paginateListPolicyGenerations = paginateListPolicyGenerations;
|
|
2843
963
|
exports.paginateValidatePolicy = paginateValidatePolicy;
|
|
964
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
965
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
966
|
+
enumerable: true,
|
|
967
|
+
get: function () { return schemas_0[k]; }
|
|
968
|
+
});
|
|
969
|
+
});
|
|
970
|
+
Object.keys(errors).forEach(function (k) {
|
|
971
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
972
|
+
enumerable: true,
|
|
973
|
+
get: function () { return errors[k]; }
|
|
974
|
+
});
|
|
975
|
+
});
|