@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,131 @@
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 { GetConfiguredModelAlgorithmAssociationRequest, GetConfiguredModelAlgorithmAssociationResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetConfiguredModelAlgorithmAssociationCommand}.
14
+ */
15
+ export interface GetConfiguredModelAlgorithmAssociationCommandInput extends GetConfiguredModelAlgorithmAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetConfiguredModelAlgorithmAssociationCommand}.
21
+ */
22
+ export interface GetConfiguredModelAlgorithmAssociationCommandOutput extends GetConfiguredModelAlgorithmAssociationResponse, __MetadataBearer {
23
+ }
24
+ declare const GetConfiguredModelAlgorithmAssociationCommand_base: {
25
+ new (input: GetConfiguredModelAlgorithmAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredModelAlgorithmAssociationCommandInput, GetConfiguredModelAlgorithmAssociationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetConfiguredModelAlgorithmAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredModelAlgorithmAssociationCommandInput, GetConfiguredModelAlgorithmAssociationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about a configured model algorithm association.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, GetConfiguredModelAlgorithmAssociationCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetConfiguredModelAlgorithmAssociationCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetConfiguredModelAlgorithmAssociationRequest
38
+ * configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
39
+ * membershipIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetConfiguredModelAlgorithmAssociationCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetConfiguredModelAlgorithmAssociationResponse
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
+ * // privacyConfiguration: { // PrivacyConfiguration
52
+ * // policies: { // PrivacyConfigurationPolicies
53
+ * // trainedModels: { // TrainedModelsConfigurationPolicy
54
+ * // containerLogs: [ // LogsConfigurationPolicyList
55
+ * // { // LogsConfigurationPolicy
56
+ * // allowedAccountIds: [ // AccountIdList // required
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // filterPattern: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // containerMetrics: { // MetricsConfigurationPolicy
63
+ * // noiseLevel: "HIGH" || "MEDIUM" || "LOW" || "NONE", // required
64
+ * // },
65
+ * // },
66
+ * // trainedModelExports: { // TrainedModelExportsConfigurationPolicy
67
+ * // maxSize: { // TrainedModelExportsMaxSize
68
+ * // unit: "GB", // required
69
+ * // value: Number("double"), // required
70
+ * // },
71
+ * // filesToExport: [ // TrainedModelExportFileTypeList // required
72
+ * // "MODEL" || "OUTPUT",
73
+ * // ],
74
+ * // },
75
+ * // trainedModelInferenceJobs: { // TrainedModelInferenceJobsConfigurationPolicy
76
+ * // containerLogs: [
77
+ * // {
78
+ * // allowedAccountIds: [ // required
79
+ * // "STRING_VALUE",
80
+ * // ],
81
+ * // filterPattern: "STRING_VALUE",
82
+ * // },
83
+ * // ],
84
+ * // maxOutputSize: { // TrainedModelInferenceMaxOutputSize
85
+ * // unit: "GB", // required
86
+ * // value: Number("double"), // required
87
+ * // },
88
+ * // },
89
+ * // },
90
+ * // },
91
+ * // description: "STRING_VALUE",
92
+ * // tags: { // TagMap
93
+ * // "<keys>": "STRING_VALUE",
94
+ * // },
95
+ * // };
96
+ *
97
+ * ```
98
+ *
99
+ * @param GetConfiguredModelAlgorithmAssociationCommandInput - {@link GetConfiguredModelAlgorithmAssociationCommandInput}
100
+ * @returns {@link GetConfiguredModelAlgorithmAssociationCommandOutput}
101
+ * @see {@link GetConfiguredModelAlgorithmAssociationCommandInput} for command's `input` shape.
102
+ * @see {@link GetConfiguredModelAlgorithmAssociationCommandOutput} for command's `response` shape.
103
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
104
+ *
105
+ * @throws {@link AccessDeniedException} (client fault)
106
+ * <p>You do not have sufficient access to perform this action.</p>
107
+ *
108
+ * @throws {@link ResourceNotFoundException} (client fault)
109
+ * <p>The resource you are requesting does not exist.</p>
110
+ *
111
+ * @throws {@link ValidationException} (client fault)
112
+ * <p>The request parameters for this request are incorrect.</p>
113
+ *
114
+ * @throws {@link CleanRoomsMLServiceException}
115
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
116
+ *
117
+ * @public
118
+ */
119
+ export declare class GetConfiguredModelAlgorithmAssociationCommand extends GetConfiguredModelAlgorithmAssociationCommand_base {
120
+ /** @internal type navigation helper, not in runtime. */
121
+ protected static __types: {
122
+ api: {
123
+ input: GetConfiguredModelAlgorithmAssociationRequest;
124
+ output: GetConfiguredModelAlgorithmAssociationResponse;
125
+ };
126
+ sdk: {
127
+ input: GetConfiguredModelAlgorithmAssociationCommandInput;
128
+ output: GetConfiguredModelAlgorithmAssociationCommandOutput;
129
+ };
130
+ };
131
+ }
@@ -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 { GetConfiguredModelAlgorithmRequest, GetConfiguredModelAlgorithmResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetConfiguredModelAlgorithmCommand}.
14
+ */
15
+ export interface GetConfiguredModelAlgorithmCommandInput extends GetConfiguredModelAlgorithmRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetConfiguredModelAlgorithmCommand}.
21
+ */
22
+ export interface GetConfiguredModelAlgorithmCommandOutput extends GetConfiguredModelAlgorithmResponse, __MetadataBearer {
23
+ }
24
+ declare const GetConfiguredModelAlgorithmCommand_base: {
25
+ new (input: GetConfiguredModelAlgorithmCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredModelAlgorithmCommandInput, GetConfiguredModelAlgorithmCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetConfiguredModelAlgorithmCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfiguredModelAlgorithmCommandInput, GetConfiguredModelAlgorithmCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about a configured model algorithm.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, GetConfiguredModelAlgorithmCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetConfiguredModelAlgorithmCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetConfiguredModelAlgorithmRequest
38
+ * configuredModelAlgorithmArn: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new GetConfiguredModelAlgorithmCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetConfiguredModelAlgorithmResponse
43
+ * // createTime: new Date("TIMESTAMP"), // required
44
+ * // updateTime: new Date("TIMESTAMP"), // required
45
+ * // configuredModelAlgorithmArn: "STRING_VALUE", // required
46
+ * // name: "STRING_VALUE", // required
47
+ * // trainingContainerConfig: { // ContainerConfig
48
+ * // imageUri: "STRING_VALUE", // required
49
+ * // entrypoint: [ // ContainerEntrypoint
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // arguments: [ // ContainerArguments
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // metricDefinitions: [ // MetricDefinitionList
56
+ * // { // MetricDefinition
57
+ * // name: "STRING_VALUE", // required
58
+ * // regex: "STRING_VALUE", // required
59
+ * // },
60
+ * // ],
61
+ * // },
62
+ * // inferenceContainerConfig: { // InferenceContainerConfig
63
+ * // imageUri: "STRING_VALUE", // required
64
+ * // },
65
+ * // roleArn: "STRING_VALUE", // required
66
+ * // description: "STRING_VALUE",
67
+ * // tags: { // TagMap
68
+ * // "<keys>": "STRING_VALUE",
69
+ * // },
70
+ * // kmsKeyArn: "STRING_VALUE",
71
+ * // };
72
+ *
73
+ * ```
74
+ *
75
+ * @param GetConfiguredModelAlgorithmCommandInput - {@link GetConfiguredModelAlgorithmCommandInput}
76
+ * @returns {@link GetConfiguredModelAlgorithmCommandOutput}
77
+ * @see {@link GetConfiguredModelAlgorithmCommandInput} for command's `input` shape.
78
+ * @see {@link GetConfiguredModelAlgorithmCommandOutput} 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 GetConfiguredModelAlgorithmCommand extends GetConfiguredModelAlgorithmCommand_base {
96
+ /** @internal type navigation helper, not in runtime. */
97
+ protected static __types: {
98
+ api: {
99
+ input: GetConfiguredModelAlgorithmRequest;
100
+ output: GetConfiguredModelAlgorithmResponse;
101
+ };
102
+ sdk: {
103
+ input: GetConfiguredModelAlgorithmCommandInput;
104
+ output: GetConfiguredModelAlgorithmCommandOutput;
105
+ };
106
+ };
107
+ }
@@ -0,0 +1,90 @@
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 { GetMLConfigurationRequest, GetMLConfigurationResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetMLConfigurationCommand}.
14
+ */
15
+ export interface GetMLConfigurationCommandInput extends GetMLConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetMLConfigurationCommand}.
21
+ */
22
+ export interface GetMLConfigurationCommandOutput extends GetMLConfigurationResponse, __MetadataBearer {
23
+ }
24
+ declare const GetMLConfigurationCommand_base: {
25
+ new (input: GetMLConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetMLConfigurationCommandInput, GetMLConfigurationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetMLConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetMLConfigurationCommandInput, GetMLConfigurationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about a specific ML 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, GetMLConfigurationCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetMLConfigurationCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetMLConfigurationRequest
38
+ * membershipIdentifier: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new GetMLConfigurationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetMLConfigurationResponse
43
+ * // membershipIdentifier: "STRING_VALUE", // required
44
+ * // defaultOutputLocation: { // MLOutputConfiguration
45
+ * // destination: { // Destination
46
+ * // s3Destination: { // S3ConfigMap
47
+ * // s3Uri: "STRING_VALUE", // required
48
+ * // },
49
+ * // },
50
+ * // roleArn: "STRING_VALUE", // required
51
+ * // },
52
+ * // createTime: new Date("TIMESTAMP"), // required
53
+ * // updateTime: new Date("TIMESTAMP"), // required
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param GetMLConfigurationCommandInput - {@link GetMLConfigurationCommandInput}
59
+ * @returns {@link GetMLConfigurationCommandOutput}
60
+ * @see {@link GetMLConfigurationCommandInput} for command's `input` shape.
61
+ * @see {@link GetMLConfigurationCommandOutput} for command's `response` shape.
62
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>You do not have sufficient access to perform this action.</p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>The resource you are requesting does not exist.</p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>The request parameters for this request are incorrect.</p>
72
+ *
73
+ * @throws {@link CleanRoomsMLServiceException}
74
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
75
+ *
76
+ * @public
77
+ */
78
+ export declare class GetMLConfigurationCommand extends GetMLConfigurationCommand_base {
79
+ /** @internal type navigation helper, not in runtime. */
80
+ protected static __types: {
81
+ api: {
82
+ input: GetMLConfigurationRequest;
83
+ output: GetMLConfigurationResponse;
84
+ };
85
+ sdk: {
86
+ input: GetMLConfigurationCommandInput;
87
+ output: GetMLConfigurationCommandOutput;
88
+ };
89
+ };
90
+ }
@@ -0,0 +1,124 @@
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 { GetMLInputChannelRequest, GetMLInputChannelResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetMLInputChannelCommand}.
14
+ */
15
+ export interface GetMLInputChannelCommandInput extends GetMLInputChannelRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetMLInputChannelCommand}.
21
+ */
22
+ export interface GetMLInputChannelCommandOutput extends GetMLInputChannelResponse, __MetadataBearer {
23
+ }
24
+ declare const GetMLInputChannelCommand_base: {
25
+ new (input: GetMLInputChannelCommandInput): import("@smithy/smithy-client").CommandImpl<GetMLInputChannelCommandInput, GetMLInputChannelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetMLInputChannelCommandInput): import("@smithy/smithy-client").CommandImpl<GetMLInputChannelCommandInput, GetMLInputChannelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about 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, GetMLInputChannelCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetMLInputChannelCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetMLInputChannelRequest
38
+ * mlInputChannelArn: "STRING_VALUE", // required
39
+ * membershipIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetMLInputChannelCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetMLInputChannelResponse
44
+ * // createTime: new Date("TIMESTAMP"), // required
45
+ * // updateTime: new Date("TIMESTAMP"), // required
46
+ * // membershipIdentifier: "STRING_VALUE", // required
47
+ * // collaborationIdentifier: "STRING_VALUE", // required
48
+ * // inputChannel: { // InputChannel
49
+ * // dataSource: { // InputChannelDataSource Union: only one key present
50
+ * // protectedQueryInputParameters: { // ProtectedQueryInputParameters
51
+ * // sqlParameters: { // ProtectedQuerySQLParameters
52
+ * // queryString: "STRING_VALUE",
53
+ * // analysisTemplateArn: "STRING_VALUE",
54
+ * // parameters: { // ParameterMap
55
+ * // "<keys>": "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // computeConfiguration: { // ComputeConfiguration Union: only one key present
59
+ * // worker: { // WorkerComputeConfiguration
60
+ * // type: "CR.1X" || "CR.4X",
61
+ * // number: Number("int"),
62
+ * // },
63
+ * // },
64
+ * // },
65
+ * // },
66
+ * // roleArn: "STRING_VALUE", // required
67
+ * // },
68
+ * // protectedQueryIdentifier: "STRING_VALUE",
69
+ * // mlInputChannelArn: "STRING_VALUE", // required
70
+ * // name: "STRING_VALUE", // required
71
+ * // configuredModelAlgorithmAssociations: [ // ConfiguredModelAlgorithmAssociationArnList // required
72
+ * // "STRING_VALUE",
73
+ * // ],
74
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "INACTIVE", // required
75
+ * // statusDetails: { // StatusDetails
76
+ * // statusCode: "STRING_VALUE",
77
+ * // message: "STRING_VALUE",
78
+ * // },
79
+ * // retentionInDays: Number("int"), // required
80
+ * // numberOfRecords: Number("long"),
81
+ * // numberOfFiles: Number("double"),
82
+ * // sizeInGb: Number("double"),
83
+ * // description: "STRING_VALUE",
84
+ * // kmsKeyArn: "STRING_VALUE",
85
+ * // tags: { // TagMap
86
+ * // "<keys>": "STRING_VALUE",
87
+ * // },
88
+ * // };
89
+ *
90
+ * ```
91
+ *
92
+ * @param GetMLInputChannelCommandInput - {@link GetMLInputChannelCommandInput}
93
+ * @returns {@link GetMLInputChannelCommandOutput}
94
+ * @see {@link GetMLInputChannelCommandInput} for command's `input` shape.
95
+ * @see {@link GetMLInputChannelCommandOutput} for command's `response` shape.
96
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
97
+ *
98
+ * @throws {@link AccessDeniedException} (client fault)
99
+ * <p>You do not have sufficient access to perform this action.</p>
100
+ *
101
+ * @throws {@link ResourceNotFoundException} (client fault)
102
+ * <p>The resource you are requesting does not exist.</p>
103
+ *
104
+ * @throws {@link ValidationException} (client fault)
105
+ * <p>The request parameters for this request are incorrect.</p>
106
+ *
107
+ * @throws {@link CleanRoomsMLServiceException}
108
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
109
+ *
110
+ * @public
111
+ */
112
+ export declare class GetMLInputChannelCommand extends GetMLInputChannelCommand_base {
113
+ /** @internal type navigation helper, not in runtime. */
114
+ protected static __types: {
115
+ api: {
116
+ input: GetMLInputChannelRequest;
117
+ output: GetMLInputChannelResponse;
118
+ };
119
+ sdk: {
120
+ input: GetMLInputChannelCommandInput;
121
+ output: GetMLInputChannelCommandOutput;
122
+ };
123
+ };
124
+ }
@@ -0,0 +1,122 @@
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 { GetTrainedModelRequest, GetTrainedModelResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetTrainedModelCommand}.
14
+ */
15
+ export interface GetTrainedModelCommandInput extends GetTrainedModelRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTrainedModelCommand}.
21
+ */
22
+ export interface GetTrainedModelCommandOutput extends GetTrainedModelResponse, __MetadataBearer {
23
+ }
24
+ declare const GetTrainedModelCommand_base: {
25
+ new (input: GetTrainedModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrainedModelCommandInput, GetTrainedModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetTrainedModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetTrainedModelCommandInput, GetTrainedModelCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about 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, GetTrainedModelCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, GetTrainedModelCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // GetTrainedModelRequest
38
+ * trainedModelArn: "STRING_VALUE", // required
39
+ * membershipIdentifier: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new GetTrainedModelCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // GetTrainedModelResponse
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
+ * // hyperparameters: { // HyperParameters
71
+ * // "<keys>": "STRING_VALUE",
72
+ * // },
73
+ * // environment: { // Environment
74
+ * // "<keys>": "STRING_VALUE",
75
+ * // },
76
+ * // kmsKeyArn: "STRING_VALUE",
77
+ * // tags: { // TagMap
78
+ * // "<keys>": "STRING_VALUE",
79
+ * // },
80
+ * // dataChannels: [ // ModelTrainingDataChannels // required
81
+ * // { // ModelTrainingDataChannel
82
+ * // mlInputChannelArn: "STRING_VALUE", // required
83
+ * // channelName: "STRING_VALUE", // required
84
+ * // },
85
+ * // ],
86
+ * // };
87
+ *
88
+ * ```
89
+ *
90
+ * @param GetTrainedModelCommandInput - {@link GetTrainedModelCommandInput}
91
+ * @returns {@link GetTrainedModelCommandOutput}
92
+ * @see {@link GetTrainedModelCommandInput} for command's `input` shape.
93
+ * @see {@link GetTrainedModelCommandOutput} for command's `response` shape.
94
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
95
+ *
96
+ * @throws {@link AccessDeniedException} (client fault)
97
+ * <p>You do not have sufficient access to perform this action.</p>
98
+ *
99
+ * @throws {@link ResourceNotFoundException} (client fault)
100
+ * <p>The resource you are requesting does not exist.</p>
101
+ *
102
+ * @throws {@link ValidationException} (client fault)
103
+ * <p>The request parameters for this request are incorrect.</p>
104
+ *
105
+ * @throws {@link CleanRoomsMLServiceException}
106
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
107
+ *
108
+ * @public
109
+ */
110
+ export declare class GetTrainedModelCommand extends GetTrainedModelCommand_base {
111
+ /** @internal type navigation helper, not in runtime. */
112
+ protected static __types: {
113
+ api: {
114
+ input: GetTrainedModelRequest;
115
+ output: GetTrainedModelResponse;
116
+ };
117
+ sdk: {
118
+ input: GetTrainedModelCommandInput;
119
+ output: GetTrainedModelCommandOutput;
120
+ };
121
+ };
122
+ }