@aws-sdk/client-cleanroomsml 3.682.0 → 3.687.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.
Files changed (149) hide show
  1. package/README.md +265 -1
  2. package/dist-cjs/index.js +2347 -97
  3. package/dist-es/CleanRoomsML.js +66 -0
  4. package/dist-es/commands/CancelTrainedModelCommand.js +22 -0
  5. package/dist-es/commands/CancelTrainedModelInferenceJobCommand.js +22 -0
  6. package/dist-es/commands/CreateConfiguredModelAlgorithmAssociationCommand.js +22 -0
  7. package/dist-es/commands/CreateConfiguredModelAlgorithmCommand.js +22 -0
  8. package/dist-es/commands/CreateMLInputChannelCommand.js +23 -0
  9. package/dist-es/commands/CreateTrainedModelCommand.js +22 -0
  10. package/dist-es/commands/DeleteConfiguredModelAlgorithmAssociationCommand.js +22 -0
  11. package/dist-es/commands/DeleteConfiguredModelAlgorithmCommand.js +22 -0
  12. package/dist-es/commands/DeleteMLConfigurationCommand.js +22 -0
  13. package/dist-es/commands/DeleteMLInputChannelDataCommand.js +22 -0
  14. package/dist-es/commands/DeleteTrainedModelOutputCommand.js +22 -0
  15. package/dist-es/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.js +22 -0
  16. package/dist-es/commands/GetCollaborationMLInputChannelCommand.js +22 -0
  17. package/dist-es/commands/GetCollaborationTrainedModelCommand.js +22 -0
  18. package/dist-es/commands/GetConfiguredModelAlgorithmAssociationCommand.js +22 -0
  19. package/dist-es/commands/GetConfiguredModelAlgorithmCommand.js +22 -0
  20. package/dist-es/commands/GetMLConfigurationCommand.js +22 -0
  21. package/dist-es/commands/GetMLInputChannelCommand.js +23 -0
  22. package/dist-es/commands/GetTrainedModelCommand.js +22 -0
  23. package/dist-es/commands/GetTrainedModelInferenceJobCommand.js +22 -0
  24. package/dist-es/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.js +22 -0
  25. package/dist-es/commands/ListCollaborationMLInputChannelsCommand.js +22 -0
  26. package/dist-es/commands/ListCollaborationTrainedModelExportJobsCommand.js +22 -0
  27. package/dist-es/commands/ListCollaborationTrainedModelInferenceJobsCommand.js +22 -0
  28. package/dist-es/commands/ListCollaborationTrainedModelsCommand.js +22 -0
  29. package/dist-es/commands/ListConfiguredModelAlgorithmAssociationsCommand.js +22 -0
  30. package/dist-es/commands/ListConfiguredModelAlgorithmsCommand.js +22 -0
  31. package/dist-es/commands/ListMLInputChannelsCommand.js +22 -0
  32. package/dist-es/commands/ListTrainedModelInferenceJobsCommand.js +22 -0
  33. package/dist-es/commands/ListTrainedModelsCommand.js +22 -0
  34. package/dist-es/commands/PutMLConfigurationCommand.js +22 -0
  35. package/dist-es/commands/StartTrainedModelExportJobCommand.js +22 -0
  36. package/dist-es/commands/StartTrainedModelInferenceJobCommand.js +22 -0
  37. package/dist-es/commands/index.js +33 -0
  38. package/dist-es/models/models_0.js +295 -0
  39. package/dist-es/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.js +4 -0
  40. package/dist-es/pagination/ListCollaborationMLInputChannelsPaginator.js +4 -0
  41. package/dist-es/pagination/ListCollaborationTrainedModelExportJobsPaginator.js +4 -0
  42. package/dist-es/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.js +4 -0
  43. package/dist-es/pagination/ListCollaborationTrainedModelsPaginator.js +4 -0
  44. package/dist-es/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.js +4 -0
  45. package/dist-es/pagination/ListConfiguredModelAlgorithmsPaginator.js +4 -0
  46. package/dist-es/pagination/ListMLInputChannelsPaginator.js +4 -0
  47. package/dist-es/pagination/ListTrainedModelInferenceJobsPaginator.js +4 -0
  48. package/dist-es/pagination/ListTrainedModelsPaginator.js +4 -0
  49. package/dist-es/pagination/index.js +10 -0
  50. package/dist-es/protocols/Aws_restJson1.js +1320 -47
  51. package/dist-types/CleanRoomsML.d.ts +232 -0
  52. package/dist-types/CleanRoomsMLClient.d.ts +35 -2
  53. package/dist-types/commands/CancelTrainedModelCommand.d.ts +82 -0
  54. package/dist-types/commands/CancelTrainedModelInferenceJobCommand.d.ts +82 -0
  55. package/dist-types/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +132 -0
  56. package/dist-types/commands/CreateConfiguredModelAlgorithmCommand.d.ts +107 -0
  57. package/dist-types/commands/CreateMLInputChannelCommand.d.ts +116 -0
  58. package/dist-types/commands/CreateTrainedModelCommand.d.ts +113 -0
  59. package/dist-types/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +82 -0
  60. package/dist-types/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +81 -0
  61. package/dist-types/commands/DeleteMLConfigurationCommand.d.ts +78 -0
  62. package/dist-types/commands/DeleteMLInputChannelDataCommand.d.ts +82 -0
  63. package/dist-types/commands/DeleteTrainedModelOutputCommand.d.ts +82 -0
  64. package/dist-types/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +129 -0
  65. package/dist-types/commands/GetCollaborationMLInputChannelCommand.d.ts +98 -0
  66. package/dist-types/commands/GetCollaborationTrainedModelCommand.d.ts +107 -0
  67. package/dist-types/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +131 -0
  68. package/dist-types/commands/GetConfiguredModelAlgorithmCommand.d.ts +107 -0
  69. package/dist-types/commands/GetMLConfigurationCommand.d.ts +90 -0
  70. package/dist-types/commands/GetMLInputChannelCommand.d.ts +124 -0
  71. package/dist-types/commands/GetTrainedModelCommand.d.ts +122 -0
  72. package/dist-types/commands/GetTrainedModelInferenceJobCommand.d.ts +123 -0
  73. package/dist-types/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +92 -0
  74. package/dist-types/commands/ListCollaborationMLInputChannelsCommand.d.ts +95 -0
  75. package/dist-types/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +104 -0
  76. package/dist-types/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +107 -0
  77. package/dist-types/commands/ListCollaborationTrainedModelsCommand.d.ts +93 -0
  78. package/dist-types/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +91 -0
  79. package/dist-types/commands/ListConfiguredModelAlgorithmsCommand.d.ts +87 -0
  80. package/dist-types/commands/ListMLInputChannelsCommand.d.ts +95 -0
  81. package/dist-types/commands/ListTrainedModelInferenceJobsCommand.d.ts +106 -0
  82. package/dist-types/commands/ListTrainedModelsCommand.d.ts +92 -0
  83. package/dist-types/commands/PutMLConfigurationCommand.d.ts +83 -0
  84. package/dist-types/commands/StartTrainedModelExportJobCommand.d.ts +91 -0
  85. package/dist-types/commands/StartTrainedModelInferenceJobCommand.d.ts +115 -0
  86. package/dist-types/commands/index.d.ts +33 -0
  87. package/dist-types/models/models_0.d.ts +3461 -205
  88. package/dist-types/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.d.ts +7 -0
  89. package/dist-types/pagination/ListCollaborationMLInputChannelsPaginator.d.ts +7 -0
  90. package/dist-types/pagination/ListCollaborationTrainedModelExportJobsPaginator.d.ts +7 -0
  91. package/dist-types/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.d.ts +7 -0
  92. package/dist-types/pagination/ListCollaborationTrainedModelsPaginator.d.ts +7 -0
  93. package/dist-types/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.d.ts +7 -0
  94. package/dist-types/pagination/ListConfiguredModelAlgorithmsPaginator.d.ts +7 -0
  95. package/dist-types/pagination/ListMLInputChannelsPaginator.d.ts +7 -0
  96. package/dist-types/pagination/ListTrainedModelInferenceJobsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListTrainedModelsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +10 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +297 -0
  100. package/dist-types/ts3.4/CleanRoomsML.d.ts +610 -0
  101. package/dist-types/ts3.4/CleanRoomsMLClient.d.ts +198 -0
  102. package/dist-types/ts3.4/commands/CancelTrainedModelCommand.d.ts +46 -0
  103. package/dist-types/ts3.4/commands/CancelTrainedModelInferenceJobCommand.d.ts +47 -0
  104. package/dist-types/ts3.4/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/CreateConfiguredModelAlgorithmCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/CreateMLInputChannelCommand.d.ts +51 -0
  107. package/dist-types/ts3.4/commands/CreateTrainedModelCommand.d.ts +51 -0
  108. package/dist-types/ts3.4/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +47 -0
  109. package/dist-types/ts3.4/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +47 -0
  110. package/dist-types/ts3.4/commands/DeleteMLConfigurationCommand.d.ts +46 -0
  111. package/dist-types/ts3.4/commands/DeleteMLInputChannelDataCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/DeleteTrainedModelOutputCommand.d.ts +47 -0
  113. package/dist-types/ts3.4/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/GetCollaborationMLInputChannelCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/GetCollaborationTrainedModelCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +51 -0
  117. package/dist-types/ts3.4/commands/GetConfiguredModelAlgorithmCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/GetMLConfigurationCommand.d.ts +51 -0
  119. package/dist-types/ts3.4/commands/GetMLInputChannelCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/GetTrainedModelCommand.d.ts +50 -0
  121. package/dist-types/ts3.4/commands/GetTrainedModelInferenceJobCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/ListCollaborationMLInputChannelsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/ListCollaborationTrainedModelsCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/ListConfiguredModelAlgorithmsCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ListMLInputChannelsCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListTrainedModelInferenceJobsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListTrainedModelsCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/PutMLConfigurationCommand.d.ts +46 -0
  133. package/dist-types/ts3.4/commands/StartTrainedModelExportJobCommand.d.ts +47 -0
  134. package/dist-types/ts3.4/commands/StartTrainedModelInferenceJobCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +33 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +938 -0
  137. package/dist-types/ts3.4/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.d.ts +11 -0
  138. package/dist-types/ts3.4/pagination/ListCollaborationMLInputChannelsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelExportJobsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/ListCollaborationTrainedModelsPaginator.d.ts +11 -0
  142. package/dist-types/ts3.4/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.d.ts +11 -0
  143. package/dist-types/ts3.4/pagination/ListConfiguredModelAlgorithmsPaginator.d.ts +11 -0
  144. package/dist-types/ts3.4/pagination/ListMLInputChannelsPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListTrainedModelInferenceJobsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListTrainedModelsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  148. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +396 -0
  149. package/package.json +35 -35
