Skip to content

Commit 54e8715

Browse files
authored
feat: update clients as of 12/12/2020 with model fixes (#1774)
1 parent f69ff44 commit 54e8715

File tree

1,951 files changed

+144217
-145510
lines changed

Some content is hidden

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

1,951 files changed

+144217
-145510
lines changed

Diff for: clients/client-accessanalyzer/pagination/ListAnalyzedResourcesPaginator.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export async function* paginateListAnalyzedResources(
3535
input: ListAnalyzedResourcesCommandInput,
3636
...additionalArguments: any
3737
): Paginator<ListAnalyzedResourcesCommandOutput> {
38-
let token: string | undefined = config.startingToken || undefined;
38+
// ToDo: replace with actual type instead of typeof input.nextToken
39+
let token: typeof input.nextToken | undefined = config.startingToken || undefined;
3940
let hasNext = true;
4041
let page: ListAnalyzedResourcesCommandOutput;
4142
while (hasNext) {

Diff for: clients/client-accessanalyzer/pagination/ListAnalyzersPaginator.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export async function* paginateListAnalyzers(
3535
input: ListAnalyzersCommandInput,
3636
...additionalArguments: any
3737
): Paginator<ListAnalyzersCommandOutput> {
38-
let token: string | undefined = config.startingToken || undefined;
38+
// ToDo: replace with actual type instead of typeof input.nextToken
39+
let token: typeof input.nextToken | undefined = config.startingToken || undefined;
3940
let hasNext = true;
4041
let page: ListAnalyzersCommandOutput;
4142
while (hasNext) {

Diff for: clients/client-accessanalyzer/pagination/ListArchiveRulesPaginator.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export async function* paginateListArchiveRules(
3535
input: ListArchiveRulesCommandInput,
3636
...additionalArguments: any
3737
): Paginator<ListArchiveRulesCommandOutput> {
38-
let token: string | undefined = config.startingToken || undefined;
38+
// ToDo: replace with actual type instead of typeof input.nextToken
39+
let token: typeof input.nextToken | undefined = config.startingToken || undefined;
3940
let hasNext = true;
4041
let page: ListArchiveRulesCommandOutput;
4142
while (hasNext) {

Diff for: clients/client-accessanalyzer/pagination/ListFindingsPaginator.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export async function* paginateListFindings(
3535
input: ListFindingsCommandInput,
3636
...additionalArguments: any
3737
): Paginator<ListFindingsCommandOutput> {
38-
let token: string | undefined = config.startingToken || undefined;
38+
// ToDo: replace with actual type instead of typeof input.nextToken
39+
let token: typeof input.nextToken | undefined = config.startingToken || undefined;
3940
let hasNext = true;
4041
let page: ListFindingsCommandOutput;
4142
while (hasNext) {

0 commit comments

Comments
 (0)