@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
@@ -170,7 +170,7 @@ export interface AudienceExportJobSummary {
170
170
  */
171
171
  export interface ListAudienceExportJobsResponse {
172
172
  /**
173
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
173
+ * <p>The token value used to access the next page of results.</p>
174
174
  * @public
175
175
  */
176
176
  nextToken?: string;
@@ -536,7 +536,7 @@ export interface AudienceGenerationJobSummary {
536
536
  */
537
537
  export interface ListAudienceGenerationJobsResponse {
538
538
  /**
539
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
539
+ * <p>The token value used to access the next page of results.</p>
540
540
  * @public
541
541
  */
542
542
  nextToken?: string;
@@ -857,7 +857,7 @@ export interface AudienceModelSummary {
857
857
  */
858
858
  export interface ListAudienceModelsResponse {
859
859
  /**
860
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
860
+ * <p>The token value used to access the next page of results.</p>
861
861
  * @public
862
862
  */
863
863
  nextToken?: string;
@@ -1182,7 +1182,7 @@ export interface ConfiguredAudienceModelSummary {
1182
1182
  */
1183
1183
  export interface ListConfiguredAudienceModelsResponse {
1184
1184
  /**
1185
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
1185
+ * <p>The token value used to access the next page of results.</p>
1186
1186
  * @public
1187
1187
  */
1188
1188
  nextToken?: string;
@@ -1335,195 +1335,87 @@ export interface PutConfiguredAudienceModelPolicyResponse {
1335
1335
  policyHash: string | undefined;
1336
1336
  }
1337
1337
  /**
1338
+ * <p>Provides configuration information for the inference container.</p>
1338
1339
  * @public
1339
1340
  */
1340
- export interface ListTagsForResourceRequest {
1341
- /**
1342
- * <p>The Amazon Resource Name (ARN) of the resource that you are interested in.</p>
1343
- * @public
1344
- */
1345
- resourceArn: string | undefined;
1346
- }
1347
- /**
1348
- * @public
1349
- */
1350
- export interface ListTagsForResourceResponse {
1351
- /**
1352
- * <p>The tags that are associated with the resource.</p>
1353
- * @public
1354
- */
1355
- tags: Record<string, string> | undefined;
1356
- }
1357
- /**
1358
- * @public
1359
- */
1360
- export interface TagResourceRequest {
1361
- /**
1362
- * <p>The Amazon Resource Name (ARN) of the resource that you want to assign tags.</p>
1363
- * @public
1364
- */
1365
- resourceArn: string | undefined;
1341
+ export interface InferenceContainerConfig {
1366
1342
  /**
1367
- * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1368
- * <p>The following basic restrictions apply to tags:</p>
1369
- * <ul>
1370
- * <li>
1371
- * <p>Maximum number of tags per resource - 50.</p>
1372
- * </li>
1373
- * <li>
1374
- * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
1375
- * </li>
1376
- * <li>
1377
- * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
1378
- * </li>
1379
- * <li>
1380
- * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
1381
- * </li>
1382
- * <li>
1383
- * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
1384
- * </li>
1385
- * <li>
1386
- * <p>Tag keys and values are case sensitive.</p>
1387
- * </li>
1388
- * <li>
1389
- * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
1390
- * </li>
1391
- * </ul>
1343
+ * <p>The registry path of the docker image that contains the inference algorithm. Clean Rooms ML supports both <code>registry/repository[:tag]</code> and <code>registry/repositry[@digest]</code> image path formats. For more information about using images in Clean Rooms ML, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AlgorithmSpecification.html#sagemaker-Type-AlgorithmSpecification-TrainingImage">Sagemaker API reference</a>.</p>
1392
1344
  * @public
1393
1345
  */
1394
- tags: Record<string, string> | undefined;
1346
+ imageUri: string | undefined;
1395
1347
  }
1396
1348
  /**
1349
+ * <p>Information about the model metric that is reported for a trained model.</p>
1397
1350
  * @public
1398
1351
  */
1399
- export interface TagResourceResponse {
1400
- }
1401
- /**
1402
- * <p>Defines the Glue data source that contains the training data.</p>
1403
- * @public
1404
- */
1405
- export interface GlueDataSource {
1406
- /**
1407
- * <p>The Glue table that contains the training data.</p>
1408
- * @public
1409
- */
1410
- tableName: string | undefined;
1411
- /**
1412
- * <p>The Glue database that contains the training data.</p>
1413
- * @public
1414
- */
1415
- databaseName: string | undefined;
1352
+ export interface MetricDefinition {
1416
1353
  /**
1417
- * <p>The Glue catalog that contains the training data.</p>
1354
+ * <p>The name of the model metric.</p>
1418
1355
  * @public
1419
1356
  */
1420
- catalogId?: string;
1421
- }
1422
- /**
1423
- * <p>Defines information about the Glue data source that contains the training data.</p>
1424
- * @public
1425
- */
1426
- export interface DataSource {
1357
+ name: string | undefined;
1427
1358
  /**
1428
- * <p>A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.</p>
1359
+ * <p>The regular expression statement that defines how the model metric is reported.</p>
1429
1360
  * @public
1430
1361
  */
1431
- glueDataSource: GlueDataSource | undefined;
1362
+ regex: string | undefined;
1432
1363
  }
1433
1364
  /**
1434
- * @public
1435
- * @enum
1436
- */
1437
- export declare const ColumnType: {
1438
- readonly CATEGORICAL_FEATURE: "CATEGORICAL_FEATURE";
1439
- readonly ITEM_ID: "ITEM_ID";
1440
- readonly NUMERICAL_FEATURE: "NUMERICAL_FEATURE";
1441
- readonly TIMESTAMP: "TIMESTAMP";
1442
- readonly USER_ID: "USER_ID";
1443
- };
1444
- /**
1445
- * @public
1446
- */
1447
- export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
1448
- /**
1449
- * <p>Metadata for a column.</p>
1365
+ * <p>Provides configuration information for the dockerized container where the model algorithm is stored.</p>
1450
1366
  * @public
1451
1367
  */
1452
- export interface ColumnSchema {
1368
+ export interface ContainerConfig {
1453
1369
  /**
1454
- * <p>The name of a column.</p>
1370
+ * <p>The registry path of the docker image that contains the algorithm. Clean Rooms ML supports both <code>registry/repository[:tag]</code> and <code>registry/repositry[@digest]</code> image path formats. For more information about using images in Clean Rooms ML, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AlgorithmSpecification.html#sagemaker-Type-AlgorithmSpecification-TrainingImage">Sagemaker API reference</a>.</p>
1455
1371
  * @public
1456
1372
  */
1457
- columnName: string | undefined;
1373
+ imageUri: string | undefined;
1458
1374
  /**
1459
- * <p>The data type of column.</p>
1375
+ * <p>The entrypoint script for a Docker container used to run a training job. This script takes precedence over the default train processing instructions. See How Amazon SageMaker Runs Your Training Image for additional information. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo-dockerfile.html">How Sagemaker runs your training image</a>.</p>
1460
1376
  * @public
1461
1377
  */
1462
- columnTypes: ColumnType[] | undefined;
1463
- }
1464
- /**
1465
- * <p>Defines the Glue data source and schema mapping information.</p>
1466
- * @public
1467
- */
1468
- export interface DatasetInputConfig {
1378
+ entrypoint?: string[];
1469
1379
  /**
1470
- * <p>The schema information for the training data.</p>
1380
+ * <p>The arguments for a container used to run a training job. See How Amazon SageMaker Runs Your Training Image for additional information. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo-dockerfile.html">How Sagemaker runs your training image</a>.</p>
1471
1381
  * @public
1472
1382
  */
1473
- schema: ColumnSchema[] | undefined;
1383
+ arguments?: string[];
1474
1384
  /**
1475
- * <p>A DataSource object that specifies the Glue data source for the training data.</p>
1385
+ * <p>A list of metric definition objects. Each object specifies the metric name and regular expressions used to parse algorithm logs. Amazon Web Services Clean Rooms ML publishes each metric to all members' Amazon CloudWatch using IAM role configured in <a>PutMLConfiguration</a>.</p>
1476
1386
  * @public
1477
1387
  */
1478
- dataSource: DataSource | undefined;
1388
+ metricDefinitions?: MetricDefinition[];
1479
1389
  }
1480
1390
  /**
1481
- * @public
1482
- * @enum
1483
- */
1484
- export declare const DatasetType: {
1485
- readonly INTERACTIONS: "INTERACTIONS";
1486
- };
1487
- /**
1488
- * @public
1489
- */
1490
- export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
1491
- /**
1492
- * <p>Defines where the training dataset is located, what type of data it contains, and how to access the data.</p>
1493
1391
  * @public
1494
1392
  */
1495
- export interface Dataset {
1393
+ export interface CreateConfiguredModelAlgorithmRequest {
1496
1394
  /**
1497
- * <p>What type of information is found in the dataset.</p>
1395
+ * <p>The name of the configured model algorithm.</p>
1498
1396
  * @public
1499
1397
  */
1500
- type: DatasetType | undefined;
1398
+ name: string | undefined;
1501
1399
  /**
1502
- * <p>A DatasetInputConfig object that defines the data source and schema mapping.</p>
1400
+ * <p>The description of the configured model algorithm.</p>
1503
1401
  * @public
1504
1402
  */
1505
- inputConfig: DatasetInputConfig | undefined;
1506
- }
1507
- /**
1508
- * @public
1509
- */
1510
- export interface CreateTrainingDatasetRequest {
1403
+ description?: string;
1511
1404
  /**
1512
- * <p>The name of the training dataset. This name must be unique in your account and region.</p>
1405
+ * <p>The Amazon Resource Name (ARN) of the role that is used to access the repository.</p>
1513
1406
  * @public
1514
1407
  */
1515
- name: string | undefined;
1408
+ roleArn: string | undefined;
1516
1409
  /**
1517
- * <p>The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the <code>dataSource</code> field of each dataset.</p>
1518
- * <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
1410
+ * <p>Configuration information for the training container, including entrypoints and arguments.</p>
1519
1411
  * @public
1520
1412
  */
1521
- roleArn: string | undefined;
1413
+ trainingContainerConfig?: ContainerConfig;
1522
1414
  /**
1523
- * <p>An array of information that lists the Dataset objects, which specifies the dataset type and details on its location and schema. You must provide a role that has read access to these tables.</p>
1415
+ * <p>Configuration information for the inference container that is used when you run an inference job on a configured model algorithm.</p>
1524
1416
  * @public
1525
1417
  */
1526
- trainingData: Dataset[] | undefined;
1418
+ inferenceContainerConfig?: InferenceContainerConfig;
1527
1419
  /**
1528
1420
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1529
1421
  * <p>The following basic restrictions apply to tags:</p>
@@ -1554,106 +1446,124 @@ export interface CreateTrainingDatasetRequest {
1554
1446
  */
1555
1447
  tags?: Record<string, string>;
1556
1448
  /**
1557
- * <p>The description of the training dataset.</p>
1449
+ * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the configured ML model algorithm and associated data.</p>
1558
1450
  * @public
1559
1451
  */
1560
- description?: string;
1452
+ kmsKeyArn?: string;
1561
1453
  }
1562
1454
  /**
1563
1455
  * @public
1564
1456
  */
1565
- export interface CreateTrainingDatasetResponse {
1457
+ export interface CreateConfiguredModelAlgorithmResponse {
1566
1458
  /**
1567
- * <p>The Amazon Resource Name (ARN) of the training dataset resource.</p>
1459
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm.</p>
1568
1460
  * @public
1569
1461
  */
1570
- trainingDatasetArn: string | undefined;
1462
+ configuredModelAlgorithmArn: string | undefined;
1571
1463
  }
1572
1464
  /**
1573
1465
  * @public
1574
1466
  */
1575
- export interface DeleteTrainingDatasetRequest {
1467
+ export interface DeleteConfiguredModelAlgorithmRequest {
1576
1468
  /**
1577
- * <p>The Amazon Resource Name (ARN) of the training dataset that you want to delete.</p>
1469
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm that you want to delete.</p>
1578
1470
  * @public
1579
1471
  */
1580
- trainingDatasetArn: string | undefined;
1472
+ configuredModelAlgorithmArn: string | undefined;
1581
1473
  }
1582
1474
  /**
1583
1475
  * @public
1584
1476
  */
1585
- export interface GetTrainingDatasetRequest {
1477
+ export interface GetConfiguredModelAlgorithmRequest {
1586
1478
  /**
1587
- * <p>The Amazon Resource Name (ARN) of the training dataset that you are interested in.</p>
1479
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm that you want to return information about.</p>
1588
1480
  * @public
1589
1481
  */
1590
- trainingDatasetArn: string | undefined;
1482
+ configuredModelAlgorithmArn: string | undefined;
1591
1483
  }
1592
- /**
1593
- * @public
1594
- * @enum
1595
- */
1596
- export declare const TrainingDatasetStatus: {
1597
- readonly ACTIVE: "ACTIVE";
1598
- };
1599
- /**
1600
- * @public
1601
- */
1602
- export type TrainingDatasetStatus = (typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];
1603
1484
  /**
1604
1485
  * @public
1605
1486
  */
1606
- export interface GetTrainingDatasetResponse {
1487
+ export interface GetConfiguredModelAlgorithmResponse {
1607
1488
  /**
1608
- * <p>The time at which the training dataset was created.</p>
1489
+ * <p>The time at which the configured model algorithm was created.</p>
1609
1490
  * @public
1610
1491
  */
1611
1492
  createTime: Date | undefined;
1612
1493
  /**
1613
- * <p>The most recent time at which the training dataset was updated.</p>
1494
+ * <p>The most recent time at which the configured model algorithm was updated.</p>
1614
1495
  * @public
1615
1496
  */
1616
1497
  updateTime: Date | undefined;
1617
1498
  /**
1618
- * <p>The Amazon Resource Name (ARN) of the training dataset.</p>
1499
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm.</p>
1619
1500
  * @public
1620
1501
  */
1621
- trainingDatasetArn: string | undefined;
1502
+ configuredModelAlgorithmArn: string | undefined;
1622
1503
  /**
1623
- * <p>The name of the training dataset.</p>
1504
+ * <p>The name of the configured model algorithm.</p>
1624
1505
  * @public
1625
1506
  */
1626
1507
  name: string | undefined;
1627
1508
  /**
1628
- * <p>Metadata about the requested training data. </p>
1509
+ * <p>The configuration information of the training container for the configured model algorithm.</p>
1629
1510
  * @public
1630
1511
  */
1631
- trainingData: Dataset[] | undefined;
1512
+ trainingContainerConfig?: ContainerConfig;
1632
1513
  /**
1633
- * <p>The status of the training dataset.</p>
1514
+ * <p>Configuration information for the inference container.</p>
1634
1515
  * @public
1635
1516
  */
1636
- status: TrainingDatasetStatus | undefined;
1517
+ inferenceContainerConfig?: InferenceContainerConfig;
1637
1518
  /**
1638
- * <p>The IAM role used to read the training data.</p>
1519
+ * <p>The Amazon Resource Name (ARN) of the service role that was used to create the configured model algorithm.</p>
1639
1520
  * @public
1640
1521
  */
1641
1522
  roleArn: string | undefined;
1642
1523
  /**
1643
- * <p>The tags that are assigned to this training dataset.</p>
1524
+ * <p>The description of the configured model algorithm.</p>
1525
+ * @public
1526
+ */
1527
+ description?: string;
1528
+ /**
1529
+ * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1530
+ * <p>The following basic restrictions apply to tags:</p>
1531
+ * <ul>
1532
+ * <li>
1533
+ * <p>Maximum number of tags per resource - 50.</p>
1534
+ * </li>
1535
+ * <li>
1536
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
1537
+ * </li>
1538
+ * <li>
1539
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
1540
+ * </li>
1541
+ * <li>
1542
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
1543
+ * </li>
1544
+ * <li>
1545
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
1546
+ * </li>
1547
+ * <li>
1548
+ * <p>Tag keys and values are case sensitive.</p>
1549
+ * </li>
1550
+ * <li>
1551
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
1552
+ * </li>
1553
+ * </ul>
1644
1554
  * @public
1645
1555
  */
1646
1556
  tags?: Record<string, string>;
1647
1557
  /**
1648
- * <p>The description of the training dataset.</p>
1558
+ * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the configured ML model and associated data.</p>
1649
1559
  * @public
1650
1560
  */
1651
- description?: string;
1561
+ kmsKeyArn?: string;
1652
1562
  }
1653
1563
  /**
1654
1564
  * @public
1655
1565
  */
1656
- export interface ListTrainingDatasetsRequest {
1566
+ export interface ListConfiguredModelAlgorithmsRequest {
1657
1567
  /**
1658
1568
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
1659
1569
  * @public
@@ -1666,37 +1576,32 @@ export interface ListTrainingDatasetsRequest {
1666
1576
  maxResults?: number;
1667
1577
  }
1668
1578
  /**
1669
- * <p>Provides information about the training dataset.</p>
1579
+ * <p>Provides summary information about a configured model algorithm.</p>
1670
1580
  * @public
1671
1581
  */
1672
- export interface TrainingDatasetSummary {
1582
+ export interface ConfiguredModelAlgorithmSummary {
1673
1583
  /**
1674
- * <p>The time at which the training dataset was created.</p>
1584
+ * <p>The time at which the configured model algorithm was created.</p>
1675
1585
  * @public
1676
1586
  */
1677
1587
  createTime: Date | undefined;
1678
1588
  /**
1679
- * <p>The most recent time at which the training dataset was updated.</p>
1589
+ * <p>The most recent time at which the configured model algorithm was updated.</p>
1680
1590
  * @public
1681
1591
  */
1682
1592
  updateTime: Date | undefined;
1683
1593
  /**
1684
- * <p>The Amazon Resource Name (ARN) of the training dataset.</p>
1594
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm.</p>
1685
1595
  * @public
1686
1596
  */
1687
- trainingDatasetArn: string | undefined;
1597
+ configuredModelAlgorithmArn: string | undefined;
1688
1598
  /**
1689
- * <p>The name of the training dataset.</p>
1599
+ * <p>The name of the configured model algorithm.</p>
1690
1600
  * @public
1691
1601
  */
1692
1602
  name: string | undefined;
1693
1603
  /**
1694
- * <p>The status of the training dataset.</p>
1695
- * @public
1696
- */
1697
- status: TrainingDatasetStatus | undefined;
1698
- /**
1699
- * <p>The description of the training dataset.</p>
1604
+ * <p>The description of the configured model algorithm.</p>
1700
1605
  * @public
1701
1606
  */
1702
1607
  description?: string;
@@ -1704,39 +1609,3370 @@ export interface TrainingDatasetSummary {
1704
1609
  /**
1705
1610
  * @public
1706
1611
  */
1707
- export interface ListTrainingDatasetsResponse {
1612
+ export interface ListConfiguredModelAlgorithmsResponse {
1708
1613
  /**
1709
- * <p>The token value retrieved from a previous call to access the next page of results.</p>
1614
+ * <p>The token value used to access the next page of results.</p>
1710
1615
  * @public
1711
1616
  */
1712
1617
  nextToken?: string;
1713
1618
  /**
1714
- * <p>The training datasets that match the request.</p>
1619
+ * <p>The list of configured model algorithms.</p>
1715
1620
  * @public
1716
1621
  */
1717
- trainingDatasets: TrainingDatasetSummary[] | undefined;
1622
+ configuredModelAlgorithms: ConfiguredModelAlgorithmSummary[] | undefined;
1718
1623
  }
1624
+ /**
1625
+ * @public
1626
+ * @enum
1627
+ */
1628
+ export declare const TrainedModelExportFileType: {
1629
+ readonly MODEL: "MODEL";
1630
+ readonly OUTPUT: "OUTPUT";
1631
+ };
1719
1632
  /**
1720
1633
  * @public
1721
1634
  */
1722
- export interface UntagResourceRequest {
1635
+ export type TrainedModelExportFileType = (typeof TrainedModelExportFileType)[keyof typeof TrainedModelExportFileType];
1636
+ /**
1637
+ * @public
1638
+ * @enum
1639
+ */
1640
+ export declare const TrainedModelExportsMaxSizeUnitType: {
1641
+ readonly GB: "GB";
1642
+ };
1643
+ /**
1644
+ * @public
1645
+ */
1646
+ export type TrainedModelExportsMaxSizeUnitType = (typeof TrainedModelExportsMaxSizeUnitType)[keyof typeof TrainedModelExportsMaxSizeUnitType];
1647
+ /**
1648
+ * <p>The maximum size of the trained model metrics that can be exported. If the trained model metrics dataset is larger than this value, it will not be exported.</p>
1649
+ * @public
1650
+ */
1651
+ export interface TrainedModelExportsMaxSize {
1723
1652
  /**
1724
- * <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.</p>
1653
+ * <p>The unit of measurement for the data size.</p>
1725
1654
  * @public
1726
1655
  */
1727
- resourceArn: string | undefined;
1656
+ unit: TrainedModelExportsMaxSizeUnitType | undefined;
1728
1657
  /**
1729
- * <p>The key values of tags that you want to remove.</p>
1658
+ * <p>The maximum size of the dataset to export.</p>
1730
1659
  * @public
1731
1660
  */
1732
- tagKeys: string[] | undefined;
1661
+ value: number | undefined;
1733
1662
  }
1734
1663
  /**
1664
+ * <p>Information about how the trained model exports are configured.</p>
1735
1665
  * @public
1736
1666
  */
1737
- export interface UntagResourceResponse {
1738
- }
1739
- /**
1667
+ export interface TrainedModelExportsConfigurationPolicy {
1668
+ /**
1669
+ * <p>The maximum size of the data that can be exported.</p>
1670
+ * @public
1671
+ */
1672
+ maxSize: TrainedModelExportsMaxSize | undefined;
1673
+ /**
1674
+ * <p>The files that are exported during the trained model export job.</p>
1675
+ * @public
1676
+ */
1677
+ filesToExport: TrainedModelExportFileType[] | undefined;
1678
+ }
1679
+ /**
1680
+ * <p>Provides the information necessary for a user to access the logs.</p>
1681
+ * @public
1682
+ */
1683
+ export interface LogsConfigurationPolicy {
1684
+ /**
1685
+ * <p>A list of account IDs that are allowed to access the logs.</p>
1686
+ * @public
1687
+ */
1688
+ allowedAccountIds: string[] | undefined;
1689
+ /**
1690
+ * <p>A regular expression pattern that is used to parse the logs and return information that matches the pattern.</p>
1691
+ * @public
1692
+ */
1693
+ filterPattern?: string;
1694
+ }
1695
+ /**
1696
+ * @public
1697
+ * @enum
1698
+ */
1699
+ export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
1700
+ readonly GB: "GB";
1701
+ };
1702
+ /**
1703
+ * @public
1704
+ */
1705
+ export type TrainedModelInferenceMaxOutputSizeUnitType = (typeof TrainedModelInferenceMaxOutputSizeUnitType)[keyof typeof TrainedModelInferenceMaxOutputSizeUnitType];
1706
+ /**
1707
+ * <p>Information about the maximum output size for a trained model inference job.</p>
1708
+ * @public
1709
+ */
1710
+ export interface TrainedModelInferenceMaxOutputSize {
1711
+ /**
1712
+ * <p>The measurement unit to use.</p>
1713
+ * @public
1714
+ */
1715
+ unit: TrainedModelInferenceMaxOutputSizeUnitType | undefined;
1716
+ /**
1717
+ * <p>The maximum output size value.</p>
1718
+ * @public
1719
+ */
1720
+ value: number | undefined;
1721
+ }
1722
+ /**
1723
+ * <p>Provides configuration information for the trained model inference job.</p>
1724
+ * @public
1725
+ */
1726
+ export interface TrainedModelInferenceJobsConfigurationPolicy {
1727
+ /**
1728
+ * <p>The logs container for the trained model inference job.</p>
1729
+ * @public
1730
+ */
1731
+ containerLogs?: LogsConfigurationPolicy[];
1732
+ /**
1733
+ * <p>The maximum allowed size of the output of the trained model inference job.</p>
1734
+ * @public
1735
+ */
1736
+ maxOutputSize?: TrainedModelInferenceMaxOutputSize;
1737
+ }
1738
+ /**
1739
+ * @public
1740
+ * @enum
1741
+ */
1742
+ export declare const NoiseLevelType: {
1743
+ readonly HIGH: "HIGH";
1744
+ readonly LOW: "LOW";
1745
+ readonly MEDIUM: "MEDIUM";
1746
+ readonly NONE: "NONE";
1747
+ };
1748
+ /**
1749
+ * @public
1750
+ */
1751
+ export type NoiseLevelType = (typeof NoiseLevelType)[keyof typeof NoiseLevelType];
1752
+ /**
1753
+ * <p>Provides the configuration policy for metrics generation.</p>
1754
+ * @public
1755
+ */
1756
+ export interface MetricsConfigurationPolicy {
1757
+ /**
1758
+ * <p>The noise level for the generated metrics.</p>
1759
+ * @public
1760
+ */
1761
+ noiseLevel: NoiseLevelType | undefined;
1762
+ }
1763
+ /**
1764
+ * <p>The configuration policy for the trained models.</p>
1765
+ * @public
1766
+ */
1767
+ export interface TrainedModelsConfigurationPolicy {
1768
+ /**
1769
+ * <p>The container for the logs of the trained model.</p>
1770
+ * @public
1771
+ */
1772
+ containerLogs?: LogsConfigurationPolicy[];
1773
+ /**
1774
+ * <p>The container for the metrics of the trained model.</p>
1775
+ * @public
1776
+ */
1777
+ containerMetrics?: MetricsConfigurationPolicy;
1778
+ }
1779
+ /**
1780
+ * <p>Information about the privacy configuration policies for a configured model algorithm association.</p>
1781
+ * @public
1782
+ */
1783
+ export interface PrivacyConfigurationPolicies {
1784
+ /**
1785
+ * <p>Specifies who will receive the trained models.</p>
1786
+ * @public
1787
+ */
1788
+ trainedModels?: TrainedModelsConfigurationPolicy;
1789
+ /**
1790
+ * <p>Specifies who will receive the trained model export.</p>
1791
+ * @public
1792
+ */
1793
+ trainedModelExports?: TrainedModelExportsConfigurationPolicy;
1794
+ /**
1795
+ * <p>Specifies who will receive the trained model inference jobs.</p>
1796
+ * @public
1797
+ */
1798
+ trainedModelInferenceJobs?: TrainedModelInferenceJobsConfigurationPolicy;
1799
+ }
1800
+ /**
1801
+ * <p>Information about the privacy configuration for a configured model algorithm association.</p>
1802
+ * @public
1803
+ */
1804
+ export interface PrivacyConfiguration {
1805
+ /**
1806
+ * <p>The privacy configuration policies for a configured model algorithm association.</p>
1807
+ * @public
1808
+ */
1809
+ policies: PrivacyConfigurationPolicies | undefined;
1810
+ }
1811
+ /**
1812
+ * @public
1813
+ */
1814
+ export interface CreateConfiguredModelAlgorithmAssociationRequest {
1815
+ /**
1816
+ * <p>The membership ID of the member who is associating this configured model algorithm.</p>
1817
+ * @public
1818
+ */
1819
+ membershipIdentifier: string | undefined;
1820
+ /**
1821
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm that you want to associate.</p>
1822
+ * @public
1823
+ */
1824
+ configuredModelAlgorithmArn: string | undefined;
1825
+ /**
1826
+ * <p>The name of the configured model algorithm association.</p>
1827
+ * @public
1828
+ */
1829
+ name: string | undefined;
1830
+ /**
1831
+ * <p>The description of the configured model algorithm association.</p>
1832
+ * @public
1833
+ */
1834
+ description?: string;
1835
+ /**
1836
+ * <p>Specifies the privacy configuration information for the configured model algorithm association. This information includes the maximum data size that can be exported.</p>
1837
+ * @public
1838
+ */
1839
+ privacyConfiguration?: PrivacyConfiguration;
1840
+ /**
1841
+ * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1842
+ * <p>The following basic restrictions apply to tags:</p>
1843
+ * <ul>
1844
+ * <li>
1845
+ * <p>Maximum number of tags per resource - 50.</p>
1846
+ * </li>
1847
+ * <li>
1848
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
1849
+ * </li>
1850
+ * <li>
1851
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
1852
+ * </li>
1853
+ * <li>
1854
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
1855
+ * </li>
1856
+ * <li>
1857
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
1858
+ * </li>
1859
+ * <li>
1860
+ * <p>Tag keys and values are case sensitive.</p>
1861
+ * </li>
1862
+ * <li>
1863
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
1864
+ * </li>
1865
+ * </ul>
1866
+ * @public
1867
+ */
1868
+ tags?: Record<string, string>;
1869
+ }
1870
+ /**
1871
+ * @public
1872
+ */
1873
+ export interface CreateConfiguredModelAlgorithmAssociationResponse {
1874
+ /**
1875
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association.</p>
1876
+ * @public
1877
+ */
1878
+ configuredModelAlgorithmAssociationArn: string | undefined;
1879
+ }
1880
+ /**
1881
+ * @public
1882
+ */
1883
+ export interface DeleteConfiguredModelAlgorithmAssociationRequest {
1884
+ /**
1885
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that you want to delete.</p>
1886
+ * @public
1887
+ */
1888
+ configuredModelAlgorithmAssociationArn: string | undefined;
1889
+ /**
1890
+ * <p>The membership ID of the member that is deleting the configured model algorithm association.</p>
1891
+ * @public
1892
+ */
1893
+ membershipIdentifier: string | undefined;
1894
+ }
1895
+ /**
1896
+ * @public
1897
+ */
1898
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationRequest {
1899
+ /**
1900
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that you want to return information about.</p>
1901
+ * @public
1902
+ */
1903
+ configuredModelAlgorithmAssociationArn: string | undefined;
1904
+ /**
1905
+ * <p>The collaboration ID for the collaboration that contains the configured model algorithm association that you want to return information about.</p>
1906
+ * @public
1907
+ */
1908
+ collaborationIdentifier: string | undefined;
1909
+ }
1910
+ /**
1911
+ * @public
1912
+ */
1913
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationResponse {
1914
+ /**
1915
+ * <p>The time at which the configured model algorithm association was created.</p>
1916
+ * @public
1917
+ */
1918
+ createTime: Date | undefined;
1919
+ /**
1920
+ * <p>The most recent time at which the configured model algorithm association was updated.</p>
1921
+ * @public
1922
+ */
1923
+ updateTime: Date | undefined;
1924
+ /**
1925
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association.</p>
1926
+ * @public
1927
+ */
1928
+ configuredModelAlgorithmAssociationArn: string | undefined;
1929
+ /**
1930
+ * <p>The membership ID of the member that created the configured model algorithm association.</p>
1931
+ * @public
1932
+ */
1933
+ membershipIdentifier: string | undefined;
1934
+ /**
1935
+ * <p>The collaboration ID of the collaboration that contains the configured model algorithm association.</p>
1936
+ * @public
1937
+ */
1938
+ collaborationIdentifier: string | undefined;
1939
+ /**
1940
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association.</p>
1941
+ * @public
1942
+ */
1943
+ configuredModelAlgorithmArn: string | undefined;
1944
+ /**
1945
+ * <p>The name of the configured model algorithm association.</p>
1946
+ * @public
1947
+ */
1948
+ name: string | undefined;
1949
+ /**
1950
+ * <p>The description of the configured model algorithm association.</p>
1951
+ * @public
1952
+ */
1953
+ description?: string;
1954
+ /**
1955
+ * <p>The account ID of the member that created the configured model algorithm association.</p>
1956
+ * @public
1957
+ */
1958
+ creatorAccountId: string | undefined;
1959
+ /**
1960
+ * <p>Information about the privacy configuration for a configured model algorithm association.</p>
1961
+ * @public
1962
+ */
1963
+ privacyConfiguration?: PrivacyConfiguration;
1964
+ }
1965
+ /**
1966
+ * @public
1967
+ */
1968
+ export interface GetConfiguredModelAlgorithmAssociationRequest {
1969
+ /**
1970
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that you want to return information about.</p>
1971
+ * @public
1972
+ */
1973
+ configuredModelAlgorithmAssociationArn: string | undefined;
1974
+ /**
1975
+ * <p>The membership ID of the member that created the configured model algorithm association.</p>
1976
+ * @public
1977
+ */
1978
+ membershipIdentifier: string | undefined;
1979
+ }
1980
+ /**
1981
+ * @public
1982
+ */
1983
+ export interface GetConfiguredModelAlgorithmAssociationResponse {
1984
+ /**
1985
+ * <p>The time at which the configured model algorithm association was created.</p>
1986
+ * @public
1987
+ */
1988
+ createTime: Date | undefined;
1989
+ /**
1990
+ * <p>The most recent time at which the configured model algorithm association was updated.</p>
1991
+ * @public
1992
+ */
1993
+ updateTime: Date | undefined;
1994
+ /**
1995
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association.</p>
1996
+ * @public
1997
+ */
1998
+ configuredModelAlgorithmAssociationArn: string | undefined;
1999
+ /**
2000
+ * <p>The membership ID of the member that created the configured model algorithm association.</p>
2001
+ * @public
2002
+ */
2003
+ membershipIdentifier: string | undefined;
2004
+ /**
2005
+ * <p>The collaboration ID of the collaboration that contains the configured model algorithm association.</p>
2006
+ * @public
2007
+ */
2008
+ collaborationIdentifier: string | undefined;
2009
+ /**
2010
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm that was associated to the collaboration.</p>
2011
+ * @public
2012
+ */
2013
+ configuredModelAlgorithmArn: string | undefined;
2014
+ /**
2015
+ * <p>The name of the configured model algorithm association.</p>
2016
+ * @public
2017
+ */
2018
+ name: string | undefined;
2019
+ /**
2020
+ * <p>The privacy configuration information for the configured model algorithm association.</p>
2021
+ * @public
2022
+ */
2023
+ privacyConfiguration?: PrivacyConfiguration;
2024
+ /**
2025
+ * <p>The description of the configured model algorithm association.</p>
2026
+ * @public
2027
+ */
2028
+ description?: string;
2029
+ /**
2030
+ * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
2031
+ * <p>The following basic restrictions apply to tags:</p>
2032
+ * <ul>
2033
+ * <li>
2034
+ * <p>Maximum number of tags per resource - 50.</p>
2035
+ * </li>
2036
+ * <li>
2037
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
2038
+ * </li>
2039
+ * <li>
2040
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
2041
+ * </li>
2042
+ * <li>
2043
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
2044
+ * </li>
2045
+ * <li>
2046
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
2047
+ * </li>
2048
+ * <li>
2049
+ * <p>Tag keys and values are case sensitive.</p>
2050
+ * </li>
2051
+ * <li>
2052
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
2053
+ * </li>
2054
+ * </ul>
2055
+ * @public
2056
+ */
2057
+ tags?: Record<string, string>;
2058
+ }
2059
+ /**
2060
+ * @public
2061
+ */
2062
+ export interface ListConfiguredModelAlgorithmAssociationsRequest {
2063
+ /**
2064
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
2065
+ * @public
2066
+ */
2067
+ nextToken?: string;
2068
+ /**
2069
+ * <p>The maximum size of the results that is returned per call.</p>
2070
+ * @public
2071
+ */
2072
+ maxResults?: number;
2073
+ /**
2074
+ * <p>The membership ID of the member that created the configured model algorithm associations you are interested in.</p>
2075
+ * @public
2076
+ */
2077
+ membershipIdentifier: string | undefined;
2078
+ }
2079
+ /**
2080
+ * <p>Provides summary information about the configured model algorithm association.</p>
2081
+ * @public
2082
+ */
2083
+ export interface ConfiguredModelAlgorithmAssociationSummary {
2084
+ /**
2085
+ * <p>The time at which the configured model algorithm association was created.</p>
2086
+ * @public
2087
+ */
2088
+ createTime: Date | undefined;
2089
+ /**
2090
+ * <p>The most recent time at which the configured model algorithm association was updated.</p>
2091
+ * @public
2092
+ */
2093
+ updateTime: Date | undefined;
2094
+ /**
2095
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association.</p>
2096
+ * @public
2097
+ */
2098
+ configuredModelAlgorithmAssociationArn: string | undefined;
2099
+ /**
2100
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm that is being associated.</p>
2101
+ * @public
2102
+ */
2103
+ configuredModelAlgorithmArn: string | undefined;
2104
+ /**
2105
+ * <p>The name of the configured model algorithm association.</p>
2106
+ * @public
2107
+ */
2108
+ name: string | undefined;
2109
+ /**
2110
+ * <p>The description of the configured model algorithm association.</p>
2111
+ * @public
2112
+ */
2113
+ description?: string;
2114
+ /**
2115
+ * <p>The membership ID of the member that created the configured model algorithm association.</p>
2116
+ * @public
2117
+ */
2118
+ membershipIdentifier: string | undefined;
2119
+ /**
2120
+ * <p>The collaboration ID of the collaboration that contains the configured model algorithm association.</p>
2121
+ * @public
2122
+ */
2123
+ collaborationIdentifier: string | undefined;
2124
+ }
2125
+ /**
2126
+ * @public
2127
+ */
2128
+ export interface ListConfiguredModelAlgorithmAssociationsResponse {
2129
+ /**
2130
+ * <p>The token value used to access the next page of results.</p>
2131
+ * @public
2132
+ */
2133
+ nextToken?: string;
2134
+ /**
2135
+ * <p>The list of configured model algorithm associations.</p>
2136
+ * @public
2137
+ */
2138
+ configuredModelAlgorithmAssociations: ConfiguredModelAlgorithmAssociationSummary[] | undefined;
2139
+ }
2140
+ /**
2141
+ * @public
2142
+ */
2143
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsRequest {
2144
+ /**
2145
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
2146
+ * @public
2147
+ */
2148
+ nextToken?: string;
2149
+ /**
2150
+ * <p>The maximum size of the results that is returned per call.</p>
2151
+ * @public
2152
+ */
2153
+ maxResults?: number;
2154
+ /**
2155
+ * <p>The collaboration ID of the collaboration that contains the configured model algorithm associations that you are interested in.</p>
2156
+ * @public
2157
+ */
2158
+ collaborationIdentifier: string | undefined;
2159
+ }
2160
+ /**
2161
+ * <p>Provides summary information about a configured model algorithm in a collaboration.</p>
2162
+ * @public
2163
+ */
2164
+ export interface CollaborationConfiguredModelAlgorithmAssociationSummary {
2165
+ /**
2166
+ * <p>The time at which the configured model algorithm association was created.</p>
2167
+ * @public
2168
+ */
2169
+ createTime: Date | undefined;
2170
+ /**
2171
+ * <p>The most recent time at which the configured model algorithm association was updated.</p>
2172
+ * @public
2173
+ */
2174
+ updateTime: Date | undefined;
2175
+ /**
2176
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association.</p>
2177
+ * @public
2178
+ */
2179
+ configuredModelAlgorithmAssociationArn: string | undefined;
2180
+ /**
2181
+ * <p>The name of the configured model algorithm association.</p>
2182
+ * @public
2183
+ */
2184
+ name: string | undefined;
2185
+ /**
2186
+ * <p>The description of the configured model algorithm association.</p>
2187
+ * @public
2188
+ */
2189
+ description?: string;
2190
+ /**
2191
+ * <p>The membership ID of the member that created the configured model algorithm association.</p>
2192
+ * @public
2193
+ */
2194
+ membershipIdentifier: string | undefined;
2195
+ /**
2196
+ * <p>The collaboration ID of the collaboration that contains the configured model algorithm association.</p>
2197
+ * @public
2198
+ */
2199
+ collaborationIdentifier: string | undefined;
2200
+ /**
2201
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm that is associated to the collaboration.</p>
2202
+ * @public
2203
+ */
2204
+ configuredModelAlgorithmArn: string | undefined;
2205
+ /**
2206
+ * <p>The account ID of the member that created the configured model algorithm association.</p>
2207
+ * @public
2208
+ */
2209
+ creatorAccountId: string | undefined;
2210
+ }
2211
+ /**
2212
+ * @public
2213
+ */
2214
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsResponse {
2215
+ /**
2216
+ * <p>The token value used to access the next page of results.</p>
2217
+ * @public
2218
+ */
2219
+ nextToken?: string;
2220
+ /**
2221
+ * <p>The configured model algorithm associations that belong to this collaboration.</p>
2222
+ * @public
2223
+ */
2224
+ collaborationConfiguredModelAlgorithmAssociations: CollaborationConfiguredModelAlgorithmAssociationSummary[] | undefined;
2225
+ }
2226
+ /**
2227
+ * @public
2228
+ */
2229
+ export interface ListCollaborationMLInputChannelsRequest {
2230
+ /**
2231
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
2232
+ * @public
2233
+ */
2234
+ nextToken?: string;
2235
+ /**
2236
+ * <p>The maximum number of results to return.</p>
2237
+ * @public
2238
+ */
2239
+ maxResults?: number;
2240
+ /**
2241
+ * <p>The collaboration ID of the collaboration that contains the ML input channels that you want to list.</p>
2242
+ * @public
2243
+ */
2244
+ collaborationIdentifier: string | undefined;
2245
+ }
2246
+ /**
2247
+ * @public
2248
+ * @enum
2249
+ */
2250
+ export declare const MLInputChannelStatus: {
2251
+ readonly ACTIVE: "ACTIVE";
2252
+ readonly CREATE_FAILED: "CREATE_FAILED";
2253
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2254
+ readonly CREATE_PENDING: "CREATE_PENDING";
2255
+ readonly DELETE_FAILED: "DELETE_FAILED";
2256
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
2257
+ readonly DELETE_PENDING: "DELETE_PENDING";
2258
+ readonly INACTIVE: "INACTIVE";
2259
+ };
2260
+ /**
2261
+ * @public
2262
+ */
2263
+ export type MLInputChannelStatus = (typeof MLInputChannelStatus)[keyof typeof MLInputChannelStatus];
2264
+ /**
2265
+ * <p>Provides summary information about an ML input channel in a collaboration.</p>
2266
+ * @public
2267
+ */
2268
+ export interface CollaborationMLInputChannelSummary {
2269
+ /**
2270
+ * <p>The time at which the ML input channel was created.</p>
2271
+ * @public
2272
+ */
2273
+ createTime: Date | undefined;
2274
+ /**
2275
+ * <p>The most recent time at which the ML input channel was updated.</p>
2276
+ * @public
2277
+ */
2278
+ updateTime: Date | undefined;
2279
+ /**
2280
+ * <p>The membership ID of the membership that contains the ML input channel.</p>
2281
+ * @public
2282
+ */
2283
+ membershipIdentifier: string | undefined;
2284
+ /**
2285
+ * <p>The collaboration ID of the collaboration that contains the ML input channel.</p>
2286
+ * @public
2287
+ */
2288
+ collaborationIdentifier: string | undefined;
2289
+ /**
2290
+ * <p>The name of the ML input channel.</p>
2291
+ * @public
2292
+ */
2293
+ name: string | undefined;
2294
+ /**
2295
+ * <p>The associated configured model algorithms used to create the ML input channel.</p>
2296
+ * @public
2297
+ */
2298
+ configuredModelAlgorithmAssociations: string[] | undefined;
2299
+ /**
2300
+ * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
2301
+ * @public
2302
+ */
2303
+ mlInputChannelArn: string | undefined;
2304
+ /**
2305
+ * <p>The status of the ML input channel.</p>
2306
+ * @public
2307
+ */
2308
+ status: MLInputChannelStatus | undefined;
2309
+ /**
2310
+ * <p>The account ID of the member who created the ML input channel.</p>
2311
+ * @public
2312
+ */
2313
+ creatorAccountId: string | undefined;
2314
+ /**
2315
+ * <p>The description of the ML input channel.</p>
2316
+ * @public
2317
+ */
2318
+ description?: string;
2319
+ }
2320
+ /**
2321
+ * @public
2322
+ */
2323
+ export interface ListCollaborationMLInputChannelsResponse {
2324
+ /**
2325
+ * <p>The token value used to access the next page of results.</p>
2326
+ * @public
2327
+ */
2328
+ nextToken?: string;
2329
+ /**
2330
+ * <p>The list of ML input channels that you wanted.</p>
2331
+ * @public
2332
+ */
2333
+ collaborationMLInputChannelsList: CollaborationMLInputChannelSummary[] | undefined;
2334
+ }
2335
+ /**
2336
+ * @public
2337
+ */
2338
+ export interface ListCollaborationTrainedModelExportJobsRequest {
2339
+ /**
2340
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
2341
+ * @public
2342
+ */
2343
+ nextToken?: string;
2344
+ /**
2345
+ * <p>The maximum size of the results that is returned per call.</p>
2346
+ * @public
2347
+ */
2348
+ maxResults?: number;
2349
+ /**
2350
+ * <p>The collaboration ID of the collaboration that contains the trained model export jobs that you are interested in.</p>
2351
+ * @public
2352
+ */
2353
+ collaborationIdentifier: string | undefined;
2354
+ /**
2355
+ * <p>The Amazon Resource Name (ARN) of the trained model that was used to create the export jobs that you are interested in.</p>
2356
+ * @public
2357
+ */
2358
+ trainedModelArn: string | undefined;
2359
+ }
2360
+ /**
2361
+ * <p>Provides information about the member who will receive trained model exports.</p>
2362
+ * @public
2363
+ */
2364
+ export interface TrainedModelExportReceiverMember {
2365
+ /**
2366
+ * <p>The account ID of the member who will receive trained model exports.</p>
2367
+ * @public
2368
+ */
2369
+ accountId: string | undefined;
2370
+ }
2371
+ /**
2372
+ * <p>Information about the output of the trained model export job.</p>
2373
+ * @public
2374
+ */
2375
+ export interface TrainedModelExportOutputConfiguration {
2376
+ /**
2377
+ * <p>The members that will received the exported trained model output.</p>
2378
+ * @public
2379
+ */
2380
+ members: TrainedModelExportReceiverMember[] | undefined;
2381
+ }
2382
+ /**
2383
+ * @public
2384
+ * @enum
2385
+ */
2386
+ export declare const TrainedModelExportJobStatus: {
2387
+ readonly ACTIVE: "ACTIVE";
2388
+ readonly CREATE_FAILED: "CREATE_FAILED";
2389
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2390
+ readonly CREATE_PENDING: "CREATE_PENDING";
2391
+ };
2392
+ /**
2393
+ * @public
2394
+ */
2395
+ export type TrainedModelExportJobStatus = (typeof TrainedModelExportJobStatus)[keyof typeof TrainedModelExportJobStatus];
2396
+ /**
2397
+ * <p>Provides summary information about a trained model export job in a collaboration.</p>
2398
+ * @public
2399
+ */
2400
+ export interface CollaborationTrainedModelExportJobSummary {
2401
+ /**
2402
+ * <p>The time at which the trained model export job was created.</p>
2403
+ * @public
2404
+ */
2405
+ createTime: Date | undefined;
2406
+ /**
2407
+ * <p>The most recent time at which the trained model export job was updated.</p>
2408
+ * @public
2409
+ */
2410
+ updateTime: Date | undefined;
2411
+ /**
2412
+ * <p>The name of the trained model export job.</p>
2413
+ * @public
2414
+ */
2415
+ name: string | undefined;
2416
+ /**
2417
+ * <p>Information about the output of the trained model export job.</p>
2418
+ * @public
2419
+ */
2420
+ outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
2421
+ /**
2422
+ * <p>The status of the trained model.</p>
2423
+ * @public
2424
+ */
2425
+ status: TrainedModelExportJobStatus | undefined;
2426
+ /**
2427
+ * <p>Details about the status of a resource.</p>
2428
+ * @public
2429
+ */
2430
+ statusDetails?: StatusDetails;
2431
+ /**
2432
+ * <p>The description of the trained model.</p>
2433
+ * @public
2434
+ */
2435
+ description?: string;
2436
+ /**
2437
+ * <p>The account ID of the member that created the trained model.</p>
2438
+ * @public
2439
+ */
2440
+ creatorAccountId: string | undefined;
2441
+ /**
2442
+ * <p>The Amazon Resource Name (ARN) of the trained model that is being exported.</p>
2443
+ * @public
2444
+ */
2445
+ trainedModelArn: string | undefined;
2446
+ /**
2447
+ * <p>The membership ID of the member that created the trained model export job.</p>
2448
+ * @public
2449
+ */
2450
+ membershipIdentifier: string | undefined;
2451
+ /**
2452
+ * <p>The collaboration ID of the collaboration that contains the trained model export job.</p>
2453
+ * @public
2454
+ */
2455
+ collaborationIdentifier: string | undefined;
2456
+ }
2457
+ /**
2458
+ * @public
2459
+ */
2460
+ export interface ListCollaborationTrainedModelExportJobsResponse {
2461
+ /**
2462
+ * <p>The token value used to access the next page of results.</p>
2463
+ * @public
2464
+ */
2465
+ nextToken?: string;
2466
+ /**
2467
+ * <p>The exports jobs that exist for the requested trained model in the requested collaboration.</p>
2468
+ * @public
2469
+ */
2470
+ collaborationTrainedModelExportJobs: CollaborationTrainedModelExportJobSummary[] | undefined;
2471
+ }
2472
+ /**
2473
+ * @public
2474
+ */
2475
+ export interface ListCollaborationTrainedModelInferenceJobsRequest {
2476
+ /**
2477
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
2478
+ * @public
2479
+ */
2480
+ nextToken?: string;
2481
+ /**
2482
+ * <p>The maximum size of the results that is returned per call.</p>
2483
+ * @public
2484
+ */
2485
+ maxResults?: number;
2486
+ /**
2487
+ * <p>The collaboration ID of the collaboration that contains the trained model inference jobs that you are interested in.</p>
2488
+ * @public
2489
+ */
2490
+ collaborationIdentifier: string | undefined;
2491
+ /**
2492
+ * <p>The Amazon Resource Name (ARN) of the trained model that was used to create the trained model inference jobs that you are interested in.</p>
2493
+ * @public
2494
+ */
2495
+ trainedModelArn?: string;
2496
+ }
2497
+ /**
2498
+ * @public
2499
+ * @enum
2500
+ */
2501
+ export declare const LogsStatus: {
2502
+ readonly PUBLISH_FAILED: "PUBLISH_FAILED";
2503
+ readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
2504
+ };
2505
+ /**
2506
+ * @public
2507
+ */
2508
+ export type LogsStatus = (typeof LogsStatus)[keyof typeof LogsStatus];
2509
+ /**
2510
+ * @public
2511
+ * @enum
2512
+ */
2513
+ export declare const MetricsStatus: {
2514
+ readonly PUBLISH_FAILED: "PUBLISH_FAILED";
2515
+ readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
2516
+ };
2517
+ /**
2518
+ * @public
2519
+ */
2520
+ export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
2521
+ /**
2522
+ * <p>Defines who will receive inference results.</p>
2523
+ * @public
2524
+ */
2525
+ export interface InferenceReceiverMember {
2526
+ /**
2527
+ * <p>The account ID of the member that can receive inference results.</p>
2528
+ * @public
2529
+ */
2530
+ accountId: string | undefined;
2531
+ }
2532
+ /**
2533
+ * <p>Configuration information about how the inference output is stored.</p>
2534
+ * @public
2535
+ */
2536
+ export interface InferenceOutputConfiguration {
2537
+ /**
2538
+ * <p>The MIME type used to specify the output data.</p>
2539
+ * @public
2540
+ */
2541
+ accept?: string;
2542
+ /**
2543
+ * <p>Defines the members that can receive inference output.</p>
2544
+ * @public
2545
+ */
2546
+ members: InferenceReceiverMember[] | undefined;
2547
+ }
2548
+ /**
2549
+ * @public
2550
+ * @enum
2551
+ */
2552
+ export declare const TrainedModelInferenceJobStatus: {
2553
+ readonly ACTIVE: "ACTIVE";
2554
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
2555
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
2556
+ readonly CANCEL_PENDING: "CANCEL_PENDING";
2557
+ readonly CREATE_FAILED: "CREATE_FAILED";
2558
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2559
+ readonly CREATE_PENDING: "CREATE_PENDING";
2560
+ readonly INACTIVE: "INACTIVE";
2561
+ };
2562
+ /**
2563
+ * @public
2564
+ */
2565
+ export type TrainedModelInferenceJobStatus = (typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
2566
+ /**
2567
+ * <p>Provides summary information about a trained model inference job in a collaboration.</p>
2568
+ * @public
2569
+ */
2570
+ export interface CollaborationTrainedModelInferenceJobSummary {
2571
+ /**
2572
+ * <p>The Amazon Resource Name (ARN) of the trained model inference job.</p>
2573
+ * @public
2574
+ */
2575
+ trainedModelInferenceJobArn: string | undefined;
2576
+ /**
2577
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for the trained model inference job.</p>
2578
+ * @public
2579
+ */
2580
+ configuredModelAlgorithmAssociationArn?: string;
2581
+ /**
2582
+ * <p>The membership ID of the membership that contains the trained model inference job.</p>
2583
+ * @public
2584
+ */
2585
+ membershipIdentifier: string | undefined;
2586
+ /**
2587
+ * <p>The Amazon Resource Name (ARN) of the trained model that is used for the trained model inference job.</p>
2588
+ * @public
2589
+ */
2590
+ trainedModelArn: string | undefined;
2591
+ /**
2592
+ * <p>The collaboration ID of the collaboration that contains the trained model inference job.</p>
2593
+ * @public
2594
+ */
2595
+ collaborationIdentifier: string | undefined;
2596
+ /**
2597
+ * <p>The status of the trained model inference job.</p>
2598
+ * @public
2599
+ */
2600
+ status: TrainedModelInferenceJobStatus | undefined;
2601
+ /**
2602
+ * <p>Returns output configuration information for the trained model inference job.</p>
2603
+ * @public
2604
+ */
2605
+ outputConfiguration: InferenceOutputConfiguration | undefined;
2606
+ /**
2607
+ * <p>The name of the trained model inference job.</p>
2608
+ * @public
2609
+ */
2610
+ name: string | undefined;
2611
+ /**
2612
+ * <p>The description of the trained model inference job.</p>
2613
+ * @public
2614
+ */
2615
+ description?: string;
2616
+ /**
2617
+ * <p>the trained model inference job metrics status.</p>
2618
+ * @public
2619
+ */
2620
+ metricsStatus?: MetricsStatus;
2621
+ /**
2622
+ * <p>Details about the metrics status for trained model inference job.</p>
2623
+ * @public
2624
+ */
2625
+ metricsStatusDetails?: string;
2626
+ /**
2627
+ * <p>The trained model inference job logs status.</p>
2628
+ * @public
2629
+ */
2630
+ logsStatus?: LogsStatus;
2631
+ /**
2632
+ * <p>Details about the logs status for the trained model inference job.</p>
2633
+ * @public
2634
+ */
2635
+ logsStatusDetails?: string;
2636
+ /**
2637
+ * <p>The time at which the trained model inference job was created.</p>
2638
+ * @public
2639
+ */
2640
+ createTime: Date | undefined;
2641
+ /**
2642
+ * <p>The most recent time at which the trained model inference job was updated.</p>
2643
+ * @public
2644
+ */
2645
+ updateTime: Date | undefined;
2646
+ /**
2647
+ * <p>The account ID that created the trained model inference job.</p>
2648
+ * @public
2649
+ */
2650
+ creatorAccountId: string | undefined;
2651
+ }
2652
+ /**
2653
+ * @public
2654
+ */
2655
+ export interface ListCollaborationTrainedModelInferenceJobsResponse {
2656
+ /**
2657
+ * <p>The token value used to access the next page of results.</p>
2658
+ * @public
2659
+ */
2660
+ nextToken?: string;
2661
+ /**
2662
+ * <p>The trained model inference jobs that you are interested in.</p>
2663
+ * @public
2664
+ */
2665
+ collaborationTrainedModelInferenceJobs: CollaborationTrainedModelInferenceJobSummary[] | undefined;
2666
+ }
2667
+ /**
2668
+ * @public
2669
+ */
2670
+ export interface ListCollaborationTrainedModelsRequest {
2671
+ /**
2672
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
2673
+ * @public
2674
+ */
2675
+ nextToken?: string;
2676
+ /**
2677
+ * <p>The maximum size of the results that is returned per call.</p>
2678
+ * @public
2679
+ */
2680
+ maxResults?: number;
2681
+ /**
2682
+ * <p>The collaboration ID of the collaboration that contains the trained models you are interested in.</p>
2683
+ * @public
2684
+ */
2685
+ collaborationIdentifier: string | undefined;
2686
+ }
2687
+ /**
2688
+ * @public
2689
+ * @enum
2690
+ */
2691
+ export declare const TrainedModelStatus: {
2692
+ readonly ACTIVE: "ACTIVE";
2693
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
2694
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
2695
+ readonly CANCEL_PENDING: "CANCEL_PENDING";
2696
+ readonly CREATE_FAILED: "CREATE_FAILED";
2697
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2698
+ readonly CREATE_PENDING: "CREATE_PENDING";
2699
+ readonly DELETE_FAILED: "DELETE_FAILED";
2700
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
2701
+ readonly DELETE_PENDING: "DELETE_PENDING";
2702
+ readonly INACTIVE: "INACTIVE";
2703
+ };
2704
+ /**
2705
+ * @public
2706
+ */
2707
+ export type TrainedModelStatus = (typeof TrainedModelStatus)[keyof typeof TrainedModelStatus];
2708
+ /**
2709
+ * <p>Provides summary information about a trained model in a collaboration.</p>
2710
+ * @public
2711
+ */
2712
+ export interface CollaborationTrainedModelSummary {
2713
+ /**
2714
+ * <p>The time at which the trained model was created.</p>
2715
+ * @public
2716
+ */
2717
+ createTime: Date | undefined;
2718
+ /**
2719
+ * <p>The most recent time at which the trained model was updated.</p>
2720
+ * @public
2721
+ */
2722
+ updateTime: Date | undefined;
2723
+ /**
2724
+ * <p>The Amazon Resource Name (ARN) of the trained model.</p>
2725
+ * @public
2726
+ */
2727
+ trainedModelArn: string | undefined;
2728
+ /**
2729
+ * <p>The name of the trained model.</p>
2730
+ * @public
2731
+ */
2732
+ name: string | undefined;
2733
+ /**
2734
+ * <p>The description of the trained model.</p>
2735
+ * @public
2736
+ */
2737
+ description?: string;
2738
+ /**
2739
+ * <p>The membership ID of the member that created the trained model.</p>
2740
+ * @public
2741
+ */
2742
+ membershipIdentifier: string | undefined;
2743
+ /**
2744
+ * <p>The collaboration ID of the collaboration that contains the trained model.</p>
2745
+ * @public
2746
+ */
2747
+ collaborationIdentifier: string | undefined;
2748
+ /**
2749
+ * <p>The status of the trained model.</p>
2750
+ * @public
2751
+ */
2752
+ status: TrainedModelStatus | undefined;
2753
+ /**
2754
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for this trained model.</p>
2755
+ * @public
2756
+ */
2757
+ configuredModelAlgorithmAssociationArn: string | undefined;
2758
+ /**
2759
+ * <p>The account ID of the member that created the trained model.</p>
2760
+ * @public
2761
+ */
2762
+ creatorAccountId: string | undefined;
2763
+ }
2764
+ /**
2765
+ * @public
2766
+ */
2767
+ export interface ListCollaborationTrainedModelsResponse {
2768
+ /**
2769
+ * <p>The token value used to access the next page of results.</p>
2770
+ * @public
2771
+ */
2772
+ nextToken?: string;
2773
+ /**
2774
+ * <p>The trained models in the collaboration that you requested.</p>
2775
+ * @public
2776
+ */
2777
+ collaborationTrainedModels: CollaborationTrainedModelSummary[] | undefined;
2778
+ }
2779
+ /**
2780
+ * @public
2781
+ */
2782
+ export interface ListTagsForResourceRequest {
2783
+ /**
2784
+ * <p>The Amazon Resource Name (ARN) of the resource that you are interested in.</p>
2785
+ * @public
2786
+ */
2787
+ resourceArn: string | undefined;
2788
+ }
2789
+ /**
2790
+ * @public
2791
+ */
2792
+ export interface ListTagsForResourceResponse {
2793
+ /**
2794
+ * <p>The tags that are associated with the resource.</p>
2795
+ * @public
2796
+ */
2797
+ tags: Record<string, string> | undefined;
2798
+ }
2799
+ /**
2800
+ * @public
2801
+ */
2802
+ export interface DeleteMLConfigurationRequest {
2803
+ /**
2804
+ * <p>The membership ID of the of the member that is deleting the ML modeling configuration.</p>
2805
+ * @public
2806
+ */
2807
+ membershipIdentifier: string | undefined;
2808
+ }
2809
+ /**
2810
+ * @public
2811
+ */
2812
+ export interface GetMLConfigurationRequest {
2813
+ /**
2814
+ * <p>The membership ID of the member that owns the ML configuration you want to return information about.</p>
2815
+ * @public
2816
+ */
2817
+ membershipIdentifier: string | undefined;
2818
+ }
2819
+ /**
2820
+ * <p>The Amazon S3 location where the exported model artifacts are stored.</p>
2821
+ * @public
2822
+ */
2823
+ export interface Destination {
2824
+ /**
2825
+ * <p>Provides information about an Amazon S3 bucket and path.</p>
2826
+ * @public
2827
+ */
2828
+ s3Destination: S3ConfigMap | undefined;
2829
+ }
2830
+ /**
2831
+ * <p>Configuration information about how the exported model artifacts are stored.</p>
2832
+ * @public
2833
+ */
2834
+ export interface MLOutputConfiguration {
2835
+ /**
2836
+ * <p>The Amazon S3 location where exported model artifacts are stored.</p>
2837
+ * @public
2838
+ */
2839
+ destination?: Destination;
2840
+ /**
2841
+ * <p>The Amazon Resource Name (ARN) of the service access role that is used to store the model artifacts.</p>
2842
+ * @public
2843
+ */
2844
+ roleArn: string | undefined;
2845
+ }
2846
+ /**
2847
+ * @public
2848
+ */
2849
+ export interface GetMLConfigurationResponse {
2850
+ /**
2851
+ * <p>The membership ID of the member that owns the ML configuration you requested.</p>
2852
+ * @public
2853
+ */
2854
+ membershipIdentifier: string | undefined;
2855
+ /**
2856
+ * <p>The Amazon S3 location where ML model output is stored.</p>
2857
+ * @public
2858
+ */
2859
+ defaultOutputLocation: MLOutputConfiguration | undefined;
2860
+ /**
2861
+ * <p>The time at which the ML configuration was created.</p>
2862
+ * @public
2863
+ */
2864
+ createTime: Date | undefined;
2865
+ /**
2866
+ * <p>The most recent time at which the ML configuration was updated.</p>
2867
+ * @public
2868
+ */
2869
+ updateTime: Date | undefined;
2870
+ }
2871
+ /**
2872
+ * @public
2873
+ */
2874
+ export interface PutMLConfigurationRequest {
2875
+ /**
2876
+ * <p>The membership ID of the member that is being configured.</p>
2877
+ * @public
2878
+ */
2879
+ membershipIdentifier: string | undefined;
2880
+ /**
2881
+ * <p>The default Amazon S3 location where ML output is stored for the specified member.</p>
2882
+ * @public
2883
+ */
2884
+ defaultOutputLocation: MLOutputConfiguration | undefined;
2885
+ }
2886
+ /**
2887
+ * @public
2888
+ * @enum
2889
+ */
2890
+ export declare const WorkerComputeType: {
2891
+ readonly CR1X: "CR.1X";
2892
+ readonly CR4X: "CR.4X";
2893
+ };
2894
+ /**
2895
+ * @public
2896
+ */
2897
+ export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
2898
+ /**
2899
+ * <p>Configuration information about the compute workers that perform the transform job.</p>
2900
+ * @public
2901
+ */
2902
+ export interface WorkerComputeConfiguration {
2903
+ /**
2904
+ * <p>The instance type of the compute workers that are used.</p>
2905
+ * @public
2906
+ */
2907
+ type?: WorkerComputeType;
2908
+ /**
2909
+ * <p>The number of compute workers that are used.</p>
2910
+ * @public
2911
+ */
2912
+ number?: number;
2913
+ }
2914
+ /**
2915
+ * <p>Provides configuration information for the instances that will perform the compute work.</p>
2916
+ * @public
2917
+ */
2918
+ export type ComputeConfiguration = ComputeConfiguration.WorkerMember | ComputeConfiguration.$UnknownMember;
2919
+ /**
2920
+ * @public
2921
+ */
2922
+ export declare namespace ComputeConfiguration {
2923
+ /**
2924
+ * <p>The worker instances that will perform the compute work.</p>
2925
+ * @public
2926
+ */
2927
+ interface WorkerMember {
2928
+ worker: WorkerComputeConfiguration;
2929
+ $unknown?: never;
2930
+ }
2931
+ /**
2932
+ * @public
2933
+ */
2934
+ interface $UnknownMember {
2935
+ worker?: never;
2936
+ $unknown: [string, any];
2937
+ }
2938
+ interface Visitor<T> {
2939
+ worker: (value: WorkerComputeConfiguration) => T;
2940
+ _: (name: string, value: any) => T;
2941
+ }
2942
+ const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
2943
+ }
2944
+ /**
2945
+ * <p>Provides information necessary to perform the protected query.</p>
2946
+ * @public
2947
+ */
2948
+ export interface ProtectedQueryInputParameters {
2949
+ /**
2950
+ * <p>The parameters for the SQL type Protected Query.</p>
2951
+ * @public
2952
+ */
2953
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
2954
+ /**
2955
+ * <p>Provides configuration information for the workers that will perform the protected query.</p>
2956
+ * @public
2957
+ */
2958
+ computeConfiguration?: ComputeConfiguration;
2959
+ }
2960
+ /**
2961
+ * <p>Provides the data source that is used to define an input channel.</p>
2962
+ * @public
2963
+ */
2964
+ export type InputChannelDataSource = InputChannelDataSource.ProtectedQueryInputParametersMember | InputChannelDataSource.$UnknownMember;
2965
+ /**
2966
+ * @public
2967
+ */
2968
+ export declare namespace InputChannelDataSource {
2969
+ /**
2970
+ * <p>Provides information necessary to perform the protected query.</p>
2971
+ * @public
2972
+ */
2973
+ interface ProtectedQueryInputParametersMember {
2974
+ protectedQueryInputParameters: ProtectedQueryInputParameters;
2975
+ $unknown?: never;
2976
+ }
2977
+ /**
2978
+ * @public
2979
+ */
2980
+ interface $UnknownMember {
2981
+ protectedQueryInputParameters?: never;
2982
+ $unknown: [string, any];
2983
+ }
2984
+ interface Visitor<T> {
2985
+ protectedQueryInputParameters: (value: ProtectedQueryInputParameters) => T;
2986
+ _: (name: string, value: any) => T;
2987
+ }
2988
+ const visit: <T>(value: InputChannelDataSource, visitor: Visitor<T>) => T;
2989
+ }
2990
+ /**
2991
+ * <p>Provides information about the data source that is used to create an ML input channel.</p>
2992
+ * @public
2993
+ */
2994
+ export interface InputChannel {
2995
+ /**
2996
+ * <p>The data source that is used to create the ML input channel.</p>
2997
+ * @public
2998
+ */
2999
+ dataSource: InputChannelDataSource | undefined;
3000
+ /**
3001
+ * <p>The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the <code>dataSource</code> field the input channel.</p>
3002
+ * <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
3003
+ * @public
3004
+ */
3005
+ roleArn: string | undefined;
3006
+ }
3007
+ /**
3008
+ * @public
3009
+ */
3010
+ export interface CreateMLInputChannelRequest {
3011
+ /**
3012
+ * <p>The membership ID of the member that is creating the ML input channel.</p>
3013
+ * @public
3014
+ */
3015
+ membershipIdentifier: string | undefined;
3016
+ /**
3017
+ * <p>The associated configured model algorithms that are necessary to create this ML input channel.</p>
3018
+ * @public
3019
+ */
3020
+ configuredModelAlgorithmAssociations: string[] | undefined;
3021
+ /**
3022
+ * <p>The input data that is used to create this ML input channel.</p>
3023
+ * @public
3024
+ */
3025
+ inputChannel: InputChannel | undefined;
3026
+ /**
3027
+ * <p>The name of the ML input channel.</p>
3028
+ * @public
3029
+ */
3030
+ name: string | undefined;
3031
+ /**
3032
+ * <p>The number of days that the data in the ML input channel is retained.</p>
3033
+ * @public
3034
+ */
3035
+ retentionInDays: number | undefined;
3036
+ /**
3037
+ * <p>The description of the ML input channel.</p>
3038
+ * @public
3039
+ */
3040
+ description?: string;
3041
+ /**
3042
+ * <p>The Amazon Resource Name (ARN) of the KMS key that is used to access the input channel.</p>
3043
+ * @public
3044
+ */
3045
+ kmsKeyArn?: string;
3046
+ /**
3047
+ * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3048
+ * <p>The following basic restrictions apply to tags:</p>
3049
+ * <ul>
3050
+ * <li>
3051
+ * <p>Maximum number of tags per resource - 50.</p>
3052
+ * </li>
3053
+ * <li>
3054
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
3055
+ * </li>
3056
+ * <li>
3057
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
3058
+ * </li>
3059
+ * <li>
3060
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
3061
+ * </li>
3062
+ * <li>
3063
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
3064
+ * </li>
3065
+ * <li>
3066
+ * <p>Tag keys and values are case sensitive.</p>
3067
+ * </li>
3068
+ * <li>
3069
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
3070
+ * </li>
3071
+ * </ul>
3072
+ * @public
3073
+ */
3074
+ tags?: Record<string, string>;
3075
+ }
3076
+ /**
3077
+ * @public
3078
+ */
3079
+ export interface CreateMLInputChannelResponse {
3080
+ /**
3081
+ * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
3082
+ * @public
3083
+ */
3084
+ mlInputChannelArn: string | undefined;
3085
+ }
3086
+ /**
3087
+ * @public
3088
+ */
3089
+ export interface DeleteMLInputChannelDataRequest {
3090
+ /**
3091
+ * <p>The Amazon Resource Name (ARN) of the ML input channel that you want to delete.</p>
3092
+ * @public
3093
+ */
3094
+ mlInputChannelArn: string | undefined;
3095
+ /**
3096
+ * <p>The membership ID of the membership that contains the ML input channel you want to delete.</p>
3097
+ * @public
3098
+ */
3099
+ membershipIdentifier: string | undefined;
3100
+ }
3101
+ /**
3102
+ * @public
3103
+ */
3104
+ export interface GetCollaborationMLInputChannelRequest {
3105
+ /**
3106
+ * <p>The Amazon Resource Name (ARN) of the ML input channel that you want to get.</p>
3107
+ * @public
3108
+ */
3109
+ mlInputChannelArn: string | undefined;
3110
+ /**
3111
+ * <p>The collaboration ID of the collaboration that contains the ML input channel that you want to get.</p>
3112
+ * @public
3113
+ */
3114
+ collaborationIdentifier: string | undefined;
3115
+ }
3116
+ /**
3117
+ * @public
3118
+ */
3119
+ export interface GetCollaborationMLInputChannelResponse {
3120
+ /**
3121
+ * <p>The time at which the ML input channel was created.</p>
3122
+ * @public
3123
+ */
3124
+ createTime: Date | undefined;
3125
+ /**
3126
+ * <p>The most recent time at which the ML input channel was updated.</p>
3127
+ * @public
3128
+ */
3129
+ updateTime: Date | undefined;
3130
+ /**
3131
+ * <p>The account ID of the member who created the ML input channel.</p>
3132
+ * @public
3133
+ */
3134
+ creatorAccountId: string | undefined;
3135
+ /**
3136
+ * <p>The membership ID of the membership that contains the ML input channel.</p>
3137
+ * @public
3138
+ */
3139
+ membershipIdentifier: string | undefined;
3140
+ /**
3141
+ * <p>The collaboration ID of the collaboration that contains the ML input channel.</p>
3142
+ * @public
3143
+ */
3144
+ collaborationIdentifier: string | undefined;
3145
+ /**
3146
+ * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
3147
+ * @public
3148
+ */
3149
+ mlInputChannelArn: string | undefined;
3150
+ /**
3151
+ * <p>The name of the ML input channel.</p>
3152
+ * @public
3153
+ */
3154
+ name: string | undefined;
3155
+ /**
3156
+ * <p>The configured model algorithm associations that were used to create the ML input channel.</p>
3157
+ * @public
3158
+ */
3159
+ configuredModelAlgorithmAssociations: string[] | undefined;
3160
+ /**
3161
+ * <p>The status of the ML input channel.</p>
3162
+ * @public
3163
+ */
3164
+ status: MLInputChannelStatus | undefined;
3165
+ /**
3166
+ * <p>Details about the status of a resource.</p>
3167
+ * @public
3168
+ */
3169
+ statusDetails?: StatusDetails;
3170
+ /**
3171
+ * <p>The number of days to retain the data for the ML input channel.</p>
3172
+ * @public
3173
+ */
3174
+ retentionInDays: number | undefined;
3175
+ /**
3176
+ * <p>The number of records in the ML input channel.</p>
3177
+ * @public
3178
+ */
3179
+ numberOfRecords?: number;
3180
+ /**
3181
+ * <p>The description of the ML input channel.</p>
3182
+ * @public
3183
+ */
3184
+ description?: string;
3185
+ }
3186
+ /**
3187
+ * @public
3188
+ */
3189
+ export interface GetMLInputChannelRequest {
3190
+ /**
3191
+ * <p>The Amazon Resource Name (ARN) of the ML input channel that you want to get.</p>
3192
+ * @public
3193
+ */
3194
+ mlInputChannelArn: string | undefined;
3195
+ /**
3196
+ * <p>The membership ID of the membership that contains the ML input channel that you want to get.</p>
3197
+ * @public
3198
+ */
3199
+ membershipIdentifier: string | undefined;
3200
+ }
3201
+ /**
3202
+ * @public
3203
+ */
3204
+ export interface GetMLInputChannelResponse {
3205
+ /**
3206
+ * <p>The time at which the ML input channel was created.</p>
3207
+ * @public
3208
+ */
3209
+ createTime: Date | undefined;
3210
+ /**
3211
+ * <p>The most recent time at which the ML input channel was updated.</p>
3212
+ * @public
3213
+ */
3214
+ updateTime: Date | undefined;
3215
+ /**
3216
+ * <p>The membership ID of the membership that contains the ML input channel.</p>
3217
+ * @public
3218
+ */
3219
+ membershipIdentifier: string | undefined;
3220
+ /**
3221
+ * <p>The collaboration ID of the collaboration that contains the ML input channel.</p>
3222
+ * @public
3223
+ */
3224
+ collaborationIdentifier: string | undefined;
3225
+ /**
3226
+ * <p>The input channel that was used to create the ML input channel.</p>
3227
+ * @public
3228
+ */
3229
+ inputChannel: InputChannel | undefined;
3230
+ /**
3231
+ * <p>The ID of the protected query that was used to create the ML input channel.</p>
3232
+ * @public
3233
+ */
3234
+ protectedQueryIdentifier?: string;
3235
+ /**
3236
+ * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
3237
+ * @public
3238
+ */
3239
+ mlInputChannelArn: string | undefined;
3240
+ /**
3241
+ * <p>The name of the ML input channel.</p>
3242
+ * @public
3243
+ */
3244
+ name: string | undefined;
3245
+ /**
3246
+ * <p>The configured model algorithm associations that were used to create the ML input channel.</p>
3247
+ * @public
3248
+ */
3249
+ configuredModelAlgorithmAssociations: string[] | undefined;
3250
+ /**
3251
+ * <p>The status of the ML input channel.</p>
3252
+ * @public
3253
+ */
3254
+ status: MLInputChannelStatus | undefined;
3255
+ /**
3256
+ * <p>Details about the status of a resource.</p>
3257
+ * @public
3258
+ */
3259
+ statusDetails?: StatusDetails;
3260
+ /**
3261
+ * <p>The number of days to keep the data in the ML input channel.</p>
3262
+ * @public
3263
+ */
3264
+ retentionInDays: number | undefined;
3265
+ /**
3266
+ * <p>The number of records in the ML input channel.</p>
3267
+ * @public
3268
+ */
3269
+ numberOfRecords?: number;
3270
+ /**
3271
+ * <p>The number of files in the ML input channel.</p>
3272
+ * @public
3273
+ */
3274
+ numberOfFiles?: number;
3275
+ /**
3276
+ * <p>The size, in GB, of the ML input channel.</p>
3277
+ * @public
3278
+ */
3279
+ sizeInGb?: number;
3280
+ /**
3281
+ * <p>The description of the ML input channel.</p>
3282
+ * @public
3283
+ */
3284
+ description?: string;
3285
+ /**
3286
+ * <p>The Amazon Resource Name (ARN) of the KMS key that was used to create the ML input channel.</p>
3287
+ * @public
3288
+ */
3289
+ kmsKeyArn?: string;
3290
+ /**
3291
+ * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3292
+ * <p>The following basic restrictions apply to tags:</p>
3293
+ * <ul>
3294
+ * <li>
3295
+ * <p>Maximum number of tags per resource - 50.</p>
3296
+ * </li>
3297
+ * <li>
3298
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
3299
+ * </li>
3300
+ * <li>
3301
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
3302
+ * </li>
3303
+ * <li>
3304
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
3305
+ * </li>
3306
+ * <li>
3307
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
3308
+ * </li>
3309
+ * <li>
3310
+ * <p>Tag keys and values are case sensitive.</p>
3311
+ * </li>
3312
+ * <li>
3313
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
3314
+ * </li>
3315
+ * </ul>
3316
+ * @public
3317
+ */
3318
+ tags?: Record<string, string>;
3319
+ }
3320
+ /**
3321
+ * @public
3322
+ */
3323
+ export interface ListMLInputChannelsRequest {
3324
+ /**
3325
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
3326
+ * @public
3327
+ */
3328
+ nextToken?: string;
3329
+ /**
3330
+ * <p>The maximum number of ML input channels to return.</p>
3331
+ * @public
3332
+ */
3333
+ maxResults?: number;
3334
+ /**
3335
+ * <p>The membership ID of the membership that contains the ML input channels that you want to list.</p>
3336
+ * @public
3337
+ */
3338
+ membershipIdentifier: string | undefined;
3339
+ }
3340
+ /**
3341
+ * <p>Provides summary information about the ML input channel.</p>
3342
+ * @public
3343
+ */
3344
+ export interface MLInputChannelSummary {
3345
+ /**
3346
+ * <p>The time at which the ML input channel was created.</p>
3347
+ * @public
3348
+ */
3349
+ createTime: Date | undefined;
3350
+ /**
3351
+ * <p>The most recent time at which the ML input channel was updated.</p>
3352
+ * @public
3353
+ */
3354
+ updateTime: Date | undefined;
3355
+ /**
3356
+ * <p>The membership ID of the membership that contains the ML input channel.</p>
3357
+ * @public
3358
+ */
3359
+ membershipIdentifier: string | undefined;
3360
+ /**
3361
+ * <p>The collaboration ID of the collaboration that contains the ML input channel.</p>
3362
+ * @public
3363
+ */
3364
+ collaborationIdentifier: string | undefined;
3365
+ /**
3366
+ * <p>The name of the ML input channel.</p>
3367
+ * @public
3368
+ */
3369
+ name: string | undefined;
3370
+ /**
3371
+ * <p>The associated configured model algorithms used to create the ML input channel.</p>
3372
+ * @public
3373
+ */
3374
+ configuredModelAlgorithmAssociations: string[] | undefined;
3375
+ /**
3376
+ * <p>The ID of the protected query that was used to create the ML input channel.</p>
3377
+ * @public
3378
+ */
3379
+ protectedQueryIdentifier?: string;
3380
+ /**
3381
+ * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
3382
+ * @public
3383
+ */
3384
+ mlInputChannelArn: string | undefined;
3385
+ /**
3386
+ * <p>The status of the ML input channel.</p>
3387
+ * @public
3388
+ */
3389
+ status: MLInputChannelStatus | undefined;
3390
+ /**
3391
+ * <p>The description of the ML input channel.</p>
3392
+ * @public
3393
+ */
3394
+ description?: string;
3395
+ }
3396
+ /**
3397
+ * @public
3398
+ */
3399
+ export interface ListMLInputChannelsResponse {
3400
+ /**
3401
+ * <p>The token value used to access the next page of results.</p>
3402
+ * @public
3403
+ */
3404
+ nextToken?: string;
3405
+ /**
3406
+ * <p>The list of ML input channels that you wanted.</p>
3407
+ * @public
3408
+ */
3409
+ mlInputChannelsList: MLInputChannelSummary[] | undefined;
3410
+ }
3411
+ /**
3412
+ * @public
3413
+ */
3414
+ export interface TagResourceRequest {
3415
+ /**
3416
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to assign tags.</p>
3417
+ * @public
3418
+ */
3419
+ resourceArn: string | undefined;
3420
+ /**
3421
+ * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3422
+ * <p>The following basic restrictions apply to tags:</p>
3423
+ * <ul>
3424
+ * <li>
3425
+ * <p>Maximum number of tags per resource - 50.</p>
3426
+ * </li>
3427
+ * <li>
3428
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
3429
+ * </li>
3430
+ * <li>
3431
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
3432
+ * </li>
3433
+ * <li>
3434
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
3435
+ * </li>
3436
+ * <li>
3437
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
3438
+ * </li>
3439
+ * <li>
3440
+ * <p>Tag keys and values are case sensitive.</p>
3441
+ * </li>
3442
+ * <li>
3443
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
3444
+ * </li>
3445
+ * </ul>
3446
+ * @public
3447
+ */
3448
+ tags: Record<string, string> | undefined;
3449
+ }
3450
+ /**
3451
+ * @public
3452
+ */
3453
+ export interface TagResourceResponse {
3454
+ }
3455
+ /**
3456
+ * @public
3457
+ */
3458
+ export interface CancelTrainedModelRequest {
3459
+ /**
3460
+ * <p>The membership ID of the trained model job that you want to cancel.</p>
3461
+ * @public
3462
+ */
3463
+ membershipIdentifier: string | undefined;
3464
+ /**
3465
+ * <p>The Amazon Resource Name (ARN) of the trained model job that you want to cancel.</p>
3466
+ * @public
3467
+ */
3468
+ trainedModelArn: string | undefined;
3469
+ }
3470
+ /**
3471
+ * <p>Information about the model training data channel. A training data channel is a named data source that the training algorithms can consume. </p>
3472
+ * @public
3473
+ */
3474
+ export interface ModelTrainingDataChannel {
3475
+ /**
3476
+ * <p>The Amazon Resource Name (ARN) of the ML input channel for this model training data channel.</p>
3477
+ * @public
3478
+ */
3479
+ mlInputChannelArn: string | undefined;
3480
+ /**
3481
+ * <p>The name of the training data channel.</p>
3482
+ * @public
3483
+ */
3484
+ channelName: string | undefined;
3485
+ }
3486
+ /**
3487
+ * @public
3488
+ * @enum
3489
+ */
3490
+ export declare const _InstanceType: {
3491
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
3492
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
3493
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
3494
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
3495
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
3496
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
3497
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
3498
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
3499
+ readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
3500
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
3501
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
3502
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
3503
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
3504
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
3505
+ readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
3506
+ readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
3507
+ readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
3508
+ readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
3509
+ readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
3510
+ readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
3511
+ readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
3512
+ readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
3513
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
3514
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
3515
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
3516
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
3517
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
3518
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
3519
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
3520
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
3521
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
3522
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
3523
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
3524
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
3525
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
3526
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
3527
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
3528
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
3529
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
3530
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
3531
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
3532
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
3533
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
3534
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
3535
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
3536
+ readonly ML_M5_LARGE: "ml.m5.large";
3537
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
3538
+ readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
3539
+ readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
3540
+ readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
3541
+ readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
3542
+ readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
3543
+ readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
3544
+ readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
3545
+ readonly ML_M6I_LARGE: "ml.m6i.large";
3546
+ readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
3547
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
3548
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
3549
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
3550
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
3551
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
3552
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
3553
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
3554
+ readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
3555
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
3556
+ readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
3557
+ readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
3558
+ readonly ML_R5D_16XLARGE: "ml.r5d.16xlarge";
3559
+ readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
3560
+ readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
3561
+ readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
3562
+ readonly ML_R5D_8XLARGE: "ml.r5d.8xlarge";
3563
+ readonly ML_R5D_LARGE: "ml.r5d.large";
3564
+ readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
3565
+ readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
3566
+ readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
3567
+ readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
3568
+ readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
3569
+ readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
3570
+ readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
3571
+ readonly ML_R5_LARGE: "ml.r5.large";
3572
+ readonly ML_R5_XLARGE: "ml.r5.xlarge";
3573
+ readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
3574
+ readonly ML_T3_LARGE: "ml.t3.large";
3575
+ readonly ML_T3_MEDIUM: "ml.t3.medium";
3576
+ readonly ML_T3_XLARGE: "ml.t3.xlarge";
3577
+ readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
3578
+ readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
3579
+ readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
3580
+ };
3581
+ /**
3582
+ * @public
3583
+ */
3584
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
3585
+ /**
3586
+ * <p>Information about the EC2 resources that are used to train the model.</p>
3587
+ * @public
3588
+ */
3589
+ export interface ResourceConfig {
3590
+ /**
3591
+ * <p>The number of resources that are used to train the model.</p>
3592
+ * @public
3593
+ */
3594
+ instanceCount?: number;
3595
+ /**
3596
+ * <p>The instance type that is used to train the model.</p>
3597
+ * @public
3598
+ */
3599
+ instanceType: _InstanceType | undefined;
3600
+ /**
3601
+ * <p>The maximum size of the instance that is used to train the model.</p>
3602
+ * @public
3603
+ */
3604
+ volumeSizeInGB: number | undefined;
3605
+ }
3606
+ /**
3607
+ * <p>The criteria used to stop model training.</p>
3608
+ * @public
3609
+ */
3610
+ export interface StoppingCondition {
3611
+ /**
3612
+ * <p>The maximum amount of time, in seconds, that model training can run before it is terminated.</p>
3613
+ * @public
3614
+ */
3615
+ maxRuntimeInSeconds?: number;
3616
+ }
3617
+ /**
3618
+ * @public
3619
+ */
3620
+ export interface CreateTrainedModelRequest {
3621
+ /**
3622
+ * <p>The membership ID of the member that is creating the trained model.</p>
3623
+ * @public
3624
+ */
3625
+ membershipIdentifier: string | undefined;
3626
+ /**
3627
+ * <p>The name of the trained model.</p>
3628
+ * @public
3629
+ */
3630
+ name: string | undefined;
3631
+ /**
3632
+ * <p>The associated configured model algorithm used to train this model.</p>
3633
+ * @public
3634
+ */
3635
+ configuredModelAlgorithmAssociationArn: string | undefined;
3636
+ /**
3637
+ * <p>Algorithm-specific parameters that influence the quality of the model. You set hyperparameters before you start the learning process.</p>
3638
+ * @public
3639
+ */
3640
+ hyperparameters?: Record<string, string>;
3641
+ /**
3642
+ * <p>The environment variables to set in the Docker container.</p>
3643
+ * @public
3644
+ */
3645
+ environment?: Record<string, string>;
3646
+ /**
3647
+ * <p>Information about the EC2 resources that are used to train this model.</p>
3648
+ * @public
3649
+ */
3650
+ resourceConfig: ResourceConfig | undefined;
3651
+ /**
3652
+ * <p>The criteria that is used to stop model training.</p>
3653
+ * @public
3654
+ */
3655
+ stoppingCondition?: StoppingCondition;
3656
+ /**
3657
+ * <p>Defines the data channels that are used as input for the trained model request.</p>
3658
+ * @public
3659
+ */
3660
+ dataChannels: ModelTrainingDataChannel[] | undefined;
3661
+ /**
3662
+ * <p>The description of the trained model.</p>
3663
+ * @public
3664
+ */
3665
+ description?: string;
3666
+ /**
3667
+ * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and the associated data.</p>
3668
+ * @public
3669
+ */
3670
+ kmsKeyArn?: string;
3671
+ /**
3672
+ * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3673
+ * <p>The following basic restrictions apply to tags:</p>
3674
+ * <ul>
3675
+ * <li>
3676
+ * <p>Maximum number of tags per resource - 50.</p>
3677
+ * </li>
3678
+ * <li>
3679
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
3680
+ * </li>
3681
+ * <li>
3682
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
3683
+ * </li>
3684
+ * <li>
3685
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
3686
+ * </li>
3687
+ * <li>
3688
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
3689
+ * </li>
3690
+ * <li>
3691
+ * <p>Tag keys and values are case sensitive.</p>
3692
+ * </li>
3693
+ * <li>
3694
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
3695
+ * </li>
3696
+ * </ul>
3697
+ * @public
3698
+ */
3699
+ tags?: Record<string, string>;
3700
+ }
3701
+ /**
3702
+ * @public
3703
+ */
3704
+ export interface CreateTrainedModelResponse {
3705
+ /**
3706
+ * <p>The Amazon Resource Name (ARN) of the trained model.</p>
3707
+ * @public
3708
+ */
3709
+ trainedModelArn: string | undefined;
3710
+ }
3711
+ /**
3712
+ * @public
3713
+ */
3714
+ export interface DeleteTrainedModelOutputRequest {
3715
+ /**
3716
+ * <p>The Amazon Resource Name (ARN) of the trained model whose output you want to delete.</p>
3717
+ * @public
3718
+ */
3719
+ trainedModelArn: string | undefined;
3720
+ /**
3721
+ * <p>The membership ID of the member that is deleting the trained model output.</p>
3722
+ * @public
3723
+ */
3724
+ membershipIdentifier: string | undefined;
3725
+ }
3726
+ /**
3727
+ * @public
3728
+ */
3729
+ export interface GetCollaborationTrainedModelRequest {
3730
+ /**
3731
+ * <p>The Amazon Resource Name (ARN) of the trained model that you want to return information about.</p>
3732
+ * @public
3733
+ */
3734
+ trainedModelArn: string | undefined;
3735
+ /**
3736
+ * <p>The collaboration ID that contains the trained model that you want to return information about.</p>
3737
+ * @public
3738
+ */
3739
+ collaborationIdentifier: string | undefined;
3740
+ }
3741
+ /**
3742
+ * @public
3743
+ */
3744
+ export interface GetCollaborationTrainedModelResponse {
3745
+ /**
3746
+ * <p>The membership ID of the member that created the trained model.</p>
3747
+ * @public
3748
+ */
3749
+ membershipIdentifier: string | undefined;
3750
+ /**
3751
+ * <p>The collaboration ID of the collaboration that contains the trained model.</p>
3752
+ * @public
3753
+ */
3754
+ collaborationIdentifier: string | undefined;
3755
+ /**
3756
+ * <p>The Amazon Resource Name (ARN) of the trained model.</p>
3757
+ * @public
3758
+ */
3759
+ trainedModelArn: string | undefined;
3760
+ /**
3761
+ * <p>The name of the trained model.</p>
3762
+ * @public
3763
+ */
3764
+ name: string | undefined;
3765
+ /**
3766
+ * <p>The description of the trained model.</p>
3767
+ * @public
3768
+ */
3769
+ description?: string;
3770
+ /**
3771
+ * <p>The status of the trained model.</p>
3772
+ * @public
3773
+ */
3774
+ status: TrainedModelStatus | undefined;
3775
+ /**
3776
+ * <p>Details about the status of a resource.</p>
3777
+ * @public
3778
+ */
3779
+ statusDetails?: StatusDetails;
3780
+ /**
3781
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used to create this trained model.</p>
3782
+ * @public
3783
+ */
3784
+ configuredModelAlgorithmAssociationArn: string | undefined;
3785
+ /**
3786
+ * <p>The EC2 resource configuration that was used to train this model.</p>
3787
+ * @public
3788
+ */
3789
+ resourceConfig?: ResourceConfig;
3790
+ /**
3791
+ * <p>The stopping condition that determined when model training ended.</p>
3792
+ * @public
3793
+ */
3794
+ stoppingCondition?: StoppingCondition;
3795
+ /**
3796
+ * <p>The status of the model metrics.</p>
3797
+ * @public
3798
+ */
3799
+ metricsStatus?: MetricsStatus;
3800
+ /**
3801
+ * <p>Details about the status information for the model metrics.</p>
3802
+ * @public
3803
+ */
3804
+ metricsStatusDetails?: string;
3805
+ /**
3806
+ * <p>Status information for the logs.</p>
3807
+ * @public
3808
+ */
3809
+ logsStatus?: LogsStatus;
3810
+ /**
3811
+ * <p>Details about the status information for the logs.</p>
3812
+ * @public
3813
+ */
3814
+ logsStatusDetails?: string;
3815
+ /**
3816
+ * <p>Information about the training container image.</p>
3817
+ * @public
3818
+ */
3819
+ trainingContainerImageDigest?: string;
3820
+ /**
3821
+ * <p>The time at which the trained model was created.</p>
3822
+ * @public
3823
+ */
3824
+ createTime: Date | undefined;
3825
+ /**
3826
+ * <p>The most recent time at which the trained model was updated.</p>
3827
+ * @public
3828
+ */
3829
+ updateTime: Date | undefined;
3830
+ /**
3831
+ * <p>The account ID of the member that created the trained model.</p>
3832
+ * @public
3833
+ */
3834
+ creatorAccountId: string | undefined;
3835
+ }
3836
+ /**
3837
+ * @public
3838
+ */
3839
+ export interface GetTrainedModelRequest {
3840
+ /**
3841
+ * <p>The Amazon Resource Name (ARN) of the trained model that you are interested in.</p>
3842
+ * @public
3843
+ */
3844
+ trainedModelArn: string | undefined;
3845
+ /**
3846
+ * <p>The membership ID of the member that created the trained model that you are interested in.</p>
3847
+ * @public
3848
+ */
3849
+ membershipIdentifier: string | undefined;
3850
+ }
3851
+ /**
3852
+ * @public
3853
+ */
3854
+ export interface GetTrainedModelResponse {
3855
+ /**
3856
+ * <p>The membership ID of the member that created the trained model.</p>
3857
+ * @public
3858
+ */
3859
+ membershipIdentifier: string | undefined;
3860
+ /**
3861
+ * <p>The collaboration ID of the collaboration that contains the trained model.</p>
3862
+ * @public
3863
+ */
3864
+ collaborationIdentifier: string | undefined;
3865
+ /**
3866
+ * <p>The Amazon Resource Name (ARN) of the trained model.</p>
3867
+ * @public
3868
+ */
3869
+ trainedModelArn: string | undefined;
3870
+ /**
3871
+ * <p>The name of the trained model.</p>
3872
+ * @public
3873
+ */
3874
+ name: string | undefined;
3875
+ /**
3876
+ * <p>The description of the trained model.</p>
3877
+ * @public
3878
+ */
3879
+ description?: string;
3880
+ /**
3881
+ * <p>The status of the trained model.</p>
3882
+ * @public
3883
+ */
3884
+ status: TrainedModelStatus | undefined;
3885
+ /**
3886
+ * <p>Details about the status of a resource.</p>
3887
+ * @public
3888
+ */
3889
+ statusDetails?: StatusDetails;
3890
+ /**
3891
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used to create the trained model.</p>
3892
+ * @public
3893
+ */
3894
+ configuredModelAlgorithmAssociationArn: string | undefined;
3895
+ /**
3896
+ * <p>The EC2 resource configuration that was used to create the trained model.</p>
3897
+ * @public
3898
+ */
3899
+ resourceConfig?: ResourceConfig;
3900
+ /**
3901
+ * <p>The stopping condition that was used to terminate model training.</p>
3902
+ * @public
3903
+ */
3904
+ stoppingCondition?: StoppingCondition;
3905
+ /**
3906
+ * <p>The status of the model metrics.</p>
3907
+ * @public
3908
+ */
3909
+ metricsStatus?: MetricsStatus;
3910
+ /**
3911
+ * <p>Details about the metrics status for the trained model.</p>
3912
+ * @public
3913
+ */
3914
+ metricsStatusDetails?: string;
3915
+ /**
3916
+ * <p>The logs status for the trained model.</p>
3917
+ * @public
3918
+ */
3919
+ logsStatus?: LogsStatus;
3920
+ /**
3921
+ * <p>Details about the logs status for the trained model.</p>
3922
+ * @public
3923
+ */
3924
+ logsStatusDetails?: string;
3925
+ /**
3926
+ * <p>Information about the training image container.</p>
3927
+ * @public
3928
+ */
3929
+ trainingContainerImageDigest?: string;
3930
+ /**
3931
+ * <p>The time at which the trained model was created.</p>
3932
+ * @public
3933
+ */
3934
+ createTime: Date | undefined;
3935
+ /**
3936
+ * <p>The most recent time at which the trained model was updated.</p>
3937
+ * @public
3938
+ */
3939
+ updateTime: Date | undefined;
3940
+ /**
3941
+ * <p>The hyperparameters that were used to create the trained model.</p>
3942
+ * @public
3943
+ */
3944
+ hyperparameters?: Record<string, string>;
3945
+ /**
3946
+ * <p>The EC2 environment that was used to create the trained model.</p>
3947
+ * @public
3948
+ */
3949
+ environment?: Record<string, string>;
3950
+ /**
3951
+ * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and associated data.</p>
3952
+ * @public
3953
+ */
3954
+ kmsKeyArn?: string;
3955
+ /**
3956
+ * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3957
+ * <p>The following basic restrictions apply to tags:</p>
3958
+ * <ul>
3959
+ * <li>
3960
+ * <p>Maximum number of tags per resource - 50.</p>
3961
+ * </li>
3962
+ * <li>
3963
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
3964
+ * </li>
3965
+ * <li>
3966
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
3967
+ * </li>
3968
+ * <li>
3969
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
3970
+ * </li>
3971
+ * <li>
3972
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
3973
+ * </li>
3974
+ * <li>
3975
+ * <p>Tag keys and values are case sensitive.</p>
3976
+ * </li>
3977
+ * <li>
3978
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
3979
+ * </li>
3980
+ * </ul>
3981
+ * @public
3982
+ */
3983
+ tags?: Record<string, string>;
3984
+ /**
3985
+ * <p>The data channels that were used for the trained model.</p>
3986
+ * @public
3987
+ */
3988
+ dataChannels: ModelTrainingDataChannel[] | undefined;
3989
+ }
3990
+ /**
3991
+ * @public
3992
+ */
3993
+ export interface ListTrainedModelsRequest {
3994
+ /**
3995
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
3996
+ * @public
3997
+ */
3998
+ nextToken?: string;
3999
+ /**
4000
+ * <p>The maximum size of the results that is returned per call.</p>
4001
+ * @public
4002
+ */
4003
+ maxResults?: number;
4004
+ /**
4005
+ * <p>The membership ID of the member that created the trained models you are interested in.</p>
4006
+ * @public
4007
+ */
4008
+ membershipIdentifier: string | undefined;
4009
+ }
4010
+ /**
4011
+ * <p>Summary information about the trained model.</p>
4012
+ * @public
4013
+ */
4014
+ export interface TrainedModelSummary {
4015
+ /**
4016
+ * <p>The time at which the trained model was created.</p>
4017
+ * @public
4018
+ */
4019
+ createTime: Date | undefined;
4020
+ /**
4021
+ * <p>The most recent time at which the trained model was updated.</p>
4022
+ * @public
4023
+ */
4024
+ updateTime: Date | undefined;
4025
+ /**
4026
+ * <p>The Amazon Resource Name (ARN) of the trained model.</p>
4027
+ * @public
4028
+ */
4029
+ trainedModelArn: string | undefined;
4030
+ /**
4031
+ * <p>The name of the trained model.</p>
4032
+ * @public
4033
+ */
4034
+ name: string | undefined;
4035
+ /**
4036
+ * <p>The description of the trained model.</p>
4037
+ * @public
4038
+ */
4039
+ description?: string;
4040
+ /**
4041
+ * <p>The membership ID of the member that created the trained model.</p>
4042
+ * @public
4043
+ */
4044
+ membershipIdentifier: string | undefined;
4045
+ /**
4046
+ * <p>The collaboration ID of the collaboration that contains the trained model.</p>
4047
+ * @public
4048
+ */
4049
+ collaborationIdentifier: string | undefined;
4050
+ /**
4051
+ * <p>The status of the trained model.</p>
4052
+ * @public
4053
+ */
4054
+ status: TrainedModelStatus | undefined;
4055
+ /**
4056
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used to create this trained model.</p>
4057
+ * @public
4058
+ */
4059
+ configuredModelAlgorithmAssociationArn: string | undefined;
4060
+ }
4061
+ /**
4062
+ * @public
4063
+ */
4064
+ export interface ListTrainedModelsResponse {
4065
+ /**
4066
+ * <p>The token value used to access the next page of results.</p>
4067
+ * @public
4068
+ */
4069
+ nextToken?: string;
4070
+ /**
4071
+ * <p>The list of trained models.</p>
4072
+ * @public
4073
+ */
4074
+ trainedModels: TrainedModelSummary[] | undefined;
4075
+ }
4076
+ /**
4077
+ * @public
4078
+ */
4079
+ export interface StartTrainedModelExportJobRequest {
4080
+ /**
4081
+ * <p>The name of the trained model export job.</p>
4082
+ * @public
4083
+ */
4084
+ name: string | undefined;
4085
+ /**
4086
+ * <p>The Amazon Resource Name (ARN) of the trained model that you want to export.</p>
4087
+ * @public
4088
+ */
4089
+ trainedModelArn: string | undefined;
4090
+ /**
4091
+ * <p>The membership ID of the member that is receiving the exported trained model artifacts.</p>
4092
+ * @public
4093
+ */
4094
+ membershipIdentifier: string | undefined;
4095
+ /**
4096
+ * <p>The output configuration information for the trained model export job.</p>
4097
+ * @public
4098
+ */
4099
+ outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
4100
+ /**
4101
+ * <p>The description of the trained model export job.</p>
4102
+ * @public
4103
+ */
4104
+ description?: string;
4105
+ }
4106
+ /**
4107
+ * @public
4108
+ */
4109
+ export interface CancelTrainedModelInferenceJobRequest {
4110
+ /**
4111
+ * <p>The membership ID of the trained model inference job that you want to cancel.</p>
4112
+ * @public
4113
+ */
4114
+ membershipIdentifier: string | undefined;
4115
+ /**
4116
+ * <p>The Amazon Resource Name (ARN) of the trained model inference job that you want to cancel.</p>
4117
+ * @public
4118
+ */
4119
+ trainedModelInferenceJobArn: string | undefined;
4120
+ }
4121
+ /**
4122
+ * @public
4123
+ */
4124
+ export interface GetTrainedModelInferenceJobRequest {
4125
+ /**
4126
+ * <p>Provides the membership ID of the membership that contains the trained model inference job that you are interested in.</p>
4127
+ * @public
4128
+ */
4129
+ membershipIdentifier: string | undefined;
4130
+ /**
4131
+ * <p>Provides the Amazon Resource Name (ARN) of the trained model inference job that you are interested in.</p>
4132
+ * @public
4133
+ */
4134
+ trainedModelInferenceJobArn: string | undefined;
4135
+ }
4136
+ /**
4137
+ * <p>Provides execution parameters for the inference container.</p>
4138
+ * @public
4139
+ */
4140
+ export interface InferenceContainerExecutionParameters {
4141
+ /**
4142
+ * <p>The maximum size of the inference container payload, specified in MB. </p>
4143
+ * @public
4144
+ */
4145
+ maxPayloadInMB?: number;
4146
+ }
4147
+ /**
4148
+ * <p>Defines information about the data source used for model inference.</p>
4149
+ * @public
4150
+ */
4151
+ export interface ModelInferenceDataSource {
4152
+ /**
4153
+ * <p>The Amazon Resource Name (ARN) of the ML input channel for this model inference data source.</p>
4154
+ * @public
4155
+ */
4156
+ mlInputChannelArn: string | undefined;
4157
+ }
4158
+ /**
4159
+ * @public
4160
+ * @enum
4161
+ */
4162
+ export declare const InferenceInstanceType: {
4163
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
4164
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
4165
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
4166
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
4167
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
4168
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
4169
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
4170
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
4171
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
4172
+ readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
4173
+ readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
4174
+ readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
4175
+ readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
4176
+ readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
4177
+ readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
4178
+ readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
4179
+ readonly ML_C6I_LARGE: "ml.c6i.large";
4180
+ readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
4181
+ readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
4182
+ readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
4183
+ readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
4184
+ readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
4185
+ readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
4186
+ readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
4187
+ readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
4188
+ readonly ML_C7I_LARGE: "ml.c7i.large";
4189
+ readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
4190
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
4191
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
4192
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
4193
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
4194
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
4195
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
4196
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
4197
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
4198
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
4199
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
4200
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
4201
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
4202
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
4203
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
4204
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
4205
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
4206
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
4207
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
4208
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
4209
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
4210
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
4211
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
4212
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
4213
+ readonly ML_M5_LARGE: "ml.m5.large";
4214
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
4215
+ readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
4216
+ readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
4217
+ readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
4218
+ readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
4219
+ readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
4220
+ readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
4221
+ readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
4222
+ readonly ML_M6I_LARGE: "ml.m6i.large";
4223
+ readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
4224
+ readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
4225
+ readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
4226
+ readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
4227
+ readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
4228
+ readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
4229
+ readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
4230
+ readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
4231
+ readonly ML_M7I_LARGE: "ml.m7i.large";
4232
+ readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
4233
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
4234
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
4235
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
4236
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
4237
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
4238
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
4239
+ readonly ML_R6I_12XLARGE: "ml.r6i.12xlarge";
4240
+ readonly ML_R6I_16XLARGE: "ml.r6i.16xlarge";
4241
+ readonly ML_R6I_24XLARGE: "ml.r6i.24xlarge";
4242
+ readonly ML_R6I_2XLARGE: "ml.r6i.2xlarge";
4243
+ readonly ML_R6I_32XLARGE: "ml.r6i.32xlarge";
4244
+ readonly ML_R6I_4XLARGE: "ml.r6i.4xlarge";
4245
+ readonly ML_R6I_8XLARGE: "ml.r6i.8xlarge";
4246
+ readonly ML_R6I_LARGE: "ml.r6i.large";
4247
+ readonly ML_R6I_XLARGE: "ml.r6i.xlarge";
4248
+ readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
4249
+ readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
4250
+ readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
4251
+ readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
4252
+ readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
4253
+ readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
4254
+ readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
4255
+ readonly ML_R7I_LARGE: "ml.r7i.large";
4256
+ readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
4257
+ };
4258
+ /**
4259
+ * @public
4260
+ */
4261
+ export type InferenceInstanceType = (typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
4262
+ /**
4263
+ * <p>Defines the resources used to perform model inference.</p>
4264
+ * @public
4265
+ */
4266
+ export interface InferenceResourceConfig {
4267
+ /**
4268
+ * <p>The type of instance that is used to perform model inference.</p>
4269
+ * @public
4270
+ */
4271
+ instanceType: InferenceInstanceType | undefined;
4272
+ /**
4273
+ * <p>The number of instances to use.</p>
4274
+ * @public
4275
+ */
4276
+ instanceCount?: number;
4277
+ }
4278
+ /**
4279
+ * @public
4280
+ */
4281
+ export interface GetTrainedModelInferenceJobResponse {
4282
+ /**
4283
+ * <p>The time at which the trained model inference job was created.</p>
4284
+ * @public
4285
+ */
4286
+ createTime: Date | undefined;
4287
+ /**
4288
+ * <p>The most recent time at which the trained model inference job was updated.</p>
4289
+ * @public
4290
+ */
4291
+ updateTime: Date | undefined;
4292
+ /**
4293
+ * <p>The Amazon Resource Name (ARN) of the trained model inference job.</p>
4294
+ * @public
4295
+ */
4296
+ trainedModelInferenceJobArn: string | undefined;
4297
+ /**
4298
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used for the trained model inference job.</p>
4299
+ * @public
4300
+ */
4301
+ configuredModelAlgorithmAssociationArn?: string;
4302
+ /**
4303
+ * <p>The name of the trained model inference job.</p>
4304
+ * @public
4305
+ */
4306
+ name: string | undefined;
4307
+ /**
4308
+ * <p>The status of the trained model inference job.</p>
4309
+ * @public
4310
+ */
4311
+ status: TrainedModelInferenceJobStatus | undefined;
4312
+ /**
4313
+ * <p>The Amazon Resource Name (ARN) for the trained model that was used for the trained model inference job.</p>
4314
+ * @public
4315
+ */
4316
+ trainedModelArn: string | undefined;
4317
+ /**
4318
+ * <p>The resource configuration information for the trained model inference job.</p>
4319
+ * @public
4320
+ */
4321
+ resourceConfig: InferenceResourceConfig | undefined;
4322
+ /**
4323
+ * <p>The output configuration information for the trained model inference job.</p>
4324
+ * @public
4325
+ */
4326
+ outputConfiguration: InferenceOutputConfiguration | undefined;
4327
+ /**
4328
+ * <p>The membership ID of the membership that contains the trained model inference job.</p>
4329
+ * @public
4330
+ */
4331
+ membershipIdentifier: string | undefined;
4332
+ /**
4333
+ * <p>The data source that was used for the trained model inference job.</p>
4334
+ * @public
4335
+ */
4336
+ dataSource: ModelInferenceDataSource | undefined;
4337
+ /**
4338
+ * <p>The execution parameters for the model inference job container.</p>
4339
+ * @public
4340
+ */
4341
+ containerExecutionParameters?: InferenceContainerExecutionParameters;
4342
+ /**
4343
+ * <p>Details about the status of a resource.</p>
4344
+ * @public
4345
+ */
4346
+ statusDetails?: StatusDetails;
4347
+ /**
4348
+ * <p>The description of the trained model inference job.</p>
4349
+ * @public
4350
+ */
4351
+ description?: string;
4352
+ /**
4353
+ * <p>Information about the training container image.</p>
4354
+ * @public
4355
+ */
4356
+ inferenceContainerImageDigest?: string;
4357
+ /**
4358
+ * <p>The environment variables to set in the Docker container.</p>
4359
+ * @public
4360
+ */
4361
+ environment?: Record<string, string>;
4362
+ /**
4363
+ * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the ML inference job and associated data.</p>
4364
+ * @public
4365
+ */
4366
+ kmsKeyArn?: string;
4367
+ /**
4368
+ * <p>The metrics status for the trained model inference job.</p>
4369
+ * @public
4370
+ */
4371
+ metricsStatus?: MetricsStatus;
4372
+ /**
4373
+ * <p>Details about the metrics status for the trained model inference job.</p>
4374
+ * @public
4375
+ */
4376
+ metricsStatusDetails?: string;
4377
+ /**
4378
+ * <p>The logs status for the trained model inference job.</p>
4379
+ * @public
4380
+ */
4381
+ logsStatus?: LogsStatus;
4382
+ /**
4383
+ * <p>Details about the logs status for the trained model inference job.</p>
4384
+ * @public
4385
+ */
4386
+ logsStatusDetails?: string;
4387
+ /**
4388
+ * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
4389
+ * <p>The following basic restrictions apply to tags:</p>
4390
+ * <ul>
4391
+ * <li>
4392
+ * <p>Maximum number of tags per resource - 50.</p>
4393
+ * </li>
4394
+ * <li>
4395
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
4396
+ * </li>
4397
+ * <li>
4398
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
4399
+ * </li>
4400
+ * <li>
4401
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
4402
+ * </li>
4403
+ * <li>
4404
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
4405
+ * </li>
4406
+ * <li>
4407
+ * <p>Tag keys and values are case sensitive.</p>
4408
+ * </li>
4409
+ * <li>
4410
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
4411
+ * </li>
4412
+ * </ul>
4413
+ * @public
4414
+ */
4415
+ tags?: Record<string, string>;
4416
+ }
4417
+ /**
4418
+ * @public
4419
+ */
4420
+ export interface ListTrainedModelInferenceJobsRequest {
4421
+ /**
4422
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
4423
+ * @public
4424
+ */
4425
+ nextToken?: string;
4426
+ /**
4427
+ * <p>The maximum size of the results that is returned per call.</p>
4428
+ * @public
4429
+ */
4430
+ maxResults?: number;
4431
+ /**
4432
+ * <p>The membership </p>
4433
+ * @public
4434
+ */
4435
+ membershipIdentifier: string | undefined;
4436
+ /**
4437
+ * <p>The Amazon Resource Name (ARN) of a trained model that was used to create the trained model inference jobs that you are interested in.</p>
4438
+ * @public
4439
+ */
4440
+ trainedModelArn?: string;
4441
+ }
4442
+ /**
4443
+ * <p>Provides information about the trained model inference job.</p>
4444
+ * @public
4445
+ */
4446
+ export interface TrainedModelInferenceJobSummary {
4447
+ /**
4448
+ * <p>The Amazon Resource Name (ARN) of the trained model inference job.</p>
4449
+ * @public
4450
+ */
4451
+ trainedModelInferenceJobArn: string | undefined;
4452
+ /**
4453
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for the trained model inference job.</p>
4454
+ * @public
4455
+ */
4456
+ configuredModelAlgorithmAssociationArn?: string;
4457
+ /**
4458
+ * <p>The membership ID of the membership that contains the trained model inference job.</p>
4459
+ * @public
4460
+ */
4461
+ membershipIdentifier: string | undefined;
4462
+ /**
4463
+ * <p>The Amazon Resource Name (ARN) of the trained model that is used for the trained model inference job.</p>
4464
+ * @public
4465
+ */
4466
+ trainedModelArn: string | undefined;
4467
+ /**
4468
+ * <p>The collaboration ID of the collaboration that contains the trained model inference job.</p>
4469
+ * @public
4470
+ */
4471
+ collaborationIdentifier: string | undefined;
4472
+ /**
4473
+ * <p>The status of the trained model inference job.</p>
4474
+ * @public
4475
+ */
4476
+ status: TrainedModelInferenceJobStatus | undefined;
4477
+ /**
4478
+ * <p>The output configuration information of the trained model job.</p>
4479
+ * @public
4480
+ */
4481
+ outputConfiguration: InferenceOutputConfiguration | undefined;
4482
+ /**
4483
+ * <p>The name of the trained model inference job.</p>
4484
+ * @public
4485
+ */
4486
+ name: string | undefined;
4487
+ /**
4488
+ * <p>The description of the trained model inference job.</p>
4489
+ * @public
4490
+ */
4491
+ description?: string;
4492
+ /**
4493
+ * <p>The metric status of the trained model inference job.</p>
4494
+ * @public
4495
+ */
4496
+ metricsStatus?: MetricsStatus;
4497
+ /**
4498
+ * <p>Details about the metrics status for the trained model inference job.</p>
4499
+ * @public
4500
+ */
4501
+ metricsStatusDetails?: string;
4502
+ /**
4503
+ * <p>The log status of the trained model inference job.</p>
4504
+ * @public
4505
+ */
4506
+ logsStatus?: LogsStatus;
4507
+ /**
4508
+ * <p>Details about the log status for the trained model inference job.</p>
4509
+ * @public
4510
+ */
4511
+ logsStatusDetails?: string;
4512
+ /**
4513
+ * <p>The time at which the trained model inference job was created.</p>
4514
+ * @public
4515
+ */
4516
+ createTime: Date | undefined;
4517
+ /**
4518
+ * <p>The most recent time at which the trained model inference job was updated.</p>
4519
+ * @public
4520
+ */
4521
+ updateTime: Date | undefined;
4522
+ }
4523
+ /**
4524
+ * @public
4525
+ */
4526
+ export interface ListTrainedModelInferenceJobsResponse {
4527
+ /**
4528
+ * <p>The token value used to access the next page of results.</p>
4529
+ * @public
4530
+ */
4531
+ nextToken?: string;
4532
+ /**
4533
+ * <p>Returns the requested trained model inference jobs.</p>
4534
+ * @public
4535
+ */
4536
+ trainedModelInferenceJobs: TrainedModelInferenceJobSummary[] | undefined;
4537
+ }
4538
+ /**
4539
+ * @public
4540
+ */
4541
+ export interface StartTrainedModelInferenceJobRequest {
4542
+ /**
4543
+ * <p>The membership ID of the membership that contains the trained model inference job.</p>
4544
+ * @public
4545
+ */
4546
+ membershipIdentifier: string | undefined;
4547
+ /**
4548
+ * <p>The name of the trained model inference job.</p>
4549
+ * @public
4550
+ */
4551
+ name: string | undefined;
4552
+ /**
4553
+ * <p>The Amazon Resource Name (ARN) of the trained model that is used for this trained model inference job.</p>
4554
+ * @public
4555
+ */
4556
+ trainedModelArn: string | undefined;
4557
+ /**
4558
+ * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for this trained model inference job.</p>
4559
+ * @public
4560
+ */
4561
+ configuredModelAlgorithmAssociationArn?: string;
4562
+ /**
4563
+ * <p>Defines the resource configuration for the trained model inference job.</p>
4564
+ * @public
4565
+ */
4566
+ resourceConfig: InferenceResourceConfig | undefined;
4567
+ /**
4568
+ * <p>Defines the output configuration information for the trained model inference job.</p>
4569
+ * @public
4570
+ */
4571
+ outputConfiguration: InferenceOutputConfiguration | undefined;
4572
+ /**
4573
+ * <p>Defines he data source that is used for the trained model inference job.</p>
4574
+ * @public
4575
+ */
4576
+ dataSource: ModelInferenceDataSource | undefined;
4577
+ /**
4578
+ * <p>The description of the trained model inference job.</p>
4579
+ * @public
4580
+ */
4581
+ description?: string;
4582
+ /**
4583
+ * <p>The execution parameters for the container.</p>
4584
+ * @public
4585
+ */
4586
+ containerExecutionParameters?: InferenceContainerExecutionParameters;
4587
+ /**
4588
+ * <p>The environment variables to set in the Docker container.</p>
4589
+ * @public
4590
+ */
4591
+ environment?: Record<string, string>;
4592
+ /**
4593
+ * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the ML inference job and associated data.</p>
4594
+ * @public
4595
+ */
4596
+ kmsKeyArn?: string;
4597
+ /**
4598
+ * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
4599
+ * <p>The following basic restrictions apply to tags:</p>
4600
+ * <ul>
4601
+ * <li>
4602
+ * <p>Maximum number of tags per resource - 50.</p>
4603
+ * </li>
4604
+ * <li>
4605
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
4606
+ * </li>
4607
+ * <li>
4608
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
4609
+ * </li>
4610
+ * <li>
4611
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
4612
+ * </li>
4613
+ * <li>
4614
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
4615
+ * </li>
4616
+ * <li>
4617
+ * <p>Tag keys and values are case sensitive.</p>
4618
+ * </li>
4619
+ * <li>
4620
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
4621
+ * </li>
4622
+ * </ul>
4623
+ * @public
4624
+ */
4625
+ tags?: Record<string, string>;
4626
+ }
4627
+ /**
4628
+ * @public
4629
+ */
4630
+ export interface StartTrainedModelInferenceJobResponse {
4631
+ /**
4632
+ * <p>The Amazon Resource Name (ARN) of the trained model inference job.</p>
4633
+ * @public
4634
+ */
4635
+ trainedModelInferenceJobArn: string | undefined;
4636
+ }
4637
+ /**
4638
+ * <p>Defines the Glue data source that contains the training data.</p>
4639
+ * @public
4640
+ */
4641
+ export interface GlueDataSource {
4642
+ /**
4643
+ * <p>The Glue table that contains the training data.</p>
4644
+ * @public
4645
+ */
4646
+ tableName: string | undefined;
4647
+ /**
4648
+ * <p>The Glue database that contains the training data.</p>
4649
+ * @public
4650
+ */
4651
+ databaseName: string | undefined;
4652
+ /**
4653
+ * <p>The Glue catalog that contains the training data.</p>
4654
+ * @public
4655
+ */
4656
+ catalogId?: string;
4657
+ }
4658
+ /**
4659
+ * <p>Defines information about the Glue data source that contains the training data.</p>
4660
+ * @public
4661
+ */
4662
+ export interface DataSource {
4663
+ /**
4664
+ * <p>A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.</p>
4665
+ * @public
4666
+ */
4667
+ glueDataSource: GlueDataSource | undefined;
4668
+ }
4669
+ /**
4670
+ * @public
4671
+ * @enum
4672
+ */
4673
+ export declare const ColumnType: {
4674
+ readonly CATEGORICAL_FEATURE: "CATEGORICAL_FEATURE";
4675
+ readonly ITEM_ID: "ITEM_ID";
4676
+ readonly NUMERICAL_FEATURE: "NUMERICAL_FEATURE";
4677
+ readonly TIMESTAMP: "TIMESTAMP";
4678
+ readonly USER_ID: "USER_ID";
4679
+ };
4680
+ /**
4681
+ * @public
4682
+ */
4683
+ export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
4684
+ /**
4685
+ * <p>Metadata for a column.</p>
4686
+ * @public
4687
+ */
4688
+ export interface ColumnSchema {
4689
+ /**
4690
+ * <p>The name of a column.</p>
4691
+ * @public
4692
+ */
4693
+ columnName: string | undefined;
4694
+ /**
4695
+ * <p>The data type of column.</p>
4696
+ * @public
4697
+ */
4698
+ columnTypes: ColumnType[] | undefined;
4699
+ }
4700
+ /**
4701
+ * <p>Defines the Glue data source and schema mapping information.</p>
4702
+ * @public
4703
+ */
4704
+ export interface DatasetInputConfig {
4705
+ /**
4706
+ * <p>The schema information for the training data.</p>
4707
+ * @public
4708
+ */
4709
+ schema: ColumnSchema[] | undefined;
4710
+ /**
4711
+ * <p>A DataSource object that specifies the Glue data source for the training data.</p>
4712
+ * @public
4713
+ */
4714
+ dataSource: DataSource | undefined;
4715
+ }
4716
+ /**
4717
+ * @public
4718
+ * @enum
4719
+ */
4720
+ export declare const DatasetType: {
4721
+ readonly INTERACTIONS: "INTERACTIONS";
4722
+ };
4723
+ /**
4724
+ * @public
4725
+ */
4726
+ export type DatasetType = (typeof DatasetType)[keyof typeof DatasetType];
4727
+ /**
4728
+ * <p>Defines where the training dataset is located, what type of data it contains, and how to access the data.</p>
4729
+ * @public
4730
+ */
4731
+ export interface Dataset {
4732
+ /**
4733
+ * <p>What type of information is found in the dataset.</p>
4734
+ * @public
4735
+ */
4736
+ type: DatasetType | undefined;
4737
+ /**
4738
+ * <p>A DatasetInputConfig object that defines the data source and schema mapping.</p>
4739
+ * @public
4740
+ */
4741
+ inputConfig: DatasetInputConfig | undefined;
4742
+ }
4743
+ /**
4744
+ * @public
4745
+ */
4746
+ export interface CreateTrainingDatasetRequest {
4747
+ /**
4748
+ * <p>The name of the training dataset. This name must be unique in your account and region.</p>
4749
+ * @public
4750
+ */
4751
+ name: string | undefined;
4752
+ /**
4753
+ * <p>The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the <code>dataSource</code> field of each dataset.</p>
4754
+ * <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
4755
+ * @public
4756
+ */
4757
+ roleArn: string | undefined;
4758
+ /**
4759
+ * <p>An array of information that lists the Dataset objects, which specifies the dataset type and details on its location and schema. You must provide a role that has read access to these tables.</p>
4760
+ * @public
4761
+ */
4762
+ trainingData: Dataset[] | undefined;
4763
+ /**
4764
+ * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
4765
+ * <p>The following basic restrictions apply to tags:</p>
4766
+ * <ul>
4767
+ * <li>
4768
+ * <p>Maximum number of tags per resource - 50.</p>
4769
+ * </li>
4770
+ * <li>
4771
+ * <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
4772
+ * </li>
4773
+ * <li>
4774
+ * <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
4775
+ * </li>
4776
+ * <li>
4777
+ * <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
4778
+ * </li>
4779
+ * <li>
4780
+ * <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
4781
+ * </li>
4782
+ * <li>
4783
+ * <p>Tag keys and values are case sensitive.</p>
4784
+ * </li>
4785
+ * <li>
4786
+ * <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
4787
+ * </li>
4788
+ * </ul>
4789
+ * @public
4790
+ */
4791
+ tags?: Record<string, string>;
4792
+ /**
4793
+ * <p>The description of the training dataset.</p>
4794
+ * @public
4795
+ */
4796
+ description?: string;
4797
+ }
4798
+ /**
4799
+ * @public
4800
+ */
4801
+ export interface CreateTrainingDatasetResponse {
4802
+ /**
4803
+ * <p>The Amazon Resource Name (ARN) of the training dataset resource.</p>
4804
+ * @public
4805
+ */
4806
+ trainingDatasetArn: string | undefined;
4807
+ }
4808
+ /**
4809
+ * @public
4810
+ */
4811
+ export interface DeleteTrainingDatasetRequest {
4812
+ /**
4813
+ * <p>The Amazon Resource Name (ARN) of the training dataset that you want to delete.</p>
4814
+ * @public
4815
+ */
4816
+ trainingDatasetArn: string | undefined;
4817
+ }
4818
+ /**
4819
+ * @public
4820
+ */
4821
+ export interface GetTrainingDatasetRequest {
4822
+ /**
4823
+ * <p>The Amazon Resource Name (ARN) of the training dataset that you are interested in.</p>
4824
+ * @public
4825
+ */
4826
+ trainingDatasetArn: string | undefined;
4827
+ }
4828
+ /**
4829
+ * @public
4830
+ * @enum
4831
+ */
4832
+ export declare const TrainingDatasetStatus: {
4833
+ readonly ACTIVE: "ACTIVE";
4834
+ };
4835
+ /**
4836
+ * @public
4837
+ */
4838
+ export type TrainingDatasetStatus = (typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];
4839
+ /**
4840
+ * @public
4841
+ */
4842
+ export interface GetTrainingDatasetResponse {
4843
+ /**
4844
+ * <p>The time at which the training dataset was created.</p>
4845
+ * @public
4846
+ */
4847
+ createTime: Date | undefined;
4848
+ /**
4849
+ * <p>The most recent time at which the training dataset was updated.</p>
4850
+ * @public
4851
+ */
4852
+ updateTime: Date | undefined;
4853
+ /**
4854
+ * <p>The Amazon Resource Name (ARN) of the training dataset.</p>
4855
+ * @public
4856
+ */
4857
+ trainingDatasetArn: string | undefined;
4858
+ /**
4859
+ * <p>The name of the training dataset.</p>
4860
+ * @public
4861
+ */
4862
+ name: string | undefined;
4863
+ /**
4864
+ * <p>Metadata about the requested training data. </p>
4865
+ * @public
4866
+ */
4867
+ trainingData: Dataset[] | undefined;
4868
+ /**
4869
+ * <p>The status of the training dataset.</p>
4870
+ * @public
4871
+ */
4872
+ status: TrainingDatasetStatus | undefined;
4873
+ /**
4874
+ * <p>The IAM role used to read the training data.</p>
4875
+ * @public
4876
+ */
4877
+ roleArn: string | undefined;
4878
+ /**
4879
+ * <p>The tags that are assigned to this training dataset.</p>
4880
+ * @public
4881
+ */
4882
+ tags?: Record<string, string>;
4883
+ /**
4884
+ * <p>The description of the training dataset.</p>
4885
+ * @public
4886
+ */
4887
+ description?: string;
4888
+ }
4889
+ /**
4890
+ * @public
4891
+ */
4892
+ export interface ListTrainingDatasetsRequest {
4893
+ /**
4894
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
4895
+ * @public
4896
+ */
4897
+ nextToken?: string;
4898
+ /**
4899
+ * <p>The maximum size of the results that is returned per call.</p>
4900
+ * @public
4901
+ */
4902
+ maxResults?: number;
4903
+ }
4904
+ /**
4905
+ * <p>Provides information about the training dataset.</p>
4906
+ * @public
4907
+ */
4908
+ export interface TrainingDatasetSummary {
4909
+ /**
4910
+ * <p>The time at which the training dataset was created.</p>
4911
+ * @public
4912
+ */
4913
+ createTime: Date | undefined;
4914
+ /**
4915
+ * <p>The most recent time at which the training dataset was updated.</p>
4916
+ * @public
4917
+ */
4918
+ updateTime: Date | undefined;
4919
+ /**
4920
+ * <p>The Amazon Resource Name (ARN) of the training dataset.</p>
4921
+ * @public
4922
+ */
4923
+ trainingDatasetArn: string | undefined;
4924
+ /**
4925
+ * <p>The name of the training dataset.</p>
4926
+ * @public
4927
+ */
4928
+ name: string | undefined;
4929
+ /**
4930
+ * <p>The status of the training dataset.</p>
4931
+ * @public
4932
+ */
4933
+ status: TrainingDatasetStatus | undefined;
4934
+ /**
4935
+ * <p>The description of the training dataset.</p>
4936
+ * @public
4937
+ */
4938
+ description?: string;
4939
+ }
4940
+ /**
4941
+ * @public
4942
+ */
4943
+ export interface ListTrainingDatasetsResponse {
4944
+ /**
4945
+ * <p>The token value used to access the next page of results.</p>
4946
+ * @public
4947
+ */
4948
+ nextToken?: string;
4949
+ /**
4950
+ * <p>The training datasets that match the request.</p>
4951
+ * @public
4952
+ */
4953
+ trainingDatasets: TrainingDatasetSummary[] | undefined;
4954
+ }
4955
+ /**
4956
+ * @public
4957
+ */
4958
+ export interface UntagResourceRequest {
4959
+ /**
4960
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.</p>
4961
+ * @public
4962
+ */
4963
+ resourceArn: string | undefined;
4964
+ /**
4965
+ * <p>The key values of tags that you want to remove.</p>
4966
+ * @public
4967
+ */
4968
+ tagKeys: string[] | undefined;
4969
+ }
4970
+ /**
4971
+ * @public
4972
+ */
4973
+ export interface UntagResourceResponse {
4974
+ }
4975
+ /**
1740
4976
  * @internal
1741
4977
  */
1742
4978
  export declare const ProtectedQuerySQLParametersFilterSensitiveLog: (obj: ProtectedQuerySQLParameters) => any;
@@ -1752,3 +4988,23 @@ export declare const GetAudienceGenerationJobResponseFilterSensitiveLog: (obj: G
1752
4988
  * @internal
1753
4989
  */
1754
4990
  export declare const StartAudienceGenerationJobRequestFilterSensitiveLog: (obj: StartAudienceGenerationJobRequest) => any;
4991
+ /**
4992
+ * @internal
4993
+ */
4994
+ export declare const ProtectedQueryInputParametersFilterSensitiveLog: (obj: ProtectedQueryInputParameters) => any;
4995
+ /**
4996
+ * @internal
4997
+ */
4998
+ export declare const InputChannelDataSourceFilterSensitiveLog: (obj: InputChannelDataSource) => any;
4999
+ /**
5000
+ * @internal
5001
+ */
5002
+ export declare const InputChannelFilterSensitiveLog: (obj: InputChannel) => any;
5003
+ /**
5004
+ * @internal
5005
+ */
5006
+ export declare const CreateMLInputChannelRequestFilterSensitiveLog: (obj: CreateMLInputChannelRequest) => any;
5007
+ /**
5008
+ * @internal
5009
+ */
5010
+ export declare const GetMLInputChannelResponseFilterSensitiveLog: (obj: GetMLInputChannelResponse) => any;