@aws-sdk/client-accessanalyzer 3.211.0 → 3.213.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.
|
@@ -414,10 +414,7 @@ exports.RdsDbClusterSnapshotAttributeValueFilterSensitiveLog = RdsDbClusterSnaps
|
|
|
414
414
|
const RdsDbClusterSnapshotConfigurationFilterSensitiveLog = (obj) => ({
|
|
415
415
|
...obj,
|
|
416
416
|
...(obj.attributes && {
|
|
417
|
-
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ({
|
|
418
|
-
...acc,
|
|
419
|
-
[key]: (0, exports.RdsDbClusterSnapshotAttributeValueFilterSensitiveLog)(value),
|
|
420
|
-
}), {}),
|
|
417
|
+
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.RdsDbClusterSnapshotAttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
421
418
|
}),
|
|
422
419
|
});
|
|
423
420
|
exports.RdsDbClusterSnapshotConfigurationFilterSensitiveLog = RdsDbClusterSnapshotConfigurationFilterSensitiveLog;
|
|
@@ -431,10 +428,7 @@ exports.RdsDbSnapshotAttributeValueFilterSensitiveLog = RdsDbSnapshotAttributeVa
|
|
|
431
428
|
const RdsDbSnapshotConfigurationFilterSensitiveLog = (obj) => ({
|
|
432
429
|
...obj,
|
|
433
430
|
...(obj.attributes && {
|
|
434
|
-
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ({
|
|
435
|
-
...acc,
|
|
436
|
-
[key]: (0, exports.RdsDbSnapshotAttributeValueFilterSensitiveLog)(value),
|
|
437
|
-
}), {}),
|
|
431
|
+
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ((acc[key] = (0, exports.RdsDbSnapshotAttributeValueFilterSensitiveLog)(value)), acc), {}),
|
|
438
432
|
}),
|
|
439
433
|
});
|
|
440
434
|
exports.RdsDbSnapshotConfigurationFilterSensitiveLog = RdsDbSnapshotConfigurationFilterSensitiveLog;
|
|
@@ -484,10 +478,7 @@ const S3BucketConfigurationFilterSensitiveLog = (obj) => ({
|
|
|
484
478
|
bucketAclGrants: obj.bucketAclGrants.map((item) => (0, exports.S3BucketAclGrantConfigurationFilterSensitiveLog)(item)),
|
|
485
479
|
}),
|
|
486
480
|
...(obj.accessPoints && {
|
|
487
|
-
accessPoints: Object.entries(obj.accessPoints).reduce((acc, [key, value]) => ({
|
|
488
|
-
...acc,
|
|
489
|
-
[key]: (0, exports.S3AccessPointConfigurationFilterSensitiveLog)(value),
|
|
490
|
-
}), {}),
|
|
481
|
+
accessPoints: Object.entries(obj.accessPoints).reduce((acc, [key, value]) => ((acc[key] = (0, exports.S3AccessPointConfigurationFilterSensitiveLog)(value)), acc), {}),
|
|
491
482
|
}),
|
|
492
483
|
});
|
|
493
484
|
exports.S3BucketConfigurationFilterSensitiveLog = S3BucketConfigurationFilterSensitiveLog;
|
|
@@ -533,10 +524,7 @@ exports.ConfigurationFilterSensitiveLog = ConfigurationFilterSensitiveLog;
|
|
|
533
524
|
const CreateAccessPreviewRequestFilterSensitiveLog = (obj) => ({
|
|
534
525
|
...obj,
|
|
535
526
|
...(obj.configurations && {
|
|
536
|
-
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ({
|
|
537
|
-
...acc,
|
|
538
|
-
[key]: (0, exports.ConfigurationFilterSensitiveLog)(value),
|
|
539
|
-
}), {}),
|
|
527
|
+
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ((acc[key] = (0, exports.ConfigurationFilterSensitiveLog)(value)), acc), {}),
|
|
540
528
|
}),
|
|
541
529
|
});
|
|
542
530
|
exports.CreateAccessPreviewRequestFilterSensitiveLog = CreateAccessPreviewRequestFilterSensitiveLog;
|
|
@@ -555,10 +543,7 @@ exports.AccessPreviewStatusReasonFilterSensitiveLog = AccessPreviewStatusReasonF
|
|
|
555
543
|
const AccessPreviewFilterSensitiveLog = (obj) => ({
|
|
556
544
|
...obj,
|
|
557
545
|
...(obj.configurations && {
|
|
558
|
-
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ({
|
|
559
|
-
...acc,
|
|
560
|
-
[key]: (0, exports.ConfigurationFilterSensitiveLog)(value),
|
|
561
|
-
}), {}),
|
|
546
|
+
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ((acc[key] = (0, exports.ConfigurationFilterSensitiveLog)(value)), acc), {}),
|
|
562
547
|
}),
|
|
563
548
|
});
|
|
564
549
|
exports.AccessPreviewFilterSensitiveLog = AccessPreviewFilterSensitiveLog;
|
|
@@ -2092,10 +2092,8 @@ const serializeAws_restJson1ConfigurationsMap = (input, context) => {
|
|
|
2092
2092
|
if (value === null) {
|
|
2093
2093
|
return acc;
|
|
2094
2094
|
}
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
[key]: serializeAws_restJson1Configuration(value, context),
|
|
2098
|
-
};
|
|
2095
|
+
acc[key] = serializeAws_restJson1Configuration(value, context);
|
|
2096
|
+
return acc;
|
|
2099
2097
|
}, {});
|
|
2100
2098
|
};
|
|
2101
2099
|
const serializeAws_restJson1Criterion = (input, context) => {
|
|
@@ -2142,10 +2140,8 @@ const serializeAws_restJson1FilterCriteriaMap = (input, context) => {
|
|
|
2142
2140
|
if (value === null) {
|
|
2143
2141
|
return acc;
|
|
2144
2142
|
}
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
[key]: serializeAws_restJson1Criterion(value, context),
|
|
2148
|
-
};
|
|
2143
|
+
acc[key] = serializeAws_restJson1Criterion(value, context);
|
|
2144
|
+
return acc;
|
|
2149
2145
|
}, {});
|
|
2150
2146
|
};
|
|
2151
2147
|
const serializeAws_restJson1FindingIdList = (input, context) => {
|
|
@@ -2181,10 +2177,8 @@ const serializeAws_restJson1KmsConstraintsMap = (input, context) => {
|
|
|
2181
2177
|
if (value === null) {
|
|
2182
2178
|
return acc;
|
|
2183
2179
|
}
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
[key]: value,
|
|
2187
|
-
};
|
|
2180
|
+
acc[key] = value;
|
|
2181
|
+
return acc;
|
|
2188
2182
|
}, {});
|
|
2189
2183
|
};
|
|
2190
2184
|
const serializeAws_restJson1KmsGrantConfiguration = (input, context) => {
|
|
@@ -2237,10 +2231,8 @@ const serializeAws_restJson1KmsKeyPoliciesMap = (input, context) => {
|
|
|
2237
2231
|
if (value === null) {
|
|
2238
2232
|
return acc;
|
|
2239
2233
|
}
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
[key]: value,
|
|
2243
|
-
};
|
|
2234
|
+
acc[key] = value;
|
|
2235
|
+
return acc;
|
|
2244
2236
|
}, {});
|
|
2245
2237
|
};
|
|
2246
2238
|
const serializeAws_restJson1NetworkOriginConfiguration = (input, context) => {
|
|
@@ -2269,10 +2261,8 @@ const serializeAws_restJson1RdsDbClusterSnapshotAttributesMap = (input, context)
|
|
|
2269
2261
|
if (value === null) {
|
|
2270
2262
|
return acc;
|
|
2271
2263
|
}
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
[key]: serializeAws_restJson1RdsDbClusterSnapshotAttributeValue(value, context),
|
|
2275
|
-
};
|
|
2264
|
+
acc[key] = serializeAws_restJson1RdsDbClusterSnapshotAttributeValue(value, context);
|
|
2265
|
+
return acc;
|
|
2276
2266
|
}, {});
|
|
2277
2267
|
};
|
|
2278
2268
|
const serializeAws_restJson1RdsDbClusterSnapshotAttributeValue = (input, context) => {
|
|
@@ -2301,10 +2291,8 @@ const serializeAws_restJson1RdsDbSnapshotAttributesMap = (input, context) => {
|
|
|
2301
2291
|
if (value === null) {
|
|
2302
2292
|
return acc;
|
|
2303
2293
|
}
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
[key]: serializeAws_restJson1RdsDbSnapshotAttributeValue(value, context),
|
|
2307
|
-
};
|
|
2294
|
+
acc[key] = serializeAws_restJson1RdsDbSnapshotAttributeValue(value, context);
|
|
2295
|
+
return acc;
|
|
2308
2296
|
}, {});
|
|
2309
2297
|
};
|
|
2310
2298
|
const serializeAws_restJson1RdsDbSnapshotAttributeValue = (input, context) => {
|
|
@@ -2344,10 +2332,8 @@ const serializeAws_restJson1S3AccessPointConfigurationsMap = (input, context) =>
|
|
|
2344
2332
|
if (value === null) {
|
|
2345
2333
|
return acc;
|
|
2346
2334
|
}
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
[key]: serializeAws_restJson1S3AccessPointConfiguration(value, context),
|
|
2350
|
-
};
|
|
2335
|
+
acc[key] = serializeAws_restJson1S3AccessPointConfiguration(value, context);
|
|
2336
|
+
return acc;
|
|
2351
2337
|
}, {});
|
|
2352
2338
|
};
|
|
2353
2339
|
const serializeAws_restJson1S3BucketAclGrantConfiguration = (input, context) => {
|
|
@@ -2410,10 +2396,8 @@ const serializeAws_restJson1TagsMap = (input, context) => {
|
|
|
2410
2396
|
if (value === null) {
|
|
2411
2397
|
return acc;
|
|
2412
2398
|
}
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
[key]: value,
|
|
2416
|
-
};
|
|
2399
|
+
acc[key] = value;
|
|
2400
|
+
return acc;
|
|
2417
2401
|
}, {});
|
|
2418
2402
|
};
|
|
2419
2403
|
const serializeAws_restJson1Trail = (input, context) => {
|
|
@@ -2625,10 +2609,8 @@ const deserializeAws_restJson1ConditionKeyMap = (output, context) => {
|
|
|
2625
2609
|
if (value === null) {
|
|
2626
2610
|
return acc;
|
|
2627
2611
|
}
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
2631
|
-
};
|
|
2612
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
2613
|
+
return acc;
|
|
2632
2614
|
}, {});
|
|
2633
2615
|
};
|
|
2634
2616
|
const deserializeAws_restJson1Configuration = (output, context) => {
|
|
@@ -2694,10 +2676,8 @@ const deserializeAws_restJson1ConfigurationsMap = (output, context) => {
|
|
|
2694
2676
|
if (value === null) {
|
|
2695
2677
|
return acc;
|
|
2696
2678
|
}
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
[key]: deserializeAws_restJson1Configuration((0, smithy_client_1.expectUnion)(value), context),
|
|
2700
|
-
};
|
|
2679
|
+
acc[key] = deserializeAws_restJson1Configuration((0, smithy_client_1.expectUnion)(value), context);
|
|
2680
|
+
return acc;
|
|
2701
2681
|
}, {});
|
|
2702
2682
|
};
|
|
2703
2683
|
const deserializeAws_restJson1Criterion = (output, context) => {
|
|
@@ -2752,10 +2732,8 @@ const deserializeAws_restJson1FilterCriteriaMap = (output, context) => {
|
|
|
2752
2732
|
if (value === null) {
|
|
2753
2733
|
return acc;
|
|
2754
2734
|
}
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
[key]: deserializeAws_restJson1Criterion(value, context),
|
|
2758
|
-
};
|
|
2735
|
+
acc[key] = deserializeAws_restJson1Criterion(value, context);
|
|
2736
|
+
return acc;
|
|
2759
2737
|
}, {});
|
|
2760
2738
|
};
|
|
2761
2739
|
const deserializeAws_restJson1Finding = (output, context) => {
|
|
@@ -2890,10 +2868,8 @@ const deserializeAws_restJson1KmsConstraintsMap = (output, context) => {
|
|
|
2890
2868
|
if (value === null) {
|
|
2891
2869
|
return acc;
|
|
2892
2870
|
}
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
2896
|
-
};
|
|
2871
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
2872
|
+
return acc;
|
|
2897
2873
|
}, {});
|
|
2898
2874
|
};
|
|
2899
2875
|
const deserializeAws_restJson1KmsGrantConfiguration = (output, context) => {
|
|
@@ -2950,10 +2926,8 @@ const deserializeAws_restJson1KmsKeyPoliciesMap = (output, context) => {
|
|
|
2950
2926
|
if (value === null) {
|
|
2951
2927
|
return acc;
|
|
2952
2928
|
}
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
2956
|
-
};
|
|
2929
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
2930
|
+
return acc;
|
|
2957
2931
|
}, {});
|
|
2958
2932
|
};
|
|
2959
2933
|
const deserializeAws_restJson1Location = (output, context) => {
|
|
@@ -3046,10 +3020,8 @@ const deserializeAws_restJson1PrincipalMap = (output, context) => {
|
|
|
3046
3020
|
if (value === null) {
|
|
3047
3021
|
return acc;
|
|
3048
3022
|
}
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
3052
|
-
};
|
|
3023
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3024
|
+
return acc;
|
|
3053
3025
|
}, {});
|
|
3054
3026
|
};
|
|
3055
3027
|
const deserializeAws_restJson1RdsDbClusterSnapshotAccountIdsList = (output, context) => {
|
|
@@ -3068,10 +3040,8 @@ const deserializeAws_restJson1RdsDbClusterSnapshotAttributesMap = (output, conte
|
|
|
3068
3040
|
if (value === null) {
|
|
3069
3041
|
return acc;
|
|
3070
3042
|
}
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
[key]: deserializeAws_restJson1RdsDbClusterSnapshotAttributeValue((0, smithy_client_1.expectUnion)(value), context),
|
|
3074
|
-
};
|
|
3043
|
+
acc[key] = deserializeAws_restJson1RdsDbClusterSnapshotAttributeValue((0, smithy_client_1.expectUnion)(value), context);
|
|
3044
|
+
return acc;
|
|
3075
3045
|
}, {});
|
|
3076
3046
|
};
|
|
3077
3047
|
const deserializeAws_restJson1RdsDbClusterSnapshotAttributeValue = (output, context) => {
|
|
@@ -3106,10 +3076,8 @@ const deserializeAws_restJson1RdsDbSnapshotAttributesMap = (output, context) =>
|
|
|
3106
3076
|
if (value === null) {
|
|
3107
3077
|
return acc;
|
|
3108
3078
|
}
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
[key]: deserializeAws_restJson1RdsDbSnapshotAttributeValue((0, smithy_client_1.expectUnion)(value), context),
|
|
3112
|
-
};
|
|
3079
|
+
acc[key] = deserializeAws_restJson1RdsDbSnapshotAttributeValue((0, smithy_client_1.expectUnion)(value), context);
|
|
3080
|
+
return acc;
|
|
3113
3081
|
}, {});
|
|
3114
3082
|
};
|
|
3115
3083
|
const deserializeAws_restJson1RdsDbSnapshotAttributeValue = (output, context) => {
|
|
@@ -3155,10 +3123,8 @@ const deserializeAws_restJson1S3AccessPointConfigurationsMap = (output, context)
|
|
|
3155
3123
|
if (value === null) {
|
|
3156
3124
|
return acc;
|
|
3157
3125
|
}
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
[key]: deserializeAws_restJson1S3AccessPointConfiguration(value, context),
|
|
3161
|
-
};
|
|
3126
|
+
acc[key] = deserializeAws_restJson1S3AccessPointConfiguration(value, context);
|
|
3127
|
+
return acc;
|
|
3162
3128
|
}, {});
|
|
3163
3129
|
};
|
|
3164
3130
|
const deserializeAws_restJson1S3BucketAclGrantConfiguration = (output, context) => {
|
|
@@ -3247,10 +3213,8 @@ const deserializeAws_restJson1TagsMap = (output, context) => {
|
|
|
3247
3213
|
if (value === null) {
|
|
3248
3214
|
return acc;
|
|
3249
3215
|
}
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
3253
|
-
};
|
|
3216
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3217
|
+
return acc;
|
|
3254
3218
|
}, {});
|
|
3255
3219
|
};
|
|
3256
3220
|
const deserializeAws_restJson1TrailProperties = (output, context) => {
|
|
@@ -371,10 +371,7 @@ export const RdsDbClusterSnapshotAttributeValueFilterSensitiveLog = (obj) => {
|
|
|
371
371
|
export const RdsDbClusterSnapshotConfigurationFilterSensitiveLog = (obj) => ({
|
|
372
372
|
...obj,
|
|
373
373
|
...(obj.attributes && {
|
|
374
|
-
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ({
|
|
375
|
-
...acc,
|
|
376
|
-
[key]: RdsDbClusterSnapshotAttributeValueFilterSensitiveLog(value),
|
|
377
|
-
}), {}),
|
|
374
|
+
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ((acc[key] = RdsDbClusterSnapshotAttributeValueFilterSensitiveLog(value)), acc), {}),
|
|
378
375
|
}),
|
|
379
376
|
});
|
|
380
377
|
export const RdsDbSnapshotAttributeValueFilterSensitiveLog = (obj) => {
|
|
@@ -386,10 +383,7 @@ export const RdsDbSnapshotAttributeValueFilterSensitiveLog = (obj) => {
|
|
|
386
383
|
export const RdsDbSnapshotConfigurationFilterSensitiveLog = (obj) => ({
|
|
387
384
|
...obj,
|
|
388
385
|
...(obj.attributes && {
|
|
389
|
-
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ({
|
|
390
|
-
...acc,
|
|
391
|
-
[key]: RdsDbSnapshotAttributeValueFilterSensitiveLog(value),
|
|
392
|
-
}), {}),
|
|
386
|
+
attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => ((acc[key] = RdsDbSnapshotAttributeValueFilterSensitiveLog(value)), acc), {}),
|
|
393
387
|
}),
|
|
394
388
|
});
|
|
395
389
|
export const InternetConfigurationFilterSensitiveLog = (obj) => ({
|
|
@@ -431,10 +425,7 @@ export const S3BucketConfigurationFilterSensitiveLog = (obj) => ({
|
|
|
431
425
|
bucketAclGrants: obj.bucketAclGrants.map((item) => S3BucketAclGrantConfigurationFilterSensitiveLog(item)),
|
|
432
426
|
}),
|
|
433
427
|
...(obj.accessPoints && {
|
|
434
|
-
accessPoints: Object.entries(obj.accessPoints).reduce((acc, [key, value]) => ({
|
|
435
|
-
...acc,
|
|
436
|
-
[key]: S3AccessPointConfigurationFilterSensitiveLog(value),
|
|
437
|
-
}), {}),
|
|
428
|
+
accessPoints: Object.entries(obj.accessPoints).reduce((acc, [key, value]) => ((acc[key] = S3AccessPointConfigurationFilterSensitiveLog(value)), acc), {}),
|
|
438
429
|
}),
|
|
439
430
|
});
|
|
440
431
|
export const SecretsManagerSecretConfigurationFilterSensitiveLog = (obj) => ({
|
|
@@ -475,10 +466,7 @@ export const ConfigurationFilterSensitiveLog = (obj) => {
|
|
|
475
466
|
export const CreateAccessPreviewRequestFilterSensitiveLog = (obj) => ({
|
|
476
467
|
...obj,
|
|
477
468
|
...(obj.configurations && {
|
|
478
|
-
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ({
|
|
479
|
-
...acc,
|
|
480
|
-
[key]: ConfigurationFilterSensitiveLog(value),
|
|
481
|
-
}), {}),
|
|
469
|
+
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ((acc[key] = ConfigurationFilterSensitiveLog(value)), acc), {}),
|
|
482
470
|
}),
|
|
483
471
|
});
|
|
484
472
|
export const CreateAccessPreviewResponseFilterSensitiveLog = (obj) => ({
|
|
@@ -493,10 +481,7 @@ export const AccessPreviewStatusReasonFilterSensitiveLog = (obj) => ({
|
|
|
493
481
|
export const AccessPreviewFilterSensitiveLog = (obj) => ({
|
|
494
482
|
...obj,
|
|
495
483
|
...(obj.configurations && {
|
|
496
|
-
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ({
|
|
497
|
-
...acc,
|
|
498
|
-
[key]: ConfigurationFilterSensitiveLog(value),
|
|
499
|
-
}), {}),
|
|
484
|
+
configurations: Object.entries(obj.configurations).reduce((acc, [key, value]) => ((acc[key] = ConfigurationFilterSensitiveLog(value)), acc), {}),
|
|
500
485
|
}),
|
|
501
486
|
});
|
|
502
487
|
export const GetAccessPreviewResponseFilterSensitiveLog = (obj) => ({
|
|
@@ -2032,10 +2032,8 @@ const serializeAws_restJson1ConfigurationsMap = (input, context) => {
|
|
|
2032
2032
|
if (value === null) {
|
|
2033
2033
|
return acc;
|
|
2034
2034
|
}
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
[key]: serializeAws_restJson1Configuration(value, context),
|
|
2038
|
-
};
|
|
2035
|
+
acc[key] = serializeAws_restJson1Configuration(value, context);
|
|
2036
|
+
return acc;
|
|
2039
2037
|
}, {});
|
|
2040
2038
|
};
|
|
2041
2039
|
const serializeAws_restJson1Criterion = (input, context) => {
|
|
@@ -2082,10 +2080,8 @@ const serializeAws_restJson1FilterCriteriaMap = (input, context) => {
|
|
|
2082
2080
|
if (value === null) {
|
|
2083
2081
|
return acc;
|
|
2084
2082
|
}
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
[key]: serializeAws_restJson1Criterion(value, context),
|
|
2088
|
-
};
|
|
2083
|
+
acc[key] = serializeAws_restJson1Criterion(value, context);
|
|
2084
|
+
return acc;
|
|
2089
2085
|
}, {});
|
|
2090
2086
|
};
|
|
2091
2087
|
const serializeAws_restJson1FindingIdList = (input, context) => {
|
|
@@ -2121,10 +2117,8 @@ const serializeAws_restJson1KmsConstraintsMap = (input, context) => {
|
|
|
2121
2117
|
if (value === null) {
|
|
2122
2118
|
return acc;
|
|
2123
2119
|
}
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
[key]: value,
|
|
2127
|
-
};
|
|
2120
|
+
acc[key] = value;
|
|
2121
|
+
return acc;
|
|
2128
2122
|
}, {});
|
|
2129
2123
|
};
|
|
2130
2124
|
const serializeAws_restJson1KmsGrantConfiguration = (input, context) => {
|
|
@@ -2177,10 +2171,8 @@ const serializeAws_restJson1KmsKeyPoliciesMap = (input, context) => {
|
|
|
2177
2171
|
if (value === null) {
|
|
2178
2172
|
return acc;
|
|
2179
2173
|
}
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
[key]: value,
|
|
2183
|
-
};
|
|
2174
|
+
acc[key] = value;
|
|
2175
|
+
return acc;
|
|
2184
2176
|
}, {});
|
|
2185
2177
|
};
|
|
2186
2178
|
const serializeAws_restJson1NetworkOriginConfiguration = (input, context) => {
|
|
@@ -2209,10 +2201,8 @@ const serializeAws_restJson1RdsDbClusterSnapshotAttributesMap = (input, context)
|
|
|
2209
2201
|
if (value === null) {
|
|
2210
2202
|
return acc;
|
|
2211
2203
|
}
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
[key]: serializeAws_restJson1RdsDbClusterSnapshotAttributeValue(value, context),
|
|
2215
|
-
};
|
|
2204
|
+
acc[key] = serializeAws_restJson1RdsDbClusterSnapshotAttributeValue(value, context);
|
|
2205
|
+
return acc;
|
|
2216
2206
|
}, {});
|
|
2217
2207
|
};
|
|
2218
2208
|
const serializeAws_restJson1RdsDbClusterSnapshotAttributeValue = (input, context) => {
|
|
@@ -2241,10 +2231,8 @@ const serializeAws_restJson1RdsDbSnapshotAttributesMap = (input, context) => {
|
|
|
2241
2231
|
if (value === null) {
|
|
2242
2232
|
return acc;
|
|
2243
2233
|
}
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
[key]: serializeAws_restJson1RdsDbSnapshotAttributeValue(value, context),
|
|
2247
|
-
};
|
|
2234
|
+
acc[key] = serializeAws_restJson1RdsDbSnapshotAttributeValue(value, context);
|
|
2235
|
+
return acc;
|
|
2248
2236
|
}, {});
|
|
2249
2237
|
};
|
|
2250
2238
|
const serializeAws_restJson1RdsDbSnapshotAttributeValue = (input, context) => {
|
|
@@ -2284,10 +2272,8 @@ const serializeAws_restJson1S3AccessPointConfigurationsMap = (input, context) =>
|
|
|
2284
2272
|
if (value === null) {
|
|
2285
2273
|
return acc;
|
|
2286
2274
|
}
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
[key]: serializeAws_restJson1S3AccessPointConfiguration(value, context),
|
|
2290
|
-
};
|
|
2275
|
+
acc[key] = serializeAws_restJson1S3AccessPointConfiguration(value, context);
|
|
2276
|
+
return acc;
|
|
2291
2277
|
}, {});
|
|
2292
2278
|
};
|
|
2293
2279
|
const serializeAws_restJson1S3BucketAclGrantConfiguration = (input, context) => {
|
|
@@ -2350,10 +2336,8 @@ const serializeAws_restJson1TagsMap = (input, context) => {
|
|
|
2350
2336
|
if (value === null) {
|
|
2351
2337
|
return acc;
|
|
2352
2338
|
}
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
[key]: value,
|
|
2356
|
-
};
|
|
2339
|
+
acc[key] = value;
|
|
2340
|
+
return acc;
|
|
2357
2341
|
}, {});
|
|
2358
2342
|
};
|
|
2359
2343
|
const serializeAws_restJson1Trail = (input, context) => {
|
|
@@ -2565,10 +2549,8 @@ const deserializeAws_restJson1ConditionKeyMap = (output, context) => {
|
|
|
2565
2549
|
if (value === null) {
|
|
2566
2550
|
return acc;
|
|
2567
2551
|
}
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
[key]: __expectString(value),
|
|
2571
|
-
};
|
|
2552
|
+
acc[key] = __expectString(value);
|
|
2553
|
+
return acc;
|
|
2572
2554
|
}, {});
|
|
2573
2555
|
};
|
|
2574
2556
|
const deserializeAws_restJson1Configuration = (output, context) => {
|
|
@@ -2634,10 +2616,8 @@ const deserializeAws_restJson1ConfigurationsMap = (output, context) => {
|
|
|
2634
2616
|
if (value === null) {
|
|
2635
2617
|
return acc;
|
|
2636
2618
|
}
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
[key]: deserializeAws_restJson1Configuration(__expectUnion(value), context),
|
|
2640
|
-
};
|
|
2619
|
+
acc[key] = deserializeAws_restJson1Configuration(__expectUnion(value), context);
|
|
2620
|
+
return acc;
|
|
2641
2621
|
}, {});
|
|
2642
2622
|
};
|
|
2643
2623
|
const deserializeAws_restJson1Criterion = (output, context) => {
|
|
@@ -2692,10 +2672,8 @@ const deserializeAws_restJson1FilterCriteriaMap = (output, context) => {
|
|
|
2692
2672
|
if (value === null) {
|
|
2693
2673
|
return acc;
|
|
2694
2674
|
}
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
[key]: deserializeAws_restJson1Criterion(value, context),
|
|
2698
|
-
};
|
|
2675
|
+
acc[key] = deserializeAws_restJson1Criterion(value, context);
|
|
2676
|
+
return acc;
|
|
2699
2677
|
}, {});
|
|
2700
2678
|
};
|
|
2701
2679
|
const deserializeAws_restJson1Finding = (output, context) => {
|
|
@@ -2830,10 +2808,8 @@ const deserializeAws_restJson1KmsConstraintsMap = (output, context) => {
|
|
|
2830
2808
|
if (value === null) {
|
|
2831
2809
|
return acc;
|
|
2832
2810
|
}
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
[key]: __expectString(value),
|
|
2836
|
-
};
|
|
2811
|
+
acc[key] = __expectString(value);
|
|
2812
|
+
return acc;
|
|
2837
2813
|
}, {});
|
|
2838
2814
|
};
|
|
2839
2815
|
const deserializeAws_restJson1KmsGrantConfiguration = (output, context) => {
|
|
@@ -2890,10 +2866,8 @@ const deserializeAws_restJson1KmsKeyPoliciesMap = (output, context) => {
|
|
|
2890
2866
|
if (value === null) {
|
|
2891
2867
|
return acc;
|
|
2892
2868
|
}
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
[key]: __expectString(value),
|
|
2896
|
-
};
|
|
2869
|
+
acc[key] = __expectString(value);
|
|
2870
|
+
return acc;
|
|
2897
2871
|
}, {});
|
|
2898
2872
|
};
|
|
2899
2873
|
const deserializeAws_restJson1Location = (output, context) => {
|
|
@@ -2986,10 +2960,8 @@ const deserializeAws_restJson1PrincipalMap = (output, context) => {
|
|
|
2986
2960
|
if (value === null) {
|
|
2987
2961
|
return acc;
|
|
2988
2962
|
}
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
[key]: __expectString(value),
|
|
2992
|
-
};
|
|
2963
|
+
acc[key] = __expectString(value);
|
|
2964
|
+
return acc;
|
|
2993
2965
|
}, {});
|
|
2994
2966
|
};
|
|
2995
2967
|
const deserializeAws_restJson1RdsDbClusterSnapshotAccountIdsList = (output, context) => {
|
|
@@ -3008,10 +2980,8 @@ const deserializeAws_restJson1RdsDbClusterSnapshotAttributesMap = (output, conte
|
|
|
3008
2980
|
if (value === null) {
|
|
3009
2981
|
return acc;
|
|
3010
2982
|
}
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
[key]: deserializeAws_restJson1RdsDbClusterSnapshotAttributeValue(__expectUnion(value), context),
|
|
3014
|
-
};
|
|
2983
|
+
acc[key] = deserializeAws_restJson1RdsDbClusterSnapshotAttributeValue(__expectUnion(value), context);
|
|
2984
|
+
return acc;
|
|
3015
2985
|
}, {});
|
|
3016
2986
|
};
|
|
3017
2987
|
const deserializeAws_restJson1RdsDbClusterSnapshotAttributeValue = (output, context) => {
|
|
@@ -3046,10 +3016,8 @@ const deserializeAws_restJson1RdsDbSnapshotAttributesMap = (output, context) =>
|
|
|
3046
3016
|
if (value === null) {
|
|
3047
3017
|
return acc;
|
|
3048
3018
|
}
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
[key]: deserializeAws_restJson1RdsDbSnapshotAttributeValue(__expectUnion(value), context),
|
|
3052
|
-
};
|
|
3019
|
+
acc[key] = deserializeAws_restJson1RdsDbSnapshotAttributeValue(__expectUnion(value), context);
|
|
3020
|
+
return acc;
|
|
3053
3021
|
}, {});
|
|
3054
3022
|
};
|
|
3055
3023
|
const deserializeAws_restJson1RdsDbSnapshotAttributeValue = (output, context) => {
|
|
@@ -3095,10 +3063,8 @@ const deserializeAws_restJson1S3AccessPointConfigurationsMap = (output, context)
|
|
|
3095
3063
|
if (value === null) {
|
|
3096
3064
|
return acc;
|
|
3097
3065
|
}
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
[key]: deserializeAws_restJson1S3AccessPointConfiguration(value, context),
|
|
3101
|
-
};
|
|
3066
|
+
acc[key] = deserializeAws_restJson1S3AccessPointConfiguration(value, context);
|
|
3067
|
+
return acc;
|
|
3102
3068
|
}, {});
|
|
3103
3069
|
};
|
|
3104
3070
|
const deserializeAws_restJson1S3BucketAclGrantConfiguration = (output, context) => {
|
|
@@ -3187,10 +3153,8 @@ const deserializeAws_restJson1TagsMap = (output, context) => {
|
|
|
3187
3153
|
if (value === null) {
|
|
3188
3154
|
return acc;
|
|
3189
3155
|
}
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
[key]: __expectString(value),
|
|
3193
|
-
};
|
|
3156
|
+
acc[key] = __expectString(value);
|
|
3157
|
+
return acc;
|
|
3194
3158
|
}, {});
|
|
3195
3159
|
};
|
|
3196
3160
|
const deserializeAws_restJson1TrailProperties = (output, context) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-accessanalyzer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Accessanalyzer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.213.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
42
|
+
"@aws-sdk/types": "3.212.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1",
|