@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
@@ -0,0 +1,78 @@
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 { DeleteMLConfigurationRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteMLConfigurationCommand}.
14
+ */
15
+ export interface DeleteMLConfigurationCommandInput extends DeleteMLConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteMLConfigurationCommand}.
21
+ */
22
+ export interface DeleteMLConfigurationCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const DeleteMLConfigurationCommand_base: {
25
+ new (input: DeleteMLConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMLConfigurationCommandInput, DeleteMLConfigurationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteMLConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMLConfigurationCommandInput, DeleteMLConfigurationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a ML modeling configuration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, DeleteMLConfigurationCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, DeleteMLConfigurationCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // DeleteMLConfigurationRequest
38
+ * membershipIdentifier: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DeleteMLConfigurationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param DeleteMLConfigurationCommandInput - {@link DeleteMLConfigurationCommandInput}
47
+ * @returns {@link DeleteMLConfigurationCommandOutput}
48
+ * @see {@link DeleteMLConfigurationCommandInput} for command's `input` shape.
49
+ * @see {@link DeleteMLConfigurationCommandOutput} for command's `response` shape.
50
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>You do not have sufficient access to perform this action.</p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource you are requesting does not exist.</p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p>The request parameters for this request are incorrect.</p>
60
+ *
61
+ * @throws {@link CleanRoomsMLServiceException}
62
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
63
+ *
64
+ * @public
65
+ */
66
+ export declare class DeleteMLConfigurationCommand extends DeleteMLConfigurationCommand_base {
67
+ /** @internal type navigation helper, not in runtime. */
68
+ protected static __types: {
69
+ api: {
70
+ input: DeleteMLConfigurationRequest;
71
+ output: {};
72
+ };
73
+ sdk: {
74
+ input: DeleteMLConfigurationCommandInput;
75
+ output: DeleteMLConfigurationCommandOutput;
76
+ };
77
+ };
78
+ }
@@ -0,0 +1,82 @@
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 { DeleteMLInputChannelDataRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteMLInputChannelDataCommand}.
14
+ */
15
+ export interface DeleteMLInputChannelDataCommandInput extends DeleteMLInputChannelDataRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteMLInputChannelDataCommand}.
21
+ */
22
+ export interface DeleteMLInputChannelDataCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const DeleteMLInputChannelDataCommand_base: {
25
+ new (input: DeleteMLInputChannelDataCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMLInputChannelDataCommandInput, DeleteMLInputChannelDataCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteMLInputChannelDataCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMLInputChannelDataCommandInput, DeleteMLInputChannelDataCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Provides the information necessary to delete an ML input channel.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, DeleteMLInputChannelDataCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, DeleteMLInputChannelDataCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // DeleteMLInputChannelDataRequest
38
+ * mlInputChannelArn: "STRING_VALUE", // required
39
+ * membershipIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new DeleteMLInputChannelDataCommand(input);
42
+ * const response = await client.send(command);
43
+ * // {};
44
+ *
45
+ * ```
46
+ *
47
+ * @param DeleteMLInputChannelDataCommandInput - {@link DeleteMLInputChannelDataCommandInput}
48
+ * @returns {@link DeleteMLInputChannelDataCommandOutput}
49
+ * @see {@link DeleteMLInputChannelDataCommandInput} for command's `input` shape.
50
+ * @see {@link DeleteMLInputChannelDataCommandOutput} for command's `response` shape.
51
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
52
+ *
53
+ * @throws {@link AccessDeniedException} (client fault)
54
+ * <p>You do not have sufficient access to perform this action.</p>
55
+ *
56
+ * @throws {@link ConflictException} (client fault)
57
+ * <p>You can't complete this action because another resource depends on this resource.</p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>The resource you are requesting does not exist.</p>
61
+ *
62
+ * @throws {@link ValidationException} (client fault)
63
+ * <p>The request parameters for this request are incorrect.</p>
64
+ *
65
+ * @throws {@link CleanRoomsMLServiceException}
66
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
67
+ *
68
+ * @public
69
+ */
70
+ export declare class DeleteMLInputChannelDataCommand extends DeleteMLInputChannelDataCommand_base {
71
+ /** @internal type navigation helper, not in runtime. */
72
+ protected static __types: {
73
+ api: {
74
+ input: DeleteMLInputChannelDataRequest;
75
+ output: {};
76
+ };
77
+ sdk: {
78
+ input: DeleteMLInputChannelDataCommandInput;
79
+ output: DeleteMLInputChannelDataCommandOutput;
80
+ };
81
+ };
82
+ }
@@ -0,0 +1,82 @@
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 { DeleteTrainedModelOutputRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteTrainedModelOutputCommand}.
14
+ */
15
+ export interface DeleteTrainedModelOutputCommandInput extends DeleteTrainedModelOutputRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteTrainedModelOutputCommand}.
21
+ */
22
+ export interface DeleteTrainedModelOutputCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const DeleteTrainedModelOutputCommand_base: {
25
+ new (input: DeleteTrainedModelOutputCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrainedModelOutputCommandInput, DeleteTrainedModelOutputCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DeleteTrainedModelOutputCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTrainedModelOutputCommandInput, DeleteTrainedModelOutputCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes the output of a trained model.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, DeleteTrainedModelOutputCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, DeleteTrainedModelOutputCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // DeleteTrainedModelOutputRequest
38
+ * trainedModelArn: "STRING_VALUE", // required
39
+ * membershipIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new DeleteTrainedModelOutputCommand(input);
42
+ * const response = await client.send(command);
43
+ * // {};
44
+ *
45
+ * ```
46
+ *
47
+ * @param DeleteTrainedModelOutputCommandInput - {@link DeleteTrainedModelOutputCommandInput}
48
+ * @returns {@link DeleteTrainedModelOutputCommandOutput}
49
+ * @see {@link DeleteTrainedModelOutputCommandInput} for command's `input` shape.
50
+ * @see {@link DeleteTrainedModelOutputCommandOutput} for command's `response` shape.
51
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
52
+ *
53
+ * @throws {@link AccessDeniedException} (client fault)
54
+ * <p>You do not have sufficient access to perform this action.</p>
55
+ *
56
+ * @throws {@link ConflictException} (client fault)
57
+ * <p>You can't complete this action because another resource depends on this resource.</p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>The resource you are requesting does not exist.</p>
61
+ *
62
+ * @throws {@link ValidationException} (client fault)
63
+ * <p>The request parameters for this request are incorrect.</p>
64
+ *
65
+ * @throws {@link CleanRoomsMLServiceException}
66
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
67
+ *
68
+ * @public
69
+ */
70
+ export declare class DeleteTrainedModelOutputCommand extends DeleteTrainedModelOutputCommand_base {
71
+ /** @internal type navigation helper, not in runtime. */
72
+ protected static __types: {
73
+ api: {
74
+ input: DeleteTrainedModelOutputRequest;
75
+ output: {};
76
+ };
77
+ sdk: {
78
+ input: DeleteTrainedModelOutputCommandInput;
79
+ output: DeleteTrainedModelOutputCommandOutput;
80
+ };
81
+ };
82
+ }
@@ -0,0 +1,129 @@
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 { GetCollaborationConfiguredModelAlgorithmAssociationRequest, GetCollaborationConfiguredModelAlgorithmAssociationResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetCollaborationConfiguredModelAlgorithmAssociationCommand}.
14
+ */
15
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationCommandInput extends GetCollaborationConfiguredModelAlgorithmAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetCollaborationConfiguredModelAlgorithmAssociationCommand}.
21
+ */
22
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput extends GetCollaborationConfiguredModelAlgorithmAssociationResponse, __MetadataBearer {
23
+ }
24
+ declare const GetCollaborationConfiguredModelAlgorithmAssociationCommand_base: {
25
+ new (input: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<GetCollaborationConfiguredModelAlgorithmAssociationCommandInput, GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<GetCollaborationConfiguredModelAlgorithmAssociationCommandInput, GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about the configured model algorithm association 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, GetCollaborationConfiguredModelAlgorithmAssociationCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetCollaborationConfiguredModelAlgorithmAssociationCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetCollaborationConfiguredModelAlgorithmAssociationRequest
38
+ * configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
39
+ * collaborationIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetCollaborationConfiguredModelAlgorithmAssociationCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetCollaborationConfiguredModelAlgorithmAssociationResponse
44
+ * // createTime: new Date("TIMESTAMP"), // required
45
+ * // updateTime: new Date("TIMESTAMP"), // required
46
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
47
+ * // membershipIdentifier: "STRING_VALUE", // required
48
+ * // collaborationIdentifier: "STRING_VALUE", // required
49
+ * // configuredModelAlgorithmArn: "STRING_VALUE", // required
50
+ * // name: "STRING_VALUE", // required
51
+ * // description: "STRING_VALUE",
52
+ * // creatorAccountId: "STRING_VALUE", // required
53
+ * // privacyConfiguration: { // PrivacyConfiguration
54
+ * // policies: { // PrivacyConfigurationPolicies
55
+ * // trainedModels: { // TrainedModelsConfigurationPolicy
56
+ * // containerLogs: [ // LogsConfigurationPolicyList
57
+ * // { // LogsConfigurationPolicy
58
+ * // allowedAccountIds: [ // AccountIdList // required
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // filterPattern: "STRING_VALUE",
62
+ * // },
63
+ * // ],
64
+ * // containerMetrics: { // MetricsConfigurationPolicy
65
+ * // noiseLevel: "HIGH" || "MEDIUM" || "LOW" || "NONE", // required
66
+ * // },
67
+ * // },
68
+ * // trainedModelExports: { // TrainedModelExportsConfigurationPolicy
69
+ * // maxSize: { // TrainedModelExportsMaxSize
70
+ * // unit: "GB", // required
71
+ * // value: Number("double"), // required
72
+ * // },
73
+ * // filesToExport: [ // TrainedModelExportFileTypeList // required
74
+ * // "MODEL" || "OUTPUT",
75
+ * // ],
76
+ * // },
77
+ * // trainedModelInferenceJobs: { // TrainedModelInferenceJobsConfigurationPolicy
78
+ * // containerLogs: [
79
+ * // {
80
+ * // allowedAccountIds: [ // required
81
+ * // "STRING_VALUE",
82
+ * // ],
83
+ * // filterPattern: "STRING_VALUE",
84
+ * // },
85
+ * // ],
86
+ * // maxOutputSize: { // TrainedModelInferenceMaxOutputSize
87
+ * // unit: "GB", // required
88
+ * // value: Number("double"), // required
89
+ * // },
90
+ * // },
91
+ * // },
92
+ * // },
93
+ * // };
94
+ *
95
+ * ```
96
+ *
97
+ * @param GetCollaborationConfiguredModelAlgorithmAssociationCommandInput - {@link GetCollaborationConfiguredModelAlgorithmAssociationCommandInput}
98
+ * @returns {@link GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput}
99
+ * @see {@link GetCollaborationConfiguredModelAlgorithmAssociationCommandInput} for command's `input` shape.
100
+ * @see {@link GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput} for command's `response` shape.
101
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
102
+ *
103
+ * @throws {@link AccessDeniedException} (client fault)
104
+ * <p>You do not have sufficient access to perform this action.</p>
105
+ *
106
+ * @throws {@link ResourceNotFoundException} (client fault)
107
+ * <p>The resource you are requesting does not exist.</p>
108
+ *
109
+ * @throws {@link ValidationException} (client fault)
110
+ * <p>The request parameters for this request are incorrect.</p>
111
+ *
112
+ * @throws {@link CleanRoomsMLServiceException}
113
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
114
+ *
115
+ * @public
116
+ */
117
+ export declare class GetCollaborationConfiguredModelAlgorithmAssociationCommand extends GetCollaborationConfiguredModelAlgorithmAssociationCommand_base {
118
+ /** @internal type navigation helper, not in runtime. */
119
+ protected static __types: {
120
+ api: {
121
+ input: GetCollaborationConfiguredModelAlgorithmAssociationRequest;
122
+ output: GetCollaborationConfiguredModelAlgorithmAssociationResponse;
123
+ };
124
+ sdk: {
125
+ input: GetCollaborationConfiguredModelAlgorithmAssociationCommandInput;
126
+ output: GetCollaborationConfiguredModelAlgorithmAssociationCommandOutput;
127
+ };
128
+ };
129
+ }
@@ -0,0 +1,98 @@
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 { GetCollaborationMLInputChannelRequest, GetCollaborationMLInputChannelResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetCollaborationMLInputChannelCommand}.
14
+ */
15
+ export interface GetCollaborationMLInputChannelCommandInput extends GetCollaborationMLInputChannelRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetCollaborationMLInputChannelCommand}.
21
+ */
22
+ export interface GetCollaborationMLInputChannelCommandOutput extends GetCollaborationMLInputChannelResponse, __MetadataBearer {
23
+ }
24
+ declare const GetCollaborationMLInputChannelCommand_base: {
25
+ new (input: GetCollaborationMLInputChannelCommandInput): import("@smithy/smithy-client").CommandImpl<GetCollaborationMLInputChannelCommandInput, GetCollaborationMLInputChannelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetCollaborationMLInputChannelCommandInput): import("@smithy/smithy-client").CommandImpl<GetCollaborationMLInputChannelCommandInput, GetCollaborationMLInputChannelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about a specific ML input channel 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, GetCollaborationMLInputChannelCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetCollaborationMLInputChannelCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetCollaborationMLInputChannelRequest
38
+ * mlInputChannelArn: "STRING_VALUE", // required
39
+ * collaborationIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetCollaborationMLInputChannelCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetCollaborationMLInputChannelResponse
44
+ * // createTime: new Date("TIMESTAMP"), // required
45
+ * // updateTime: new Date("TIMESTAMP"), // required
46
+ * // creatorAccountId: "STRING_VALUE", // required
47
+ * // membershipIdentifier: "STRING_VALUE", // required
48
+ * // collaborationIdentifier: "STRING_VALUE", // required
49
+ * // mlInputChannelArn: "STRING_VALUE", // required
50
+ * // name: "STRING_VALUE", // required
51
+ * // configuredModelAlgorithmAssociations: [ // ConfiguredModelAlgorithmAssociationArnList // required
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "INACTIVE", // required
55
+ * // statusDetails: { // StatusDetails
56
+ * // statusCode: "STRING_VALUE",
57
+ * // message: "STRING_VALUE",
58
+ * // },
59
+ * // retentionInDays: Number("int"), // required
60
+ * // numberOfRecords: Number("long"),
61
+ * // description: "STRING_VALUE",
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param GetCollaborationMLInputChannelCommandInput - {@link GetCollaborationMLInputChannelCommandInput}
67
+ * @returns {@link GetCollaborationMLInputChannelCommandOutput}
68
+ * @see {@link GetCollaborationMLInputChannelCommandInput} for command's `input` shape.
69
+ * @see {@link GetCollaborationMLInputChannelCommandOutput} 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 ResourceNotFoundException} (client fault)
76
+ * <p>The resource you are requesting does not exist.</p>
77
+ *
78
+ * @throws {@link ValidationException} (client fault)
79
+ * <p>The request parameters for this request are incorrect.</p>
80
+ *
81
+ * @throws {@link CleanRoomsMLServiceException}
82
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
83
+ *
84
+ * @public
85
+ */
86
+ export declare class GetCollaborationMLInputChannelCommand extends GetCollaborationMLInputChannelCommand_base {
87
+ /** @internal type navigation helper, not in runtime. */
88
+ protected static __types: {
89
+ api: {
90
+ input: GetCollaborationMLInputChannelRequest;
91
+ output: GetCollaborationMLInputChannelResponse;
92
+ };
93
+ sdk: {
94
+ input: GetCollaborationMLInputChannelCommandInput;
95
+ output: GetCollaborationMLInputChannelCommandOutput;
96
+ };
97
+ };
98
+ }
@@ -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 { GetCollaborationTrainedModelRequest, GetCollaborationTrainedModelResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetCollaborationTrainedModelCommand}.
14
+ */
15
+ export interface GetCollaborationTrainedModelCommandInput extends GetCollaborationTrainedModelRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetCollaborationTrainedModelCommand}.
21
+ */
22
+ export interface GetCollaborationTrainedModelCommandOutput extends GetCollaborationTrainedModelResponse, __MetadataBearer {
23
+ }
24
+ declare const GetCollaborationTrainedModelCommand_base: {
25
+ new (input: GetCollaborationTrainedModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetCollaborationTrainedModelCommandInput, GetCollaborationTrainedModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetCollaborationTrainedModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetCollaborationTrainedModelCommandInput, GetCollaborationTrainedModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about 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, GetCollaborationTrainedModelCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetCollaborationTrainedModelCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetCollaborationTrainedModelRequest
38
+ * trainedModelArn: "STRING_VALUE", // required
39
+ * collaborationIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetCollaborationTrainedModelCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetCollaborationTrainedModelResponse
44
+ * // membershipIdentifier: "STRING_VALUE", // required
45
+ * // collaborationIdentifier: "STRING_VALUE", // required
46
+ * // trainedModelArn: "STRING_VALUE", // required
47
+ * // name: "STRING_VALUE", // required
48
+ * // description: "STRING_VALUE",
49
+ * // 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
50
+ * // statusDetails: { // StatusDetails
51
+ * // statusCode: "STRING_VALUE",
52
+ * // message: "STRING_VALUE",
53
+ * // },
54
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
55
+ * // resourceConfig: { // ResourceConfig
56
+ * // instanceCount: Number("int"),
57
+ * // instanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.p3dn.24xlarge" || "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.p5.48xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.c5n.xlarge" || "ml.c5n.2xlarge" || "ml.c5n.4xlarge" || "ml.c5n.9xlarge" || "ml.c5n.18xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.16xlarge" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.8xlarge" || "ml.c6i.4xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r5d.large" || "ml.r5d.xlarge" || "ml.r5d.2xlarge" || "ml.r5d.4xlarge" || "ml.r5d.8xlarge" || "ml.r5d.12xlarge" || "ml.r5d.16xlarge" || "ml.r5d.24xlarge" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.r5.large" || "ml.r5.xlarge" || "ml.r5.2xlarge" || "ml.r5.4xlarge" || "ml.r5.8xlarge" || "ml.r5.12xlarge" || "ml.r5.16xlarge" || "ml.r5.24xlarge", // required
58
+ * // volumeSizeInGB: Number("int"), // required
59
+ * // },
60
+ * // stoppingCondition: { // StoppingCondition
61
+ * // maxRuntimeInSeconds: Number("int"),
62
+ * // },
63
+ * // metricsStatus: "PUBLISH_SUCCEEDED" || "PUBLISH_FAILED",
64
+ * // metricsStatusDetails: "STRING_VALUE",
65
+ * // logsStatus: "PUBLISH_SUCCEEDED" || "PUBLISH_FAILED",
66
+ * // logsStatusDetails: "STRING_VALUE",
67
+ * // trainingContainerImageDigest: "STRING_VALUE",
68
+ * // createTime: new Date("TIMESTAMP"), // required
69
+ * // updateTime: new Date("TIMESTAMP"), // required
70
+ * // creatorAccountId: "STRING_VALUE", // required
71
+ * // };
72
+ *
73
+ * ```
74
+ *
75
+ * @param GetCollaborationTrainedModelCommandInput - {@link GetCollaborationTrainedModelCommandInput}
76
+ * @returns {@link GetCollaborationTrainedModelCommandOutput}
77
+ * @see {@link GetCollaborationTrainedModelCommandInput} for command's `input` shape.
78
+ * @see {@link GetCollaborationTrainedModelCommandOutput} 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 ResourceNotFoundException} (client fault)
85
+ * <p>The resource you are requesting does not exist.</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 GetCollaborationTrainedModelCommand extends GetCollaborationTrainedModelCommand_base {
96
+ /** @internal type navigation helper, not in runtime. */
97
+ protected static __types: {
98
+ api: {
99
+ input: GetCollaborationTrainedModelRequest;
100
+ output: GetCollaborationTrainedModelResponse;
101
+ };
102
+ sdk: {
103
+ input: GetCollaborationTrainedModelCommandInput;
104
+ output: GetCollaborationTrainedModelCommandOutput;
105
+ };
106
+ };
107
+ }