@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,115 @@
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 { StartTrainedModelInferenceJobRequest, StartTrainedModelInferenceJobResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartTrainedModelInferenceJobCommand}.
14
+ */
15
+ export interface StartTrainedModelInferenceJobCommandInput extends StartTrainedModelInferenceJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartTrainedModelInferenceJobCommand}.
21
+ */
22
+ export interface StartTrainedModelInferenceJobCommandOutput extends StartTrainedModelInferenceJobResponse, __MetadataBearer {
23
+ }
24
+ declare const StartTrainedModelInferenceJobCommand_base: {
25
+ new (input: StartTrainedModelInferenceJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartTrainedModelInferenceJobCommandInput, StartTrainedModelInferenceJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: StartTrainedModelInferenceJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartTrainedModelInferenceJobCommandInput, StartTrainedModelInferenceJobCommandOutput, CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Defines the information necessary to begin a trained model inference job.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CleanRoomsMLClient, StartTrainedModelInferenceJobCommand } from "@aws-sdk/client-cleanroomsml"; // ES Modules import
35
+ * // const { CleanRoomsMLClient, StartTrainedModelInferenceJobCommand } = require("@aws-sdk/client-cleanroomsml"); // CommonJS import
36
+ * const client = new CleanRoomsMLClient(config);
37
+ * const input = { // StartTrainedModelInferenceJobRequest
38
+ * membershipIdentifier: "STRING_VALUE", // required
39
+ * name: "STRING_VALUE", // required
40
+ * trainedModelArn: "STRING_VALUE", // required
41
+ * configuredModelAlgorithmAssociationArn: "STRING_VALUE",
42
+ * resourceConfig: { // InferenceResourceConfig
43
+ * instanceType: "ml.r7i.48xlarge" || "ml.r6i.16xlarge" || "ml.m6i.xlarge" || "ml.m5.4xlarge" || "ml.p2.xlarge" || "ml.m4.16xlarge" || "ml.r7i.16xlarge" || "ml.m7i.xlarge" || "ml.m6i.12xlarge" || "ml.r7i.8xlarge" || "ml.r7i.large" || "ml.m7i.12xlarge" || "ml.m6i.24xlarge" || "ml.m7i.24xlarge" || "ml.r6i.8xlarge" || "ml.r6i.large" || "ml.g5.2xlarge" || "ml.m5.large" || "ml.p3.16xlarge" || "ml.m7i.48xlarge" || "ml.m6i.16xlarge" || "ml.p2.16xlarge" || "ml.g5.4xlarge" || "ml.m7i.16xlarge" || "ml.c4.2xlarge" || "ml.c5.2xlarge" || "ml.c6i.32xlarge" || "ml.c4.4xlarge" || "ml.g5.8xlarge" || "ml.c6i.xlarge" || "ml.c5.4xlarge" || "ml.g4dn.xlarge" || "ml.c7i.xlarge" || "ml.c6i.12xlarge" || "ml.g4dn.12xlarge" || "ml.c7i.12xlarge" || "ml.c6i.24xlarge" || "ml.g4dn.2xlarge" || "ml.c7i.24xlarge" || "ml.c7i.2xlarge" || "ml.c4.8xlarge" || "ml.c6i.2xlarge" || "ml.g4dn.4xlarge" || "ml.c7i.48xlarge" || "ml.c7i.4xlarge" || "ml.c6i.16xlarge" || "ml.c5.9xlarge" || "ml.g4dn.16xlarge" || "ml.c7i.16xlarge" || "ml.c6i.4xlarge" || "ml.c5.xlarge" || "ml.c4.xlarge" || "ml.g4dn.8xlarge" || "ml.c7i.8xlarge" || "ml.c7i.large" || "ml.g5.xlarge" || "ml.c6i.8xlarge" || "ml.c6i.large" || "ml.g5.12xlarge" || "ml.g5.24xlarge" || "ml.m7i.2xlarge" || "ml.c5.18xlarge" || "ml.g5.48xlarge" || "ml.m6i.2xlarge" || "ml.g5.16xlarge" || "ml.m7i.4xlarge" || "ml.p3.2xlarge" || "ml.r6i.32xlarge" || "ml.m6i.4xlarge" || "ml.m5.xlarge" || "ml.m4.10xlarge" || "ml.r6i.xlarge" || "ml.m5.12xlarge" || "ml.m4.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.xlarge" || "ml.r6i.12xlarge" || "ml.m5.24xlarge" || "ml.r7i.12xlarge" || "ml.m7i.8xlarge" || "ml.m7i.large" || "ml.r6i.24xlarge" || "ml.r6i.2xlarge" || "ml.m4.2xlarge" || "ml.r7i.24xlarge" || "ml.r7i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.large" || "ml.m5.2xlarge" || "ml.p2.8xlarge" || "ml.r6i.4xlarge" || "ml.m6i.32xlarge" || "ml.p3.8xlarge" || "ml.m4.4xlarge", // required
44
+ * instanceCount: Number("int"),
45
+ * },
46
+ * outputConfiguration: { // InferenceOutputConfiguration
47
+ * accept: "STRING_VALUE",
48
+ * members: [ // InferenceReceiverMembers // required
49
+ * { // InferenceReceiverMember
50
+ * accountId: "STRING_VALUE", // required
51
+ * },
52
+ * ],
53
+ * },
54
+ * dataSource: { // ModelInferenceDataSource
55
+ * mlInputChannelArn: "STRING_VALUE", // required
56
+ * },
57
+ * description: "STRING_VALUE",
58
+ * containerExecutionParameters: { // InferenceContainerExecutionParameters
59
+ * maxPayloadInMB: Number("int"),
60
+ * },
61
+ * environment: { // InferenceEnvironmentMap
62
+ * "<keys>": "STRING_VALUE",
63
+ * },
64
+ * kmsKeyArn: "STRING_VALUE",
65
+ * tags: { // TagMap
66
+ * "<keys>": "STRING_VALUE",
67
+ * },
68
+ * };
69
+ * const command = new StartTrainedModelInferenceJobCommand(input);
70
+ * const response = await client.send(command);
71
+ * // { // StartTrainedModelInferenceJobResponse
72
+ * // trainedModelInferenceJobArn: "STRING_VALUE", // required
73
+ * // };
74
+ *
75
+ * ```
76
+ *
77
+ * @param StartTrainedModelInferenceJobCommandInput - {@link StartTrainedModelInferenceJobCommandInput}
78
+ * @returns {@link StartTrainedModelInferenceJobCommandOutput}
79
+ * @see {@link StartTrainedModelInferenceJobCommandInput} for command's `input` shape.
80
+ * @see {@link StartTrainedModelInferenceJobCommandOutput} 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 ConflictException} (client fault)
87
+ * <p>You can't complete this action because another resource depends on this resource.</p>
88
+ *
89
+ * @throws {@link ResourceNotFoundException} (client fault)
90
+ * <p>The resource you are requesting does not exist.</p>
91
+ *
92
+ * @throws {@link ServiceQuotaExceededException} (client fault)
93
+ * <p>You have exceeded your service quota.</p>
94
+ *
95
+ * @throws {@link ValidationException} (client fault)
96
+ * <p>The request parameters for this request are incorrect.</p>
97
+ *
98
+ * @throws {@link CleanRoomsMLServiceException}
99
+ * <p>Base exception class for all service exceptions from CleanRoomsML service.</p>
100
+ *
101
+ * @public
102
+ */
103
+ export declare class StartTrainedModelInferenceJobCommand extends StartTrainedModelInferenceJobCommand_base {
104
+ /** @internal type navigation helper, not in runtime. */
105
+ protected static __types: {
106
+ api: {
107
+ input: StartTrainedModelInferenceJobRequest;
108
+ output: StartTrainedModelInferenceJobResponse;
109
+ };
110
+ sdk: {
111
+ input: StartTrainedModelInferenceJobCommandInput;
112
+ output: StartTrainedModelInferenceJobCommandOutput;
113
+ };
114
+ };
115
+ }
@@ -1,25 +1,58 @@
1
+ export * from "./CancelTrainedModelCommand";
2
+ export * from "./CancelTrainedModelInferenceJobCommand";
1
3
  export * from "./CreateAudienceModelCommand";
2
4
  export * from "./CreateConfiguredAudienceModelCommand";
5
+ export * from "./CreateConfiguredModelAlgorithmAssociationCommand";
6
+ export * from "./CreateConfiguredModelAlgorithmCommand";
7
+ export * from "./CreateMLInputChannelCommand";
8
+ export * from "./CreateTrainedModelCommand";
3
9
  export * from "./CreateTrainingDatasetCommand";
4
10
  export * from "./DeleteAudienceGenerationJobCommand";
5
11
  export * from "./DeleteAudienceModelCommand";
6
12
  export * from "./DeleteConfiguredAudienceModelCommand";
7
13
  export * from "./DeleteConfiguredAudienceModelPolicyCommand";
14
+ export * from "./DeleteConfiguredModelAlgorithmAssociationCommand";
15
+ export * from "./DeleteConfiguredModelAlgorithmCommand";
16
+ export * from "./DeleteMLConfigurationCommand";
17
+ export * from "./DeleteMLInputChannelDataCommand";
18
+ export * from "./DeleteTrainedModelOutputCommand";
8
19
  export * from "./DeleteTrainingDatasetCommand";
9
20
  export * from "./GetAudienceGenerationJobCommand";
10
21
  export * from "./GetAudienceModelCommand";
22
+ export * from "./GetCollaborationConfiguredModelAlgorithmAssociationCommand";
23
+ export * from "./GetCollaborationMLInputChannelCommand";
24
+ export * from "./GetCollaborationTrainedModelCommand";
11
25
  export * from "./GetConfiguredAudienceModelCommand";
12
26
  export * from "./GetConfiguredAudienceModelPolicyCommand";
27
+ export * from "./GetConfiguredModelAlgorithmAssociationCommand";
28
+ export * from "./GetConfiguredModelAlgorithmCommand";
29
+ export * from "./GetMLConfigurationCommand";
30
+ export * from "./GetMLInputChannelCommand";
31
+ export * from "./GetTrainedModelCommand";
32
+ export * from "./GetTrainedModelInferenceJobCommand";
13
33
  export * from "./GetTrainingDatasetCommand";
14
34
  export * from "./ListAudienceExportJobsCommand";
15
35
  export * from "./ListAudienceGenerationJobsCommand";
16
36
  export * from "./ListAudienceModelsCommand";
37
+ export * from "./ListCollaborationConfiguredModelAlgorithmAssociationsCommand";
38
+ export * from "./ListCollaborationMLInputChannelsCommand";
39
+ export * from "./ListCollaborationTrainedModelExportJobsCommand";
40
+ export * from "./ListCollaborationTrainedModelInferenceJobsCommand";
41
+ export * from "./ListCollaborationTrainedModelsCommand";
17
42
  export * from "./ListConfiguredAudienceModelsCommand";
43
+ export * from "./ListConfiguredModelAlgorithmAssociationsCommand";
44
+ export * from "./ListConfiguredModelAlgorithmsCommand";
45
+ export * from "./ListMLInputChannelsCommand";
18
46
  export * from "./ListTagsForResourceCommand";
47
+ export * from "./ListTrainedModelInferenceJobsCommand";
48
+ export * from "./ListTrainedModelsCommand";
19
49
  export * from "./ListTrainingDatasetsCommand";
20
50
  export * from "./PutConfiguredAudienceModelPolicyCommand";
51
+ export * from "./PutMLConfigurationCommand";
21
52
  export * from "./StartAudienceExportJobCommand";
22
53
  export * from "./StartAudienceGenerationJobCommand";
54
+ export * from "./StartTrainedModelExportJobCommand";
55
+ export * from "./StartTrainedModelInferenceJobCommand";
23
56
  export * from "./TagResourceCommand";
24
57
  export * from "./UntagResourceCommand";
25
58
  export * from "./UpdateConfiguredAudienceModelCommand";