@aws-sdk/client-accessanalyzer 3.99.0 → 3.109.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-accessanalyzer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-accessanalyzer
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-accessanalyzer
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class AccessAnalyzerClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var AccessAnalyzerClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -72,9 +72,7 @@ export interface CreateArchiveRuleRequest {
|
|
|
72
72
|
/**
|
|
73
73
|
* <p>The criteria for the rule.</p>
|
|
74
74
|
*/
|
|
75
|
-
filter:
|
|
76
|
-
[key: string]: Criterion;
|
|
77
|
-
} | undefined;
|
|
75
|
+
filter: Record<string, Criterion> | undefined;
|
|
78
76
|
/**
|
|
79
77
|
* <p>A client token.</p>
|
|
80
78
|
*/
|
|
@@ -255,9 +253,7 @@ export interface ArchiveRuleSummary {
|
|
|
255
253
|
/**
|
|
256
254
|
* <p>A filter used to define the archive rule.</p>
|
|
257
255
|
*/
|
|
258
|
-
filter:
|
|
259
|
-
[key: string]: Criterion;
|
|
260
|
-
} | undefined;
|
|
256
|
+
filter: Record<string, Criterion> | undefined;
|
|
261
257
|
/**
|
|
262
258
|
* <p>The time at which the archive rule was created.</p>
|
|
263
259
|
*/
|
|
@@ -346,9 +342,7 @@ export interface UpdateArchiveRuleRequest {
|
|
|
346
342
|
* <p>A filter to match for the rules to update. Only rules that match the filter are
|
|
347
343
|
* updated.</p>
|
|
348
344
|
*/
|
|
349
|
-
filter:
|
|
350
|
-
[key: string]: Criterion;
|
|
351
|
-
} | undefined;
|
|
345
|
+
filter: Record<string, Criterion> | undefined;
|
|
352
346
|
/**
|
|
353
347
|
* <p>A client token.</p>
|
|
354
348
|
*/
|
|
@@ -372,9 +366,7 @@ export interface InlineArchiveRule {
|
|
|
372
366
|
/**
|
|
373
367
|
* <p>The condition and values for a criterion.</p>
|
|
374
368
|
*/
|
|
375
|
-
filter:
|
|
376
|
-
[key: string]: Criterion;
|
|
377
|
-
} | undefined;
|
|
369
|
+
filter: Record<string, Criterion> | undefined;
|
|
378
370
|
}
|
|
379
371
|
export declare namespace InlineArchiveRule {
|
|
380
372
|
/**
|
|
@@ -405,9 +397,7 @@ export interface CreateAnalyzerRequest {
|
|
|
405
397
|
/**
|
|
406
398
|
* <p>The tags to apply to the analyzer.</p>
|
|
407
399
|
*/
|
|
408
|
-
tags?:
|
|
409
|
-
[key: string]: string;
|
|
410
|
-
};
|
|
400
|
+
tags?: Record<string, string>;
|
|
411
401
|
/**
|
|
412
402
|
* <p>A client token.</p>
|
|
413
403
|
*/
|
|
@@ -520,9 +510,7 @@ export interface AnalyzerSummary {
|
|
|
520
510
|
/**
|
|
521
511
|
* <p>The tags added to the analyzer.</p>
|
|
522
512
|
*/
|
|
523
|
-
tags?:
|
|
524
|
-
[key: string]: string;
|
|
525
|
-
};
|
|
513
|
+
tags?: Record<string, string>;
|
|
526
514
|
/**
|
|
527
515
|
* <p>The status of the analyzer. An <code>Active</code> analyzer successfully monitors
|
|
528
516
|
* supported resources and generates new findings. The analyzer is <code>Disabled</code> when
|
|
@@ -687,18 +675,14 @@ export interface KmsGrantConstraints {
|
|
|
687
675
|
* context in the request is the same as the encryption context specified in this
|
|
688
676
|
* constraint.</p>
|
|
689
677
|
*/
|
|
690
|
-
encryptionContextEquals?:
|
|
691
|
-
[key: string]: string;
|
|
692
|
-
};
|
|
678
|
+
encryptionContextEquals?: Record<string, string>;
|
|
693
679
|
/**
|
|
694
680
|
* <p>A list of key-value pairs that must be included in the encryption context of the <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations">cryptographic
|
|
695
681
|
* operation</a> request. The grant allows the cryptographic operation only when the
|
|
696
682
|
* encryption context in the request includes the key-value pairs specified in this
|
|
697
683
|
* constraint, although it can include additional key-value pairs.</p>
|
|
698
684
|
*/
|
|
699
|
-
encryptionContextSubset?:
|
|
700
|
-
[key: string]: string;
|
|
701
|
-
};
|
|
685
|
+
encryptionContextSubset?: Record<string, string>;
|
|
702
686
|
}
|
|
703
687
|
export declare namespace KmsGrantConstraints {
|
|
704
688
|
/**
|
|
@@ -776,9 +760,7 @@ export interface KmsKeyConfiguration {
|
|
|
776
760
|
* the key policy is <code>default</code>. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default">Default key
|
|
777
761
|
* policy</a>.</p>
|
|
778
762
|
*/
|
|
779
|
-
keyPolicies?:
|
|
780
|
-
[key: string]: string;
|
|
781
|
-
};
|
|
763
|
+
keyPolicies?: Record<string, string>;
|
|
782
764
|
/**
|
|
783
765
|
* <p>A list of proposed grant configurations for the KMS key. If the proposed grant
|
|
784
766
|
* configuration is for an existing key, the access preview uses the proposed list of grant
|
|
@@ -1029,9 +1011,7 @@ export interface S3BucketConfiguration {
|
|
|
1029
1011
|
* <p>The configuration of Amazon S3 access points or multi-region access points for the bucket.
|
|
1030
1012
|
* You can propose up to 10 new access points per bucket.</p>
|
|
1031
1013
|
*/
|
|
1032
|
-
accessPoints?:
|
|
1033
|
-
[key: string]: S3AccessPointConfiguration;
|
|
1034
|
-
};
|
|
1014
|
+
accessPoints?: Record<string, S3AccessPointConfiguration>;
|
|
1035
1015
|
}
|
|
1036
1016
|
export declare namespace S3BucketConfiguration {
|
|
1037
1017
|
/**
|
|
@@ -1189,9 +1169,7 @@ export interface CreateAccessPreviewRequest {
|
|
|
1189
1169
|
* with the proposed access control configuration. The configuration must contain exactly one
|
|
1190
1170
|
* element.</p>
|
|
1191
1171
|
*/
|
|
1192
|
-
configurations:
|
|
1193
|
-
[key: string]: Configuration;
|
|
1194
|
-
} | undefined;
|
|
1172
|
+
configurations: Record<string, Configuration> | undefined;
|
|
1195
1173
|
/**
|
|
1196
1174
|
* <p>A client token.</p>
|
|
1197
1175
|
*/
|
|
@@ -1274,9 +1252,7 @@ export interface AccessPreview {
|
|
|
1274
1252
|
/**
|
|
1275
1253
|
* <p>A map of resource ARNs for the proposed resource configuration.</p>
|
|
1276
1254
|
*/
|
|
1277
|
-
configurations:
|
|
1278
|
-
[key: string]: Configuration;
|
|
1279
|
-
} | undefined;
|
|
1255
|
+
configurations: Record<string, Configuration> | undefined;
|
|
1280
1256
|
/**
|
|
1281
1257
|
* <p>The time at which the access preview was created.</p>
|
|
1282
1258
|
*/
|
|
@@ -1492,9 +1468,7 @@ export interface Finding {
|
|
|
1492
1468
|
/**
|
|
1493
1469
|
* <p>The external principal that access to a resource within the zone of trust.</p>
|
|
1494
1470
|
*/
|
|
1495
|
-
principal?:
|
|
1496
|
-
[key: string]: string;
|
|
1497
|
-
};
|
|
1471
|
+
principal?: Record<string, string>;
|
|
1498
1472
|
/**
|
|
1499
1473
|
* <p>The action in the analyzed policy statement that an external principal has permission to
|
|
1500
1474
|
* use.</p>
|
|
@@ -1516,9 +1490,7 @@ export interface Finding {
|
|
|
1516
1490
|
/**
|
|
1517
1491
|
* <p>The condition in the analyzed policy statement that resulted in a finding.</p>
|
|
1518
1492
|
*/
|
|
1519
|
-
condition:
|
|
1520
|
-
[key: string]: string;
|
|
1521
|
-
} | undefined;
|
|
1493
|
+
condition: Record<string, string> | undefined;
|
|
1522
1494
|
/**
|
|
1523
1495
|
* <p>The time at which the finding was generated.</p>
|
|
1524
1496
|
*/
|
|
@@ -1812,9 +1784,7 @@ export interface ListAccessPreviewFindingsRequest {
|
|
|
1812
1784
|
/**
|
|
1813
1785
|
* <p>Criteria to filter the returned findings.</p>
|
|
1814
1786
|
*/
|
|
1815
|
-
filter?:
|
|
1816
|
-
[key: string]: Criterion;
|
|
1817
|
-
};
|
|
1787
|
+
filter?: Record<string, Criterion>;
|
|
1818
1788
|
/**
|
|
1819
1789
|
* <p>A token used for pagination of results returned.</p>
|
|
1820
1790
|
*/
|
|
@@ -1857,9 +1827,7 @@ export interface AccessPreviewFinding {
|
|
|
1857
1827
|
/**
|
|
1858
1828
|
* <p>The external principal that has access to a resource within the zone of trust.</p>
|
|
1859
1829
|
*/
|
|
1860
|
-
principal?:
|
|
1861
|
-
[key: string]: string;
|
|
1862
|
-
};
|
|
1830
|
+
principal?: Record<string, string>;
|
|
1863
1831
|
/**
|
|
1864
1832
|
* <p>The action in the analyzed policy statement that an external principal has permission to
|
|
1865
1833
|
* perform.</p>
|
|
@@ -1868,9 +1836,7 @@ export interface AccessPreviewFinding {
|
|
|
1868
1836
|
/**
|
|
1869
1837
|
* <p>The condition in the analyzed policy statement that resulted in a finding.</p>
|
|
1870
1838
|
*/
|
|
1871
|
-
condition?:
|
|
1872
|
-
[key: string]: string;
|
|
1873
|
-
};
|
|
1839
|
+
condition?: Record<string, string>;
|
|
1874
1840
|
/**
|
|
1875
1841
|
* <p>The resource that an external principal has access to. This is the resource associated
|
|
1876
1842
|
* with the access preview.</p>
|
|
@@ -2146,9 +2112,7 @@ export interface ListFindingsRequest {
|
|
|
2146
2112
|
/**
|
|
2147
2113
|
* <p>A filter to match for the findings to return.</p>
|
|
2148
2114
|
*/
|
|
2149
|
-
filter?:
|
|
2150
|
-
[key: string]: Criterion;
|
|
2151
|
-
};
|
|
2115
|
+
filter?: Record<string, Criterion>;
|
|
2152
2116
|
/**
|
|
2153
2117
|
* <p>The sort order for the findings returned.</p>
|
|
2154
2118
|
*/
|
|
@@ -2179,9 +2143,7 @@ export interface FindingSummary {
|
|
|
2179
2143
|
/**
|
|
2180
2144
|
* <p>The external principal that has access to a resource within the zone of trust.</p>
|
|
2181
2145
|
*/
|
|
2182
|
-
principal?:
|
|
2183
|
-
[key: string]: string;
|
|
2184
|
-
};
|
|
2146
|
+
principal?: Record<string, string>;
|
|
2185
2147
|
/**
|
|
2186
2148
|
* <p>The action in the analyzed policy statement that an external principal has permission to
|
|
2187
2149
|
* use.</p>
|
|
@@ -2203,9 +2165,7 @@ export interface FindingSummary {
|
|
|
2203
2165
|
/**
|
|
2204
2166
|
* <p>The condition in the analyzed policy statement that resulted in a finding.</p>
|
|
2205
2167
|
*/
|
|
2206
|
-
condition:
|
|
2207
|
-
[key: string]: string;
|
|
2208
|
-
} | undefined;
|
|
2168
|
+
condition: Record<string, string> | undefined;
|
|
2209
2169
|
/**
|
|
2210
2170
|
* <p>The time at which the finding was created.</p>
|
|
2211
2171
|
*/
|
|
@@ -2358,9 +2318,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2358
2318
|
/**
|
|
2359
2319
|
* <p>The tags that are applied to the specified resource.</p>
|
|
2360
2320
|
*/
|
|
2361
|
-
tags?:
|
|
2362
|
-
[key: string]: string;
|
|
2363
|
-
};
|
|
2321
|
+
tags?: Record<string, string>;
|
|
2364
2322
|
}
|
|
2365
2323
|
export declare namespace ListTagsForResourceResponse {
|
|
2366
2324
|
/**
|
|
@@ -2516,9 +2474,7 @@ export interface TagResourceRequest {
|
|
|
2516
2474
|
/**
|
|
2517
2475
|
* <p>The tags to add to the resource.</p>
|
|
2518
2476
|
*/
|
|
2519
|
-
tags:
|
|
2520
|
-
[key: string]: string;
|
|
2521
|
-
} | undefined;
|
|
2477
|
+
tags: Record<string, string> | undefined;
|
|
2522
2478
|
}
|
|
2523
2479
|
export declare namespace TagResourceRequest {
|
|
2524
2480
|
/**
|
|
@@ -40,9 +40,7 @@ export interface CreateArchiveRuleRequest {
|
|
|
40
40
|
|
|
41
41
|
ruleName: string | undefined;
|
|
42
42
|
|
|
43
|
-
filter:
|
|
44
|
-
[key: string]: Criterion;
|
|
45
|
-
} | undefined;
|
|
43
|
+
filter: Record<string, Criterion> | undefined;
|
|
46
44
|
|
|
47
45
|
clientToken?: string;
|
|
48
46
|
}
|
|
@@ -151,9 +149,7 @@ export interface ArchiveRuleSummary {
|
|
|
151
149
|
|
|
152
150
|
ruleName: string | undefined;
|
|
153
151
|
|
|
154
|
-
filter:
|
|
155
|
-
[key: string]: Criterion;
|
|
156
|
-
} | undefined;
|
|
152
|
+
filter: Record<string, Criterion> | undefined;
|
|
157
153
|
|
|
158
154
|
createdAt: Date | undefined;
|
|
159
155
|
|
|
@@ -203,9 +199,7 @@ export interface UpdateArchiveRuleRequest {
|
|
|
203
199
|
|
|
204
200
|
ruleName: string | undefined;
|
|
205
201
|
|
|
206
|
-
filter:
|
|
207
|
-
[key: string]: Criterion;
|
|
208
|
-
} | undefined;
|
|
202
|
+
filter: Record<string, Criterion> | undefined;
|
|
209
203
|
|
|
210
204
|
clientToken?: string;
|
|
211
205
|
}
|
|
@@ -218,9 +212,7 @@ export interface InlineArchiveRule {
|
|
|
218
212
|
|
|
219
213
|
ruleName: string | undefined;
|
|
220
214
|
|
|
221
|
-
filter:
|
|
222
|
-
[key: string]: Criterion;
|
|
223
|
-
} | undefined;
|
|
215
|
+
filter: Record<string, Criterion> | undefined;
|
|
224
216
|
}
|
|
225
217
|
export declare namespace InlineArchiveRule {
|
|
226
218
|
|
|
@@ -236,9 +228,7 @@ export interface CreateAnalyzerRequest {
|
|
|
236
228
|
|
|
237
229
|
archiveRules?: InlineArchiveRule[];
|
|
238
230
|
|
|
239
|
-
tags?:
|
|
240
|
-
[key: string]: string;
|
|
241
|
-
};
|
|
231
|
+
tags?: Record<string, string>;
|
|
242
232
|
|
|
243
233
|
clientToken?: string;
|
|
244
234
|
}
|
|
@@ -301,9 +291,7 @@ export interface AnalyzerSummary {
|
|
|
301
291
|
|
|
302
292
|
lastResourceAnalyzedAt?: Date;
|
|
303
293
|
|
|
304
|
-
tags?:
|
|
305
|
-
[key: string]: string;
|
|
306
|
-
};
|
|
294
|
+
tags?: Record<string, string>;
|
|
307
295
|
|
|
308
296
|
status: AnalyzerStatus | string | undefined;
|
|
309
297
|
|
|
@@ -385,13 +373,9 @@ export declare namespace IamRoleConfiguration {
|
|
|
385
373
|
|
|
386
374
|
export interface KmsGrantConstraints {
|
|
387
375
|
|
|
388
|
-
encryptionContextEquals?:
|
|
389
|
-
[key: string]: string;
|
|
390
|
-
};
|
|
376
|
+
encryptionContextEquals?: Record<string, string>;
|
|
391
377
|
|
|
392
|
-
encryptionContextSubset?:
|
|
393
|
-
[key: string]: string;
|
|
394
|
-
};
|
|
378
|
+
encryptionContextSubset?: Record<string, string>;
|
|
395
379
|
}
|
|
396
380
|
export declare namespace KmsGrantConstraints {
|
|
397
381
|
|
|
@@ -433,9 +417,7 @@ export declare namespace KmsGrantConfiguration {
|
|
|
433
417
|
|
|
434
418
|
export interface KmsKeyConfiguration {
|
|
435
419
|
|
|
436
|
-
keyPolicies?:
|
|
437
|
-
[key: string]: string;
|
|
438
|
-
};
|
|
420
|
+
keyPolicies?: Record<string, string>;
|
|
439
421
|
|
|
440
422
|
grants?: KmsGrantConfiguration[];
|
|
441
423
|
}
|
|
@@ -574,9 +556,7 @@ export interface S3BucketConfiguration {
|
|
|
574
556
|
|
|
575
557
|
bucketPublicAccessBlock?: S3PublicAccessBlockConfiguration;
|
|
576
558
|
|
|
577
|
-
accessPoints?:
|
|
578
|
-
[key: string]: S3AccessPointConfiguration;
|
|
579
|
-
};
|
|
559
|
+
accessPoints?: Record<string, S3AccessPointConfiguration>;
|
|
580
560
|
}
|
|
581
561
|
export declare namespace S3BucketConfiguration {
|
|
582
562
|
|
|
@@ -677,9 +657,7 @@ export interface CreateAccessPreviewRequest {
|
|
|
677
657
|
|
|
678
658
|
analyzerArn: string | undefined;
|
|
679
659
|
|
|
680
|
-
configurations:
|
|
681
|
-
[key: string]: Configuration;
|
|
682
|
-
} | undefined;
|
|
660
|
+
configurations: Record<string, Configuration> | undefined;
|
|
683
661
|
|
|
684
662
|
clientToken?: string;
|
|
685
663
|
}
|
|
@@ -730,9 +708,7 @@ export interface AccessPreview {
|
|
|
730
708
|
|
|
731
709
|
analyzerArn: string | undefined;
|
|
732
710
|
|
|
733
|
-
configurations:
|
|
734
|
-
[key: string]: Configuration;
|
|
735
|
-
} | undefined;
|
|
711
|
+
configurations: Record<string, Configuration> | undefined;
|
|
736
712
|
|
|
737
713
|
createdAt: Date | undefined;
|
|
738
714
|
|
|
@@ -840,9 +816,7 @@ export interface Finding {
|
|
|
840
816
|
|
|
841
817
|
id: string | undefined;
|
|
842
818
|
|
|
843
|
-
principal?:
|
|
844
|
-
[key: string]: string;
|
|
845
|
-
};
|
|
819
|
+
principal?: Record<string, string>;
|
|
846
820
|
|
|
847
821
|
action?: string[];
|
|
848
822
|
|
|
@@ -852,9 +826,7 @@ export interface Finding {
|
|
|
852
826
|
|
|
853
827
|
resourceType: ResourceType | string | undefined;
|
|
854
828
|
|
|
855
|
-
condition:
|
|
856
|
-
[key: string]: string;
|
|
857
|
-
} | undefined;
|
|
829
|
+
condition: Record<string, string> | undefined;
|
|
858
830
|
|
|
859
831
|
createdAt: Date | undefined;
|
|
860
832
|
|
|
@@ -1010,9 +982,7 @@ export interface ListAccessPreviewFindingsRequest {
|
|
|
1010
982
|
|
|
1011
983
|
analyzerArn: string | undefined;
|
|
1012
984
|
|
|
1013
|
-
filter?:
|
|
1014
|
-
[key: string]: Criterion;
|
|
1015
|
-
};
|
|
985
|
+
filter?: Record<string, Criterion>;
|
|
1016
986
|
|
|
1017
987
|
nextToken?: string;
|
|
1018
988
|
|
|
@@ -1036,15 +1006,11 @@ export interface AccessPreviewFinding {
|
|
|
1036
1006
|
|
|
1037
1007
|
existingFindingStatus?: FindingStatus | string;
|
|
1038
1008
|
|
|
1039
|
-
principal?:
|
|
1040
|
-
[key: string]: string;
|
|
1041
|
-
};
|
|
1009
|
+
principal?: Record<string, string>;
|
|
1042
1010
|
|
|
1043
1011
|
action?: string[];
|
|
1044
1012
|
|
|
1045
|
-
condition?:
|
|
1046
|
-
[key: string]: string;
|
|
1047
|
-
};
|
|
1013
|
+
condition?: Record<string, string>;
|
|
1048
1014
|
|
|
1049
1015
|
resource?: string;
|
|
1050
1016
|
|
|
@@ -1173,9 +1139,7 @@ export interface ListFindingsRequest {
|
|
|
1173
1139
|
|
|
1174
1140
|
analyzerArn: string | undefined;
|
|
1175
1141
|
|
|
1176
|
-
filter?:
|
|
1177
|
-
[key: string]: Criterion;
|
|
1178
|
-
};
|
|
1142
|
+
filter?: Record<string, Criterion>;
|
|
1179
1143
|
|
|
1180
1144
|
sort?: SortCriteria;
|
|
1181
1145
|
|
|
@@ -1192,9 +1156,7 @@ export interface FindingSummary {
|
|
|
1192
1156
|
|
|
1193
1157
|
id: string | undefined;
|
|
1194
1158
|
|
|
1195
|
-
principal?:
|
|
1196
|
-
[key: string]: string;
|
|
1197
|
-
};
|
|
1159
|
+
principal?: Record<string, string>;
|
|
1198
1160
|
|
|
1199
1161
|
action?: string[];
|
|
1200
1162
|
|
|
@@ -1204,9 +1166,7 @@ export interface FindingSummary {
|
|
|
1204
1166
|
|
|
1205
1167
|
resourceType: ResourceType | string | undefined;
|
|
1206
1168
|
|
|
1207
|
-
condition:
|
|
1208
|
-
[key: string]: string;
|
|
1209
|
-
} | undefined;
|
|
1169
|
+
condition: Record<string, string> | undefined;
|
|
1210
1170
|
|
|
1211
1171
|
createdAt: Date | undefined;
|
|
1212
1172
|
|
|
@@ -1288,9 +1248,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
1288
1248
|
|
|
1289
1249
|
export interface ListTagsForResourceResponse {
|
|
1290
1250
|
|
|
1291
|
-
tags?:
|
|
1292
|
-
[key: string]: string;
|
|
1293
|
-
};
|
|
1251
|
+
tags?: Record<string, string>;
|
|
1294
1252
|
}
|
|
1295
1253
|
export declare namespace ListTagsForResourceResponse {
|
|
1296
1254
|
|
|
@@ -1369,9 +1327,7 @@ export interface TagResourceRequest {
|
|
|
1369
1327
|
|
|
1370
1328
|
resourceArn: string | undefined;
|
|
1371
1329
|
|
|
1372
|
-
tags:
|
|
1373
|
-
[key: string]: string;
|
|
1374
|
-
} | undefined;
|
|
1330
|
+
tags: Record<string, string> | undefined;
|
|
1375
1331
|
}
|
|
1376
1332
|
export declare namespace TagResourceRequest {
|
|
1377
1333
|
|
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.109.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",
|
|
@@ -18,36 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1",
|
|
52
53
|
"uuid": "^8.3.2"
|
|
53
54
|
},
|