@@ -349,17 +349,942 @@ export interface PutConfiguredAudienceModelPolicyResponse {
349
349
  configuredAudienceModelPolicy: string | undefined;
350
350
  policyHash: string | undefined;
351
351
  }
352
+ export interface InferenceContainerConfig {
353
+ imageUri: string | undefined;
354
+ }
355
+ export interface MetricDefinition {
356
+ name: string | undefined;
357
+ regex: string | undefined;
358
+ }
359
+ export interface ContainerConfig {
360
+ imageUri: string | undefined;
361
+ entrypoint?: string[];
362
+ arguments?: string[];
363
+ metricDefinitions?: MetricDefinition[];
364
+ }
365
+ export interface CreateConfiguredModelAlgorithmRequest {
366
+ name: string | undefined;
367
+ description?: string;
368
+ roleArn: string | undefined;
369
+ trainingContainerConfig?: ContainerConfig;
370
+ inferenceContainerConfig?: InferenceContainerConfig;
371
+ tags?: Record<string, string>;
372
+ kmsKeyArn?: string;
373
+ }
374
+ export interface CreateConfiguredModelAlgorithmResponse {
375
+ configuredModelAlgorithmArn: string | undefined;
376
+ }
377
+ export interface DeleteConfiguredModelAlgorithmRequest {
378
+ configuredModelAlgorithmArn: string | undefined;
379
+ }
380
+ export interface GetConfiguredModelAlgorithmRequest {
381
+ configuredModelAlgorithmArn: string | undefined;
382
+ }
383
+ export interface GetConfiguredModelAlgorithmResponse {
384
+ createTime: Date | undefined;
385
+ updateTime: Date | undefined;
386
+ configuredModelAlgorithmArn: string | undefined;
387
+ name: string | undefined;
388
+ trainingContainerConfig?: ContainerConfig;
389
+ inferenceContainerConfig?: InferenceContainerConfig;
390
+ roleArn: string | undefined;
391
+ description?: string;
392
+ tags?: Record<string, string>;
393
+ kmsKeyArn?: string;
394
+ }
395
+ export interface ListConfiguredModelAlgorithmsRequest {
396
+ nextToken?: string;
397
+ maxResults?: number;
398
+ }
399
+ export interface ConfiguredModelAlgorithmSummary {
400
+ createTime: Date | undefined;
401
+ updateTime: Date | undefined;
402
+ configuredModelAlgorithmArn: string | undefined;
403
+ name: string | undefined;
404
+ description?: string;
405
+ }
406
+ export interface ListConfiguredModelAlgorithmsResponse {
407
+ nextToken?: string;
408
+ configuredModelAlgorithms: ConfiguredModelAlgorithmSummary[] | undefined;
409
+ }
410
+ export declare const TrainedModelExportFileType: {
411
+ readonly MODEL: "MODEL";
412
+ readonly OUTPUT: "OUTPUT";
413
+ };
414
+ export type TrainedModelExportFileType =
415
+ (typeof TrainedModelExportFileType)[keyof typeof TrainedModelExportFileType];
416
+ export declare const TrainedModelExportsMaxSizeUnitType: {
417
+ readonly GB: "GB";
418
+ };
419
+ export type TrainedModelExportsMaxSizeUnitType =
420
+ (typeof TrainedModelExportsMaxSizeUnitType)[keyof typeof TrainedModelExportsMaxSizeUnitType];
421
+ export interface TrainedModelExportsMaxSize {
422
+ unit: TrainedModelExportsMaxSizeUnitType | undefined;
423
+ value: number | undefined;
424
+ }
425
+ export interface TrainedModelExportsConfigurationPolicy {
426
+ maxSize: TrainedModelExportsMaxSize | undefined;
427
+ filesToExport: TrainedModelExportFileType[] | undefined;
428
+ }
429
+ export interface LogsConfigurationPolicy {
430
+ allowedAccountIds: string[] | undefined;
431
+ filterPattern?: string;
432
+ }
433
+ export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
434
+ readonly GB: "GB";
435
+ };
436
+ export type TrainedModelInferenceMaxOutputSizeUnitType =
437
+ (typeof TrainedModelInferenceMaxOutputSizeUnitType)[keyof typeof TrainedModelInferenceMaxOutputSizeUnitType];
438
+ export interface TrainedModelInferenceMaxOutputSize {
439
+ unit: TrainedModelInferenceMaxOutputSizeUnitType | undefined;
440
+ value: number | undefined;
441
+ }
442
+ export interface TrainedModelInferenceJobsConfigurationPolicy {
443
+ containerLogs?: LogsConfigurationPolicy[];
444
+ maxOutputSize?: TrainedModelInferenceMaxOutputSize;
445
+ }
446
+ export declare const NoiseLevelType: {
447
+ readonly HIGH: "HIGH";
448
+ readonly LOW: "LOW";
449
+ readonly MEDIUM: "MEDIUM";
450
+ readonly NONE: "NONE";
451
+ };
452
+ export type NoiseLevelType =
453
+ (typeof NoiseLevelType)[keyof typeof NoiseLevelType];
454
+ export interface MetricsConfigurationPolicy {
455
+ noiseLevel: NoiseLevelType | undefined;
456
+ }
457
+ export interface TrainedModelsConfigurationPolicy {
458
+ containerLogs?: LogsConfigurationPolicy[];
459
+ containerMetrics?: MetricsConfigurationPolicy;
460
+ }
461
+ export interface PrivacyConfigurationPolicies {
462
+ trainedModels?: TrainedModelsConfigurationPolicy;
463
+ trainedModelExports?: TrainedModelExportsConfigurationPolicy;
464
+ trainedModelInferenceJobs?: TrainedModelInferenceJobsConfigurationPolicy;
465
+ }
466
+ export interface PrivacyConfiguration {
467
+ policies: PrivacyConfigurationPolicies | undefined;
468
+ }
469
+ export interface CreateConfiguredModelAlgorithmAssociationRequest {
470
+ membershipIdentifier: string | undefined;
471
+ configuredModelAlgorithmArn: string | undefined;
472
+ name: string | undefined;
473
+ description?: string;
474
+ privacyConfiguration?: PrivacyConfiguration;
475
+ tags?: Record<string, string>;
476
+ }
477
+ export interface CreateConfiguredModelAlgorithmAssociationResponse {
478
+ configuredModelAlgorithmAssociationArn: string | undefined;
479
+ }
480
+ export interface DeleteConfiguredModelAlgorithmAssociationRequest {
481
+ configuredModelAlgorithmAssociationArn: string | undefined;
482
+ membershipIdentifier: string | undefined;
483
+ }
484
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationRequest {
485
+ configuredModelAlgorithmAssociationArn: string | undefined;
486
+ collaborationIdentifier: string | undefined;
487
+ }
488
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationResponse {
489
+ createTime: Date | undefined;
490
+ updateTime: Date | undefined;
491
+ configuredModelAlgorithmAssociationArn: string | undefined;
492
+ membershipIdentifier: string | undefined;
493
+ collaborationIdentifier: string | undefined;
494
+ configuredModelAlgorithmArn: string | undefined;
495
+ name: string | undefined;
496
+ description?: string;
497
+ creatorAccountId: string | undefined;
498
+ privacyConfiguration?: PrivacyConfiguration;
499
+ }
500
+ export interface GetConfiguredModelAlgorithmAssociationRequest {
501
+ configuredModelAlgorithmAssociationArn: string | undefined;
502
+ membershipIdentifier: string | undefined;
503
+ }
504
+ export interface GetConfiguredModelAlgorithmAssociationResponse {
505
+ createTime: Date | undefined;
506
+ updateTime: Date | undefined;
507
+ configuredModelAlgorithmAssociationArn: string | undefined;
508
+ membershipIdentifier: string | undefined;
509
+ collaborationIdentifier: string | undefined;
510
+ configuredModelAlgorithmArn: string | undefined;
511
+ name: string | undefined;
512
+ privacyConfiguration?: PrivacyConfiguration;
513
+ description?: string;
514
+ tags?: Record<string, string>;
515
+ }
516
+ export interface ListConfiguredModelAlgorithmAssociationsRequest {
517
+ nextToken?: string;
518
+ maxResults?: number;
519
+ membershipIdentifier: string | undefined;
520
+ }
521
+ export interface ConfiguredModelAlgorithmAssociationSummary {
522
+ createTime: Date | undefined;
523
+ updateTime: Date | undefined;
524
+ configuredModelAlgorithmAssociationArn: string | undefined;
525
+ configuredModelAlgorithmArn: string | undefined;
526
+ name: string | undefined;
527
+ description?: string;
528
+ membershipIdentifier: string | undefined;
529
+ collaborationIdentifier: string | undefined;
530
+ }
531
+ export interface ListConfiguredModelAlgorithmAssociationsResponse {
532
+ nextToken?: string;
533
+ configuredModelAlgorithmAssociations:
534
+ | ConfiguredModelAlgorithmAssociationSummary[]
535
+ | undefined;
536
+ }
537
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsRequest {
538
+ nextToken?: string;
539
+ maxResults?: number;
540
+ collaborationIdentifier: string | undefined;
541
+ }
542
+ export interface CollaborationConfiguredModelAlgorithmAssociationSummary {
543
+ createTime: Date | undefined;
544
+ updateTime: Date | undefined;
545
+ configuredModelAlgorithmAssociationArn: string | undefined;
546
+ name: string | undefined;
547
+ description?: string;
548
+ membershipIdentifier: string | undefined;
549
+ collaborationIdentifier: string | undefined;
550
+ configuredModelAlgorithmArn: string | undefined;
551
+ creatorAccountId: string | undefined;
552
+ }
553
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsResponse {
554
+ nextToken?: string;
555
+ collaborationConfiguredModelAlgorithmAssociations:
556
+ | CollaborationConfiguredModelAlgorithmAssociationSummary[]
557
+ | undefined;
558
+ }
559
+ export interface ListCollaborationMLInputChannelsRequest {
560
+ nextToken?: string;
561
+ maxResults?: number;
562
+ collaborationIdentifier: string | undefined;
563
+ }
564
+ export declare const MLInputChannelStatus: {
565
+ readonly ACTIVE: "ACTIVE";
566
+ readonly CREATE_FAILED: "CREATE_FAILED";
567
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
568
+ readonly CREATE_PENDING: "CREATE_PENDING";
569
+ readonly DELETE_FAILED: "DELETE_FAILED";
570
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
571
+ readonly DELETE_PENDING: "DELETE_PENDING";
572
+ readonly INACTIVE: "INACTIVE";
573
+ };
574
+ export type MLInputChannelStatus =
575
+ (typeof MLInputChannelStatus)[keyof typeof MLInputChannelStatus];
576
+ export interface CollaborationMLInputChannelSummary {
577
+ createTime: Date | undefined;
578
+ updateTime: Date | undefined;
579
+ membershipIdentifier: string | undefined;
580
+ collaborationIdentifier: string | undefined;
581
+ name: string | undefined;
582
+ configuredModelAlgorithmAssociations: string[] | undefined;
583
+ mlInputChannelArn: string | undefined;
584
+ status: MLInputChannelStatus | undefined;
585
+ creatorAccountId: string | undefined;
586
+ description?: string;
587
+ }
588
+ export interface ListCollaborationMLInputChannelsResponse {
589
+ nextToken?: string;
590
+ collaborationMLInputChannelsList:
591
+ | CollaborationMLInputChannelSummary[]
592
+ | undefined;
593
+ }
594
+ export interface ListCollaborationTrainedModelExportJobsRequest {
595
+ nextToken?: string;
596
+ maxResults?: number;
597
+ collaborationIdentifier: string | undefined;
598
+ trainedModelArn: string | undefined;
599
+ }
600
+ export interface TrainedModelExportReceiverMember {
601
+ accountId: string | undefined;
602
+ }
603
+ export interface TrainedModelExportOutputConfiguration {
604
+ members: TrainedModelExportReceiverMember[] | undefined;
605
+ }
606
+ export declare const TrainedModelExportJobStatus: {
607
+ readonly ACTIVE: "ACTIVE";
608
+ readonly CREATE_FAILED: "CREATE_FAILED";
609
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
610
+ readonly CREATE_PENDING: "CREATE_PENDING";
611
+ };
612
+ export type TrainedModelExportJobStatus =
613
+ (typeof TrainedModelExportJobStatus)[keyof typeof TrainedModelExportJobStatus];
614
+ export interface CollaborationTrainedModelExportJobSummary {
615
+ createTime: Date | undefined;
616
+ updateTime: Date | undefined;
617
+ name: string | undefined;
618
+ outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
619
+ status: TrainedModelExportJobStatus | undefined;
620
+ statusDetails?: StatusDetails;
621
+ description?: string;
622
+ creatorAccountId: string | undefined;
623
+ trainedModelArn: string | undefined;
624
+ membershipIdentifier: string | undefined;
625
+ collaborationIdentifier: string | undefined;
626
+ }
627
+ export interface ListCollaborationTrainedModelExportJobsResponse {
628
+ nextToken?: string;
629
+ collaborationTrainedModelExportJobs:
630
+ | CollaborationTrainedModelExportJobSummary[]
631
+ | undefined;
632
+ }
633
+ export interface ListCollaborationTrainedModelInferenceJobsRequest {
634
+ nextToken?: string;
635
+ maxResults?: number;
636
+ collaborationIdentifier: string | undefined;
637
+ trainedModelArn?: string;
638
+ }
639
+ export declare const LogsStatus: {
640
+ readonly PUBLISH_FAILED: "PUBLISH_FAILED";
641
+ readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
642
+ };
643
+ export type LogsStatus = (typeof LogsStatus)[keyof typeof LogsStatus];
644
+ export declare const MetricsStatus: {
645
+ readonly PUBLISH_FAILED: "PUBLISH_FAILED";
646
+ readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
647
+ };
648
+ export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
649
+ export interface InferenceReceiverMember {
650
+ accountId: string | undefined;
651
+ }
652
+ export interface InferenceOutputConfiguration {
653
+ accept?: string;
654
+ members: InferenceReceiverMember[] | undefined;
655
+ }
656
+ export declare const TrainedModelInferenceJobStatus: {
657
+ readonly ACTIVE: "ACTIVE";
658
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
659
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
660
+ readonly CANCEL_PENDING: "CANCEL_PENDING";
661
+ readonly CREATE_FAILED: "CREATE_FAILED";
662
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
663
+ readonly CREATE_PENDING: "CREATE_PENDING";
664
+ readonly INACTIVE: "INACTIVE";
665
+ };
666
+ export type TrainedModelInferenceJobStatus =
667
+ (typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
668
+ export interface CollaborationTrainedModelInferenceJobSummary {
669
+ trainedModelInferenceJobArn: string | undefined;
670
+ configuredModelAlgorithmAssociationArn?: string;
671
+ membershipIdentifier: string | undefined;
672
+ trainedModelArn: string | undefined;
673
+ collaborationIdentifier: string | undefined;
674
+ status: TrainedModelInferenceJobStatus | undefined;
675
+ outputConfiguration: InferenceOutputConfiguration | undefined;
676
+ name: string | undefined;
677
+ description?: string;
678
+ metricsStatus?: MetricsStatus;
679
+ metricsStatusDetails?: string;
680
+ logsStatus?: LogsStatus;
681
+ logsStatusDetails?: string;
682
+ createTime: Date | undefined;
683
+ updateTime: Date | undefined;
684
+ creatorAccountId: string | undefined;
685
+ }
686
+ export interface ListCollaborationTrainedModelInferenceJobsResponse {
687
+ nextToken?: string;
688
+ collaborationTrainedModelInferenceJobs:
689
+ | CollaborationTrainedModelInferenceJobSummary[]
690
+ | undefined;
691
+ }
692
+ export interface ListCollaborationTrainedModelsRequest {
693
+ nextToken?: string;
694
+ maxResults?: number;
695
+ collaborationIdentifier: string | undefined;
696
+ }
697
+ export declare const TrainedModelStatus: {
698
+ readonly ACTIVE: "ACTIVE";
699
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
700
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
701
+ readonly CANCEL_PENDING: "CANCEL_PENDING";
702
+ readonly CREATE_FAILED: "CREATE_FAILED";
703
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
704
+ readonly CREATE_PENDING: "CREATE_PENDING";
705
+ readonly DELETE_FAILED: "DELETE_FAILED";
706
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
707
+ readonly DELETE_PENDING: "DELETE_PENDING";
708
+ readonly INACTIVE: "INACTIVE";
709
+ };
710
+ export type TrainedModelStatus =
711
+ (typeof TrainedModelStatus)[keyof typeof TrainedModelStatus];
712
+ export interface CollaborationTrainedModelSummary {
713
+ createTime: Date | undefined;
714
+ updateTime: Date | undefined;
715
+ trainedModelArn: string | undefined;
716
+ name: string | undefined;
717
+ description?: string;
718
+ membershipIdentifier: string | undefined;
719
+ collaborationIdentifier: string | undefined;
720
+ status: TrainedModelStatus | undefined;
721
+ configuredModelAlgorithmAssociationArn: string | undefined;
722
+ creatorAccountId: string | undefined;
723
+ }
724
+ export interface ListCollaborationTrainedModelsResponse {
725
+ nextToken?: string;
726
+ collaborationTrainedModels: CollaborationTrainedModelSummary[] | undefined;
727
+ }
352
728
  export interface ListTagsForResourceRequest {
353
729
  resourceArn: string | undefined;
354
730
  }
355
731
  export interface ListTagsForResourceResponse {
356
732
  tags: Record<string, string> | undefined;
357
733
  }
734
+ export interface DeleteMLConfigurationRequest {
735
+ membershipIdentifier: string | undefined;
736
+ }
737
+ export interface GetMLConfigurationRequest {
738
+ membershipIdentifier: string | undefined;
739
+ }
740
+ export interface Destination {
741
+ s3Destination: S3ConfigMap | undefined;
742
+ }
743
+ export interface MLOutputConfiguration {
744
+ destination?: Destination;
745
+ roleArn: string | undefined;
746
+ }
747
+ export interface GetMLConfigurationResponse {
748
+ membershipIdentifier: string | undefined;
749
+ defaultOutputLocation: MLOutputConfiguration | undefined;
750
+ createTime: Date | undefined;
751
+ updateTime: Date | undefined;
752
+ }
753
+ export interface PutMLConfigurationRequest {
754
+ membershipIdentifier: string | undefined;
755
+ defaultOutputLocation: MLOutputConfiguration | undefined;
756
+ }
757
+ export declare const WorkerComputeType: {
758
+ readonly CR1X: "CR.1X";
759
+ readonly CR4X: "CR.4X";
760
+ };
761
+ export type WorkerComputeType =
762
+ (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
763
+ export interface WorkerComputeConfiguration {
764
+ type?: WorkerComputeType;
765
+ number?: number;
766
+ }
767
+ export type ComputeConfiguration =
768
+ | ComputeConfiguration.WorkerMember
769
+ | ComputeConfiguration.$UnknownMember;
770
+ export declare namespace ComputeConfiguration {
771
+ interface WorkerMember {
772
+ worker: WorkerComputeConfiguration;
773
+ $unknown?: never;
774
+ }
775
+ interface $UnknownMember {
776
+ worker?: never;
777
+ $unknown: [string, any];
778
+ }
779
+ interface Visitor<T> {
780
+ worker: (value: WorkerComputeConfiguration) => T;
781
+ _: (name: string, value: any) => T;
782
+ }
783
+ const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
784
+ }
785
+ export interface ProtectedQueryInputParameters {
786
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
787
+ computeConfiguration?: ComputeConfiguration;
788
+ }
789
+ export type InputChannelDataSource =
790
+ | InputChannelDataSource.ProtectedQueryInputParametersMember
791
+ | InputChannelDataSource.$UnknownMember;
792
+ export declare namespace InputChannelDataSource {
793
+ interface ProtectedQueryInputParametersMember {
794
+ protectedQueryInputParameters: ProtectedQueryInputParameters;
795
+ $unknown?: never;
796
+ }
797
+ interface $UnknownMember {
798
+ protectedQueryInputParameters?: never;
799
+ $unknown: [string, any];
800
+ }
801
+ interface Visitor<T> {
802
+ protectedQueryInputParameters: (value: ProtectedQueryInputParameters) => T;
803
+ _: (name: string, value: any) => T;
804
+ }
805
+ const visit: <T>(value: InputChannelDataSource, visitor: Visitor<T>) => T;
806
+ }
807
+ export interface InputChannel {
808
+ dataSource: InputChannelDataSource | undefined;
809
+ roleArn: string | undefined;
810
+ }
811
+ export interface CreateMLInputChannelRequest {
812
+ membershipIdentifier: string | undefined;
813
+ configuredModelAlgorithmAssociations: string[] | undefined;
814
+ inputChannel: InputChannel | undefined;
815
+ name: string | undefined;
816
+ retentionInDays: number | undefined;
817
+ description?: string;
818
+ kmsKeyArn?: string;
819
+ tags?: Record<string, string>;
820
+ }
821
+ export interface CreateMLInputChannelResponse {
822
+ mlInputChannelArn: string | undefined;
823
+ }
824
+ export interface DeleteMLInputChannelDataRequest {
825
+ mlInputChannelArn: string | undefined;
826
+ membershipIdentifier: string | undefined;
827
+ }
828
+ export interface GetCollaborationMLInputChannelRequest {
829
+ mlInputChannelArn: string | undefined;
830
+ collaborationIdentifier: string | undefined;
831
+ }
832
+ export interface GetCollaborationMLInputChannelResponse {
833
+ createTime: Date | undefined;
834
+ updateTime: Date | undefined;
835
+ creatorAccountId: string | undefined;
836
+ membershipIdentifier: string | undefined;
837
+ collaborationIdentifier: string | undefined;
838
+ mlInputChannelArn: string | undefined;
839
+ name: string | undefined;
840
+ configuredModelAlgorithmAssociations: string[] | undefined;
841
+ status: MLInputChannelStatus | undefined;
842
+ statusDetails?: StatusDetails;
843
+ retentionInDays: number | undefined;
844
+ numberOfRecords?: number;
845
+ description?: string;
846
+ }
847
+ export interface GetMLInputChannelRequest {
848
+ mlInputChannelArn: string | undefined;
849
+ membershipIdentifier: string | undefined;
850
+ }
851
+ export interface GetMLInputChannelResponse {
852
+ createTime: Date | undefined;
853
+ updateTime: Date | undefined;
854
+ membershipIdentifier: string | undefined;
855
+ collaborationIdentifier: string | undefined;
856
+ inputChannel: InputChannel | undefined;
857
+ protectedQueryIdentifier?: string;
858
+ mlInputChannelArn: string | undefined;
859
+ name: string | undefined;
860
+ configuredModelAlgorithmAssociations: string[] | undefined;
861
+ status: MLInputChannelStatus | undefined;
862
+ statusDetails?: StatusDetails;
863
+ retentionInDays: number | undefined;
864
+ numberOfRecords?: number;
865
+ numberOfFiles?: number;
866
+ sizeInGb?: number;
867
+ description?: string;
868
+ kmsKeyArn?: string;
869
+ tags?: Record<string, string>;
870
+ }
871
+ export interface ListMLInputChannelsRequest {
872
+ nextToken?: string;
873
+ maxResults?: number;
874
+ membershipIdentifier: string | undefined;
875
+ }
876
+ export interface MLInputChannelSummary {
877
+ createTime: Date | undefined;
878
+ updateTime: Date | undefined;
879
+ membershipIdentifier: string | undefined;
880
+ collaborationIdentifier: string | undefined;
881
+ name: string | undefined;
882
+ configuredModelAlgorithmAssociations: string[] | undefined;
883
+ protectedQueryIdentifier?: string;
884
+ mlInputChannelArn: string | undefined;
885
+ status: MLInputChannelStatus | undefined;
886
+ description?: string;
887
+ }
888
+ export interface ListMLInputChannelsResponse {
889
+ nextToken?: string;
890
+ mlInputChannelsList: MLInputChannelSummary[] | undefined;
891
+ }
358
892
  export interface TagResourceRequest {
359
893
  resourceArn: string | undefined;
360
894
  tags: Record<string, string> | undefined;
361
895
  }
362
896
  export interface TagResourceResponse {}
897
+ export interface CancelTrainedModelRequest {
898
+ membershipIdentifier: string | undefined;
899
+ trainedModelArn: string | undefined;
900
+ }
901
+ export interface ModelTrainingDataChannel {
902
+ mlInputChannelArn: string | undefined;
903
+ channelName: string | undefined;
904
+ }
905
+ export declare const _InstanceType: {
906
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
907
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
908
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
909
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
910
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
911
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
912
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
913
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
914
+ readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
915
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
916
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
917
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
918
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
919
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
920
+ readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
921
+ readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
922
+ readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
923
+ readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
924
+ readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
925
+ readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
926
+ readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
927
+ readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
928
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
929
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
930
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
931
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
932
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
933
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
934
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
935
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
936
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
937
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
938
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
939
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
940
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
941
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
942
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
943
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
944
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
945
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
946
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
947
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
948
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
949
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
950
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
951
+ readonly ML_M5_LARGE: "ml.m5.large";
952
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
953
+ readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
954
+ readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
955
+ readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
956
+ readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
957
+ readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
958
+ readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
959
+ readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
960
+ readonly ML_M6I_LARGE: "ml.m6i.large";
961
+ readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
962
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
963
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
964
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
965
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
966
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
967
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
968
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
969
+ readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
970
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
971
+ readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
972
+ readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
973
+ readonly ML_R5D_16XLARGE: "ml.r5d.16xlarge";
974
+ readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
975
+ readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
976
+ readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
977
+ readonly ML_R5D_8XLARGE: "ml.r5d.8xlarge";
978
+ readonly ML_R5D_LARGE: "ml.r5d.large";
979
+ readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
980
+ readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
981
+ readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
982
+ readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
983
+ readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
984
+ readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
985
+ readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
986
+ readonly ML_R5_LARGE: "ml.r5.large";
987
+ readonly ML_R5_XLARGE: "ml.r5.xlarge";
988
+ readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
989
+ readonly ML_T3_LARGE: "ml.t3.large";
990
+ readonly ML_T3_MEDIUM: "ml.t3.medium";
991
+ readonly ML_T3_XLARGE: "ml.t3.xlarge";
992
+ readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
993
+ readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
994
+ readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
995
+ };
996
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
997
+ export interface ResourceConfig {
998
+ instanceCount?: number;
999
+ instanceType: _InstanceType | undefined;
1000
+ volumeSizeInGB: number | undefined;
1001
+ }
1002
+ export interface StoppingCondition {
1003
+ maxRuntimeInSeconds?: number;
1004
+ }
1005
+ export interface CreateTrainedModelRequest {
1006
+ membershipIdentifier: string | undefined;
1007
+ name: string | undefined;
1008
+ configuredModelAlgorithmAssociationArn: string | undefined;
1009
+ hyperparameters?: Record<string, string>;
1010
+ environment?: Record<string, string>;
1011
+ resourceConfig: ResourceConfig | undefined;
1012
+ stoppingCondition?: StoppingCondition;
1013
+ dataChannels: ModelTrainingDataChannel[] | undefined;
1014
+ description?: string;
1015
+ kmsKeyArn?: string;
1016
+ tags?: Record<string, string>;
1017
+ }
1018
+ export interface CreateTrainedModelResponse {
1019
+ trainedModelArn: string | undefined;
1020
+ }
1021
+ export interface DeleteTrainedModelOutputRequest {
1022
+ trainedModelArn: string | undefined;
1023
+ membershipIdentifier: string | undefined;
1024
+ }
1025
+ export interface GetCollaborationTrainedModelRequest {
1026
+ trainedModelArn: string | undefined;
1027
+ collaborationIdentifier: string | undefined;
1028
+ }
1029
+ export interface GetCollaborationTrainedModelResponse {
1030
+ membershipIdentifier: string | undefined;
1031
+ collaborationIdentifier: string | undefined;
1032
+ trainedModelArn: string | undefined;
1033
+ name: string | undefined;
1034
+ description?: string;
1035
+ status: TrainedModelStatus | undefined;
1036
+ statusDetails?: StatusDetails;
1037
+ configuredModelAlgorithmAssociationArn: string | undefined;
1038
+ resourceConfig?: ResourceConfig;
1039
+ stoppingCondition?: StoppingCondition;
1040
+ metricsStatus?: MetricsStatus;
1041
+ metricsStatusDetails?: string;
1042
+ logsStatus?: LogsStatus;
1043
+ logsStatusDetails?: string;
1044
+ trainingContainerImageDigest?: string;
1045
+ createTime: Date | undefined;
1046
+ updateTime: Date | undefined;
1047
+ creatorAccountId: string | undefined;
1048
+ }
1049
+ export interface GetTrainedModelRequest {
1050
+ trainedModelArn: string | undefined;
1051
+ membershipIdentifier: string | undefined;
1052
+ }
1053
+ export interface GetTrainedModelResponse {
1054
+ membershipIdentifier: string | undefined;
1055
+ collaborationIdentifier: string | undefined;
1056
+ trainedModelArn: string | undefined;
1057
+ name: string | undefined;
1058
+ description?: string;
1059
+ status: TrainedModelStatus | undefined;
1060
+ statusDetails?: StatusDetails;
1061
+ configuredModelAlgorithmAssociationArn: string | undefined;
1062
+ resourceConfig?: ResourceConfig;
1063
+ stoppingCondition?: StoppingCondition;
1064
+ metricsStatus?: MetricsStatus;
1065
+ metricsStatusDetails?: string;
1066
+ logsStatus?: LogsStatus;
1067
+ logsStatusDetails?: string;
1068
+ trainingContainerImageDigest?: string;
1069
+ createTime: Date | undefined;
1070
+ updateTime: Date | undefined;
1071
+ hyperparameters?: Record<string, string>;
1072
+ environment?: Record<string, string>;
1073
+ kmsKeyArn?: string;
1074
+ tags?: Record<string, string>;
1075
+ dataChannels: ModelTrainingDataChannel[] | undefined;
1076
+ }
1077
+ export interface ListTrainedModelsRequest {
1078
+ nextToken?: string;
1079
+ maxResults?: number;
1080
+ membershipIdentifier: string | undefined;
1081
+ }
1082
+ export interface TrainedModelSummary {
1083
+ createTime: Date | undefined;
1084
+ updateTime: Date | undefined;
1085
+ trainedModelArn: string | undefined;
1086
+ name: string | undefined;
1087
+ description?: string;
1088
+ membershipIdentifier: string | undefined;
1089
+ collaborationIdentifier: string | undefined;
1090
+ status: TrainedModelStatus | undefined;
1091
+ configuredModelAlgorithmAssociationArn: string | undefined;
1092
+ }
1093
+ export interface ListTrainedModelsResponse {
1094
+ nextToken?: string;
1095
+ trainedModels: TrainedModelSummary[] | undefined;
1096
+ }
1097
+ export interface StartTrainedModelExportJobRequest {
1098
+ name: string | undefined;
1099
+ trainedModelArn: string | undefined;
1100
+ membershipIdentifier: string | undefined;
1101
+ outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
1102
+ description?: string;
1103
+ }
1104
+ export interface CancelTrainedModelInferenceJobRequest {
1105
+ membershipIdentifier: string | undefined;
1106
+ trainedModelInferenceJobArn: string | undefined;
1107
+ }
1108
+ export interface GetTrainedModelInferenceJobRequest {
1109
+ membershipIdentifier: string | undefined;
1110
+ trainedModelInferenceJobArn: string | undefined;
1111
+ }
1112
+ export interface InferenceContainerExecutionParameters {
1113
+ maxPayloadInMB?: number;
1114
+ }
1115
+ export interface ModelInferenceDataSource {
1116
+ mlInputChannelArn: string | undefined;
1117
+ }
1118
+ export declare const InferenceInstanceType: {
1119
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
1120
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
1121
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
1122
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
1123
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
1124
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
1125
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
1126
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
1127
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
1128
+ readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
1129
+ readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
1130
+ readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
1131
+ readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
1132
+ readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
1133
+ readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
1134
+ readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
1135
+ readonly ML_C6I_LARGE: "ml.c6i.large";
1136
+ readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
1137
+ readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
1138
+ readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
1139
+ readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
1140
+ readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
1141
+ readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
1142
+ readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
1143
+ readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
1144
+ readonly ML_C7I_LARGE: "ml.c7i.large";
1145
+ readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
1146
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
1147
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
1148
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
1149
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
1150
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
1151
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
1152
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
1153
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
1154
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
1155
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
1156
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
1157
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
1158
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
1159
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
1160
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
1161
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
1162
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
1163
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
1164
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
1165
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
1166
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
1167
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
1168
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
1169
+ readonly ML_M5_LARGE: "ml.m5.large";
1170
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
1171
+ readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
1172
+ readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
1173
+ readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
1174
+ readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
1175
+ readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
1176
+ readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
1177
+ readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
1178
+ readonly ML_M6I_LARGE: "ml.m6i.large";
1179
+ readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
1180
+ readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
1181
+ readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
1182
+ readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
1183
+ readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
1184
+ readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
1185
+ readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
1186
+ readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
1187
+ readonly ML_M7I_LARGE: "ml.m7i.large";
1188
+ readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
1189
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
1190
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
1191
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
1192
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
1193
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
1194
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
1195
+ readonly ML_R6I_12XLARGE: "ml.r6i.12xlarge";
1196
+ readonly ML_R6I_16XLARGE: "ml.r6i.16xlarge";
1197
+ readonly ML_R6I_24XLARGE: "ml.r6i.24xlarge";
1198
+ readonly ML_R6I_2XLARGE: "ml.r6i.2xlarge";
1199
+ readonly ML_R6I_32XLARGE: "ml.r6i.32xlarge";
1200
+ readonly ML_R6I_4XLARGE: "ml.r6i.4xlarge";
1201
+ readonly ML_R6I_8XLARGE: "ml.r6i.8xlarge";
1202
+ readonly ML_R6I_LARGE: "ml.r6i.large";
1203
+ readonly ML_R6I_XLARGE: "ml.r6i.xlarge";
1204
+ readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
1205
+ readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
1206
+ readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
1207
+ readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
1208
+ readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
1209
+ readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
1210
+ readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
1211
+ readonly ML_R7I_LARGE: "ml.r7i.large";
1212
+ readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
1213
+ };
1214
+ export type InferenceInstanceType =
1215
+ (typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
1216
+ export interface InferenceResourceConfig {
1217
+ instanceType: InferenceInstanceType | undefined;
1218
+ instanceCount?: number;
1219
+ }
1220
+ export interface GetTrainedModelInferenceJobResponse {
1221
+ createTime: Date | undefined;
1222
+ updateTime: Date | undefined;
1223
+ trainedModelInferenceJobArn: string | undefined;
1224
+ configuredModelAlgorithmAssociationArn?: string;
1225
+ name: string | undefined;
1226
+ status: TrainedModelInferenceJobStatus | undefined;
1227
+ trainedModelArn: string | undefined;
1228
+ resourceConfig: InferenceResourceConfig | undefined;
1229
+ outputConfiguration: InferenceOutputConfiguration | undefined;
1230
+ membershipIdentifier: string | undefined;
1231
+ dataSource: ModelInferenceDataSource | undefined;
1232
+ containerExecutionParameters?: InferenceContainerExecutionParameters;
1233
+ statusDetails?: StatusDetails;
1234
+ description?: string;
1235
+ inferenceContainerImageDigest?: string;
1236
+ environment?: Record<string, string>;
1237
+ kmsKeyArn?: string;
1238
+ metricsStatus?: MetricsStatus;
1239
+ metricsStatusDetails?: string;
1240
+ logsStatus?: LogsStatus;
1241
+ logsStatusDetails?: string;
1242
+ tags?: Record<string, string>;
1243
+ }
1244
+ export interface ListTrainedModelInferenceJobsRequest {
1245
+ nextToken?: string;
1246
+ maxResults?: number;
1247
+ membershipIdentifier: string | undefined;
1248
+ trainedModelArn?: string;
1249
+ }
1250
+ export interface TrainedModelInferenceJobSummary {
1251
+ trainedModelInferenceJobArn: string | undefined;
1252
+ configuredModelAlgorithmAssociationArn?: string;
1253
+ membershipIdentifier: string | undefined;
1254
+ trainedModelArn: string | undefined;
1255
+ collaborationIdentifier: string | undefined;
1256
+ status: TrainedModelInferenceJobStatus | undefined;
1257
+ outputConfiguration: InferenceOutputConfiguration | undefined;
1258
+ name: string | undefined;
1259
+ description?: string;
1260
+ metricsStatus?: MetricsStatus;
1261
+ metricsStatusDetails?: string;
1262
+ logsStatus?: LogsStatus;
1263
+ logsStatusDetails?: string;
1264
+ createTime: Date | undefined;
1265
+ updateTime: Date | undefined;
1266
+ }
1267
+ export interface ListTrainedModelInferenceJobsResponse {
1268
+ nextToken?: string;
1269
+ trainedModelInferenceJobs: TrainedModelInferenceJobSummary[] | undefined;
1270
+ }
1271
+ export interface StartTrainedModelInferenceJobRequest {
1272
+ membershipIdentifier: string | undefined;
1273
+ name: string | undefined;
1274
+ trainedModelArn: string | undefined;
1275
+ configuredModelAlgorithmAssociationArn?: string;
1276
+ resourceConfig: InferenceResourceConfig | undefined;
1277
+ outputConfiguration: InferenceOutputConfiguration | undefined;
1278
+ dataSource: ModelInferenceDataSource | undefined;
1279
+ description?: string;
1280
+ containerExecutionParameters?: InferenceContainerExecutionParameters;
1281
+ environment?: Record<string, string>;
1282
+ kmsKeyArn?: string;
1283
+ tags?: Record<string, string>;
1284
+ }
1285
+ export interface StartTrainedModelInferenceJobResponse {
1286
+ trainedModelInferenceJobArn: string | undefined;
1287
+ }
363
1288
  export interface GlueDataSource {
364
1289
  tableName: string | undefined;
365
1290
  databaseName: string | undefined;
@@ -457,3 +1382,16 @@ export declare const GetAudienceGenerationJobResponseFilterSensitiveLog: (
457
1382
  export declare const StartAudienceGenerationJobRequestFilterSensitiveLog: (
458
1383
  obj: StartAudienceGenerationJobRequest
459
1384
  ) => any;
1385
+ export declare const ProtectedQueryInputParametersFilterSensitiveLog: (
1386
+ obj: ProtectedQueryInputParameters
1387
+ ) => any;
1388
+ export declare const InputChannelDataSourceFilterSensitiveLog: (
1389
+ obj: InputChannelDataSource
1390
+ ) => any;
1391
+ export declare const InputChannelFilterSensitiveLog: (obj: InputChannel) => any;
1392
+ export declare const CreateMLInputChannelRequestFilterSensitiveLog: (
1393
+ obj: CreateMLInputChannelRequest
1394
+ ) => any;
1395
+ export declare const GetMLInputChannelResponseFilterSensitiveLog: (
1396
+ obj: GetMLInputChannelResponse
1397
+ ) => any;