@aws-sdk/client-cleanroomsml 3.686.0 → 3.691.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 +264 -0
  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 +3512 -256
  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 +1028 -84
  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 +7 -7
@@ -0,0 +1,123 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient";
4
+ import { GetTrainedModelInferenceJobRequest, GetTrainedModelInferenceJobResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetTrainedModelInferenceJobCommand}.
14
+ */
15
+ export interface GetTrainedModelInferenceJobCommandInput extends GetTrainedModelInferenceJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTrainedModelInferenceJobCommand}.
21
+ */
22
+ export interface GetTrainedModelInferenceJobCommandOutput extends GetTrainedModelInferenceJobResponse, __MetadataBearer {
23
+ }
24
+ declare const GetTrainedModelInferenceJobCommand_base: {
25
+ new (input: GetTrainedModelInferenceJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrainedModelInferenceJobCommandInput, GetTrainedModelInferenceJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetTrainedModelInferenceJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrainedModelInferenceJobCommandInput, GetTrainedModelInferenceJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about a trained model inference job.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, GetTrainedModelInferenceJobCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetTrainedModelInferenceJobCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetTrainedModelInferenceJobRequest
38
+ * membershipIdentifier: "STRING_VALUE", // required
39
+ * trainedModelInferenceJobArn: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetTrainedModelInferenceJobCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetTrainedModelInferenceJobResponse
44
+ * // createTime: new Date("TIMESTAMP"), // required
45
+ * // updateTime: new Date("TIMESTAMP"), // required
46
+ * // trainedModelInferenceJobArn: "STRING_VALUE", // required
47
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE",
48
+ * // name: "STRING_VALUE", // required
49
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "CANCEL_PENDING" || "CANCEL_IN_PROGRESS" || "CANCEL_FAILED" || "INACTIVE", // required
50
+ * // trainedModelArn: "STRING_VALUE", // required
51
+ * // resourceConfig: { // InferenceResourceConfig
52
+ * // instanceType: "ml.r7i.48xlarge" || "ml.r6i.16xlarge" || "ml.m6i.xlarge" || "ml.m5.4xlarge" || "ml.p2.xlarge" || "ml.m4.16xlarge" || "ml.r7i.16xlarge" || "ml.m7i.xlarge" || "ml.m6i.12xlarge" || "ml.r7i.8xlarge" || "ml.r7i.large" || "ml.m7i.12xlarge" || "ml.m6i.24xlarge" || "ml.m7i.24xlarge" || "ml.r6i.8xlarge" || "ml.r6i.large" || "ml.g5.2xlarge" || "ml.m5.large" || "ml.p3.16xlarge" || "ml.m7i.48xlarge" || "ml.m6i.16xlarge" || "ml.p2.16xlarge" || "ml.g5.4xlarge" || "ml.m7i.16xlarge" || "ml.c4.2xlarge" || "ml.c5.2xlarge" || "ml.c6i.32xlarge" || "ml.c4.4xlarge" || "ml.g5.8xlarge" || "ml.c6i.xlarge" || "ml.c5.4xlarge" || "ml.g4dn.xlarge" || "ml.c7i.xlarge" || "ml.c6i.12xlarge" || "ml.g4dn.12xlarge" || "ml.c7i.12xlarge" || "ml.c6i.24xlarge" || "ml.g4dn.2xlarge" || "ml.c7i.24xlarge" || "ml.c7i.2xlarge" || "ml.c4.8xlarge" || "ml.c6i.2xlarge" || "ml.g4dn.4xlarge" || "ml.c7i.48xlarge" || "ml.c7i.4xlarge" || "ml.c6i.16xlarge" || "ml.c5.9xlarge" || "ml.g4dn.16xlarge" || "ml.c7i.16xlarge" || "ml.c6i.4xlarge" || "ml.c5.xlarge" || "ml.c4.xlarge" || "ml.g4dn.8xlarge" || "ml.c7i.8xlarge" || "ml.c7i.large" || "ml.g5.xlarge" || "ml.c6i.8xlarge" || "ml.c6i.large" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.m7i.2xlarge" || "ml.c5.18xlarge" || "ml.g5.48xlarge" || "ml.m6i.2xlarge" || "ml.g5.16xlarge" || "ml.m7i.4xlarge" || "ml.p3.2xlarge" || "ml.r6i.32xlarge" || "ml.m6i.4xlarge" || "ml.m5.xlarge" || "ml.m4.10xlarge" || "ml.r6i.xlarge" || "ml.m5.12xlarge" || "ml.m4.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.xlarge" || "ml.r6i.12xlarge" || "ml.m5.24xlarge" || "ml.r7i.12xlarge" || "ml.m7i.8xlarge" || "ml.m7i.large" || "ml.r6i.24xlarge" || "ml.r6i.2xlarge" || "ml.m4.2xlarge" || "ml.r7i.24xlarge" || "ml.r7i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.large" || "ml.m5.2xlarge" || "ml.p2.8xlarge" || "ml.r6i.4xlarge" || "ml.m6i.32xlarge" || "ml.p3.8xlarge" || "ml.m4.4xlarge", // required
53
+ * // instanceCount: Number("int"),
54
+ * // },
55
+ * // outputConfiguration: { // InferenceOutputConfiguration
56
+ * // accept: "STRING_VALUE",
57
+ * // members: [ // InferenceReceiverMembers // required
58
+ * // { // InferenceReceiverMember
59
+ * // accountId: "STRING_VALUE", // required
60
+ * // },
61
+ * // ],
62
+ * // },
63
+ * // membershipIdentifier: "STRING_VALUE", // required
64
+ * // dataSource: { // ModelInferenceDataSource
65
+ * // mlInputChannelArn: "STRING_VALUE", // required
66
+ * // },
67
+ * // containerExecutionParameters: { // InferenceContainerExecutionParameters
68
+ * // maxPayloadInMB: Number("int"),
69
+ * // },
70
+ * // statusDetails: { // StatusDetails
71
+ * // statusCode: "STRING_VALUE",
72
+ * // message: "STRING_VALUE",
73
+ * // },
74
+ * // description: "STRING_VALUE",
75
+ * // inferenceContainerImageDigest: "STRING_VALUE",
76
+ * // environment: { // InferenceEnvironmentMap
77
+ * // "<keys>": "STRING_VALUE",
78
+ * // },
79
+ * // kmsKeyArn: "STRING_VALUE",
80
+ * // metricsStatus: "PUBLISH_SUCCEEDED" || "PUBLISH_FAILED",
81
+ * // metricsStatusDetails: "STRING_VALUE",
82
+ * // logsStatus: "PUBLISH_SUCCEEDED" || "PUBLISH_FAILED",
83
+ * // logsStatusDetails: "STRING_VALUE",
84
+ * // tags: { // TagMap
85
+ * // "<keys>": "STRING_VALUE",
86
+ * // },
87
+ * // };
88
+ *
89
+ * ```
90
+ *
91
+ * @param GetTrainedModelInferenceJobCommandInput - {@link GetTrainedModelInferenceJobCommandInput}
92
+ * @returns {@link GetTrainedModelInferenceJobCommandOutput}
93
+ * @see {@link GetTrainedModelInferenceJobCommandInput} for command's `input` shape.
94
+ * @see {@link GetTrainedModelInferenceJobCommandOutput} for command's `response` shape.
95
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
96
+ *
97
+ * @throws {@link AccessDeniedException} (client fault)
98
+ * <p>You do not have sufficient access to perform this action.</p>
99
+ *
100
+ * @throws {@link ResourceNotFoundException} (client fault)
101
+ * <p>The resource you are requesting does not exist.</p>
102
+ *
103
+ * @throws {@link ValidationException} (client fault)
104
+ * <p>The request parameters for this request are incorrect.</p>
105
+ *
106
+ * @throws {@link CleanRoomsMLServiceException}
107
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
108
+ *
109
+ * @public
110
+ */
111
+ export declare class GetTrainedModelInferenceJobCommand extends GetTrainedModelInferenceJobCommand_base {
112
+ /** @internal type navigation helper, not in runtime. */
113
+ protected static __types: {
114
+ api: {
115
+ input: GetTrainedModelInferenceJobRequest;
116
+ output: GetTrainedModelInferenceJobResponse;
117
+ };
118
+ sdk: {
119
+ input: GetTrainedModelInferenceJobCommandInput;
120
+ output: GetTrainedModelInferenceJobCommandOutput;
121
+ };
122
+ };
123
+ }
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient";
4
+ import { ListCollaborationConfiguredModelAlgorithmAssociationsRequest, ListCollaborationConfiguredModelAlgorithmAssociationsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommand}.
14
+ */
15
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput extends ListCollaborationConfiguredModelAlgorithmAssociationsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommand}.
21
+ */
22
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput extends ListCollaborationConfiguredModelAlgorithmAssociationsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListCollaborationConfiguredModelAlgorithmAssociationsCommand_base: {
25
+ new (input: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput, ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of the configured model algorithm associations in a collaboration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListCollaborationConfiguredModelAlgorithmAssociationsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListCollaborationConfiguredModelAlgorithmAssociationsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListCollaborationConfiguredModelAlgorithmAssociationsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * collaborationIdentifier: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new ListCollaborationConfiguredModelAlgorithmAssociationsCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // ListCollaborationConfiguredModelAlgorithmAssociationsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // collaborationConfiguredModelAlgorithmAssociations: [ // CollaborationConfiguredModelAlgorithmAssociationList // required
47
+ * // { // CollaborationConfiguredModelAlgorithmAssociationSummary
48
+ * // createTime: new Date("TIMESTAMP"), // required
49
+ * // updateTime: new Date("TIMESTAMP"), // required
50
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
51
+ * // name: "STRING_VALUE", // required
52
+ * // description: "STRING_VALUE",
53
+ * // membershipIdentifier: "STRING_VALUE", // required
54
+ * // collaborationIdentifier: "STRING_VALUE", // required
55
+ * // configuredModelAlgorithmArn: "STRING_VALUE", // required
56
+ * // creatorAccountId: "STRING_VALUE", // required
57
+ * // },
58
+ * // ],
59
+ * // };
60
+ *
61
+ * ```
62
+ *
63
+ * @param ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput - {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput}
64
+ * @returns {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput}
65
+ * @see {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput} for command's `input` shape.
66
+ * @see {@link ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput} for command's `response` shape.
67
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
68
+ *
69
+ * @throws {@link AccessDeniedException} (client fault)
70
+ * <p>You do not have sufficient access to perform this action.</p>
71
+ *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>The request parameters for this request are incorrect.</p>
74
+ *
75
+ * @throws {@link CleanRoomsMLServiceException}
76
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
77
+ *
78
+ * @public
79
+ */
80
+ export declare class ListCollaborationConfiguredModelAlgorithmAssociationsCommand extends ListCollaborationConfiguredModelAlgorithmAssociationsCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: ListCollaborationConfiguredModelAlgorithmAssociationsRequest;
85
+ output: ListCollaborationConfiguredModelAlgorithmAssociationsResponse;
86
+ };
87
+ sdk: {
88
+ input: ListCollaborationConfiguredModelAlgorithmAssociationsCommandInput;
89
+ output: ListCollaborationConfiguredModelAlgorithmAssociationsCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -0,0 +1,95 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient";
4
+ import { ListCollaborationMLInputChannelsRequest, ListCollaborationMLInputChannelsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListCollaborationMLInputChannelsCommand}.
14
+ */
15
+ export interface ListCollaborationMLInputChannelsCommandInput extends ListCollaborationMLInputChannelsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListCollaborationMLInputChannelsCommand}.
21
+ */
22
+ export interface ListCollaborationMLInputChannelsCommandOutput extends ListCollaborationMLInputChannelsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListCollaborationMLInputChannelsCommand_base: {
25
+ new (input: ListCollaborationMLInputChannelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationMLInputChannelsCommandInput, ListCollaborationMLInputChannelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListCollaborationMLInputChannelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationMLInputChannelsCommandInput, ListCollaborationMLInputChannelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of the ML input channels in a collaboration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListCollaborationMLInputChannelsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListCollaborationMLInputChannelsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListCollaborationMLInputChannelsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * collaborationIdentifier: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new ListCollaborationMLInputChannelsCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // ListCollaborationMLInputChannelsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // collaborationMLInputChannelsList: [ // CollaborationMLInputChannelsList // required
47
+ * // { // CollaborationMLInputChannelSummary
48
+ * // createTime: new Date("TIMESTAMP"), // required
49
+ * // updateTime: new Date("TIMESTAMP"), // required
50
+ * // membershipIdentifier: "STRING_VALUE", // required
51
+ * // collaborationIdentifier: "STRING_VALUE", // required
52
+ * // name: "STRING_VALUE", // required
53
+ * // configuredModelAlgorithmAssociations: [ // ConfiguredModelAlgorithmAssociationArnList // required
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // mlInputChannelArn: "STRING_VALUE", // required
57
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "INACTIVE", // required
58
+ * // creatorAccountId: "STRING_VALUE", // required
59
+ * // description: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param ListCollaborationMLInputChannelsCommandInput - {@link ListCollaborationMLInputChannelsCommandInput}
67
+ * @returns {@link ListCollaborationMLInputChannelsCommandOutput}
68
+ * @see {@link ListCollaborationMLInputChannelsCommandInput} for command's `input` shape.
69
+ * @see {@link ListCollaborationMLInputChannelsCommandOutput} for command's `response` shape.
70
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
71
+ *
72
+ * @throws {@link AccessDeniedException} (client fault)
73
+ * <p>You do not have sufficient access to perform this action.</p>
74
+ *
75
+ * @throws {@link ValidationException} (client fault)
76
+ * <p>The request parameters for this request are incorrect.</p>
77
+ *
78
+ * @throws {@link CleanRoomsMLServiceException}
79
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
80
+ *
81
+ * @public
82
+ */
83
+ export declare class ListCollaborationMLInputChannelsCommand extends ListCollaborationMLInputChannelsCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: ListCollaborationMLInputChannelsRequest;
88
+ output: ListCollaborationMLInputChannelsResponse;
89
+ };
90
+ sdk: {
91
+ input: ListCollaborationMLInputChannelsCommandInput;
92
+ output: ListCollaborationMLInputChannelsCommandOutput;
93
+ };
94
+ };
95
+ }
@@ -0,0 +1,104 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient";
4
+ import { ListCollaborationTrainedModelExportJobsRequest, ListCollaborationTrainedModelExportJobsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListCollaborationTrainedModelExportJobsCommand}.
14
+ */
15
+ export interface ListCollaborationTrainedModelExportJobsCommandInput extends ListCollaborationTrainedModelExportJobsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListCollaborationTrainedModelExportJobsCommand}.
21
+ */
22
+ export interface ListCollaborationTrainedModelExportJobsCommandOutput extends ListCollaborationTrainedModelExportJobsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListCollaborationTrainedModelExportJobsCommand_base: {
25
+ new (input: ListCollaborationTrainedModelExportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationTrainedModelExportJobsCommandInput, ListCollaborationTrainedModelExportJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListCollaborationTrainedModelExportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationTrainedModelExportJobsCommandInput, ListCollaborationTrainedModelExportJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of the export jobs for a trained model in a collaboration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListCollaborationTrainedModelExportJobsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListCollaborationTrainedModelExportJobsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListCollaborationTrainedModelExportJobsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * collaborationIdentifier: "STRING_VALUE", // required
41
+ * trainedModelArn: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new ListCollaborationTrainedModelExportJobsCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // ListCollaborationTrainedModelExportJobsResponse
46
+ * // nextToken: "STRING_VALUE",
47
+ * // collaborationTrainedModelExportJobs: [ // CollaborationTrainedModelExportJobList // required
48
+ * // { // CollaborationTrainedModelExportJobSummary
49
+ * // createTime: new Date("TIMESTAMP"), // required
50
+ * // updateTime: new Date("TIMESTAMP"), // required
51
+ * // name: "STRING_VALUE", // required
52
+ * // outputConfiguration: { // TrainedModelExportOutputConfiguration
53
+ * // members: [ // TrainedModelExportReceiverMembers // required
54
+ * // { // TrainedModelExportReceiverMember
55
+ * // accountId: "STRING_VALUE", // required
56
+ * // },
57
+ * // ],
58
+ * // },
59
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE", // required
60
+ * // statusDetails: { // StatusDetails
61
+ * // statusCode: "STRING_VALUE",
62
+ * // message: "STRING_VALUE",
63
+ * // },
64
+ * // description: "STRING_VALUE",
65
+ * // creatorAccountId: "STRING_VALUE", // required
66
+ * // trainedModelArn: "STRING_VALUE", // required
67
+ * // membershipIdentifier: "STRING_VALUE", // required
68
+ * // collaborationIdentifier: "STRING_VALUE", // required
69
+ * // },
70
+ * // ],
71
+ * // };
72
+ *
73
+ * ```
74
+ *
75
+ * @param ListCollaborationTrainedModelExportJobsCommandInput - {@link ListCollaborationTrainedModelExportJobsCommandInput}
76
+ * @returns {@link ListCollaborationTrainedModelExportJobsCommandOutput}
77
+ * @see {@link ListCollaborationTrainedModelExportJobsCommandInput} for command's `input` shape.
78
+ * @see {@link ListCollaborationTrainedModelExportJobsCommandOutput} for command's `response` shape.
79
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
80
+ *
81
+ * @throws {@link AccessDeniedException} (client fault)
82
+ * <p>You do not have sufficient access to perform this action.</p>
83
+ *
84
+ * @throws {@link ValidationException} (client fault)
85
+ * <p>The request parameters for this request are incorrect.</p>
86
+ *
87
+ * @throws {@link CleanRoomsMLServiceException}
88
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
89
+ *
90
+ * @public
91
+ */
92
+ export declare class ListCollaborationTrainedModelExportJobsCommand extends ListCollaborationTrainedModelExportJobsCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: ListCollaborationTrainedModelExportJobsRequest;
97
+ output: ListCollaborationTrainedModelExportJobsResponse;
98
+ };
99
+ sdk: {
100
+ input: ListCollaborationTrainedModelExportJobsCommandInput;
101
+ output: ListCollaborationTrainedModelExportJobsCommandOutput;
102
+ };
103
+ };
104
+ }
@@ -0,0 +1,107 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient";
4
+ import { ListCollaborationTrainedModelInferenceJobsRequest, ListCollaborationTrainedModelInferenceJobsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListCollaborationTrainedModelInferenceJobsCommand}.
14
+ */
15
+ export interface ListCollaborationTrainedModelInferenceJobsCommandInput extends ListCollaborationTrainedModelInferenceJobsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListCollaborationTrainedModelInferenceJobsCommand}.
21
+ */
22
+ export interface ListCollaborationTrainedModelInferenceJobsCommandOutput extends ListCollaborationTrainedModelInferenceJobsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListCollaborationTrainedModelInferenceJobsCommand_base: {
25
+ new (input: ListCollaborationTrainedModelInferenceJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationTrainedModelInferenceJobsCommandInput, ListCollaborationTrainedModelInferenceJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListCollaborationTrainedModelInferenceJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationTrainedModelInferenceJobsCommandInput, ListCollaborationTrainedModelInferenceJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of trained model inference jobs in a specified collaboration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListCollaborationTrainedModelInferenceJobsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListCollaborationTrainedModelInferenceJobsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListCollaborationTrainedModelInferenceJobsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * collaborationIdentifier: "STRING_VALUE", // required
41
+ * trainedModelArn: "STRING_VALUE",
42
+ * };
43
+ * const command = new ListCollaborationTrainedModelInferenceJobsCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // ListCollaborationTrainedModelInferenceJobsResponse
46
+ * // nextToken: "STRING_VALUE",
47
+ * // collaborationTrainedModelInferenceJobs: [ // CollaborationTrainedModelInferenceJobList // required
48
+ * // { // CollaborationTrainedModelInferenceJobSummary
49
+ * // trainedModelInferenceJobArn: "STRING_VALUE", // required
50
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE",
51
+ * // membershipIdentifier: "STRING_VALUE", // required
52
+ * // trainedModelArn: "STRING_VALUE", // required
53
+ * // collaborationIdentifier: "STRING_VALUE", // required
54
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "CANCEL_PENDING" || "CANCEL_IN_PROGRESS" || "CANCEL_FAILED" || "INACTIVE", // required
55
+ * // outputConfiguration: { // InferenceOutputConfiguration
56
+ * // accept: "STRING_VALUE",
57
+ * // members: [ // InferenceReceiverMembers // required
58
+ * // { // InferenceReceiverMember
59
+ * // accountId: "STRING_VALUE", // required
60
+ * // },
61
+ * // ],
62
+ * // },
63
+ * // name: "STRING_VALUE", // required
64
+ * // description: "STRING_VALUE",
65
+ * // metricsStatus: "PUBLISH_SUCCEEDED" || "PUBLISH_FAILED",
66
+ * // metricsStatusDetails: "STRING_VALUE",
67
+ * // logsStatus: "PUBLISH_SUCCEEDED" || "PUBLISH_FAILED",
68
+ * // logsStatusDetails: "STRING_VALUE",
69
+ * // createTime: new Date("TIMESTAMP"), // required
70
+ * // updateTime: new Date("TIMESTAMP"), // required
71
+ * // creatorAccountId: "STRING_VALUE", // required
72
+ * // },
73
+ * // ],
74
+ * // };
75
+ *
76
+ * ```
77
+ *
78
+ * @param ListCollaborationTrainedModelInferenceJobsCommandInput - {@link ListCollaborationTrainedModelInferenceJobsCommandInput}
79
+ * @returns {@link ListCollaborationTrainedModelInferenceJobsCommandOutput}
80
+ * @see {@link ListCollaborationTrainedModelInferenceJobsCommandInput} for command's `input` shape.
81
+ * @see {@link ListCollaborationTrainedModelInferenceJobsCommandOutput} for command's `response` shape.
82
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
83
+ *
84
+ * @throws {@link AccessDeniedException} (client fault)
85
+ * <p>You do not have sufficient access to perform this action.</p>
86
+ *
87
+ * @throws {@link ValidationException} (client fault)
88
+ * <p>The request parameters for this request are incorrect.</p>
89
+ *
90
+ * @throws {@link CleanRoomsMLServiceException}
91
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
92
+ *
93
+ * @public
94
+ */
95
+ export declare class ListCollaborationTrainedModelInferenceJobsCommand extends ListCollaborationTrainedModelInferenceJobsCommand_base {
96
+ /** @internal type navigation helper, not in runtime. */
97
+ protected static __types: {
98
+ api: {
99
+ input: ListCollaborationTrainedModelInferenceJobsRequest;
100
+ output: ListCollaborationTrainedModelInferenceJobsResponse;
101
+ };
102
+ sdk: {
103
+ input: ListCollaborationTrainedModelInferenceJobsCommandInput;
104
+ output: ListCollaborationTrainedModelInferenceJobsCommandOutput;
105
+ };
106
+ };
107
+ }
@@ -0,0 +1,93 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient";
4
+ import { ListCollaborationTrainedModelsRequest, ListCollaborationTrainedModelsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListCollaborationTrainedModelsCommand}.
14
+ */
15
+ export interface ListCollaborationTrainedModelsCommandInput extends ListCollaborationTrainedModelsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListCollaborationTrainedModelsCommand}.
21
+ */
22
+ export interface ListCollaborationTrainedModelsCommandOutput extends ListCollaborationTrainedModelsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListCollaborationTrainedModelsCommand_base: {
25
+ new (input: ListCollaborationTrainedModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationTrainedModelsCommandInput, ListCollaborationTrainedModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListCollaborationTrainedModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollaborationTrainedModelsCommandInput, ListCollaborationTrainedModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of the trained models in a collaboration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListCollaborationTrainedModelsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListCollaborationTrainedModelsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListCollaborationTrainedModelsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * collaborationIdentifier: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new ListCollaborationTrainedModelsCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // ListCollaborationTrainedModelsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // collaborationTrainedModels: [ // CollaborationTrainedModelList // required
47
+ * // { // CollaborationTrainedModelSummary
48
+ * // createTime: new Date("TIMESTAMP"), // required
49
+ * // updateTime: new Date("TIMESTAMP"), // required
50
+ * // trainedModelArn: "STRING_VALUE", // required
51
+ * // name: "STRING_VALUE", // required
52
+ * // description: "STRING_VALUE",
53
+ * // membershipIdentifier: "STRING_VALUE", // required
54
+ * // collaborationIdentifier: "STRING_VALUE", // required
55
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "INACTIVE" || "CANCEL_PENDING" || "CANCEL_IN_PROGRESS" || "CANCEL_FAILED", // required
56
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
57
+ * // creatorAccountId: "STRING_VALUE", // required
58
+ * // },
59
+ * // ],
60
+ * // };
61
+ *
62
+ * ```
63
+ *
64
+ * @param ListCollaborationTrainedModelsCommandInput - {@link ListCollaborationTrainedModelsCommandInput}
65
+ * @returns {@link ListCollaborationTrainedModelsCommandOutput}
66
+ * @see {@link ListCollaborationTrainedModelsCommandInput} for command's `input` shape.
67
+ * @see {@link ListCollaborationTrainedModelsCommandOutput} for command's `response` shape.
68
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
69
+ *
70
+ * @throws {@link AccessDeniedException} (client fault)
71
+ * <p>You do not have sufficient access to perform this action.</p>
72
+ *
73
+ * @throws {@link ValidationException} (client fault)
74
+ * <p>The request parameters for this request are incorrect.</p>
75
+ *
76
+ * @throws {@link CleanRoomsMLServiceException}
77
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
78
+ *
79
+ * @public
80
+ */
81
+ export declare class ListCollaborationTrainedModelsCommand extends ListCollaborationTrainedModelsCommand_base {
82
+ /** @internal type navigation helper, not in runtime. */
83
+ protected static __types: {
84
+ api: {
85
+ input: ListCollaborationTrainedModelsRequest;
86
+ output: ListCollaborationTrainedModelsResponse;
87
+ };
88
+ sdk: {
89
+ input: ListCollaborationTrainedModelsCommandInput;
90
+ output: ListCollaborationTrainedModelsCommandOutput;
91
+ };
92
+ };
93
+ }