-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client-cloudfront): No API changes from previous release. This r…
…elease migrated the model to Smithy keeping all features unchanged.
- Loading branch information
awstools
committed
Nov 11, 2024
1 parent
aad1fc8
commit 5eded70
Showing
9 changed files
with
256 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
clients/client-cloudfront/src/pagination/ListPublicKeysPaginator.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// smithy-typescript generated code | ||
import { createPaginator } from "@smithy/core"; | ||
import { Paginator } from "@smithy/types"; | ||
|
||
import { CloudFrontClient } from "../CloudFrontClient"; | ||
import { | ||
ListPublicKeysCommand, | ||
ListPublicKeysCommandInput, | ||
ListPublicKeysCommandOutput, | ||
} from "../commands/ListPublicKeysCommand"; | ||
import { CloudFrontPaginationConfiguration } from "./Interfaces"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export const paginateListPublicKeys: ( | ||
config: CloudFrontPaginationConfiguration, | ||
input: ListPublicKeysCommandInput, | ||
...rest: any[] | ||
) => Paginator<ListPublicKeysCommandOutput> = createPaginator< | ||
CloudFrontPaginationConfiguration, | ||
ListPublicKeysCommandInput, | ||
ListPublicKeysCommandOutput | ||
>(CloudFrontClient, ListPublicKeysCommand, "Marker", "PublicKeyList.NextMarker", "MaxItems"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.