-
Notifications
You must be signed in to change notification settings - Fork 581
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client-mediaconvert): This release adds the ability to search fo…
…r historical job records within the management console using a search box and/or via the SDK/CLI with partial string matching search on input file name.
- Loading branch information
awstools
committed
Jun 14, 2024
1 parent
2d57a05
commit 33a5089
Showing
11 changed files
with
1,892 additions
and
2 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
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
1,619 changes: 1,619 additions & 0 deletions
1,619
clients/client-mediaconvert/src/commands/SearchJobsCommand.ts
Large diffs are not rendered by default.
Oops, something went wrong.
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
20 changes: 20 additions & 0 deletions
20
clients/client-mediaconvert/src/pagination/SearchJobsPaginator.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,20 @@ | ||
// smithy-typescript generated code | ||
import { createPaginator } from "@smithy/core"; | ||
import { Paginator } from "@smithy/types"; | ||
|
||
import { SearchJobsCommand, SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand"; | ||
import { MediaConvertClient } from "../MediaConvertClient"; | ||
import { MediaConvertPaginationConfiguration } from "./Interfaces"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export const paginateSearchJobs: ( | ||
config: MediaConvertPaginationConfiguration, | ||
input: SearchJobsCommandInput, | ||
...rest: any[] | ||
) => Paginator<SearchJobsCommandOutput> = createPaginator< | ||
MediaConvertPaginationConfiguration, | ||
SearchJobsCommandInput, | ||
SearchJobsCommandOutput | ||
>(MediaConvertClient, SearchJobsCommand, "NextToken", "NextToken", "MaxResults"); |
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.