Skip to content

Commit 4de99a2

Browse files
Merge branch 'master' of github.com:aws/aws-sdk-js-v3 into support-all-the-browsers
2 parents 0bc10e8 + 5f820e6 commit 4de99a2

File tree

722 files changed

+128201
-154269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

722 files changed

+128201
-154269
lines changed

.dependabot/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 1
2+
update_configs:
3+
- package_manager: "javascript"
4+
directory: "/"
5+
update_schedule: "weekly"
6+
version_requirement_updates: "increase_versions_if_necessary"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ All clients have been published to NPM and can be installed as described above.
137137
1. Under the repository root directory, run following command to link and build the whole library, the process may take several minutes:
138138

139139
```
140-
yarn & yarn test:all
140+
yarn && yarn test:all
141141
```
142142

143143
For more information, please refer to [contributing guide](https://github.com/aws/aws-sdk-js-v3/blob/master/CONTRIBUTING.md#setup-and-testing).

clients/client-accessanalyzer/models/index.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface AnalyzedResource {
2929
* <p>The actions that an external principal is granted permission to use by the policy that
3030
* generated the finding.</p>
3131
*/
32-
actions?: Array<string>;
32+
actions?: string[];
3333

3434
/**
3535
* <p>The time at which the resource was analyzed.</p>
@@ -65,7 +65,7 @@ export interface AnalyzedResource {
6565
/**
6666
* <p>Indicates how the access that generated the finding is granted.</p>
6767
*/
68-
sharedVia?: Array<string>;
68+
sharedVia?: string[];
6969

7070
/**
7171
* <p>The current status of the finding generated from the analyzed resource.</p>
@@ -218,7 +218,7 @@ export interface CreateAnalyzerRequest {
218218
/**
219219
* <p>Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.</p>
220220
*/
221-
archiveRules?: Array<InlineArchiveRule>;
221+
archiveRules?: InlineArchiveRule[];
222222

223223
/**
224224
* <p>A client token.</p>
@@ -297,12 +297,12 @@ export interface Criterion {
297297
/**
298298
* <p>A "contains" operator to match for the filter used to create the rule.</p>
299299
*/
300-
contains?: Array<string>;
300+
contains?: string[];
301301

302302
/**
303303
* <p>An "equals" operator to match for the filter used to create the rule.</p>
304304
*/
305-
eq?: Array<string>;
305+
eq?: string[];
306306

307307
/**
308308
* <p>An "exists" operator to match for the filter used to create the rule. </p>
@@ -312,7 +312,7 @@ export interface Criterion {
312312
/**
313313
* <p>A "not equals" operator to match for the filter used to create the rule.</p>
314314
*/
315-
neq?: Array<string>;
315+
neq?: string[];
316316
}
317317

318318
export namespace Criterion {
@@ -375,7 +375,7 @@ export interface Finding {
375375
* <p>The action in the analyzed policy statement that an external principal has permission to
376376
* use.</p>
377377
*/
378-
action?: Array<string>;
378+
action?: string[];
379379

380380
/**
381381
* <p>The time at which the resource was analyzed.</p>
@@ -451,7 +451,7 @@ export interface FindingSummary {
451451
* <p>The action in the analyzed policy statement that an external principal has permission to
452452
* use.</p>
453453
*/
454-
action?: Array<string>;
454+
action?: string[];
455455

456456
/**
457457
* <p>The time at which the resource-based policy that generated the finding was
@@ -742,7 +742,7 @@ export interface ListAnalyzedResourcesResponse {
742742
/**
743743
* <p>A list of resources that were analyzed.</p>
744744
*/
745-
analyzedResources: Array<AnalyzedResourceSummary> | undefined;
745+
analyzedResources: AnalyzedResourceSummary[] | undefined;
746746

747747
/**
748748
* <p>A token used for pagination of results returned.</p>
@@ -789,7 +789,7 @@ export interface ListAnalyzersResponse {
789789
/**
790790
* <p>The analyzers retrieved.</p>
791791
*/
792-
analyzers: Array<AnalyzerSummary> | undefined;
792+
analyzers: AnalyzerSummary[] | undefined;
793793

794794
/**
795795
* <p>A token used for pagination of results returned.</p>
@@ -836,7 +836,7 @@ export interface ListArchiveRulesResponse {
836836
/**
837837
* <p>A list of archive rules created for the specified analyzer.</p>
838838
*/
839-
archiveRules: Array<ArchiveRuleSummary> | undefined;
839+
archiveRules: ArchiveRuleSummary[] | undefined;
840840

841841
/**
842842
* <p>A token used for pagination of results returned.</p>
@@ -894,7 +894,7 @@ export interface ListFindingsResponse {
894894
* <p>A list of findings retrieved from the analyzer that match the filter criteria specified,
895895
* if any.</p>
896896
*/
897-
findings: Array<FindingSummary> | undefined;
897+
findings: FindingSummary[] | undefined;
898898

899899
/**
900900
* <p>A token used for pagination of results returned.</p>
@@ -1109,7 +1109,7 @@ export interface UntagResourceRequest {
11091109
/**
11101110
* <p>The key for the tag to add.</p>
11111111
*/
1112-
tagKeys: Array<string> | undefined;
1112+
tagKeys: string[] | undefined;
11131113
}
11141114

11151115
export namespace UntagResourceRequest {
@@ -1179,7 +1179,7 @@ export interface UpdateFindingsRequest {
11791179
/**
11801180
* <p>The IDs of the findings to update.</p>
11811181
*/
1182-
ids?: Array<string>;
1182+
ids?: string[];
11831183

11841184
/**
11851185
* <p>The ARN of the resource identified in the finding.</p>
@@ -1210,7 +1210,7 @@ export interface ValidationException
12101210
/**
12111211
* <p>A list of fields that didn't validate.</p>
12121212
*/
1213-
fieldList?: Array<ValidationExceptionField>;
1213+
fieldList?: ValidationExceptionField[];
12141214

12151215
message: string | undefined;
12161216
/**

0 commit comments

Comments
 (0)