@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
@@ -14,9 +14,9 @@ export interface AudienceDestination {
14
14
  s3Destination: S3ConfigMap | undefined;
15
15
  }
16
16
  export interface ListAudienceExportJobsRequest {
17
- nextToken?: string;
18
- maxResults?: number;
19
- audienceGenerationJobArn?: string;
17
+ nextToken?: string | undefined;
18
+ maxResults?: number | undefined;
19
+ audienceGenerationJobArn?: string | undefined;
20
20
  }
21
21
  export declare const AudienceSizeType: {
22
22
  readonly ABSOLUTE: "ABSOLUTE";
@@ -37,8 +37,8 @@ export declare const AudienceExportJobStatus: {
37
37
  export type AudienceExportJobStatus =
38
38
  (typeof AudienceExportJobStatus)[keyof typeof AudienceExportJobStatus];
39
39
  export interface StatusDetails {
40
- statusCode?: string;
41
- message?: string;
40
+ statusCode?: string | undefined;
41
+ message?: string | undefined;
42
42
  }
43
43
  export interface AudienceExportJobSummary {
44
44
  createTime: Date | undefined;
@@ -46,13 +46,13 @@ export interface AudienceExportJobSummary {
46
46
  name: string | undefined;
47
47
  audienceGenerationJobArn: string | undefined;
48
48
  audienceSize: AudienceSize | undefined;
49
- description?: string;
49
+ description?: string | undefined;
50
50
  status: AudienceExportJobStatus | undefined;
51
- statusDetails?: StatusDetails;
52
- outputLocation?: string;
51
+ statusDetails?: StatusDetails | undefined;
52
+ outputLocation?: string | undefined;
53
53
  }
54
54
  export interface ListAudienceExportJobsResponse {
55
- nextToken?: string;
55
+ nextToken?: string | undefined;
56
56
  audienceExportJobs: AudienceExportJobSummary[] | undefined;
57
57
  }
58
58
  export declare class ValidationException extends __BaseException {
@@ -85,7 +85,7 @@ export interface StartAudienceExportJobRequest {
85
85
  name: string | undefined;
86
86
  audienceGenerationJobArn: string | undefined;
87
87
  audienceSize: AudienceSize | undefined;
88
- description?: string;
88
+ description?: string | undefined;
89
89
  }
90
90
  export interface DeleteAudienceGenerationJobRequest {
91
91
  audienceGenerationJobArn: string | undefined;
@@ -95,21 +95,21 @@ export interface GetAudienceGenerationJobRequest {
95
95
  }
96
96
  export interface RelevanceMetric {
97
97
  audienceSize: AudienceSize | undefined;
98
- score?: number;
98
+ score?: number | undefined;
99
99
  }
100
100
  export interface AudienceQualityMetrics {
101
101
  relevanceMetrics: RelevanceMetric[] | undefined;
102
- recallMetric?: number;
102
+ recallMetric?: number | undefined;
103
103
  }
104
104
  export interface ProtectedQuerySQLParameters {
105
- queryString?: string;
106
- analysisTemplateArn?: string;
107
- parameters?: Record<string, string>;
105
+ queryString?: string | undefined;
106
+ analysisTemplateArn?: string | undefined;
107
+ parameters?: Record<string, string> | undefined;
108
108
  }
109
109
  export interface AudienceGenerationJobDataSource {
110
- dataSource?: S3ConfigMap;
110
+ dataSource?: S3ConfigMap | undefined;
111
111
  roleArn: string | undefined;
112
- sqlParameters?: ProtectedQuerySQLParameters;
112
+ sqlParameters?: ProtectedQuerySQLParameters | undefined;
113
113
  }
114
114
  export declare const AudienceGenerationJobStatus: {
115
115
  readonly ACTIVE: "ACTIVE";
@@ -127,59 +127,59 @@ export interface GetAudienceGenerationJobResponse {
127
127
  updateTime: Date | undefined;
128
128
  audienceGenerationJobArn: string | undefined;
129
129
  name: string | undefined;
130
- description?: string;
130
+ description?: string | undefined;
131
131
  status: AudienceGenerationJobStatus | undefined;
132
- statusDetails?: StatusDetails;
132
+ statusDetails?: StatusDetails | undefined;
133
133
  configuredAudienceModelArn: string | undefined;
134
- seedAudience?: AudienceGenerationJobDataSource;
135
- includeSeedInOutput?: boolean;
136
- collaborationId?: string;
137
- metrics?: AudienceQualityMetrics;
138
- startedBy?: string;
139
- tags?: Record<string, string>;
140
- protectedQueryIdentifier?: string;
134
+ seedAudience?: AudienceGenerationJobDataSource | undefined;
135
+ includeSeedInOutput?: boolean | undefined;
136
+ collaborationId?: string | undefined;
137
+ metrics?: AudienceQualityMetrics | undefined;
138
+ startedBy?: string | undefined;
139
+ tags?: Record<string, string> | undefined;
140
+ protectedQueryIdentifier?: string | undefined;
141
141
  }
142
142
  export interface ListAudienceGenerationJobsRequest {
143
- nextToken?: string;
144
- maxResults?: number;
145
- configuredAudienceModelArn?: string;
146
- collaborationId?: string;
143
+ nextToken?: string | undefined;
144
+ maxResults?: number | undefined;
145
+ configuredAudienceModelArn?: string | undefined;
146
+ collaborationId?: string | undefined;
147
147
  }
148
148
  export interface AudienceGenerationJobSummary {
149
149
  createTime: Date | undefined;
150
150
  updateTime: Date | undefined;
151
151
  audienceGenerationJobArn: string | undefined;
152
152
  name: string | undefined;
153
- description?: string;
153
+ description?: string | undefined;
154
154
  status: AudienceGenerationJobStatus | undefined;
155
155
  configuredAudienceModelArn: string | undefined;
156
- collaborationId?: string;
157
- startedBy?: string;
156
+ collaborationId?: string | undefined;
157
+ startedBy?: string | undefined;
158
158
  }
159
159
  export interface ListAudienceGenerationJobsResponse {
160
- nextToken?: string;
160
+ nextToken?: string | undefined;
161
161
  audienceGenerationJobs: AudienceGenerationJobSummary[] | undefined;
162
162
  }
163
163
  export interface StartAudienceGenerationJobRequest {
164
164
  name: string | undefined;
165
165
  configuredAudienceModelArn: string | undefined;
166
166
  seedAudience: AudienceGenerationJobDataSource | undefined;
167
- includeSeedInOutput?: boolean;
168
- collaborationId?: string;
169
- description?: string;
170
- tags?: Record<string, string>;
167
+ includeSeedInOutput?: boolean | undefined;
168
+ collaborationId?: string | undefined;
169
+ description?: string | undefined;
170
+ tags?: Record<string, string> | undefined;
171
171
  }
172
172
  export interface StartAudienceGenerationJobResponse {
173
173
  audienceGenerationJobArn: string | undefined;
174
174
  }
175
175
  export interface CreateAudienceModelRequest {
176
- trainingDataStartTime?: Date;
177
- trainingDataEndTime?: Date;
176
+ trainingDataStartTime?: Date | undefined;
177
+ trainingDataEndTime?: Date | undefined;
178
178
  name: string | undefined;
179
179
  trainingDatasetArn: string | undefined;
180
- kmsKeyArn?: string;
181
- tags?: Record<string, string>;
182
- description?: string;
180
+ kmsKeyArn?: string | undefined;
181
+ tags?: Record<string, string> | undefined;
182
+ description?: string | undefined;
183
183
  }
184
184
  export interface CreateAudienceModelResponse {
185
185
  audienceModelArn: string | undefined;
@@ -204,20 +204,20 @@ export type AudienceModelStatus =
204
204
  export interface GetAudienceModelResponse {
205
205
  createTime: Date | undefined;
206
206
  updateTime: Date | undefined;
207
- trainingDataStartTime?: Date;
208
- trainingDataEndTime?: Date;
207
+ trainingDataStartTime?: Date | undefined;
208
+ trainingDataEndTime?: Date | undefined;
209
209
  audienceModelArn: string | undefined;
210
210
  name: string | undefined;
211
211
  trainingDatasetArn: string | undefined;
212
212
  status: AudienceModelStatus | undefined;
213
- statusDetails?: StatusDetails;
214
- kmsKeyArn?: string;
215
- tags?: Record<string, string>;
216
- description?: string;
213
+ statusDetails?: StatusDetails | undefined;
214
+ kmsKeyArn?: string | undefined;
215
+ tags?: Record<string, string> | undefined;
216
+ description?: string | undefined;
217
217
  }
218
218
  export interface ListAudienceModelsRequest {
219
- nextToken?: string;
220
- maxResults?: number;
219
+ nextToken?: string | undefined;
220
+ maxResults?: number | undefined;
221
221
  }
222
222
  export interface AudienceModelSummary {
223
223
  createTime: Date | undefined;
@@ -226,10 +226,10 @@ export interface AudienceModelSummary {
226
226
  name: string | undefined;
227
227
  trainingDatasetArn: string | undefined;
228
228
  status: AudienceModelStatus | undefined;
229
- description?: string;
229
+ description?: string | undefined;
230
230
  }
231
231
  export interface ListAudienceModelsResponse {
232
- nextToken?: string;
232
+ nextToken?: string | undefined;
233
233
  audienceModels: AudienceModelSummary[] | undefined;
234
234
  }
235
235
  export interface AudienceSizeConfig {
@@ -256,12 +256,12 @@ export interface CreateConfiguredAudienceModelRequest {
256
256
  name: string | undefined;
257
257
  audienceModelArn: string | undefined;
258
258
  outputConfig: ConfiguredAudienceModelOutputConfig | undefined;
259
- description?: string;
259
+ description?: string | undefined;
260
260
  sharedAudienceMetrics: SharedAudienceMetrics[] | undefined;
261
- minMatchingSeedSize?: number;
262
- audienceSizeConfig?: AudienceSizeConfig;
263
- tags?: Record<string, string>;
264
- childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
261
+ minMatchingSeedSize?: number | undefined;
262
+ audienceSizeConfig?: AudienceSizeConfig | undefined;
263
+ tags?: Record<string, string> | undefined;
264
+ childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
265
265
  }
266
266
  export interface CreateConfiguredAudienceModelResponse {
267
267
  configuredAudienceModelArn: string | undefined;
@@ -284,17 +284,17 @@ export interface GetConfiguredAudienceModelResponse {
284
284
  name: string | undefined;
285
285
  audienceModelArn: string | undefined;
286
286
  outputConfig: ConfiguredAudienceModelOutputConfig | undefined;
287
- description?: string;
287
+ description?: string | undefined;
288
288
  status: ConfiguredAudienceModelStatus | undefined;
289
289
  sharedAudienceMetrics: SharedAudienceMetrics[] | undefined;
290
- minMatchingSeedSize?: number;
291
- audienceSizeConfig?: AudienceSizeConfig;
292
- tags?: Record<string, string>;
293
- childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
290
+ minMatchingSeedSize?: number | undefined;
291
+ audienceSizeConfig?: AudienceSizeConfig | undefined;
292
+ tags?: Record<string, string> | undefined;
293
+ childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
294
294
  }
295
295
  export interface ListConfiguredAudienceModelsRequest {
296
- nextToken?: string;
297
- maxResults?: number;
296
+ nextToken?: string | undefined;
297
+ maxResults?: number | undefined;
298
298
  }
299
299
  export interface ConfiguredAudienceModelSummary {
300
300
  createTime: Date | undefined;
@@ -302,22 +302,22 @@ export interface ConfiguredAudienceModelSummary {
302
302
  name: string | undefined;
303
303
  audienceModelArn: string | undefined;
304
304
  outputConfig: ConfiguredAudienceModelOutputConfig | undefined;
305
- description?: string;
305
+ description?: string | undefined;
306
306
  configuredAudienceModelArn: string | undefined;
307
307
  status: ConfiguredAudienceModelStatus | undefined;
308
308
  }
309
309
  export interface ListConfiguredAudienceModelsResponse {
310
- nextToken?: string;
310
+ nextToken?: string | undefined;
311
311
  configuredAudienceModels: ConfiguredAudienceModelSummary[] | undefined;
312
312
  }
313
313
  export interface UpdateConfiguredAudienceModelRequest {
314
314
  configuredAudienceModelArn: string | undefined;
315
- outputConfig?: ConfiguredAudienceModelOutputConfig;
316
- audienceModelArn?: string;
317
- sharedAudienceMetrics?: SharedAudienceMetrics[];
318
- minMatchingSeedSize?: number;
319
- audienceSizeConfig?: AudienceSizeConfig;
320
- description?: string;
315
+ outputConfig?: ConfiguredAudienceModelOutputConfig | undefined;
316
+ audienceModelArn?: string | undefined;
317
+ sharedAudienceMetrics?: SharedAudienceMetrics[] | undefined;
318
+ minMatchingSeedSize?: number | undefined;
319
+ audienceSizeConfig?: AudienceSizeConfig | undefined;
320
+ description?: string | undefined;
321
321
  }
322
322
  export interface UpdateConfiguredAudienceModelResponse {
323
323
  configuredAudienceModelArn: string | undefined;
@@ -342,28 +342,959 @@ export type PolicyExistenceCondition =
342
342
  export interface PutConfiguredAudienceModelPolicyRequest {
343
343
  configuredAudienceModelArn: string | undefined;
344
344
  configuredAudienceModelPolicy: string | undefined;
345
- previousPolicyHash?: string;
346
- policyExistenceCondition?: PolicyExistenceCondition;
345
+ previousPolicyHash?: string | undefined;
346
+ policyExistenceCondition?: PolicyExistenceCondition | undefined;
347
347
  }
348
348
  export interface PutConfiguredAudienceModelPolicyResponse {
349
349
  configuredAudienceModelPolicy: string | undefined;
350
350
  policyHash: string | undefined;
351
351
  }
352
+ export interface InferenceContainerConfig {
353
+ imageUri: string | undefined;
354
+ }
355
+ export interface MetricDefinition {
356
+ name: string | undefined;
357
+ regex: string | undefined;
358
+ }
359
+ export interface ContainerConfig {
360
+ imageUri: string | undefined;
361
+ entrypoint?: string[] | undefined;
362
+ arguments?: string[] | undefined;
363
+ metricDefinitions?: MetricDefinition[] | undefined;
364
+ }
365
+ export interface CreateConfiguredModelAlgorithmRequest {
366
+ name: string | undefined;
367
+ description?: string | undefined;
368
+ roleArn: string | undefined;
369
+ trainingContainerConfig?: ContainerConfig | undefined;
370
+ inferenceContainerConfig?: InferenceContainerConfig | undefined;
371
+ tags?: Record<string, string> | undefined;
372
+ kmsKeyArn?: string | undefined;
373
+ }
374
+ export interface CreateConfiguredModelAlgorithmResponse {
375
+ configuredModelAlgorithmArn: string | undefined;
376
+ }
377
+ export interface DeleteConfiguredModelAlgorithmRequest {
378
+ configuredModelAlgorithmArn: string | undefined;
379
+ }
380
+ export interface GetConfiguredModelAlgorithmRequest {
381
+ configuredModelAlgorithmArn: string | undefined;
382
+ }
383
+ export interface GetConfiguredModelAlgorithmResponse {
384
+ createTime: Date | undefined;
385
+ updateTime: Date | undefined;
386
+ configuredModelAlgorithmArn: string | undefined;
387
+ name: string | undefined;
388
+ trainingContainerConfig?: ContainerConfig | undefined;
389
+ inferenceContainerConfig?: InferenceContainerConfig | undefined;
390
+ roleArn: string | undefined;
391
+ description?: string | undefined;
392
+ tags?: Record<string, string> | undefined;
393
+ kmsKeyArn?: string | undefined;
394
+ }
395
+ export interface ListConfiguredModelAlgorithmsRequest {
396
+ nextToken?: string | undefined;
397
+ maxResults?: number | undefined;
398
+ }
399
+ export interface ConfiguredModelAlgorithmSummary {
400
+ createTime: Date | undefined;
401
+ updateTime: Date | undefined;
402
+ configuredModelAlgorithmArn: string | undefined;
403
+ name: string | undefined;
404
+ description?: string | undefined;
405
+ }
406
+ export interface ListConfiguredModelAlgorithmsResponse {
407
+ nextToken?: string | undefined;
408
+ configuredModelAlgorithms: ConfiguredModelAlgorithmSummary[] | undefined;
409
+ }
410
+ export declare const TrainedModelExportFileType: {
411
+ readonly MODEL: "MODEL";
412
+ readonly OUTPUT: "OUTPUT";
413
+ };
414
+ export type TrainedModelExportFileType =
415
+ (typeof TrainedModelExportFileType)[keyof typeof TrainedModelExportFileType];
416
+ export declare const TrainedModelExportsMaxSizeUnitType: {
417
+ readonly GB: "GB";
418
+ };
419
+ export type TrainedModelExportsMaxSizeUnitType =
420
+ (typeof TrainedModelExportsMaxSizeUnitType)[keyof typeof TrainedModelExportsMaxSizeUnitType];
421
+ export interface TrainedModelExportsMaxSize {
422
+ unit: TrainedModelExportsMaxSizeUnitType | undefined;
423
+ value: number | undefined;
424
+ }
425
+ export interface TrainedModelExportsConfigurationPolicy {
426
+ maxSize: TrainedModelExportsMaxSize | undefined;
427
+ filesToExport: TrainedModelExportFileType[] | undefined;
428
+ }
429
+ export interface LogsConfigurationPolicy {
430
+ allowedAccountIds: string[] | undefined;
431
+ filterPattern?: string | undefined;
432
+ }
433
+ export declare const TrainedModelInferenceMaxOutputSizeUnitType: {
434
+ readonly GB: "GB";
435
+ };
436
+ export type TrainedModelInferenceMaxOutputSizeUnitType =
437
+ (typeof TrainedModelInferenceMaxOutputSizeUnitType)[keyof typeof TrainedModelInferenceMaxOutputSizeUnitType];
438
+ export interface TrainedModelInferenceMaxOutputSize {
439
+ unit: TrainedModelInferenceMaxOutputSizeUnitType | undefined;
440
+ value: number | undefined;
441
+ }
442
+ export interface TrainedModelInferenceJobsConfigurationPolicy {
443
+ containerLogs?: LogsConfigurationPolicy[] | undefined;
444
+ maxOutputSize?: TrainedModelInferenceMaxOutputSize | undefined;
445
+ }
446
+ export declare const NoiseLevelType: {
447
+ readonly HIGH: "HIGH";
448
+ readonly LOW: "LOW";
449
+ readonly MEDIUM: "MEDIUM";
450
+ readonly NONE: "NONE";
451
+ };
452
+ export type NoiseLevelType =
453
+ (typeof NoiseLevelType)[keyof typeof NoiseLevelType];
454
+ export interface MetricsConfigurationPolicy {
455
+ noiseLevel: NoiseLevelType | undefined;
456
+ }
457
+ export interface TrainedModelsConfigurationPolicy {
458
+ containerLogs?: LogsConfigurationPolicy[] | undefined;
459
+ containerMetrics?: MetricsConfigurationPolicy | undefined;
460
+ }
461
+ export interface PrivacyConfigurationPolicies {
462
+ trainedModels?: TrainedModelsConfigurationPolicy | undefined;
463
+ trainedModelExports?: TrainedModelExportsConfigurationPolicy | undefined;
464
+ trainedModelInferenceJobs?:
465
+ | TrainedModelInferenceJobsConfigurationPolicy
466
+ | undefined;
467
+ }
468
+ export interface PrivacyConfiguration {
469
+ policies: PrivacyConfigurationPolicies | undefined;
470
+ }
471
+ export interface CreateConfiguredModelAlgorithmAssociationRequest {
472
+ membershipIdentifier: string | undefined;
473
+ configuredModelAlgorithmArn: string | undefined;
474
+ name: string | undefined;
475
+ description?: string | undefined;
476
+ privacyConfiguration?: PrivacyConfiguration | undefined;
477
+ tags?: Record<string, string> | undefined;
478
+ }
479
+ export interface CreateConfiguredModelAlgorithmAssociationResponse {
480
+ configuredModelAlgorithmAssociationArn: string | undefined;
481
+ }
482
+ export interface DeleteConfiguredModelAlgorithmAssociationRequest {
483
+ configuredModelAlgorithmAssociationArn: string | undefined;
484
+ membershipIdentifier: string | undefined;
485
+ }
486
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationRequest {
487
+ configuredModelAlgorithmAssociationArn: string | undefined;
488
+ collaborationIdentifier: string | undefined;
489
+ }
490
+ export interface GetCollaborationConfiguredModelAlgorithmAssociationResponse {
491
+ createTime: Date | undefined;
492
+ updateTime: Date | undefined;
493
+ configuredModelAlgorithmAssociationArn: string | undefined;
494
+ membershipIdentifier: string | undefined;
495
+ collaborationIdentifier: string | undefined;
496
+ configuredModelAlgorithmArn: string | undefined;
497
+ name: string | undefined;
498
+ description?: string | undefined;
499
+ creatorAccountId: string | undefined;
500
+ privacyConfiguration?: PrivacyConfiguration | undefined;
501
+ }
502
+ export interface GetConfiguredModelAlgorithmAssociationRequest {
503
+ configuredModelAlgorithmAssociationArn: string | undefined;
504
+ membershipIdentifier: string | undefined;
505
+ }
506
+ export interface GetConfiguredModelAlgorithmAssociationResponse {
507
+ createTime: Date | undefined;
508
+ updateTime: Date | undefined;
509
+ configuredModelAlgorithmAssociationArn: string | undefined;
510
+ membershipIdentifier: string | undefined;
511
+ collaborationIdentifier: string | undefined;
512
+ configuredModelAlgorithmArn: string | undefined;
513
+ name: string | undefined;
514
+ privacyConfiguration?: PrivacyConfiguration | undefined;
515
+ description?: string | undefined;
516
+ tags?: Record<string, string> | undefined;
517
+ }
518
+ export interface ListConfiguredModelAlgorithmAssociationsRequest {
519
+ nextToken?: string | undefined;
520
+ maxResults?: number | undefined;
521
+ membershipIdentifier: string | undefined;
522
+ }
523
+ export interface ConfiguredModelAlgorithmAssociationSummary {
524
+ createTime: Date | undefined;
525
+ updateTime: Date | undefined;
526
+ configuredModelAlgorithmAssociationArn: string | undefined;
527
+ configuredModelAlgorithmArn: string | undefined;
528
+ name: string | undefined;
529
+ description?: string | undefined;
530
+ membershipIdentifier: string | undefined;
531
+ collaborationIdentifier: string | undefined;
532
+ }
533
+ export interface ListConfiguredModelAlgorithmAssociationsResponse {
534
+ nextToken?: string | undefined;
535
+ configuredModelAlgorithmAssociations:
536
+ | ConfiguredModelAlgorithmAssociationSummary[]
537
+ | undefined;
538
+ }
539
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsRequest {
540
+ nextToken?: string | undefined;
541
+ maxResults?: number | undefined;
542
+ collaborationIdentifier: string | undefined;
543
+ }
544
+ export interface CollaborationConfiguredModelAlgorithmAssociationSummary {
545
+ createTime: Date | undefined;
546
+ updateTime: Date | undefined;
547
+ configuredModelAlgorithmAssociationArn: string | undefined;
548
+ name: string | undefined;
549
+ description?: string | undefined;
550
+ membershipIdentifier: string | undefined;
551
+ collaborationIdentifier: string | undefined;
552
+ configuredModelAlgorithmArn: string | undefined;
553
+ creatorAccountId: string | undefined;
554
+ }
555
+ export interface ListCollaborationConfiguredModelAlgorithmAssociationsResponse {
556
+ nextToken?: string | undefined;
557
+ collaborationConfiguredModelAlgorithmAssociations:
558
+ | CollaborationConfiguredModelAlgorithmAssociationSummary[]
559
+ | undefined;
560
+ }
561
+ export interface ListCollaborationMLInputChannelsRequest {
562
+ nextToken?: string | undefined;
563
+ maxResults?: number | undefined;
564
+ collaborationIdentifier: string | undefined;
565
+ }
566
+ export declare const MLInputChannelStatus: {
567
+ readonly ACTIVE: "ACTIVE";
568
+ readonly CREATE_FAILED: "CREATE_FAILED";
569
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
570
+ readonly CREATE_PENDING: "CREATE_PENDING";
571
+ readonly DELETE_FAILED: "DELETE_FAILED";
572
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
573
+ readonly DELETE_PENDING: "DELETE_PENDING";
574
+ readonly INACTIVE: "INACTIVE";
575
+ };
576
+ export type MLInputChannelStatus =
577
+ (typeof MLInputChannelStatus)[keyof typeof MLInputChannelStatus];
578
+ export interface CollaborationMLInputChannelSummary {
579
+ createTime: Date | undefined;
580
+ updateTime: Date | undefined;
581
+ membershipIdentifier: string | undefined;
582
+ collaborationIdentifier: string | undefined;
583
+ name: string | undefined;
584
+ configuredModelAlgorithmAssociations: string[] | undefined;
585
+ mlInputChannelArn: string | undefined;
586
+ status: MLInputChannelStatus | undefined;
587
+ creatorAccountId: string | undefined;
588
+ description?: string | undefined;
589
+ }
590
+ export interface ListCollaborationMLInputChannelsResponse {
591
+ nextToken?: string | undefined;
592
+ collaborationMLInputChannelsList:
593
+ | CollaborationMLInputChannelSummary[]
594
+ | undefined;
595
+ }
596
+ export interface ListCollaborationTrainedModelExportJobsRequest {
597
+ nextToken?: string | undefined;
598
+ maxResults?: number | undefined;
599
+ collaborationIdentifier: string | undefined;
600
+ trainedModelArn: string | undefined;
601
+ }
602
+ export interface TrainedModelExportReceiverMember {
603
+ accountId: string | undefined;
604
+ }
605
+ export interface TrainedModelExportOutputConfiguration {
606
+ members: TrainedModelExportReceiverMember[] | undefined;
607
+ }
608
+ export declare const TrainedModelExportJobStatus: {
609
+ readonly ACTIVE: "ACTIVE";
610
+ readonly CREATE_FAILED: "CREATE_FAILED";
611
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
612
+ readonly CREATE_PENDING: "CREATE_PENDING";
613
+ };
614
+ export type TrainedModelExportJobStatus =
615
+ (typeof TrainedModelExportJobStatus)[keyof typeof TrainedModelExportJobStatus];
616
+ export interface CollaborationTrainedModelExportJobSummary {
617
+ createTime: Date | undefined;
618
+ updateTime: Date | undefined;
619
+ name: string | undefined;
620
+ outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
621
+ status: TrainedModelExportJobStatus | undefined;
622
+ statusDetails?: StatusDetails | undefined;
623
+ description?: string | undefined;
624
+ creatorAccountId: string | undefined;
625
+ trainedModelArn: string | undefined;
626
+ membershipIdentifier: string | undefined;
627
+ collaborationIdentifier: string | undefined;
628
+ }
629
+ export interface ListCollaborationTrainedModelExportJobsResponse {
630
+ nextToken?: string | undefined;
631
+ collaborationTrainedModelExportJobs:
632
+ | CollaborationTrainedModelExportJobSummary[]
633
+ | undefined;
634
+ }
635
+ export interface ListCollaborationTrainedModelInferenceJobsRequest {
636
+ nextToken?: string | undefined;
637
+ maxResults?: number | undefined;
638
+ collaborationIdentifier: string | undefined;
639
+ trainedModelArn?: string | undefined;
640
+ }
641
+ export declare const LogsStatus: {
642
+ readonly PUBLISH_FAILED: "PUBLISH_FAILED";
643
+ readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
644
+ };
645
+ export type LogsStatus = (typeof LogsStatus)[keyof typeof LogsStatus];
646
+ export declare const MetricsStatus: {
647
+ readonly PUBLISH_FAILED: "PUBLISH_FAILED";
648
+ readonly PUBLISH_SUCCEEDED: "PUBLISH_SUCCEEDED";
649
+ };
650
+ export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
651
+ export interface InferenceReceiverMember {
652
+ accountId: string | undefined;
653
+ }
654
+ export interface InferenceOutputConfiguration {
655
+ accept?: string | undefined;
656
+ members: InferenceReceiverMember[] | undefined;
657
+ }
658
+ export declare const TrainedModelInferenceJobStatus: {
659
+ readonly ACTIVE: "ACTIVE";
660
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
661
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
662
+ readonly CANCEL_PENDING: "CANCEL_PENDING";
663
+ readonly CREATE_FAILED: "CREATE_FAILED";
664
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
665
+ readonly CREATE_PENDING: "CREATE_PENDING";
666
+ readonly INACTIVE: "INACTIVE";
667
+ };
668
+ export type TrainedModelInferenceJobStatus =
669
+ (typeof TrainedModelInferenceJobStatus)[keyof typeof TrainedModelInferenceJobStatus];
670
+ export interface CollaborationTrainedModelInferenceJobSummary {
671
+ trainedModelInferenceJobArn: string | undefined;
672
+ configuredModelAlgorithmAssociationArn?: string | undefined;
673
+ membershipIdentifier: string | undefined;
674
+ trainedModelArn: string | undefined;
675
+ collaborationIdentifier: string | undefined;
676
+ status: TrainedModelInferenceJobStatus | undefined;
677
+ outputConfiguration: InferenceOutputConfiguration | undefined;
678
+ name: string | undefined;
679
+ description?: string | undefined;
680
+ metricsStatus?: MetricsStatus | undefined;
681
+ metricsStatusDetails?: string | undefined;
682
+ logsStatus?: LogsStatus | undefined;
683
+ logsStatusDetails?: string | undefined;
684
+ createTime: Date | undefined;
685
+ updateTime: Date | undefined;
686
+ creatorAccountId: string | undefined;
687
+ }
688
+ export interface ListCollaborationTrainedModelInferenceJobsResponse {
689
+ nextToken?: string | undefined;
690
+ collaborationTrainedModelInferenceJobs:
691
+ | CollaborationTrainedModelInferenceJobSummary[]
692
+ | undefined;
693
+ }
694
+ export interface ListCollaborationTrainedModelsRequest {
695
+ nextToken?: string | undefined;
696
+ maxResults?: number | undefined;
697
+ collaborationIdentifier: string | undefined;
698
+ }
699
+ export declare const TrainedModelStatus: {
700
+ readonly ACTIVE: "ACTIVE";
701
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
702
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
703
+ readonly CANCEL_PENDING: "CANCEL_PENDING";
704
+ readonly CREATE_FAILED: "CREATE_FAILED";
705
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
706
+ readonly CREATE_PENDING: "CREATE_PENDING";
707
+ readonly DELETE_FAILED: "DELETE_FAILED";
708
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
709
+ readonly DELETE_PENDING: "DELETE_PENDING";
710
+ readonly INACTIVE: "INACTIVE";
711
+ };
712
+ export type TrainedModelStatus =
713
+ (typeof TrainedModelStatus)[keyof typeof TrainedModelStatus];
714
+ export interface CollaborationTrainedModelSummary {
715
+ createTime: Date | undefined;
716
+ updateTime: Date | undefined;
717
+ trainedModelArn: string | undefined;
718
+ name: string | undefined;
719
+ description?: string | undefined;
720
+ membershipIdentifier: string | undefined;
721
+ collaborationIdentifier: string | undefined;
722
+ status: TrainedModelStatus | undefined;
723
+ configuredModelAlgorithmAssociationArn: string | undefined;
724
+ creatorAccountId: string | undefined;
725
+ }
726
+ export interface ListCollaborationTrainedModelsResponse {
727
+ nextToken?: string | undefined;
728
+ collaborationTrainedModels: CollaborationTrainedModelSummary[] | undefined;
729
+ }
352
730
  export interface ListTagsForResourceRequest {
353
731
  resourceArn: string | undefined;
354
732
  }
355
733
  export interface ListTagsForResourceResponse {
356
734
  tags: Record<string, string> | undefined;
357
735
  }
736
+ export interface DeleteMLConfigurationRequest {
737
+ membershipIdentifier: string | undefined;
738
+ }
739
+ export interface GetMLConfigurationRequest {
740
+ membershipIdentifier: string | undefined;
741
+ }
742
+ export interface Destination {
743
+ s3Destination: S3ConfigMap | undefined;
744
+ }
745
+ export interface MLOutputConfiguration {
746
+ destination?: Destination | undefined;
747
+ roleArn: string | undefined;
748
+ }
749
+ export interface GetMLConfigurationResponse {
750
+ membershipIdentifier: string | undefined;
751
+ defaultOutputLocation: MLOutputConfiguration | undefined;
752
+ createTime: Date | undefined;
753
+ updateTime: Date | undefined;
754
+ }
755
+ export interface PutMLConfigurationRequest {
756
+ membershipIdentifier: string | undefined;
757
+ defaultOutputLocation: MLOutputConfiguration | undefined;
758
+ }
759
+ export declare const WorkerComputeType: {
760
+ readonly CR1X: "CR.1X";
761
+ readonly CR4X: "CR.4X";
762
+ };
763
+ export type WorkerComputeType =
764
+ (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
765
+ export interface WorkerComputeConfiguration {
766
+ type?: WorkerComputeType | undefined;
767
+ number?: number | undefined;
768
+ }
769
+ export type ComputeConfiguration =
770
+ | ComputeConfiguration.WorkerMember
771
+ | ComputeConfiguration.$UnknownMember;
772
+ export declare namespace ComputeConfiguration {
773
+ interface WorkerMember {
774
+ worker: WorkerComputeConfiguration;
775
+ $unknown?: never;
776
+ }
777
+ interface $UnknownMember {
778
+ worker?: never;
779
+ $unknown: [string, any];
780
+ }
781
+ interface Visitor<T> {
782
+ worker: (value: WorkerComputeConfiguration) => T;
783
+ _: (name: string, value: any) => T;
784
+ }
785
+ const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
786
+ }
787
+ export interface ProtectedQueryInputParameters {
788
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
789
+ computeConfiguration?: ComputeConfiguration | undefined;
790
+ }
791
+ export type InputChannelDataSource =
792
+ | InputChannelDataSource.ProtectedQueryInputParametersMember
793
+ | InputChannelDataSource.$UnknownMember;
794
+ export declare namespace InputChannelDataSource {
795
+ interface ProtectedQueryInputParametersMember {
796
+ protectedQueryInputParameters: ProtectedQueryInputParameters;
797
+ $unknown?: never;
798
+ }
799
+ interface $UnknownMember {
800
+ protectedQueryInputParameters?: never;
801
+ $unknown: [string, any];
802
+ }
803
+ interface Visitor<T> {
804
+ protectedQueryInputParameters: (value: ProtectedQueryInputParameters) => T;
805
+ _: (name: string, value: any) => T;
806
+ }
807
+ const visit: <T>(value: InputChannelDataSource, visitor: Visitor<T>) => T;
808
+ }
809
+ export interface InputChannel {
810
+ dataSource: InputChannelDataSource | undefined;
811
+ roleArn: string | undefined;
812
+ }
813
+ export interface CreateMLInputChannelRequest {
814
+ membershipIdentifier: string | undefined;
815
+ configuredModelAlgorithmAssociations: string[] | undefined;
816
+ inputChannel: InputChannel | undefined;
817
+ name: string | undefined;
818
+ retentionInDays: number | undefined;
819
+ description?: string | undefined;
820
+ kmsKeyArn?: string | undefined;
821
+ tags?: Record<string, string> | undefined;
822
+ }
823
+ export interface CreateMLInputChannelResponse {
824
+ mlInputChannelArn: string | undefined;
825
+ }
826
+ export interface DeleteMLInputChannelDataRequest {
827
+ mlInputChannelArn: string | undefined;
828
+ membershipIdentifier: string | undefined;
829
+ }
830
+ export interface GetCollaborationMLInputChannelRequest {
831
+ mlInputChannelArn: string | undefined;
832
+ collaborationIdentifier: string | undefined;
833
+ }
834
+ export interface GetCollaborationMLInputChannelResponse {
835
+ createTime: Date | undefined;
836
+ updateTime: Date | undefined;
837
+ creatorAccountId: string | undefined;
838
+ membershipIdentifier: string | undefined;
839
+ collaborationIdentifier: string | undefined;
840
+ mlInputChannelArn: string | undefined;
841
+ name: string | undefined;
842
+ configuredModelAlgorithmAssociations: string[] | undefined;
843
+ status: MLInputChannelStatus | undefined;
844
+ statusDetails?: StatusDetails | undefined;
845
+ retentionInDays: number | undefined;
846
+ numberOfRecords?: number | undefined;
847
+ description?: string | undefined;
848
+ }
849
+ export interface GetMLInputChannelRequest {
850
+ mlInputChannelArn: string | undefined;
851
+ membershipIdentifier: string | undefined;
852
+ }
853
+ export interface GetMLInputChannelResponse {
854
+ createTime: Date | undefined;
855
+ updateTime: Date | undefined;
856
+ membershipIdentifier: string | undefined;
857
+ collaborationIdentifier: string | undefined;
858
+ inputChannel: InputChannel | undefined;
859
+ protectedQueryIdentifier?: string | undefined;
860
+ mlInputChannelArn: string | undefined;
861
+ name: string | undefined;
862
+ configuredModelAlgorithmAssociations: string[] | undefined;
863
+ status: MLInputChannelStatus | undefined;
864
+ statusDetails?: StatusDetails | undefined;
865
+ retentionInDays: number | undefined;
866
+ numberOfRecords?: number | undefined;
867
+ numberOfFiles?: number | undefined;
868
+ sizeInGb?: number | undefined;
869
+ description?: string | undefined;
870
+ kmsKeyArn?: string | undefined;
871
+ tags?: Record<string, string> | undefined;
872
+ }
873
+ export interface ListMLInputChannelsRequest {
874
+ nextToken?: string | undefined;
875
+ maxResults?: number | undefined;
876
+ membershipIdentifier: string | undefined;
877
+ }
878
+ export interface MLInputChannelSummary {
879
+ createTime: Date | undefined;
880
+ updateTime: Date | undefined;
881
+ membershipIdentifier: string | undefined;
882
+ collaborationIdentifier: string | undefined;
883
+ name: string | undefined;
884
+ configuredModelAlgorithmAssociations: string[] | undefined;
885
+ protectedQueryIdentifier?: string | undefined;
886
+ mlInputChannelArn: string | undefined;
887
+ status: MLInputChannelStatus | undefined;
888
+ description?: string | undefined;
889
+ }
890
+ export interface ListMLInputChannelsResponse {
891
+ nextToken?: string | undefined;
892
+ mlInputChannelsList: MLInputChannelSummary[] | undefined;
893
+ }
358
894
  export interface TagResourceRequest {
359
895
  resourceArn: string | undefined;
360
896
  tags: Record<string, string> | undefined;
361
897
  }
362
898
  export interface TagResourceResponse {}
899
+ export interface CancelTrainedModelRequest {
900
+ membershipIdentifier: string | undefined;
901
+ trainedModelArn: string | undefined;
902
+ }
903
+ export interface ModelTrainingDataChannel {
904
+ mlInputChannelArn: string | undefined;
905
+ channelName: string | undefined;
906
+ }
907
+ export declare const _InstanceType: {
908
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
909
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
910
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
911
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
912
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
913
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
914
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
915
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
916
+ readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
917
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
918
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
919
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
920
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
921
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
922
+ readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
923
+ readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
924
+ readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
925
+ readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
926
+ readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
927
+ readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
928
+ readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
929
+ readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
930
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
931
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
932
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
933
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
934
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
935
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
936
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
937
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
938
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
939
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
940
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
941
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
942
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
943
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
944
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
945
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
946
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
947
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
948
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
949
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
950
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
951
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
952
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
953
+ readonly ML_M5_LARGE: "ml.m5.large";
954
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
955
+ readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
956
+ readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
957
+ readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
958
+ readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
959
+ readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
960
+ readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
961
+ readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
962
+ readonly ML_M6I_LARGE: "ml.m6i.large";
963
+ readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
964
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
965
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
966
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
967
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
968
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
969
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
970
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
971
+ readonly ML_P4DE_24XLARGE: "ml.p4de.24xlarge";
972
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
973
+ readonly ML_P5_48XLARGE: "ml.p5.48xlarge";
974
+ readonly ML_R5D_12XLARGE: "ml.r5d.12xlarge";
975
+ readonly ML_R5D_16XLARGE: "ml.r5d.16xlarge";
976
+ readonly ML_R5D_24XLARGE: "ml.r5d.24xlarge";
977
+ readonly ML_R5D_2XLARGE: "ml.r5d.2xlarge";
978
+ readonly ML_R5D_4XLARGE: "ml.r5d.4xlarge";
979
+ readonly ML_R5D_8XLARGE: "ml.r5d.8xlarge";
980
+ readonly ML_R5D_LARGE: "ml.r5d.large";
981
+ readonly ML_R5D_XLARGE: "ml.r5d.xlarge";
982
+ readonly ML_R5_12XLARGE: "ml.r5.12xlarge";
983
+ readonly ML_R5_16XLARGE: "ml.r5.16xlarge";
984
+ readonly ML_R5_24XLARGE: "ml.r5.24xlarge";
985
+ readonly ML_R5_2XLARGE: "ml.r5.2xlarge";
986
+ readonly ML_R5_4XLARGE: "ml.r5.4xlarge";
987
+ readonly ML_R5_8XLARGE: "ml.r5.8xlarge";
988
+ readonly ML_R5_LARGE: "ml.r5.large";
989
+ readonly ML_R5_XLARGE: "ml.r5.xlarge";
990
+ readonly ML_T3_2XLARGE: "ml.t3.2xlarge";
991
+ readonly ML_T3_LARGE: "ml.t3.large";
992
+ readonly ML_T3_MEDIUM: "ml.t3.medium";
993
+ readonly ML_T3_XLARGE: "ml.t3.xlarge";
994
+ readonly ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge";
995
+ readonly ML_TRN1_2XLARGE: "ml.trn1.2xlarge";
996
+ readonly ML_TRN1_32XLARGE: "ml.trn1.32xlarge";
997
+ };
998
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
999
+ export interface ResourceConfig {
1000
+ instanceCount?: number | undefined;
1001
+ instanceType: _InstanceType | undefined;
1002
+ volumeSizeInGB: number | undefined;
1003
+ }
1004
+ export interface StoppingCondition {
1005
+ maxRuntimeInSeconds?: number | undefined;
1006
+ }
1007
+ export interface CreateTrainedModelRequest {
1008
+ membershipIdentifier: string | undefined;
1009
+ name: string | undefined;
1010
+ configuredModelAlgorithmAssociationArn: string | undefined;
1011
+ hyperparameters?: Record<string, string> | undefined;
1012
+ environment?: Record<string, string> | undefined;
1013
+ resourceConfig: ResourceConfig | undefined;
1014
+ stoppingCondition?: StoppingCondition | undefined;
1015
+ dataChannels: ModelTrainingDataChannel[] | undefined;
1016
+ description?: string | undefined;
1017
+ kmsKeyArn?: string | undefined;
1018
+ tags?: Record<string, string> | undefined;
1019
+ }
1020
+ export interface CreateTrainedModelResponse {
1021
+ trainedModelArn: string | undefined;
1022
+ }
1023
+ export interface DeleteTrainedModelOutputRequest {
1024
+ trainedModelArn: string | undefined;
1025
+ membershipIdentifier: string | undefined;
1026
+ }
1027
+ export interface GetCollaborationTrainedModelRequest {
1028
+ trainedModelArn: string | undefined;
1029
+ collaborationIdentifier: string | undefined;
1030
+ }
1031
+ export interface GetCollaborationTrainedModelResponse {
1032
+ membershipIdentifier: string | undefined;
1033
+ collaborationIdentifier: string | undefined;
1034
+ trainedModelArn: string | undefined;
1035
+ name: string | undefined;
1036
+ description?: string | undefined;
1037
+ status: TrainedModelStatus | undefined;
1038
+ statusDetails?: StatusDetails | undefined;
1039
+ configuredModelAlgorithmAssociationArn: string | undefined;
1040
+ resourceConfig?: ResourceConfig | undefined;
1041
+ stoppingCondition?: StoppingCondition | undefined;
1042
+ metricsStatus?: MetricsStatus | undefined;
1043
+ metricsStatusDetails?: string | undefined;
1044
+ logsStatus?: LogsStatus | undefined;
1045
+ logsStatusDetails?: string | undefined;
1046
+ trainingContainerImageDigest?: string | undefined;
1047
+ createTime: Date | undefined;
1048
+ updateTime: Date | undefined;
1049
+ creatorAccountId: string | undefined;
1050
+ }
1051
+ export interface GetTrainedModelRequest {
1052
+ trainedModelArn: string | undefined;
1053
+ membershipIdentifier: string | undefined;
1054
+ }
1055
+ export interface GetTrainedModelResponse {
1056
+ membershipIdentifier: string | undefined;
1057
+ collaborationIdentifier: string | undefined;
1058
+ trainedModelArn: string | undefined;
1059
+ name: string | undefined;
1060
+ description?: string | undefined;
1061
+ status: TrainedModelStatus | undefined;
1062
+ statusDetails?: StatusDetails | undefined;
1063
+ configuredModelAlgorithmAssociationArn: string | undefined;
1064
+ resourceConfig?: ResourceConfig | undefined;
1065
+ stoppingCondition?: StoppingCondition | undefined;
1066
+ metricsStatus?: MetricsStatus | undefined;
1067
+ metricsStatusDetails?: string | undefined;
1068
+ logsStatus?: LogsStatus | undefined;
1069
+ logsStatusDetails?: string | undefined;
1070
+ trainingContainerImageDigest?: string | undefined;
1071
+ createTime: Date | undefined;
1072
+ updateTime: Date | undefined;
1073
+ hyperparameters?: Record<string, string> | undefined;
1074
+ environment?: Record<string, string> | undefined;
1075
+ kmsKeyArn?: string | undefined;
1076
+ tags?: Record<string, string> | undefined;
1077
+ dataChannels: ModelTrainingDataChannel[] | undefined;
1078
+ }
1079
+ export interface ListTrainedModelsRequest {
1080
+ nextToken?: string | undefined;
1081
+ maxResults?: number | undefined;
1082
+ membershipIdentifier: string | undefined;
1083
+ }
1084
+ export interface TrainedModelSummary {
1085
+ createTime: Date | undefined;
1086
+ updateTime: Date | undefined;
1087
+ trainedModelArn: string | undefined;
1088
+ name: string | undefined;
1089
+ description?: string | undefined;
1090
+ membershipIdentifier: string | undefined;
1091
+ collaborationIdentifier: string | undefined;
1092
+ status: TrainedModelStatus | undefined;
1093
+ configuredModelAlgorithmAssociationArn: string | undefined;
1094
+ }
1095
+ export interface ListTrainedModelsResponse {
1096
+ nextToken?: string | undefined;
1097
+ trainedModels: TrainedModelSummary[] | undefined;
1098
+ }
1099
+ export interface StartTrainedModelExportJobRequest {
1100
+ name: string | undefined;
1101
+ trainedModelArn: string | undefined;
1102
+ membershipIdentifier: string | undefined;
1103
+ outputConfiguration: TrainedModelExportOutputConfiguration | undefined;
1104
+ description?: string | undefined;
1105
+ }
1106
+ export interface CancelTrainedModelInferenceJobRequest {
1107
+ membershipIdentifier: string | undefined;
1108
+ trainedModelInferenceJobArn: string | undefined;
1109
+ }
1110
+ export interface GetTrainedModelInferenceJobRequest {
1111
+ membershipIdentifier: string | undefined;
1112
+ trainedModelInferenceJobArn: string | undefined;
1113
+ }
1114
+ export interface InferenceContainerExecutionParameters {
1115
+ maxPayloadInMB?: number | undefined;
1116
+ }
1117
+ export interface ModelInferenceDataSource {
1118
+ mlInputChannelArn: string | undefined;
1119
+ }
1120
+ export declare const InferenceInstanceType: {
1121
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
1122
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
1123
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
1124
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
1125
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
1126
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
1127
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
1128
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
1129
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
1130
+ readonly ML_C6I_12XLARGE: "ml.c6i.12xlarge";
1131
+ readonly ML_C6I_16XLARGE: "ml.c6i.16xlarge";
1132
+ readonly ML_C6I_24XLARGE: "ml.c6i.24xlarge";
1133
+ readonly ML_C6I_2XLARGE: "ml.c6i.2xlarge";
1134
+ readonly ML_C6I_32XLARGE: "ml.c6i.32xlarge";
1135
+ readonly ML_C6I_4XLARGE: "ml.c6i.4xlarge";
1136
+ readonly ML_C6I_8XLARGE: "ml.c6i.8xlarge";
1137
+ readonly ML_C6I_LARGE: "ml.c6i.large";
1138
+ readonly ML_C6I_XLARGE: "ml.c6i.xlarge";
1139
+ readonly ML_C7I_12XLARGE: "ml.c7i.12xlarge";
1140
+ readonly ML_C7I_16XLARGE: "ml.c7i.16xlarge";
1141
+ readonly ML_C7I_24XLARGE: "ml.c7i.24xlarge";
1142
+ readonly ML_C7I_2XLARGE: "ml.c7i.2xlarge";
1143
+ readonly ML_C7I_48XLARGE: "ml.c7i.48xlarge";
1144
+ readonly ML_C7I_4XLARGE: "ml.c7i.4xlarge";
1145
+ readonly ML_C7I_8XLARGE: "ml.c7i.8xlarge";
1146
+ readonly ML_C7I_LARGE: "ml.c7i.large";
1147
+ readonly ML_C7I_XLARGE: "ml.c7i.xlarge";
1148
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
1149
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
1150
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
1151
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
1152
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
1153
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
1154
+ readonly ML_G5_12XLARGE: "ml.g5.12xlarge";
1155
+ readonly ML_G5_16XLARGE: "ml.g5.16xlarge";
1156
+ readonly ML_G5_24XLARGE: "ml.g5.24xlarge";
1157
+ readonly ML_G5_2XLARGE: "ml.g5.2xlarge";
1158
+ readonly ML_G5_48XLARGE: "ml.g5.48xlarge";
1159
+ readonly ML_G5_4XLARGE: "ml.g5.4xlarge";
1160
+ readonly ML_G5_8XLARGE: "ml.g5.8xlarge";
1161
+ readonly ML_G5_XLARGE: "ml.g5.xlarge";
1162
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
1163
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
1164
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
1165
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
1166
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
1167
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
1168
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
1169
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
1170
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
1171
+ readonly ML_M5_LARGE: "ml.m5.large";
1172
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
1173
+ readonly ML_M6I_12XLARGE: "ml.m6i.12xlarge";
1174
+ readonly ML_M6I_16XLARGE: "ml.m6i.16xlarge";
1175
+ readonly ML_M6I_24XLARGE: "ml.m6i.24xlarge";
1176
+ readonly ML_M6I_2XLARGE: "ml.m6i.2xlarge";
1177
+ readonly ML_M6I_32XLARGE: "ml.m6i.32xlarge";
1178
+ readonly ML_M6I_4XLARGE: "ml.m6i.4xlarge";
1179
+ readonly ML_M6I_8XLARGE: "ml.m6i.8xlarge";
1180
+ readonly ML_M6I_LARGE: "ml.m6i.large";
1181
+ readonly ML_M6I_XLARGE: "ml.m6i.xlarge";
1182
+ readonly ML_M7I_12XLARGE: "ml.m7i.12xlarge";
1183
+ readonly ML_M7I_16XLARGE: "ml.m7i.16xlarge";
1184
+ readonly ML_M7I_24XLARGE: "ml.m7i.24xlarge";
1185
+ readonly ML_M7I_2XLARGE: "ml.m7i.2xlarge";
1186
+ readonly ML_M7I_48XLARGE: "ml.m7i.48xlarge";
1187
+ readonly ML_M7I_4XLARGE: "ml.m7i.4xlarge";
1188
+ readonly ML_M7I_8XLARGE: "ml.m7i.8xlarge";
1189
+ readonly ML_M7I_LARGE: "ml.m7i.large";
1190
+ readonly ML_M7I_XLARGE: "ml.m7i.xlarge";
1191
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
1192
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
1193
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
1194
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
1195
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
1196
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
1197
+ readonly ML_R6I_12XLARGE: "ml.r6i.12xlarge";
1198
+ readonly ML_R6I_16XLARGE: "ml.r6i.16xlarge";
1199
+ readonly ML_R6I_24XLARGE: "ml.r6i.24xlarge";
1200
+ readonly ML_R6I_2XLARGE: "ml.r6i.2xlarge";
1201
+ readonly ML_R6I_32XLARGE: "ml.r6i.32xlarge";
1202
+ readonly ML_R6I_4XLARGE: "ml.r6i.4xlarge";
1203
+ readonly ML_R6I_8XLARGE: "ml.r6i.8xlarge";
1204
+ readonly ML_R6I_LARGE: "ml.r6i.large";
1205
+ readonly ML_R6I_XLARGE: "ml.r6i.xlarge";
1206
+ readonly ML_R7I_12XLARGE: "ml.r7i.12xlarge";
1207
+ readonly ML_R7I_16XLARGE: "ml.r7i.16xlarge";
1208
+ readonly ML_R7I_24XLARGE: "ml.r7i.24xlarge";
1209
+ readonly ML_R7I_2XLARGE: "ml.r7i.2xlarge";
1210
+ readonly ML_R7I_48XLARGE: "ml.r7i.48xlarge";
1211
+ readonly ML_R7I_4XLARGE: "ml.r7i.4xlarge";
1212
+ readonly ML_R7I_8XLARGE: "ml.r7i.8xlarge";
1213
+ readonly ML_R7I_LARGE: "ml.r7i.large";
1214
+ readonly ML_R7I_XLARGE: "ml.r7i.xlarge";
1215
+ };
1216
+ export type InferenceInstanceType =
1217
+ (typeof InferenceInstanceType)[keyof typeof InferenceInstanceType];
1218
+ export interface InferenceResourceConfig {
1219
+ instanceType: InferenceInstanceType | undefined;
1220
+ instanceCount?: number | undefined;
1221
+ }
1222
+ export interface GetTrainedModelInferenceJobResponse {
1223
+ createTime: Date | undefined;
1224
+ updateTime: Date | undefined;
1225
+ trainedModelInferenceJobArn: string | undefined;
1226
+ configuredModelAlgorithmAssociationArn?: string | undefined;
1227
+ name: string | undefined;
1228
+ status: TrainedModelInferenceJobStatus | undefined;
1229
+ trainedModelArn: string | undefined;
1230
+ resourceConfig: InferenceResourceConfig | undefined;
1231
+ outputConfiguration: InferenceOutputConfiguration | undefined;
1232
+ membershipIdentifier: string | undefined;
1233
+ dataSource: ModelInferenceDataSource | undefined;
1234
+ containerExecutionParameters?:
1235
+ | InferenceContainerExecutionParameters
1236
+ | undefined;
1237
+ statusDetails?: StatusDetails | undefined;
1238
+ description?: string | undefined;
1239
+ inferenceContainerImageDigest?: string | undefined;
1240
+ environment?: Record<string, string> | undefined;
1241
+ kmsKeyArn?: string | undefined;
1242
+ metricsStatus?: MetricsStatus | undefined;
1243
+ metricsStatusDetails?: string | undefined;
1244
+ logsStatus?: LogsStatus | undefined;
1245
+ logsStatusDetails?: string | undefined;
1246
+ tags?: Record<string, string> | undefined;
1247
+ }
1248
+ export interface ListTrainedModelInferenceJobsRequest {
1249
+ nextToken?: string | undefined;
1250
+ maxResults?: number | undefined;
1251
+ membershipIdentifier: string | undefined;
1252
+ trainedModelArn?: string | undefined;
1253
+ }
1254
+ export interface TrainedModelInferenceJobSummary {
1255
+ trainedModelInferenceJobArn: string | undefined;
1256
+ configuredModelAlgorithmAssociationArn?: string | undefined;
1257
+ membershipIdentifier: string | undefined;
1258
+ trainedModelArn: string | undefined;
1259
+ collaborationIdentifier: string | undefined;
1260
+ status: TrainedModelInferenceJobStatus | undefined;
1261
+ outputConfiguration: InferenceOutputConfiguration | undefined;
1262
+ name: string | undefined;
1263
+ description?: string | undefined;
1264
+ metricsStatus?: MetricsStatus | undefined;
1265
+ metricsStatusDetails?: string | undefined;
1266
+ logsStatus?: LogsStatus | undefined;
1267
+ logsStatusDetails?: string | undefined;
1268
+ createTime: Date | undefined;
1269
+ updateTime: Date | undefined;
1270
+ }
1271
+ export interface ListTrainedModelInferenceJobsResponse {
1272
+ nextToken?: string | undefined;
1273
+ trainedModelInferenceJobs: TrainedModelInferenceJobSummary[] | undefined;
1274
+ }
1275
+ export interface StartTrainedModelInferenceJobRequest {
1276
+ membershipIdentifier: string | undefined;
1277
+ name: string | undefined;
1278
+ trainedModelArn: string | undefined;
1279
+ configuredModelAlgorithmAssociationArn?: string | undefined;
1280
+ resourceConfig: InferenceResourceConfig | undefined;
1281
+ outputConfiguration: InferenceOutputConfiguration | undefined;
1282
+ dataSource: ModelInferenceDataSource | undefined;
1283
+ description?: string | undefined;
1284
+ containerExecutionParameters?:
1285
+ | InferenceContainerExecutionParameters
1286
+ | undefined;
1287
+ environment?: Record<string, string> | undefined;
1288
+ kmsKeyArn?: string | undefined;
1289
+ tags?: Record<string, string> | undefined;
1290
+ }
1291
+ export interface StartTrainedModelInferenceJobResponse {
1292
+ trainedModelInferenceJobArn: string | undefined;
1293
+ }
363
1294
  export interface GlueDataSource {
364
1295
  tableName: string | undefined;
365
1296
  databaseName: string | undefined;
366
- catalogId?: string;
1297
+ catalogId?: string | undefined;
367
1298
  }
368
1299
  export interface DataSource {
369
1300
  glueDataSource: GlueDataSource | undefined;
@@ -396,8 +1327,8 @@ export interface CreateTrainingDatasetRequest {
396
1327
  name: string | undefined;
397
1328
  roleArn: string | undefined;
398
1329
  trainingData: Dataset[] | undefined;
399
- tags?: Record<string, string>;
400
- description?: string;
1330
+ tags?: Record<string, string> | undefined;
1331
+ description?: string | undefined;
401
1332
  }
402
1333
  export interface CreateTrainingDatasetResponse {
403
1334
  trainingDatasetArn: string | undefined;
@@ -421,12 +1352,12 @@ export interface GetTrainingDatasetResponse {
421
1352
  trainingData: Dataset[] | undefined;
422
1353
  status: TrainingDatasetStatus | undefined;
423
1354
  roleArn: string | undefined;
424
- tags?: Record<string, string>;
425
- description?: string;
1355
+ tags?: Record<string, string> | undefined;
1356
+ description?: string | undefined;
426
1357
  }
427
1358
  export interface ListTrainingDatasetsRequest {
428
- nextToken?: string;
429
- maxResults?: number;
1359
+ nextToken?: string | undefined;
1360
+ maxResults?: number | undefined;
430
1361
  }
431
1362
  export interface TrainingDatasetSummary {
432
1363
  createTime: Date | undefined;
@@ -434,10 +1365,10 @@ export interface TrainingDatasetSummary {
434
1365
  trainingDatasetArn: string | undefined;
435
1366
  name: string | undefined;
436
1367
  status: TrainingDatasetStatus | undefined;
437
- description?: string;
1368
+ description?: string | undefined;
438
1369
  }
439
1370
  export interface ListTrainingDatasetsResponse {
440
- nextToken?: string;
1371
+ nextToken?: string | undefined;
441
1372
  trainingDatasets: TrainingDatasetSummary[] | undefined;
442
1373
  }
443
1374
  export interface UntagResourceRequest {
@@ -457,3 +1388,16 @@ export declare const GetAudienceGenerationJobResponseFilterSensitiveLog: (
457
1388
  export declare const StartAudienceGenerationJobRequestFilterSensitiveLog: (
458
1389
  obj: StartAudienceGenerationJobRequest
459
1390
  ) => any;
1391
+ export declare const ProtectedQueryInputParametersFilterSensitiveLog: (
1392
+ obj: ProtectedQueryInputParameters
1393
+ ) => any;
1394
+ export declare const InputChannelDataSourceFilterSensitiveLog: (
1395
+ obj: InputChannelDataSource
1396
+ ) => any;
1397
+ export declare const InputChannelFilterSensitiveLog: (obj: InputChannel) => any;
1398
+ export declare const CreateMLInputChannelRequestFilterSensitiveLog: (
1399
+ obj: CreateMLInputChannelRequest
1400
+ ) => any;
1401
+ export declare const GetMLInputChannelResponseFilterSensitiveLog: (
1402
+ obj: GetMLInputChannelResponse
1403
+ ) => any;