@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,91 @@
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 { ListConfiguredModelAlgorithmAssociationsRequest, ListConfiguredModelAlgorithmAssociationsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListConfiguredModelAlgorithmAssociationsCommand}.
14
+ */
15
+ export interface ListConfiguredModelAlgorithmAssociationsCommandInput extends ListConfiguredModelAlgorithmAssociationsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListConfiguredModelAlgorithmAssociationsCommand}.
21
+ */
22
+ export interface ListConfiguredModelAlgorithmAssociationsCommandOutput extends ListConfiguredModelAlgorithmAssociationsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListConfiguredModelAlgorithmAssociationsCommand_base: {
25
+ new (input: ListConfiguredModelAlgorithmAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfiguredModelAlgorithmAssociationsCommandInput, ListConfiguredModelAlgorithmAssociationsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListConfiguredModelAlgorithmAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfiguredModelAlgorithmAssociationsCommandInput, ListConfiguredModelAlgorithmAssociationsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of configured model algorithm associations.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListConfiguredModelAlgorithmAssociationsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListConfiguredModelAlgorithmAssociationsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListConfiguredModelAlgorithmAssociationsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * membershipIdentifier: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new ListConfiguredModelAlgorithmAssociationsCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // ListConfiguredModelAlgorithmAssociationsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // configuredModelAlgorithmAssociations: [ // ConfiguredModelAlgorithmAssociationList // required
47
+ * // { // ConfiguredModelAlgorithmAssociationSummary
48
+ * // createTime: new Date("TIMESTAMP"), // required
49
+ * // updateTime: new Date("TIMESTAMP"), // required
50
+ * // configuredModelAlgorithmAssociationArn: "STRING_VALUE", // required
51
+ * // configuredModelAlgorithmArn: "STRING_VALUE", // required
52
+ * // name: "STRING_VALUE", // required
53
+ * // description: "STRING_VALUE",
54
+ * // membershipIdentifier: "STRING_VALUE", // required
55
+ * // collaborationIdentifier: "STRING_VALUE", // required
56
+ * // },
57
+ * // ],
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param ListConfiguredModelAlgorithmAssociationsCommandInput - {@link ListConfiguredModelAlgorithmAssociationsCommandInput}
63
+ * @returns {@link ListConfiguredModelAlgorithmAssociationsCommandOutput}
64
+ * @see {@link ListConfiguredModelAlgorithmAssociationsCommandInput} for command's `input` shape.
65
+ * @see {@link ListConfiguredModelAlgorithmAssociationsCommandOutput} for command's `response` shape.
66
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
67
+ *
68
+ * @throws {@link AccessDeniedException} (client fault)
69
+ * <p>You do not have sufficient access to perform this action.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The request parameters for this request are incorrect.</p>
73
+ *
74
+ * @throws {@link CleanRoomsMLServiceException}
75
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
76
+ *
77
+ * @public
78
+ */
79
+ export declare class ListConfiguredModelAlgorithmAssociationsCommand extends ListConfiguredModelAlgorithmAssociationsCommand_base {
80
+ /** @internal type navigation helper, not in runtime. */
81
+ protected static __types: {
82
+ api: {
83
+ input: ListConfiguredModelAlgorithmAssociationsRequest;
84
+ output: ListConfiguredModelAlgorithmAssociationsResponse;
85
+ };
86
+ sdk: {
87
+ input: ListConfiguredModelAlgorithmAssociationsCommandInput;
88
+ output: ListConfiguredModelAlgorithmAssociationsCommandOutput;
89
+ };
90
+ };
91
+ }
@@ -0,0 +1,87 @@
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 { ListConfiguredModelAlgorithmsRequest, ListConfiguredModelAlgorithmsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListConfiguredModelAlgorithmsCommand}.
14
+ */
15
+ export interface ListConfiguredModelAlgorithmsCommandInput extends ListConfiguredModelAlgorithmsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListConfiguredModelAlgorithmsCommand}.
21
+ */
22
+ export interface ListConfiguredModelAlgorithmsCommandOutput extends ListConfiguredModelAlgorithmsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListConfiguredModelAlgorithmsCommand_base: {
25
+ new (input: ListConfiguredModelAlgorithmsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfiguredModelAlgorithmsCommandInput, ListConfiguredModelAlgorithmsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListConfiguredModelAlgorithmsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConfiguredModelAlgorithmsCommandInput, ListConfiguredModelAlgorithmsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of configured model algorithms.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListConfiguredModelAlgorithmsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListConfiguredModelAlgorithmsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListConfiguredModelAlgorithmsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * };
41
+ * const command = new ListConfiguredModelAlgorithmsCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // ListConfiguredModelAlgorithmsResponse
44
+ * // nextToken: "STRING_VALUE",
45
+ * // configuredModelAlgorithms: [ // ConfiguredModelAlgorithmList // required
46
+ * // { // ConfiguredModelAlgorithmSummary
47
+ * // createTime: new Date("TIMESTAMP"), // required
48
+ * // updateTime: new Date("TIMESTAMP"), // required
49
+ * // configuredModelAlgorithmArn: "STRING_VALUE", // required
50
+ * // name: "STRING_VALUE", // required
51
+ * // description: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param ListConfiguredModelAlgorithmsCommandInput - {@link ListConfiguredModelAlgorithmsCommandInput}
59
+ * @returns {@link ListConfiguredModelAlgorithmsCommandOutput}
60
+ * @see {@link ListConfiguredModelAlgorithmsCommandInput} for command's `input` shape.
61
+ * @see {@link ListConfiguredModelAlgorithmsCommandOutput} 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 ValidationException} (client fault)
68
+ * <p>The request parameters for this request are incorrect.</p>
69
+ *
70
+ * @throws {@link CleanRoomsMLServiceException}
71
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
72
+ *
73
+ * @public
74
+ */
75
+ export declare class ListConfiguredModelAlgorithmsCommand extends ListConfiguredModelAlgorithmsCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: ListConfiguredModelAlgorithmsRequest;
80
+ output: ListConfiguredModelAlgorithmsResponse;
81
+ };
82
+ sdk: {
83
+ input: ListConfiguredModelAlgorithmsCommandInput;
84
+ output: ListConfiguredModelAlgorithmsCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -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 { ListMLInputChannelsRequest, ListMLInputChannelsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListMLInputChannelsCommand}.
14
+ */
15
+ export interface ListMLInputChannelsCommandInput extends ListMLInputChannelsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListMLInputChannelsCommand}.
21
+ */
22
+ export interface ListMLInputChannelsCommandOutput extends ListMLInputChannelsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListMLInputChannelsCommand_base: {
25
+ new (input: ListMLInputChannelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListMLInputChannelsCommandInput, ListMLInputChannelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListMLInputChannelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListMLInputChannelsCommandInput, ListMLInputChannelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of ML input channels.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListMLInputChannelsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListMLInputChannelsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListMLInputChannelsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * membershipIdentifier: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new ListMLInputChannelsCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // ListMLInputChannelsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // mlInputChannelsList: [ // MLInputChannelsList // required
47
+ * // { // MLInputChannelSummary
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
+ * // protectedQueryIdentifier: "STRING_VALUE",
57
+ * // mlInputChannelArn: "STRING_VALUE", // required
58
+ * // status: "CREATE_PENDING" || "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "ACTIVE" || "DELETE_PENDING" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "INACTIVE", // required
59
+ * // description: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param ListMLInputChannelsCommandInput - {@link ListMLInputChannelsCommandInput}
67
+ * @returns {@link ListMLInputChannelsCommandOutput}
68
+ * @see {@link ListMLInputChannelsCommandInput} for command's `input` shape.
69
+ * @see {@link ListMLInputChannelsCommandOutput} 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 ListMLInputChannelsCommand extends ListMLInputChannelsCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: ListMLInputChannelsRequest;
88
+ output: ListMLInputChannelsResponse;
89
+ };
90
+ sdk: {
91
+ input: ListMLInputChannelsCommandInput;
92
+ output: ListMLInputChannelsCommandOutput;
93
+ };
94
+ };
95
+ }
@@ -0,0 +1,106 @@
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 { ListTrainedModelInferenceJobsRequest, ListTrainedModelInferenceJobsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListTrainedModelInferenceJobsCommand}.
14
+ */
15
+ export interface ListTrainedModelInferenceJobsCommandInput extends ListTrainedModelInferenceJobsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListTrainedModelInferenceJobsCommand}.
21
+ */
22
+ export interface ListTrainedModelInferenceJobsCommandOutput extends ListTrainedModelInferenceJobsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListTrainedModelInferenceJobsCommand_base: {
25
+ new (input: ListTrainedModelInferenceJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTrainedModelInferenceJobsCommandInput, ListTrainedModelInferenceJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListTrainedModelInferenceJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTrainedModelInferenceJobsCommandInput, ListTrainedModelInferenceJobsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of trained model inference jobs that match the request parameters.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListTrainedModelInferenceJobsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListTrainedModelInferenceJobsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListTrainedModelInferenceJobsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * membershipIdentifier: "STRING_VALUE", // required
41
+ * trainedModelArn: "STRING_VALUE",
42
+ * };
43
+ * const command = new ListTrainedModelInferenceJobsCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // ListTrainedModelInferenceJobsResponse
46
+ * // nextToken: "STRING_VALUE",
47
+ * // trainedModelInferenceJobs: [ // TrainedModelInferenceJobList // required
48
+ * // { // TrainedModelInferenceJobSummary
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
+ * // },
72
+ * // ],
73
+ * // };
74
+ *
75
+ * ```
76
+ *
77
+ * @param ListTrainedModelInferenceJobsCommandInput - {@link ListTrainedModelInferenceJobsCommandInput}
78
+ * @returns {@link ListTrainedModelInferenceJobsCommandOutput}
79
+ * @see {@link ListTrainedModelInferenceJobsCommandInput} for command's `input` shape.
80
+ * @see {@link ListTrainedModelInferenceJobsCommandOutput} for command's `response` shape.
81
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
82
+ *
83
+ * @throws {@link AccessDeniedException} (client fault)
84
+ * <p>You do not have sufficient access to perform this action.</p>
85
+ *
86
+ * @throws {@link ValidationException} (client fault)
87
+ * <p>The request parameters for this request are incorrect.</p>
88
+ *
89
+ * @throws {@link CleanRoomsMLServiceException}
90
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
91
+ *
92
+ * @public
93
+ */
94
+ export declare class ListTrainedModelInferenceJobsCommand extends ListTrainedModelInferenceJobsCommand_base {
95
+ /** @internal type navigation helper, not in runtime. */
96
+ protected static __types: {
97
+ api: {
98
+ input: ListTrainedModelInferenceJobsRequest;
99
+ output: ListTrainedModelInferenceJobsResponse;
100
+ };
101
+ sdk: {
102
+ input: ListTrainedModelInferenceJobsCommandInput;
103
+ output: ListTrainedModelInferenceJobsCommandOutput;
104
+ };
105
+ };
106
+ }
@@ -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 { ListTrainedModelsRequest, ListTrainedModelsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListTrainedModelsCommand}.
14
+ */
15
+ export interface ListTrainedModelsCommandInput extends ListTrainedModelsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListTrainedModelsCommand}.
21
+ */
22
+ export interface ListTrainedModelsCommandOutput extends ListTrainedModelsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListTrainedModelsCommand_base: {
25
+ new (input: ListTrainedModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTrainedModelsCommandInput, ListTrainedModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: ListTrainedModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTrainedModelsCommandInput, ListTrainedModelsCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns a list of trained models.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, ListTrainedModelsCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, ListTrainedModelsCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // ListTrainedModelsRequest
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * membershipIdentifier: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new ListTrainedModelsCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // ListTrainedModelsResponse
45
+ * // nextToken: "STRING_VALUE",
46
+ * // trainedModels: [ // TrainedModelList // required
47
+ * // { // TrainedModelSummary
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
+ * // },
58
+ * // ],
59
+ * // };
60
+ *
61
+ * ```
62
+ *
63
+ * @param ListTrainedModelsCommandInput - {@link ListTrainedModelsCommandInput}
64
+ * @returns {@link ListTrainedModelsCommandOutput}
65
+ * @see {@link ListTrainedModelsCommandInput} for command's `input` shape.
66
+ * @see {@link ListTrainedModelsCommandOutput} 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 ListTrainedModelsCommand extends ListTrainedModelsCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: ListTrainedModelsRequest;
85
+ output: ListTrainedModelsResponse;
86
+ };
87
+ sdk: {
88
+ input: ListTrainedModelsCommandInput;
89
+ output: ListTrainedModelsCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -0,0 +1,83 @@
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 { PutMLConfigurationRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link PutMLConfigurationCommand}.
14
+ */
15
+ export interface PutMLConfigurationCommandInput extends PutMLConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link PutMLConfigurationCommand}.
21
+ */
22
+ export interface PutMLConfigurationCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const PutMLConfigurationCommand_base: {
25
+ new (input: PutMLConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutMLConfigurationCommandInput, PutMLConfigurationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: PutMLConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutMLConfigurationCommandInput, PutMLConfigurationCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Assigns information about an 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, PutMLConfigurationCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, PutMLConfigurationCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // PutMLConfigurationRequest
38
+ * membershipIdentifier: "STRING_VALUE", // required
39
+ * defaultOutputLocation: { // MLOutputConfiguration
40
+ * destination: { // Destination
41
+ * s3Destination: { // S3ConfigMap
42
+ * s3Uri: "STRING_VALUE", // required
43
+ * },
44
+ * },
45
+ * roleArn: "STRING_VALUE", // required
46
+ * },
47
+ * };
48
+ * const command = new PutMLConfigurationCommand(input);
49
+ * const response = await client.send(command);
50
+ * // {};
51
+ *
52
+ * ```
53
+ *
54
+ * @param PutMLConfigurationCommandInput - {@link PutMLConfigurationCommandInput}
55
+ * @returns {@link PutMLConfigurationCommandOutput}
56
+ * @see {@link PutMLConfigurationCommandInput} for command's `input` shape.
57
+ * @see {@link PutMLConfigurationCommandOutput} for command's `response` shape.
58
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
59
+ *
60
+ * @throws {@link AccessDeniedException} (client fault)
61
+ * <p>You do not have sufficient access to perform this action.</p>
62
+ *
63
+ * @throws {@link ValidationException} (client fault)
64
+ * <p>The request parameters for this request are incorrect.</p>
65
+ *
66
+ * @throws {@link CleanRoomsMLServiceException}
67
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
68
+ *
69
+ * @public
70
+ */
71
+ export declare class PutMLConfigurationCommand extends PutMLConfigurationCommand_base {
72
+ /** @internal type navigation helper, not in runtime. */
73
+ protected static __types: {
74
+ api: {
75
+ input: PutMLConfigurationRequest;
76
+ output: {};
77
+ };
78
+ sdk: {
79
+ input: PutMLConfigurationCommandInput;
80
+ output: PutMLConfigurationCommandOutput;
81
+ };
82
+ };
83
+ }
@@ -0,0 +1,91 @@
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 { StartTrainedModelExportJobRequest } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartTrainedModelExportJobCommand}.
14
+ */
15
+ export interface StartTrainedModelExportJobCommandInput extends StartTrainedModelExportJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartTrainedModelExportJobCommand}.
21
+ */
22
+ export interface StartTrainedModelExportJobCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const StartTrainedModelExportJobCommand_base: {
25
+ new (input: StartTrainedModelExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartTrainedModelExportJobCommandInput, StartTrainedModelExportJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: StartTrainedModelExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartTrainedModelExportJobCommandInput, StartTrainedModelExportJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Provides the information necessary to start a trained model export 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, StartTrainedModelExportJobCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, StartTrainedModelExportJobCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // StartTrainedModelExportJobRequest
38
+ * name: "STRING_VALUE", // required
39
+ * trainedModelArn: "STRING_VALUE", // required
40
+ * membershipIdentifier: "STRING_VALUE", // required
41
+ * outputConfiguration: { // TrainedModelExportOutputConfiguration
42
+ * members: [ // TrainedModelExportReceiverMembers // required
43
+ * { // TrainedModelExportReceiverMember
44
+ * accountId: "STRING_VALUE", // required
45
+ * },
46
+ * ],
47
+ * },
48
+ * description: "STRING_VALUE",
49
+ * };
50
+ * const command = new StartTrainedModelExportJobCommand(input);
51
+ * const response = await client.send(command);
52
+ * // {};
53
+ *
54
+ * ```
55
+ *
56
+ * @param StartTrainedModelExportJobCommandInput - {@link StartTrainedModelExportJobCommandInput}
57
+ * @returns {@link StartTrainedModelExportJobCommandOutput}
58
+ * @see {@link StartTrainedModelExportJobCommandInput} for command's `input` shape.
59
+ * @see {@link StartTrainedModelExportJobCommandOutput} for command's `response` shape.
60
+ * @see {@link CleanRoomsMLClientResolvedConfig | config} for CleanRoomsMLClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>You do not have sufficient access to perform this action.</p>
64
+ *
65
+ * @throws {@link ConflictException} (client fault)
66
+ * <p>You can't complete this action because another resource depends on this resource.</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>The resource you are requesting does not exist.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The request parameters for this request are incorrect.</p>
73
+ *
74
+ * @throws {@link CleanRoomsMLServiceException}
75
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
76
+ *
77
+ * @public
78
+ */
79
+ export declare class StartTrainedModelExportJobCommand extends StartTrainedModelExportJobCommand_base {
80
+ /** @internal type navigation helper, not in runtime. */
81
+ protected static __types: {
82
+ api: {
83
+ input: StartTrainedModelExportJobRequest;
84
+ output: {};
85
+ };
86
+ sdk: {
87
+ input: StartTrainedModelExportJobCommandInput;
88
+ output: StartTrainedModelExportJobCommandOutput;
89
+ };
90
+ };
91
+ }