@aws-sdk/client-cleanroomsml 3.975.0 → 3.978.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/dist-cjs/index.js +51 -33
- package/dist-es/CleanRoomsML.js +35 -1
- package/dist-types/CleanRoomsML.d.ts +113 -1
- package/dist-types/ts3.4/CleanRoomsML.d.ts +117 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2571,6 +2571,38 @@ class UpdateConfiguredAudienceModelCommand extends smithyClient.Command
|
|
|
2571
2571
|
.build() {
|
|
2572
2572
|
}
|
|
2573
2573
|
|
|
2574
|
+
const paginateListAudienceExportJobs = core.createPaginator(CleanRoomsMLClient, ListAudienceExportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2575
|
+
|
|
2576
|
+
const paginateListAudienceGenerationJobs = core.createPaginator(CleanRoomsMLClient, ListAudienceGenerationJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2577
|
+
|
|
2578
|
+
const paginateListAudienceModels = core.createPaginator(CleanRoomsMLClient, ListAudienceModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2579
|
+
|
|
2580
|
+
const paginateListCollaborationConfiguredModelAlgorithmAssociations = core.createPaginator(CleanRoomsMLClient, ListCollaborationConfiguredModelAlgorithmAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2581
|
+
|
|
2582
|
+
const paginateListCollaborationMLInputChannels = core.createPaginator(CleanRoomsMLClient, ListCollaborationMLInputChannelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2583
|
+
|
|
2584
|
+
const paginateListCollaborationTrainedModelExportJobs = core.createPaginator(CleanRoomsMLClient, ListCollaborationTrainedModelExportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2585
|
+
|
|
2586
|
+
const paginateListCollaborationTrainedModelInferenceJobs = core.createPaginator(CleanRoomsMLClient, ListCollaborationTrainedModelInferenceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2587
|
+
|
|
2588
|
+
const paginateListCollaborationTrainedModels = core.createPaginator(CleanRoomsMLClient, ListCollaborationTrainedModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2589
|
+
|
|
2590
|
+
const paginateListConfiguredAudienceModels = core.createPaginator(CleanRoomsMLClient, ListConfiguredAudienceModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2591
|
+
|
|
2592
|
+
const paginateListConfiguredModelAlgorithmAssociations = core.createPaginator(CleanRoomsMLClient, ListConfiguredModelAlgorithmAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2593
|
+
|
|
2594
|
+
const paginateListConfiguredModelAlgorithms = core.createPaginator(CleanRoomsMLClient, ListConfiguredModelAlgorithmsCommand, "nextToken", "nextToken", "maxResults");
|
|
2595
|
+
|
|
2596
|
+
const paginateListMLInputChannels = core.createPaginator(CleanRoomsMLClient, ListMLInputChannelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2597
|
+
|
|
2598
|
+
const paginateListTrainedModelInferenceJobs = core.createPaginator(CleanRoomsMLClient, ListTrainedModelInferenceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2599
|
+
|
|
2600
|
+
const paginateListTrainedModels = core.createPaginator(CleanRoomsMLClient, ListTrainedModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2601
|
+
|
|
2602
|
+
const paginateListTrainedModelVersions = core.createPaginator(CleanRoomsMLClient, ListTrainedModelVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2603
|
+
|
|
2604
|
+
const paginateListTrainingDatasets = core.createPaginator(CleanRoomsMLClient, ListTrainingDatasetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2605
|
+
|
|
2574
2606
|
const commands = {
|
|
2575
2607
|
CancelTrainedModelCommand,
|
|
2576
2608
|
CancelTrainedModelInferenceJobCommand,
|
|
@@ -2632,41 +2664,27 @@ const commands = {
|
|
|
2632
2664
|
UntagResourceCommand,
|
|
2633
2665
|
UpdateConfiguredAudienceModelCommand,
|
|
2634
2666
|
};
|
|
2667
|
+
const paginators = {
|
|
2668
|
+
paginateListAudienceExportJobs,
|
|
2669
|
+
paginateListAudienceGenerationJobs,
|
|
2670
|
+
paginateListAudienceModels,
|
|
2671
|
+
paginateListCollaborationConfiguredModelAlgorithmAssociations,
|
|
2672
|
+
paginateListCollaborationMLInputChannels,
|
|
2673
|
+
paginateListCollaborationTrainedModelExportJobs,
|
|
2674
|
+
paginateListCollaborationTrainedModelInferenceJobs,
|
|
2675
|
+
paginateListCollaborationTrainedModels,
|
|
2676
|
+
paginateListConfiguredAudienceModels,
|
|
2677
|
+
paginateListConfiguredModelAlgorithmAssociations,
|
|
2678
|
+
paginateListConfiguredModelAlgorithms,
|
|
2679
|
+
paginateListMLInputChannels,
|
|
2680
|
+
paginateListTrainedModelInferenceJobs,
|
|
2681
|
+
paginateListTrainedModels,
|
|
2682
|
+
paginateListTrainedModelVersions,
|
|
2683
|
+
paginateListTrainingDatasets,
|
|
2684
|
+
};
|
|
2635
2685
|
class CleanRoomsML extends CleanRoomsMLClient {
|
|
2636
2686
|
}
|
|
2637
|
-
smithyClient.createAggregatedClient(commands, CleanRoomsML);
|
|
2638
|
-
|
|
2639
|
-
const paginateListAudienceExportJobs = core.createPaginator(CleanRoomsMLClient, ListAudienceExportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2640
|
-
|
|
2641
|
-
const paginateListAudienceGenerationJobs = core.createPaginator(CleanRoomsMLClient, ListAudienceGenerationJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2642
|
-
|
|
2643
|
-
const paginateListAudienceModels = core.createPaginator(CleanRoomsMLClient, ListAudienceModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2644
|
-
|
|
2645
|
-
const paginateListCollaborationConfiguredModelAlgorithmAssociations = core.createPaginator(CleanRoomsMLClient, ListCollaborationConfiguredModelAlgorithmAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2646
|
-
|
|
2647
|
-
const paginateListCollaborationMLInputChannels = core.createPaginator(CleanRoomsMLClient, ListCollaborationMLInputChannelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2648
|
-
|
|
2649
|
-
const paginateListCollaborationTrainedModelExportJobs = core.createPaginator(CleanRoomsMLClient, ListCollaborationTrainedModelExportJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2650
|
-
|
|
2651
|
-
const paginateListCollaborationTrainedModelInferenceJobs = core.createPaginator(CleanRoomsMLClient, ListCollaborationTrainedModelInferenceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2652
|
-
|
|
2653
|
-
const paginateListCollaborationTrainedModels = core.createPaginator(CleanRoomsMLClient, ListCollaborationTrainedModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2654
|
-
|
|
2655
|
-
const paginateListConfiguredAudienceModels = core.createPaginator(CleanRoomsMLClient, ListConfiguredAudienceModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2656
|
-
|
|
2657
|
-
const paginateListConfiguredModelAlgorithmAssociations = core.createPaginator(CleanRoomsMLClient, ListConfiguredModelAlgorithmAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2658
|
-
|
|
2659
|
-
const paginateListConfiguredModelAlgorithms = core.createPaginator(CleanRoomsMLClient, ListConfiguredModelAlgorithmsCommand, "nextToken", "nextToken", "maxResults");
|
|
2660
|
-
|
|
2661
|
-
const paginateListMLInputChannels = core.createPaginator(CleanRoomsMLClient, ListMLInputChannelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2662
|
-
|
|
2663
|
-
const paginateListTrainedModelInferenceJobs = core.createPaginator(CleanRoomsMLClient, ListTrainedModelInferenceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2664
|
-
|
|
2665
|
-
const paginateListTrainedModels = core.createPaginator(CleanRoomsMLClient, ListTrainedModelsCommand, "nextToken", "nextToken", "maxResults");
|
|
2666
|
-
|
|
2667
|
-
const paginateListTrainedModelVersions = core.createPaginator(CleanRoomsMLClient, ListTrainedModelVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2668
|
-
|
|
2669
|
-
const paginateListTrainingDatasets = core.createPaginator(CleanRoomsMLClient, ListTrainingDatasetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2687
|
+
smithyClient.createAggregatedClient(commands, CleanRoomsML, { paginators });
|
|
2670
2688
|
|
|
2671
2689
|
const AutoRefreshMode = {
|
|
2672
2690
|
DISABLED: "DISABLED",
|
package/dist-es/CleanRoomsML.js
CHANGED
|
@@ -59,6 +59,22 @@ import { StartTrainedModelInferenceJobCommand, } from "./commands/StartTrainedMo
|
|
|
59
59
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
60
60
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
61
61
|
import { UpdateConfiguredAudienceModelCommand, } from "./commands/UpdateConfiguredAudienceModelCommand";
|
|
62
|
+
import { paginateListAudienceExportJobs } from "./pagination/ListAudienceExportJobsPaginator";
|
|
63
|
+
import { paginateListAudienceGenerationJobs } from "./pagination/ListAudienceGenerationJobsPaginator";
|
|
64
|
+
import { paginateListAudienceModels } from "./pagination/ListAudienceModelsPaginator";
|
|
65
|
+
import { paginateListCollaborationConfiguredModelAlgorithmAssociations, } from "./pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator";
|
|
66
|
+
import { paginateListCollaborationMLInputChannels } from "./pagination/ListCollaborationMLInputChannelsPaginator";
|
|
67
|
+
import { paginateListCollaborationTrainedModelExportJobs, } from "./pagination/ListCollaborationTrainedModelExportJobsPaginator";
|
|
68
|
+
import { paginateListCollaborationTrainedModelInferenceJobs, } from "./pagination/ListCollaborationTrainedModelInferenceJobsPaginator";
|
|
69
|
+
import { paginateListCollaborationTrainedModels } from "./pagination/ListCollaborationTrainedModelsPaginator";
|
|
70
|
+
import { paginateListConfiguredAudienceModels } from "./pagination/ListConfiguredAudienceModelsPaginator";
|
|
71
|
+
import { paginateListConfiguredModelAlgorithmAssociations, } from "./pagination/ListConfiguredModelAlgorithmAssociationsPaginator";
|
|
72
|
+
import { paginateListConfiguredModelAlgorithms } from "./pagination/ListConfiguredModelAlgorithmsPaginator";
|
|
73
|
+
import { paginateListMLInputChannels } from "./pagination/ListMLInputChannelsPaginator";
|
|
74
|
+
import { paginateListTrainedModelInferenceJobs } from "./pagination/ListTrainedModelInferenceJobsPaginator";
|
|
75
|
+
import { paginateListTrainedModels } from "./pagination/ListTrainedModelsPaginator";
|
|
76
|
+
import { paginateListTrainedModelVersions } from "./pagination/ListTrainedModelVersionsPaginator";
|
|
77
|
+
import { paginateListTrainingDatasets } from "./pagination/ListTrainingDatasetsPaginator";
|
|
62
78
|
const commands = {
|
|
63
79
|
CancelTrainedModelCommand,
|
|
64
80
|
CancelTrainedModelInferenceJobCommand,
|
|
@@ -120,6 +136,24 @@ const commands = {
|
|
|
120
136
|
UntagResourceCommand,
|
|
121
137
|
UpdateConfiguredAudienceModelCommand,
|
|
122
138
|
};
|
|
139
|
+
const paginators = {
|
|
140
|
+
paginateListAudienceExportJobs,
|
|
141
|
+
paginateListAudienceGenerationJobs,
|
|
142
|
+
paginateListAudienceModels,
|
|
143
|
+
paginateListCollaborationConfiguredModelAlgorithmAssociations,
|
|
144
|
+
paginateListCollaborationMLInputChannels,
|
|
145
|
+
paginateListCollaborationTrainedModelExportJobs,
|
|
146
|
+
paginateListCollaborationTrainedModelInferenceJobs,
|
|
147
|
+
paginateListCollaborationTrainedModels,
|
|
148
|
+
paginateListConfiguredAudienceModels,
|
|
149
|
+
paginateListConfiguredModelAlgorithmAssociations,
|
|
150
|
+
paginateListConfiguredModelAlgorithms,
|
|
151
|
+
paginateListMLInputChannels,
|
|
152
|
+
paginateListTrainedModelInferenceJobs,
|
|
153
|
+
paginateListTrainedModels,
|
|
154
|
+
paginateListTrainedModelVersions,
|
|
155
|
+
paginateListTrainingDatasets,
|
|
156
|
+
};
|
|
123
157
|
export class CleanRoomsML extends CleanRoomsMLClient {
|
|
124
158
|
}
|
|
125
|
-
createAggregatedClient(commands, CleanRoomsML);
|
|
159
|
+
createAggregatedClient(commands, CleanRoomsML, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { CleanRoomsMLClient } from "./CleanRoomsMLClient";
|
|
3
3
|
import { CancelTrainedModelCommandInput, CancelTrainedModelCommandOutput } from "./commands/CancelTrainedModelCommand";
|
|
4
4
|
import { CancelTrainedModelInferenceJobCommandInput, CancelTrainedModelInferenceJobCommandOutput } from "./commands/CancelTrainedModelInferenceJobCommand";
|
|
@@ -420,6 +420,118 @@ export interface CleanRoomsML {
|
|
|
420
420
|
updateConfiguredAudienceModel(args: UpdateConfiguredAudienceModelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfiguredAudienceModelCommandOutput>;
|
|
421
421
|
updateConfiguredAudienceModel(args: UpdateConfiguredAudienceModelCommandInput, cb: (err: any, data?: UpdateConfiguredAudienceModelCommandOutput) => void): void;
|
|
422
422
|
updateConfiguredAudienceModel(args: UpdateConfiguredAudienceModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfiguredAudienceModelCommandOutput) => void): void;
|
|
423
|
+
/**
|
|
424
|
+
* @see {@link ListAudienceExportJobsCommand}
|
|
425
|
+
* @param args - command input.
|
|
426
|
+
* @param paginationConfig - optional pagination config.
|
|
427
|
+
* @returns AsyncIterable of {@link ListAudienceExportJobsCommandOutput}.
|
|
428
|
+
*/
|
|
429
|
+
paginateListAudienceExportJobs(args?: ListAudienceExportJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAudienceExportJobsCommandOutput>;
|
|
430
|
+
/**
|
|
431
|
+
* @see {@link ListAudienceGenerationJobsCommand}
|
|
432
|
+
* @param args - command input.
|
|
433
|
+
* @param paginationConfig - optional pagination config.
|
|
434
|
+
* @returns AsyncIterable of {@link ListAudienceGenerationJobsCommandOutput}.
|
|
435
|
+
*/
|
|
436
|
+
paginateListAudienceGenerationJobs(args?: ListAudienceGenerationJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAudienceGenerationJobsCommandOutput>;
|
|
437
|
+
/**
|
|
438
|
+
* @see {@link ListAudienceModelsCommand}
|
|
439
|
+
* @param args - command input.
|
|
440
|
+
* @param paginationConfig - optional pagination config.
|
|
441
|
+
* @returns AsyncIterable of {@link ListAudienceModelsCommandOutput}.
|
|
442
|
+
*/
|
|
443
|
+
paginateListAudienceModels(args?: ListAudienceModelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAudienceModelsCommandOutput>;
|
|
444
|
+
/**
|
|
445
|
+
* @see {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommand}
|
|
446
|
+
* @param args - command input.
|
|
447
|
+
* @param paginationConfig - optional pagination config.
|
|
448
|
+
* @returns AsyncIterable of {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput}.
|
|
449
|
+
*/
|
|
450
|
+
paginateListCollaborationConfiguredModelAlgorithmAssociations(args: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput>;
|
|
451
|
+
/**
|
|
452
|
+
* @see {@link ListCollaborationMLInputChannelsCommand}
|
|
453
|
+
* @param args - command input.
|
|
454
|
+
* @param paginationConfig - optional pagination config.
|
|
455
|
+
* @returns AsyncIterable of {@link ListCollaborationMLInputChannelsCommandOutput}.
|
|
456
|
+
*/
|
|
457
|
+
paginateListCollaborationMLInputChannels(args: ListCollaborationMLInputChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCollaborationMLInputChannelsCommandOutput>;
|
|
458
|
+
/**
|
|
459
|
+
* @see {@link ListCollaborationTrainedModelExportJobsCommand}
|
|
460
|
+
* @param args - command input.
|
|
461
|
+
* @param paginationConfig - optional pagination config.
|
|
462
|
+
* @returns AsyncIterable of {@link ListCollaborationTrainedModelExportJobsCommandOutput}.
|
|
463
|
+
*/
|
|
464
|
+
paginateListCollaborationTrainedModelExportJobs(args: ListCollaborationTrainedModelExportJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCollaborationTrainedModelExportJobsCommandOutput>;
|
|
465
|
+
/**
|
|
466
|
+
* @see {@link ListCollaborationTrainedModelInferenceJobsCommand}
|
|
467
|
+
* @param args - command input.
|
|
468
|
+
* @param paginationConfig - optional pagination config.
|
|
469
|
+
* @returns AsyncIterable of {@link ListCollaborationTrainedModelInferenceJobsCommandOutput}.
|
|
470
|
+
*/
|
|
471
|
+
paginateListCollaborationTrainedModelInferenceJobs(args: ListCollaborationTrainedModelInferenceJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCollaborationTrainedModelInferenceJobsCommandOutput>;
|
|
472
|
+
/**
|
|
473
|
+
* @see {@link ListCollaborationTrainedModelsCommand}
|
|
474
|
+
* @param args - command input.
|
|
475
|
+
* @param paginationConfig - optional pagination config.
|
|
476
|
+
* @returns AsyncIterable of {@link ListCollaborationTrainedModelsCommandOutput}.
|
|
477
|
+
*/
|
|
478
|
+
paginateListCollaborationTrainedModels(args: ListCollaborationTrainedModelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCollaborationTrainedModelsCommandOutput>;
|
|
479
|
+
/**
|
|
480
|
+
* @see {@link ListConfiguredAudienceModelsCommand}
|
|
481
|
+
* @param args - command input.
|
|
482
|
+
* @param paginationConfig - optional pagination config.
|
|
483
|
+
* @returns AsyncIterable of {@link ListConfiguredAudienceModelsCommandOutput}.
|
|
484
|
+
*/
|
|
485
|
+
paginateListConfiguredAudienceModels(args?: ListConfiguredAudienceModelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfiguredAudienceModelsCommandOutput>;
|
|
486
|
+
/**
|
|
487
|
+
* @see {@link ListConfiguredModelAlgorithmAssociationsCommand}
|
|
488
|
+
* @param args - command input.
|
|
489
|
+
* @param paginationConfig - optional pagination config.
|
|
490
|
+
* @returns AsyncIterable of {@link ListConfiguredModelAlgorithmAssociationsCommandOutput}.
|
|
491
|
+
*/
|
|
492
|
+
paginateListConfiguredModelAlgorithmAssociations(args: ListConfiguredModelAlgorithmAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfiguredModelAlgorithmAssociationsCommandOutput>;
|
|
493
|
+
/**
|
|
494
|
+
* @see {@link ListConfiguredModelAlgorithmsCommand}
|
|
495
|
+
* @param args - command input.
|
|
496
|
+
* @param paginationConfig - optional pagination config.
|
|
497
|
+
* @returns AsyncIterable of {@link ListConfiguredModelAlgorithmsCommandOutput}.
|
|
498
|
+
*/
|
|
499
|
+
paginateListConfiguredModelAlgorithms(args?: ListConfiguredModelAlgorithmsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfiguredModelAlgorithmsCommandOutput>;
|
|
500
|
+
/**
|
|
501
|
+
* @see {@link ListMLInputChannelsCommand}
|
|
502
|
+
* @param args - command input.
|
|
503
|
+
* @param paginationConfig - optional pagination config.
|
|
504
|
+
* @returns AsyncIterable of {@link ListMLInputChannelsCommandOutput}.
|
|
505
|
+
*/
|
|
506
|
+
paginateListMLInputChannels(args: ListMLInputChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMLInputChannelsCommandOutput>;
|
|
507
|
+
/**
|
|
508
|
+
* @see {@link ListTrainedModelInferenceJobsCommand}
|
|
509
|
+
* @param args - command input.
|
|
510
|
+
* @param paginationConfig - optional pagination config.
|
|
511
|
+
* @returns AsyncIterable of {@link ListTrainedModelInferenceJobsCommandOutput}.
|
|
512
|
+
*/
|
|
513
|
+
paginateListTrainedModelInferenceJobs(args: ListTrainedModelInferenceJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrainedModelInferenceJobsCommandOutput>;
|
|
514
|
+
/**
|
|
515
|
+
* @see {@link ListTrainedModelsCommand}
|
|
516
|
+
* @param args - command input.
|
|
517
|
+
* @param paginationConfig - optional pagination config.
|
|
518
|
+
* @returns AsyncIterable of {@link ListTrainedModelsCommandOutput}.
|
|
519
|
+
*/
|
|
520
|
+
paginateListTrainedModels(args: ListTrainedModelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrainedModelsCommandOutput>;
|
|
521
|
+
/**
|
|
522
|
+
* @see {@link ListTrainedModelVersionsCommand}
|
|
523
|
+
* @param args - command input.
|
|
524
|
+
* @param paginationConfig - optional pagination config.
|
|
525
|
+
* @returns AsyncIterable of {@link ListTrainedModelVersionsCommandOutput}.
|
|
526
|
+
*/
|
|
527
|
+
paginateListTrainedModelVersions(args: ListTrainedModelVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrainedModelVersionsCommandOutput>;
|
|
528
|
+
/**
|
|
529
|
+
* @see {@link ListTrainingDatasetsCommand}
|
|
530
|
+
* @param args - command input.
|
|
531
|
+
* @param paginationConfig - optional pagination config.
|
|
532
|
+
* @returns AsyncIterable of {@link ListTrainingDatasetsCommandOutput}.
|
|
533
|
+
*/
|
|
534
|
+
paginateListTrainingDatasets(args?: ListTrainingDatasetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrainingDatasetsCommandOutput>;
|
|
423
535
|
}
|
|
424
536
|
/**
|
|
425
537
|
* <p>Welcome to the <i>Amazon Web Services Clean Rooms ML API Reference</i>.</p> <p>Amazon Web Services Clean Rooms ML provides a privacy-enhancing method for two parties to identify similar users in their data without the need to share their data with each other. The first party brings the training data to Clean Rooms so that they can create and configure an audience model (lookalike model) and associate it with a collaboration. The second party then brings their seed data to Clean Rooms and generates an audience (lookalike segment) that resembles the training data.</p> <p>To learn more about Amazon Web Services Clean Rooms ML concepts, procedures, and best practices, see the <a href="https://docs.aws.amazon.com/clean-rooms/latest/userguide/machine-learning.html">Clean Rooms User Guide</a>.</p> <p>To learn more about SQL commands, functions, and conditions supported in Clean Rooms, see the <a href="https://docs.aws.amazon.com/clean-rooms/latest/sql-reference/sql-reference.html">Clean Rooms SQL Reference</a>.</p> <p/>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { CleanRoomsMLClient } from "./CleanRoomsMLClient";
|
|
3
7
|
import {
|
|
4
8
|
CancelTrainedModelCommandInput,
|
|
@@ -1064,6 +1068,118 @@ export interface CleanRoomsML {
|
|
|
1064
1068
|
options: __HttpHandlerOptions,
|
|
1065
1069
|
cb: (err: any, data?: UpdateConfiguredAudienceModelCommandOutput) => void
|
|
1066
1070
|
): void;
|
|
1071
|
+
paginateListAudienceExportJobs(
|
|
1072
|
+
args?: ListAudienceExportJobsCommandInput,
|
|
1073
|
+
paginationConfig?: Pick<
|
|
1074
|
+
PaginationConfiguration,
|
|
1075
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1076
|
+
>
|
|
1077
|
+
): Paginator<ListAudienceExportJobsCommandOutput>;
|
|
1078
|
+
paginateListAudienceGenerationJobs(
|
|
1079
|
+
args?: ListAudienceGenerationJobsCommandInput,
|
|
1080
|
+
paginationConfig?: Pick<
|
|
1081
|
+
PaginationConfiguration,
|
|
1082
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1083
|
+
>
|
|
1084
|
+
): Paginator<ListAudienceGenerationJobsCommandOutput>;
|
|
1085
|
+
paginateListAudienceModels(
|
|
1086
|
+
args?: ListAudienceModelsCommandInput,
|
|
1087
|
+
paginationConfig?: Pick<
|
|
1088
|
+
PaginationConfiguration,
|
|
1089
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1090
|
+
>
|
|
1091
|
+
): Paginator<ListAudienceModelsCommandOutput>;
|
|
1092
|
+
paginateListCollaborationConfiguredModelAlgorithmAssociations(
|
|
1093
|
+
args: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput,
|
|
1094
|
+
paginationConfig?: Pick<
|
|
1095
|
+
PaginationConfiguration,
|
|
1096
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1097
|
+
>
|
|
1098
|
+
): Paginator<ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput>;
|
|
1099
|
+
paginateListCollaborationMLInputChannels(
|
|
1100
|
+
args: ListCollaborationMLInputChannelsCommandInput,
|
|
1101
|
+
paginationConfig?: Pick<
|
|
1102
|
+
PaginationConfiguration,
|
|
1103
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1104
|
+
>
|
|
1105
|
+
): Paginator<ListCollaborationMLInputChannelsCommandOutput>;
|
|
1106
|
+
paginateListCollaborationTrainedModelExportJobs(
|
|
1107
|
+
args: ListCollaborationTrainedModelExportJobsCommandInput,
|
|
1108
|
+
paginationConfig?: Pick<
|
|
1109
|
+
PaginationConfiguration,
|
|
1110
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1111
|
+
>
|
|
1112
|
+
): Paginator<ListCollaborationTrainedModelExportJobsCommandOutput>;
|
|
1113
|
+
paginateListCollaborationTrainedModelInferenceJobs(
|
|
1114
|
+
args: ListCollaborationTrainedModelInferenceJobsCommandInput,
|
|
1115
|
+
paginationConfig?: Pick<
|
|
1116
|
+
PaginationConfiguration,
|
|
1117
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1118
|
+
>
|
|
1119
|
+
): Paginator<ListCollaborationTrainedModelInferenceJobsCommandOutput>;
|
|
1120
|
+
paginateListCollaborationTrainedModels(
|
|
1121
|
+
args: ListCollaborationTrainedModelsCommandInput,
|
|
1122
|
+
paginationConfig?: Pick<
|
|
1123
|
+
PaginationConfiguration,
|
|
1124
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1125
|
+
>
|
|
1126
|
+
): Paginator<ListCollaborationTrainedModelsCommandOutput>;
|
|
1127
|
+
paginateListConfiguredAudienceModels(
|
|
1128
|
+
args?: ListConfiguredAudienceModelsCommandInput,
|
|
1129
|
+
paginationConfig?: Pick<
|
|
1130
|
+
PaginationConfiguration,
|
|
1131
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1132
|
+
>
|
|
1133
|
+
): Paginator<ListConfiguredAudienceModelsCommandOutput>;
|
|
1134
|
+
paginateListConfiguredModelAlgorithmAssociations(
|
|
1135
|
+
args: ListConfiguredModelAlgorithmAssociationsCommandInput,
|
|
1136
|
+
paginationConfig?: Pick<
|
|
1137
|
+
PaginationConfiguration,
|
|
1138
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1139
|
+
>
|
|
1140
|
+
): Paginator<ListConfiguredModelAlgorithmAssociationsCommandOutput>;
|
|
1141
|
+
paginateListConfiguredModelAlgorithms(
|
|
1142
|
+
args?: ListConfiguredModelAlgorithmsCommandInput,
|
|
1143
|
+
paginationConfig?: Pick<
|
|
1144
|
+
PaginationConfiguration,
|
|
1145
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1146
|
+
>
|
|
1147
|
+
): Paginator<ListConfiguredModelAlgorithmsCommandOutput>;
|
|
1148
|
+
paginateListMLInputChannels(
|
|
1149
|
+
args: ListMLInputChannelsCommandInput,
|
|
1150
|
+
paginationConfig?: Pick<
|
|
1151
|
+
PaginationConfiguration,
|
|
1152
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1153
|
+
>
|
|
1154
|
+
): Paginator<ListMLInputChannelsCommandOutput>;
|
|
1155
|
+
paginateListTrainedModelInferenceJobs(
|
|
1156
|
+
args: ListTrainedModelInferenceJobsCommandInput,
|
|
1157
|
+
paginationConfig?: Pick<
|
|
1158
|
+
PaginationConfiguration,
|
|
1159
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1160
|
+
>
|
|
1161
|
+
): Paginator<ListTrainedModelInferenceJobsCommandOutput>;
|
|
1162
|
+
paginateListTrainedModels(
|
|
1163
|
+
args: ListTrainedModelsCommandInput,
|
|
1164
|
+
paginationConfig?: Pick<
|
|
1165
|
+
PaginationConfiguration,
|
|
1166
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1167
|
+
>
|
|
1168
|
+
): Paginator<ListTrainedModelsCommandOutput>;
|
|
1169
|
+
paginateListTrainedModelVersions(
|
|
1170
|
+
args: ListTrainedModelVersionsCommandInput,
|
|
1171
|
+
paginationConfig?: Pick<
|
|
1172
|
+
PaginationConfiguration,
|
|
1173
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1174
|
+
>
|
|
1175
|
+
): Paginator<ListTrainedModelVersionsCommandOutput>;
|
|
1176
|
+
paginateListTrainingDatasets(
|
|
1177
|
+
args?: ListTrainingDatasetsCommandInput,
|
|
1178
|
+
paginationConfig?: Pick<
|
|
1179
|
+
PaginationConfiguration,
|
|
1180
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1181
|
+
>
|
|
1182
|
+
): Paginator<ListTrainingDatasetsCommandOutput>;
|
|
1067
1183
|
}
|
|
1068
1184
|
export declare class CleanRoomsML
|
|
1069
1185
|
extends CleanRoomsMLClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanroomsml",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanroomsml Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cleanroomsml",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|