@aws-sdk/client-cleanroomsml 3.687.0 → 3.692.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.
@@ -42,17 +42,17 @@ export interface ListAudienceExportJobsRequest {
42
42
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
43
43
  * @public
44
44
  */
45
- nextToken?: string;
45
+ nextToken?: string | undefined;
46
46
  /**
47
47
  * <p>The maximum size of the results that is returned per call.</p>
48
48
  * @public
49
49
  */
50
- maxResults?: number;
50
+ maxResults?: number | undefined;
51
51
  /**
52
52
  * <p>The Amazon Resource Name (ARN) of the audience generation job that you are interested in.</p>
53
53
  * @public
54
54
  */
55
- audienceGenerationJobArn?: string;
55
+ audienceGenerationJobArn?: string | undefined;
56
56
  }
57
57
  /**
58
58
  * @public
@@ -107,12 +107,12 @@ export interface StatusDetails {
107
107
  * <p>The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.</p>
108
108
  * @public
109
109
  */
110
- statusCode?: string;
110
+ statusCode?: string | undefined;
111
111
  /**
112
112
  * <p>The error message that was returned. The message is intended for human consumption and can change at any time. Use the <code>statusCode</code> for programmatic error handling.</p>
113
113
  * @public
114
114
  */
115
- message?: string;
115
+ message?: string | undefined;
116
116
  }
117
117
  /**
118
118
  * <p>Provides information about the audience export job.</p>
@@ -148,7 +148,7 @@ export interface AudienceExportJobSummary {
148
148
  * <p>The description of the audience export job.</p>
149
149
  * @public
150
150
  */
151
- description?: string;
151
+ description?: string | undefined;
152
152
  /**
153
153
  * <p>The status of the audience export job.</p>
154
154
  * @public
@@ -158,12 +158,12 @@ export interface AudienceExportJobSummary {
158
158
  * <p>Details about the status of a resource.</p>
159
159
  * @public
160
160
  */
161
- statusDetails?: StatusDetails;
161
+ statusDetails?: StatusDetails | undefined;
162
162
  /**
163
163
  * <p>The Amazon S3 bucket where the audience export is stored.</p>
164
164
  * @public
165
165
  */
166
- outputLocation?: string;
166
+ outputLocation?: string | undefined;
167
167
  }
168
168
  /**
169
169
  * @public
@@ -173,7 +173,7 @@ export interface ListAudienceExportJobsResponse {
173
173
  * <p>The token value used to access the next page of results.</p>
174
174
  * @public
175
175
  */
176
- nextToken?: string;
176
+ nextToken?: string | undefined;
177
177
  /**
178
178
  * <p>The audience export jobs that match the request.</p>
179
179
  * @public
@@ -251,7 +251,7 @@ export interface StartAudienceExportJobRequest {
251
251
  * <p>The description of the audience export job.</p>
252
252
  * @public
253
253
  */
254
- description?: string;
254
+ description?: string | undefined;
255
255
  }
256
256
  /**
257
257
  * @public
@@ -287,7 +287,7 @@ export interface RelevanceMetric {
287
287
  * <p>The relevance score of the generated audience.</p>
288
288
  * @public
289
289
  */
290
- score?: number;
290
+ score?: number | undefined;
291
291
  }
292
292
  /**
293
293
  * <p>Metrics that describe the quality of the generated audience.</p>
@@ -304,7 +304,7 @@ export interface AudienceQualityMetrics {
304
304
  * </p>
305
305
  * @public
306
306
  */
307
- recallMetric?: number;
307
+ recallMetric?: number | undefined;
308
308
  }
309
309
  /**
310
310
  * <p>The parameters for the SQL type Protected Query.</p>
@@ -315,18 +315,18 @@ export interface ProtectedQuerySQLParameters {
315
315
  * <p>The query string to be submitted.</p>
316
316
  * @public
317
317
  */
318
- queryString?: string;
318
+ queryString?: string | undefined;
319
319
  /**
320
320
  * <p>The Amazon Resource Name (ARN) associated with the analysis template within a
321
321
  * collaboration.</p>
322
322
  * @public
323
323
  */
324
- analysisTemplateArn?: string;
324
+ analysisTemplateArn?: string | undefined;
325
325
  /**
326
326
  * <p>The protected query SQL parameters.</p>
327
327
  * @public
328
328
  */
329
- parameters?: Record<string, string>;
329
+ parameters?: Record<string, string> | undefined;
330
330
  }
331
331
  /**
332
332
  * <p>Defines the Amazon S3 bucket where the seed audience for the generating audience is stored.</p>
@@ -346,7 +346,7 @@ export interface AudienceGenerationJobDataSource {
346
346
  * </p>
347
347
  * @public
348
348
  */
349
- dataSource?: S3ConfigMap;
349
+ dataSource?: S3ConfigMap | undefined;
350
350
  /**
351
351
  * <p>The ARN of the IAM role that can read the Amazon S3 bucket where the seed audience is stored.</p>
352
352
  * @public
@@ -356,7 +356,7 @@ export interface AudienceGenerationJobDataSource {
356
356
  * <p>The protected SQL query parameters.</p>
357
357
  * @public
358
358
  */
359
- sqlParameters?: ProtectedQuerySQLParameters;
359
+ sqlParameters?: ProtectedQuerySQLParameters | undefined;
360
360
  }
361
361
  /**
362
362
  * @public
@@ -403,7 +403,7 @@ export interface GetAudienceGenerationJobResponse {
403
403
  * <p>The description of the audience generation job.</p>
404
404
  * @public
405
405
  */
406
- description?: string;
406
+ description?: string | undefined;
407
407
  /**
408
408
  * <p>The status of the audience generation job.</p>
409
409
  * @public
@@ -413,7 +413,7 @@ export interface GetAudienceGenerationJobResponse {
413
413
  * <p>Details about the status of the audience generation job.</p>
414
414
  * @public
415
415
  */
416
- statusDetails?: StatusDetails;
416
+ statusDetails?: StatusDetails | undefined;
417
417
  /**
418
418
  * <p>The Amazon Resource Name (ARN) of the configured audience model used for this audience generation job.</p>
419
419
  * @public
@@ -423,37 +423,37 @@ export interface GetAudienceGenerationJobResponse {
423
423
  * <p>The seed audience that was used for this audience generation job. This field will be null if the account calling the API is the account that started this audience generation job. </p>
424
424
  * @public
425
425
  */
426
- seedAudience?: AudienceGenerationJobDataSource;
426
+ seedAudience?: AudienceGenerationJobDataSource | undefined;
427
427
  /**
428
428
  * <p>Configure whether the seed users are included in the output audience. By default, Clean Rooms ML removes seed users from the output audience. If you specify <code>TRUE</code>, the seed users will appear first in the output. Clean Rooms ML does not explicitly reveal whether a user was in the seed, but the recipient of the audience will know that the first <code>minimumSeedSize</code> count of users are from the seed.</p>
429
429
  * @public
430
430
  */
431
- includeSeedInOutput?: boolean;
431
+ includeSeedInOutput?: boolean | undefined;
432
432
  /**
433
433
  * <p>The identifier of the collaboration that this audience generation job is associated with.</p>
434
434
  * @public
435
435
  */
436
- collaborationId?: string;
436
+ collaborationId?: string | undefined;
437
437
  /**
438
438
  * <p>The relevance scores for different audience sizes and the recall score of the generated audience. </p>
439
439
  * @public
440
440
  */
441
- metrics?: AudienceQualityMetrics;
441
+ metrics?: AudienceQualityMetrics | undefined;
442
442
  /**
443
443
  * <p>The AWS account that started this audience generation job.</p>
444
444
  * @public
445
445
  */
446
- startedBy?: string;
446
+ startedBy?: string | undefined;
447
447
  /**
448
448
  * <p>The tags that are associated to this audience generation job.</p>
449
449
  * @public
450
450
  */
451
- tags?: Record<string, string>;
451
+ tags?: Record<string, string> | undefined;
452
452
  /**
453
453
  * <p>The unique identifier of the protected query for this audience generation job.</p>
454
454
  * @public
455
455
  */
456
- protectedQueryIdentifier?: string;
456
+ protectedQueryIdentifier?: string | undefined;
457
457
  }
458
458
  /**
459
459
  * @public
@@ -463,22 +463,22 @@ export interface ListAudienceGenerationJobsRequest {
463
463
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
464
464
  * @public
465
465
  */
466
- nextToken?: string;
466
+ nextToken?: string | undefined;
467
467
  /**
468
468
  * <p>The maximum size of the results that is returned per call.</p>
469
469
  * @public
470
470
  */
471
- maxResults?: number;
471
+ maxResults?: number | undefined;
472
472
  /**
473
473
  * <p>The Amazon Resource Name (ARN) of the configured audience model that was used for the audience generation jobs that you are interested in.</p>
474
474
  * @public
475
475
  */
476
- configuredAudienceModelArn?: string;
476
+ configuredAudienceModelArn?: string | undefined;
477
477
  /**
478
478
  * <p>The identifier of the collaboration that contains the audience generation jobs that you are interested in.</p>
479
479
  * @public
480
480
  */
481
- collaborationId?: string;
481
+ collaborationId?: string | undefined;
482
482
  }
483
483
  /**
484
484
  * <p>Provides information about the configured audience generation job.</p>
@@ -509,7 +509,7 @@ export interface AudienceGenerationJobSummary {
509
509
  * <p>The description of the audience generation job.</p>
510
510
  * @public
511
511
  */
512
- description?: string;
512
+ description?: string | undefined;
513
513
  /**
514
514
  * <p>The status of the audience generation job.</p>
515
515
  * @public
@@ -524,12 +524,12 @@ export interface AudienceGenerationJobSummary {
524
524
  * <p>The identifier of the collaboration that contains this audience generation job.</p>
525
525
  * @public
526
526
  */
527
- collaborationId?: string;
527
+ collaborationId?: string | undefined;
528
528
  /**
529
529
  * <p>The AWS Account that submitted the job.</p>
530
530
  * @public
531
531
  */
532
- startedBy?: string;
532
+ startedBy?: string | undefined;
533
533
  }
534
534
  /**
535
535
  * @public
@@ -539,7 +539,7 @@ export interface ListAudienceGenerationJobsResponse {
539
539
  * <p>The token value used to access the next page of results.</p>
540
540
  * @public
541
541
  */
542
- nextToken?: string;
542
+ nextToken?: string | undefined;
543
543
  /**
544
544
  * <p>The audience generation jobs that match the request.</p>
545
545
  * @public
@@ -569,17 +569,17 @@ export interface StartAudienceGenerationJobRequest {
569
569
  * <p>Whether the seed audience is included in the audience generation output.</p>
570
570
  * @public
571
571
  */
572
- includeSeedInOutput?: boolean;
572
+ includeSeedInOutput?: boolean | undefined;
573
573
  /**
574
574
  * <p>The identifier of the collaboration that contains the audience generation job.</p>
575
575
  * @public
576
576
  */
577
- collaborationId?: string;
577
+ collaborationId?: string | undefined;
578
578
  /**
579
579
  * <p>The description of the audience generation job.</p>
580
580
  * @public
581
581
  */
582
- description?: string;
582
+ description?: string | undefined;
583
583
  /**
584
584
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
585
585
  * <p>The following basic restrictions apply to tags:</p>
@@ -608,7 +608,7 @@ export interface StartAudienceGenerationJobRequest {
608
608
  * </ul>
609
609
  * @public
610
610
  */
611
- tags?: Record<string, string>;
611
+ tags?: Record<string, string> | undefined;
612
612
  }
613
613
  /**
614
614
  * @public
@@ -628,12 +628,12 @@ export interface CreateAudienceModelRequest {
628
628
  * <p>The start date and time of the training window.</p>
629
629
  * @public
630
630
  */
631
- trainingDataStartTime?: Date;
631
+ trainingDataStartTime?: Date | undefined;
632
632
  /**
633
633
  * <p>The end date and time of the training window.</p>
634
634
  * @public
635
635
  */
636
- trainingDataEndTime?: Date;
636
+ trainingDataEndTime?: Date | undefined;
637
637
  /**
638
638
  * <p>The name of the audience model resource.</p>
639
639
  * @public
@@ -648,7 +648,7 @@ export interface CreateAudienceModelRequest {
648
648
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and the associated data.</p>
649
649
  * @public
650
650
  */
651
- kmsKeyArn?: string;
651
+ kmsKeyArn?: string | undefined;
652
652
  /**
653
653
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
654
654
  * <p>The following basic restrictions apply to tags:</p>
@@ -677,12 +677,12 @@ export interface CreateAudienceModelRequest {
677
677
  * </ul>
678
678
  * @public
679
679
  */
680
- tags?: Record<string, string>;
680
+ tags?: Record<string, string> | undefined;
681
681
  /**
682
682
  * <p>The description of the audience model.</p>
683
683
  * @public
684
684
  */
685
- description?: string;
685
+ description?: string | undefined;
686
686
  }
687
687
  /**
688
688
  * @public
@@ -749,12 +749,12 @@ export interface GetAudienceModelResponse {
749
749
  * <p>The start date specified for the training window.</p>
750
750
  * @public
751
751
  */
752
- trainingDataStartTime?: Date;
752
+ trainingDataStartTime?: Date | undefined;
753
753
  /**
754
754
  * <p>The end date specified for the training window.</p>
755
755
  * @public
756
756
  */
757
- trainingDataEndTime?: Date;
757
+ trainingDataEndTime?: Date | undefined;
758
758
  /**
759
759
  * <p>The Amazon Resource Name (ARN) of the audience model.</p>
760
760
  * @public
@@ -779,22 +779,22 @@ export interface GetAudienceModelResponse {
779
779
  * <p>Details about the status of the audience model.</p>
780
780
  * @public
781
781
  */
782
- statusDetails?: StatusDetails;
782
+ statusDetails?: StatusDetails | undefined;
783
783
  /**
784
784
  * <p>The KMS key ARN used for the audience model.</p>
785
785
  * @public
786
786
  */
787
- kmsKeyArn?: string;
787
+ kmsKeyArn?: string | undefined;
788
788
  /**
789
789
  * <p>The tags that are assigned to the audience model.</p>
790
790
  * @public
791
791
  */
792
- tags?: Record<string, string>;
792
+ tags?: Record<string, string> | undefined;
793
793
  /**
794
794
  * <p>The description of the audience model.</p>
795
795
  * @public
796
796
  */
797
- description?: string;
797
+ description?: string | undefined;
798
798
  }
799
799
  /**
800
800
  * @public
@@ -804,12 +804,12 @@ export interface ListAudienceModelsRequest {
804
804
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
805
805
  * @public
806
806
  */
807
- nextToken?: string;
807
+ nextToken?: string | undefined;
808
808
  /**
809
809
  * <p>The maximum size of the results that is returned per call.</p>
810
810
  * @public
811
811
  */
812
- maxResults?: number;
812
+ maxResults?: number | undefined;
813
813
  }
814
814
  /**
815
815
  * <p>Information about the audience model.</p>
@@ -850,7 +850,7 @@ export interface AudienceModelSummary {
850
850
  * <p>The description of the audience model.</p>
851
851
  * @public
852
852
  */
853
- description?: string;
853
+ description?: string | undefined;
854
854
  }
855
855
  /**
856
856
  * @public
@@ -860,7 +860,7 @@ export interface ListAudienceModelsResponse {
860
860
  * <p>The token value used to access the next page of results.</p>
861
861
  * @public
862
862
  */
863
- nextToken?: string;
863
+ nextToken?: string | undefined;
864
864
  /**
865
865
  * <p>The audience models that match the request.</p>
866
866
  * @public
@@ -949,7 +949,7 @@ export interface CreateConfiguredAudienceModelRequest {
949
949
  * <p>The description of the configured audience model.</p>
950
950
  * @public
951
951
  */
952
- description?: string;
952
+ description?: string | undefined;
953
953
  /**
954
954
  * <p>Whether audience metrics are shared.</p>
955
955
  * @public
@@ -959,14 +959,14 @@ export interface CreateConfiguredAudienceModelRequest {
959
959
  * <p>The minimum number of users from the seed audience that must match with users in the training data of the audience model. The default value is 500.</p>
960
960
  * @public
961
961
  */
962
- minMatchingSeedSize?: number;
962
+ minMatchingSeedSize?: number | undefined;
963
963
  /**
964
964
  * <p>Configure the list of output sizes of audiences that can be created using this configured audience model. A request to <a>StartAudienceGenerationJob</a> that uses this configured audience model must have an <code>audienceSize</code> selected from this list. You can use the <code>ABSOLUTE</code>
965
965
  * <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code>
966
966
  * <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
967
967
  * @public
968
968
  */
969
- audienceSizeConfig?: AudienceSizeConfig;
969
+ audienceSizeConfig?: AudienceSizeConfig | undefined;
970
970
  /**
971
971
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
972
972
  * <p>The following basic restrictions apply to tags:</p>
@@ -995,13 +995,13 @@ export interface CreateConfiguredAudienceModelRequest {
995
995
  * </ul>
996
996
  * @public
997
997
  */
998
- tags?: Record<string, string>;
998
+ tags?: Record<string, string> | undefined;
999
999
  /**
1000
1000
  * <p>Configure how the service tags audience generation jobs created using this configured audience model. If you specify <code>NONE</code>, the tags from the <a>StartAudienceGenerationJob</a> request determine the tags of the audience generation job. If you specify <code>FROM_PARENT_RESOURCE</code>, the audience generation job inherits the tags from the configured audience model, by default. Tags in the <a>StartAudienceGenerationJob</a> will override the default.</p>
1001
1001
  * <p>When the client is in a different account than the configured audience model, the tags from the client are never applied to a resource in the caller's account.</p>
1002
1002
  * @public
1003
1003
  */
1004
- childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
1004
+ childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
1005
1005
  }
1006
1006
  /**
1007
1007
  * @public
@@ -1082,7 +1082,7 @@ export interface GetConfiguredAudienceModelResponse {
1082
1082
  * <p>The description of the configured audience model.</p>
1083
1083
  * @public
1084
1084
  */
1085
- description?: string;
1085
+ description?: string | undefined;
1086
1086
  /**
1087
1087
  * <p>The status of the configured audience model.</p>
1088
1088
  * @public
@@ -1097,24 +1097,24 @@ export interface GetConfiguredAudienceModelResponse {
1097
1097
  * <p>The minimum number of users from the seed audience that must match with users in the training data of the audience model.</p>
1098
1098
  * @public
1099
1099
  */
1100
- minMatchingSeedSize?: number;
1100
+ minMatchingSeedSize?: number | undefined;
1101
1101
  /**
1102
1102
  * <p>The list of output sizes of audiences that can be created using this configured audience model. A request to <a>StartAudienceGenerationJob</a> that uses this configured audience model must have an <code>audienceSize</code> selected from this list. You can use the <code>ABSOLUTE</code>
1103
1103
  * <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code>
1104
1104
  * <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
1105
1105
  * @public
1106
1106
  */
1107
- audienceSizeConfig?: AudienceSizeConfig;
1107
+ audienceSizeConfig?: AudienceSizeConfig | undefined;
1108
1108
  /**
1109
1109
  * <p>The tags that are associated to this configured audience model.</p>
1110
1110
  * @public
1111
1111
  */
1112
- tags?: Record<string, string>;
1112
+ tags?: Record<string, string> | undefined;
1113
1113
  /**
1114
1114
  * <p>Provides the <code>childResourceTagOnCreatePolicy</code> that was used for this configured audience model.</p>
1115
1115
  * @public
1116
1116
  */
1117
- childResourceTagOnCreatePolicy?: TagOnCreatePolicy;
1117
+ childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
1118
1118
  }
1119
1119
  /**
1120
1120
  * @public
@@ -1124,12 +1124,12 @@ export interface ListConfiguredAudienceModelsRequest {
1124
1124
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
1125
1125
  * @public
1126
1126
  */
1127
- nextToken?: string;
1127
+ nextToken?: string | undefined;
1128
1128
  /**
1129
1129
  * <p>The maximum size of the results that is returned per call.</p>
1130
1130
  * @public
1131
1131
  */
1132
- maxResults?: number;
1132
+ maxResults?: number | undefined;
1133
1133
  }
1134
1134
  /**
1135
1135
  * <p>Information about the configured audience model.</p>
@@ -1165,7 +1165,7 @@ export interface ConfiguredAudienceModelSummary {
1165
1165
  * <p>The description of the configured audience model.</p>
1166
1166
  * @public
1167
1167
  */
1168
- description?: string;
1168
+ description?: string | undefined;
1169
1169
  /**
1170
1170
  * <p>The Amazon Resource Name (ARN) of the configured audience model that you are interested in.</p>
1171
1171
  * @public
@@ -1185,7 +1185,7 @@ export interface ListConfiguredAudienceModelsResponse {
1185
1185
  * <p>The token value used to access the next page of results.</p>
1186
1186
  * @public
1187
1187
  */
1188
- nextToken?: string;
1188
+ nextToken?: string | undefined;
1189
1189
  /**
1190
1190
  * <p>The configured audience models.</p>
1191
1191
  * @public
@@ -1205,32 +1205,32 @@ export interface UpdateConfiguredAudienceModelRequest {
1205
1205
  * <p>The new output configuration.</p>
1206
1206
  * @public
1207
1207
  */
1208
- outputConfig?: ConfiguredAudienceModelOutputConfig;
1208
+ outputConfig?: ConfiguredAudienceModelOutputConfig | undefined;
1209
1209
  /**
1210
1210
  * <p>The Amazon Resource Name (ARN) of the new audience model that you want to use.</p>
1211
1211
  * @public
1212
1212
  */
1213
- audienceModelArn?: string;
1213
+ audienceModelArn?: string | undefined;
1214
1214
  /**
1215
1215
  * <p>The new value for whether to share audience metrics.</p>
1216
1216
  * @public
1217
1217
  */
1218
- sharedAudienceMetrics?: SharedAudienceMetrics[];
1218
+ sharedAudienceMetrics?: SharedAudienceMetrics[] | undefined;
1219
1219
  /**
1220
1220
  * <p>The minimum number of users from the seed audience that must match with users in the training data of the audience model.</p>
1221
1221
  * @public
1222
1222
  */
1223
- minMatchingSeedSize?: number;
1223
+ minMatchingSeedSize?: number | undefined;
1224
1224
  /**
1225
1225
  * <p>The new audience size configuration.</p>
1226
1226
  * @public
1227
1227
  */
1228
- audienceSizeConfig?: AudienceSizeConfig;
1228
+ audienceSizeConfig?: AudienceSizeConfig | undefined;
1229
1229
  /**
1230
1230
  * <p>The new description of the configured audience model.</p>
1231
1231
  * @public
1232
1232
  */
1233
- description?: string;
1233
+ description?: string | undefined;
1234
1234
  }
1235
1235
  /**
1236
1236
  * @public
@@ -1312,12 +1312,12 @@ export interface PutConfiguredAudienceModelPolicyRequest {
1312
1312
  * <p>A cryptographic hash of the contents of the policy used to prevent unexpected concurrent modification of the policy.</p>
1313
1313
  * @public
1314
1314
  */
1315
- previousPolicyHash?: string;
1315
+ previousPolicyHash?: string | undefined;
1316
1316
  /**
1317
1317
  * <p>Use this to prevent unexpected concurrent modification of the policy.</p>
1318
1318
  * @public
1319
1319
  */
1320
- policyExistenceCondition?: PolicyExistenceCondition;
1320
+ policyExistenceCondition?: PolicyExistenceCondition | undefined;
1321
1321
  }
1322
1322
  /**
1323
1323
  * @public
@@ -1375,17 +1375,17 @@ export interface ContainerConfig {
1375
1375
  * <p>The entrypoint script for a Docker container used to run a training job. This script takes precedence over the default train processing instructions. See How Amazon SageMaker Runs Your Training Image for additional information. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo-dockerfile.html">How Sagemaker runs your training image</a>.</p>
1376
1376
  * @public
1377
1377
  */
1378
- entrypoint?: string[];
1378
+ entrypoint?: string[] | undefined;
1379
1379
  /**
1380
1380
  * <p>The arguments for a container used to run a training job. See How Amazon SageMaker Runs Your Training Image for additional information. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-training-algo-dockerfile.html">How Sagemaker runs your training image</a>.</p>
1381
1381
  * @public
1382
1382
  */
1383
- arguments?: string[];
1383
+ arguments?: string[] | undefined;
1384
1384
  /**
1385
1385
  * <p>A list of metric definition objects. Each object specifies the metric name and regular expressions used to parse algorithm logs. Amazon Web Services Clean Rooms ML publishes each metric to all members' Amazon CloudWatch using IAM role configured in <a>PutMLConfiguration</a>.</p>
1386
1386
  * @public
1387
1387
  */
1388
- metricDefinitions?: MetricDefinition[];
1388
+ metricDefinitions?: MetricDefinition[] | undefined;
1389
1389
  }
1390
1390
  /**
1391
1391
  * @public
@@ -1400,7 +1400,7 @@ export interface CreateConfiguredModelAlgorithmRequest {
1400
1400
  * <p>The description of the configured model algorithm.</p>
1401
1401
  * @public
1402
1402
  */
1403
- description?: string;
1403
+ description?: string | undefined;
1404
1404
  /**
1405
1405
  * <p>The Amazon Resource Name (ARN) of the role that is used to access the repository.</p>
1406
1406
  * @public
@@ -1410,12 +1410,12 @@ export interface CreateConfiguredModelAlgorithmRequest {
1410
1410
  * <p>Configuration information for the training container, including entrypoints and arguments.</p>
1411
1411
  * @public
1412
1412
  */
1413
- trainingContainerConfig?: ContainerConfig;
1413
+ trainingContainerConfig?: ContainerConfig | undefined;
1414
1414
  /**
1415
1415
  * <p>Configuration information for the inference container that is used when you run an inference job on a configured model algorithm.</p>
1416
1416
  * @public
1417
1417
  */
1418
- inferenceContainerConfig?: InferenceContainerConfig;
1418
+ inferenceContainerConfig?: InferenceContainerConfig | undefined;
1419
1419
  /**
1420
1420
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1421
1421
  * <p>The following basic restrictions apply to tags:</p>
@@ -1444,12 +1444,12 @@ export interface CreateConfiguredModelAlgorithmRequest {
1444
1444
  * </ul>
1445
1445
  * @public
1446
1446
  */
1447
- tags?: Record<string, string>;
1447
+ tags?: Record<string, string> | undefined;
1448
1448
  /**
1449
1449
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the configured ML model algorithm and associated data.</p>
1450
1450
  * @public
1451
1451
  */
1452
- kmsKeyArn?: string;
1452
+ kmsKeyArn?: string | undefined;
1453
1453
  }
1454
1454
  /**
1455
1455
  * @public
@@ -1509,12 +1509,12 @@ export interface GetConfiguredModelAlgorithmResponse {
1509
1509
  * <p>The configuration information of the training container for the configured model algorithm.</p>
1510
1510
  * @public
1511
1511
  */
1512
- trainingContainerConfig?: ContainerConfig;
1512
+ trainingContainerConfig?: ContainerConfig | undefined;
1513
1513
  /**
1514
1514
  * <p>Configuration information for the inference container.</p>
1515
1515
  * @public
1516
1516
  */
1517
- inferenceContainerConfig?: InferenceContainerConfig;
1517
+ inferenceContainerConfig?: InferenceContainerConfig | undefined;
1518
1518
  /**
1519
1519
  * <p>The Amazon Resource Name (ARN) of the service role that was used to create the configured model algorithm.</p>
1520
1520
  * @public
@@ -1524,7 +1524,7 @@ export interface GetConfiguredModelAlgorithmResponse {
1524
1524
  * <p>The description of the configured model algorithm.</p>
1525
1525
  * @public
1526
1526
  */
1527
- description?: string;
1527
+ description?: string | undefined;
1528
1528
  /**
1529
1529
  * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1530
1530
  * <p>The following basic restrictions apply to tags:</p>
@@ -1553,12 +1553,12 @@ export interface GetConfiguredModelAlgorithmResponse {
1553
1553
  * </ul>
1554
1554
  * @public
1555
1555
  */
1556
- tags?: Record<string, string>;
1556
+ tags?: Record<string, string> | undefined;
1557
1557
  /**
1558
1558
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the configured ML model and associated data.</p>
1559
1559
  * @public
1560
1560
  */
1561
- kmsKeyArn?: string;
1561
+ kmsKeyArn?: string | undefined;
1562
1562
  }
1563
1563
  /**
1564
1564
  * @public
@@ -1568,12 +1568,12 @@ export interface ListConfiguredModelAlgorithmsRequest {
1568
1568
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
1569
1569
  * @public
1570
1570
  */
1571
- nextToken?: string;
1571
+ nextToken?: string | undefined;
1572
1572
  /**
1573
1573
  * <p>The maximum size of the results that is returned per call.</p>
1574
1574
  * @public
1575
1575
  */
1576
- maxResults?: number;
1576
+ maxResults?: number | undefined;
1577
1577
  }
1578
1578
  /**
1579
1579
  * <p>Provides summary information about a configured model algorithm.</p>
@@ -1604,7 +1604,7 @@ export interface ConfiguredModelAlgorithmSummary {
1604
1604
  * <p>The description of the configured model algorithm.</p>
1605
1605
  * @public
1606
1606
  */
1607
- description?: string;
1607
+ description?: string | undefined;
1608
1608
  }
1609
1609
  /**
1610
1610
  * @public
@@ -1614,7 +1614,7 @@ export interface ListConfiguredModelAlgorithmsResponse {
1614
1614
  * <p>The token value used to access the next page of results.</p>
1615
1615
  * @public
1616
1616
  */
1617
- nextToken?: string;
1617
+ nextToken?: string | undefined;
1618
1618
  /**
1619
1619
  * <p>The list of configured model algorithms.</p>
1620
1620
  * @public
@@ -1690,7 +1690,7 @@ export interface LogsConfigurationPolicy {
1690
1690
  * <p>A regular expression pattern that is used to parse the logs and return information that matches the pattern.</p>
1691
1691
  * @public
1692
1692
  */
1693
- filterPattern?: string;
1693
+ filterPattern?: string | undefined;
1694
1694
  }
1695
1695
  /**
1696
1696
  * @public
@@ -1728,12 +1728,12 @@ export interface TrainedModelInferenceJobsConfigurationPolicy {
1728
1728
  * <p>The logs container for the trained model inference job.</p>
1729
1729
  * @public
1730
1730
  */
1731
- containerLogs?: LogsConfigurationPolicy[];
1731
+ containerLogs?: LogsConfigurationPolicy[] | undefined;
1732
1732
  /**
1733
1733
  * <p>The maximum allowed size of the output of the trained model inference job.</p>
1734
1734
  * @public
1735
1735
  */
1736
- maxOutputSize?: TrainedModelInferenceMaxOutputSize;
1736
+ maxOutputSize?: TrainedModelInferenceMaxOutputSize | undefined;
1737
1737
  }
1738
1738
  /**
1739
1739
  * @public
@@ -1769,12 +1769,12 @@ export interface TrainedModelsConfigurationPolicy {
1769
1769
  * <p>The container for the logs of the trained model.</p>
1770
1770
  * @public
1771
1771
  */
1772
- containerLogs?: LogsConfigurationPolicy[];
1772
+ containerLogs?: LogsConfigurationPolicy[] | undefined;
1773
1773
  /**
1774
1774
  * <p>The container for the metrics of the trained model.</p>
1775
1775
  * @public
1776
1776
  */
1777
- containerMetrics?: MetricsConfigurationPolicy;
1777
+ containerMetrics?: MetricsConfigurationPolicy | undefined;
1778
1778
  }
1779
1779
  /**
1780
1780
  * <p>Information about the privacy configuration policies for a configured model algorithm association.</p>
@@ -1785,17 +1785,17 @@ export interface PrivacyConfigurationPolicies {
1785
1785
  * <p>Specifies who will receive the trained models.</p>
1786
1786
  * @public
1787
1787
  */
1788
- trainedModels?: TrainedModelsConfigurationPolicy;
1788
+ trainedModels?: TrainedModelsConfigurationPolicy | undefined;
1789
1789
  /**
1790
1790
  * <p>Specifies who will receive the trained model export.</p>
1791
1791
  * @public
1792
1792
  */
1793
- trainedModelExports?: TrainedModelExportsConfigurationPolicy;
1793
+ trainedModelExports?: TrainedModelExportsConfigurationPolicy | undefined;
1794
1794
  /**
1795
1795
  * <p>Specifies who will receive the trained model inference jobs.</p>
1796
1796
  * @public
1797
1797
  */
1798
- trainedModelInferenceJobs?: TrainedModelInferenceJobsConfigurationPolicy;
1798
+ trainedModelInferenceJobs?: TrainedModelInferenceJobsConfigurationPolicy | undefined;
1799
1799
  }
1800
1800
  /**
1801
1801
  * <p>Information about the privacy configuration for a configured model algorithm association.</p>
@@ -1831,12 +1831,12 @@ export interface CreateConfiguredModelAlgorithmAssociationRequest {
1831
1831
  * <p>The description of the configured model algorithm association.</p>
1832
1832
  * @public
1833
1833
  */
1834
- description?: string;
1834
+ description?: string | undefined;
1835
1835
  /**
1836
1836
  * <p>Specifies the privacy configuration information for the configured model algorithm association. This information includes the maximum data size that can be exported.</p>
1837
1837
  * @public
1838
1838
  */
1839
- privacyConfiguration?: PrivacyConfiguration;
1839
+ privacyConfiguration?: PrivacyConfiguration | undefined;
1840
1840
  /**
1841
1841
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
1842
1842
  * <p>The following basic restrictions apply to tags:</p>
@@ -1865,7 +1865,7 @@ export interface CreateConfiguredModelAlgorithmAssociationRequest {
1865
1865
  * </ul>
1866
1866
  * @public
1867
1867
  */
1868
- tags?: Record<string, string>;
1868
+ tags?: Record<string, string> | undefined;
1869
1869
  }
1870
1870
  /**
1871
1871
  * @public
@@ -1950,7 +1950,7 @@ export interface GetCollaborationConfiguredModelAlgorithmAssociationResponse {
1950
1950
  * <p>The description of the configured model algorithm association.</p>
1951
1951
  * @public
1952
1952
  */
1953
- description?: string;
1953
+ description?: string | undefined;
1954
1954
  /**
1955
1955
  * <p>The account ID of the member that created the configured model algorithm association.</p>
1956
1956
  * @public
@@ -1960,7 +1960,7 @@ export interface GetCollaborationConfiguredModelAlgorithmAssociationResponse {
1960
1960
  * <p>Information about the privacy configuration for a configured model algorithm association.</p>
1961
1961
  * @public
1962
1962
  */
1963
- privacyConfiguration?: PrivacyConfiguration;
1963
+ privacyConfiguration?: PrivacyConfiguration | undefined;
1964
1964
  }
1965
1965
  /**
1966
1966
  * @public
@@ -2020,12 +2020,12 @@ export interface GetConfiguredModelAlgorithmAssociationResponse {
2020
2020
  * <p>The privacy configuration information for the configured model algorithm association.</p>
2021
2021
  * @public
2022
2022
  */
2023
- privacyConfiguration?: PrivacyConfiguration;
2023
+ privacyConfiguration?: PrivacyConfiguration | undefined;
2024
2024
  /**
2025
2025
  * <p>The description of the configured model algorithm association.</p>
2026
2026
  * @public
2027
2027
  */
2028
- description?: string;
2028
+ description?: string | undefined;
2029
2029
  /**
2030
2030
  * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
2031
2031
  * <p>The following basic restrictions apply to tags:</p>
@@ -2054,7 +2054,7 @@ export interface GetConfiguredModelAlgorithmAssociationResponse {
2054
2054
  * </ul>
2055
2055
  * @public
2056
2056
  */
2057
- tags?: Record<string, string>;
2057
+ tags?: Record<string, string> | undefined;
2058
2058
  }
2059
2059
  /**
2060
2060
  * @public
@@ -2064,12 +2064,12 @@ export interface ListConfiguredModelAlgorithmAssociationsRequest {
2064
2064
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
2065
2065
  * @public
2066
2066
  */
2067
- nextToken?: string;
2067
+ nextToken?: string | undefined;
2068
2068
  /**
2069
2069
  * <p>The maximum size of the results that is returned per call.</p>
2070
2070
  * @public
2071
2071
  */
2072
- maxResults?: number;
2072
+ maxResults?: number | undefined;
2073
2073
  /**
2074
2074
  * <p>The membership ID of the member that created the configured model algorithm associations you are interested in.</p>
2075
2075
  * @public
@@ -2110,7 +2110,7 @@ export interface ConfiguredModelAlgorithmAssociationSummary {
2110
2110
  * <p>The description of the configured model algorithm association.</p>
2111
2111
  * @public
2112
2112
  */
2113
- description?: string;
2113
+ description?: string | undefined;
2114
2114
  /**
2115
2115
  * <p>The membership ID of the member that created the configured model algorithm association.</p>
2116
2116
  * @public
@@ -2130,7 +2130,7 @@ export interface ListConfiguredModelAlgorithmAssociationsResponse {
2130
2130
  * <p>The token value used to access the next page of results.</p>
2131
2131
  * @public
2132
2132
  */
2133
- nextToken?: string;
2133
+ nextToken?: string | undefined;
2134
2134
  /**
2135
2135
  * <p>The list of configured model algorithm associations.</p>
2136
2136
  * @public
@@ -2145,12 +2145,12 @@ export interface ListCollaborationConfiguredModelAlgorithmAssociationsRequest {
2145
2145
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
2146
2146
  * @public
2147
2147
  */
2148
- nextToken?: string;
2148
+ nextToken?: string | undefined;
2149
2149
  /**
2150
2150
  * <p>The maximum size of the results that is returned per call.</p>
2151
2151
  * @public
2152
2152
  */
2153
- maxResults?: number;
2153
+ maxResults?: number | undefined;
2154
2154
  /**
2155
2155
  * <p>The collaboration ID of the collaboration that contains the configured model algorithm associations that you are interested in.</p>
2156
2156
  * @public
@@ -2186,7 +2186,7 @@ export interface CollaborationConfiguredModelAlgorithmAssociationSummary {
2186
2186
  * <p>The description of the configured model algorithm association.</p>
2187
2187
  * @public
2188
2188
  */
2189
- description?: string;
2189
+ description?: string | undefined;
2190
2190
  /**
2191
2191
  * <p>The membership ID of the member that created the configured model algorithm association.</p>
2192
2192
  * @public
@@ -2216,7 +2216,7 @@ export interface ListCollaborationConfiguredModelAlgorithmAssociationsResponse {
2216
2216
  * <p>The token value used to access the next page of results.</p>
2217
2217
  * @public
2218
2218
  */
2219
- nextToken?: string;
2219
+ nextToken?: string | undefined;
2220
2220
  /**
2221
2221
  * <p>The configured model algorithm associations that belong to this collaboration.</p>
2222
2222
  * @public
@@ -2231,12 +2231,12 @@ export interface ListCollaborationMLInputChannelsRequest {
2231
2231
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
2232
2232
  * @public
2233
2233
  */
2234
- nextToken?: string;
2234
+ nextToken?: string | undefined;
2235
2235
  /**
2236
2236
  * <p>The maximum number of results to return.</p>
2237
2237
  * @public
2238
2238
  */
2239
- maxResults?: number;
2239
+ maxResults?: number | undefined;
2240
2240
  /**
2241
2241
  * <p>The collaboration ID of the collaboration that contains the ML input channels that you want to list.</p>
2242
2242
  * @public
@@ -2315,7 +2315,7 @@ export interface CollaborationMLInputChannelSummary {
2315
2315
  * <p>The description of the ML input channel.</p>
2316
2316
  * @public
2317
2317
  */
2318
- description?: string;
2318
+ description?: string | undefined;
2319
2319
  }
2320
2320
  /**
2321
2321
  * @public
@@ -2325,7 +2325,7 @@ export interface ListCollaborationMLInputChannelsResponse {
2325
2325
  * <p>The token value used to access the next page of results.</p>
2326
2326
  * @public
2327
2327
  */
2328
- nextToken?: string;
2328
+ nextToken?: string | undefined;
2329
2329
  /**
2330
2330
  * <p>The list of ML input channels that you wanted.</p>
2331
2331
  * @public
@@ -2340,12 +2340,12 @@ export interface ListCollaborationTrainedModelExportJobsRequest {
2340
2340
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
2341
2341
  * @public
2342
2342
  */
2343
- nextToken?: string;
2343
+ nextToken?: string | undefined;
2344
2344
  /**
2345
2345
  * <p>The maximum size of the results that is returned per call.</p>
2346
2346
  * @public
2347
2347
  */
2348
- maxResults?: number;
2348
+ maxResults?: number | undefined;
2349
2349
  /**
2350
2350
  * <p>The collaboration ID of the collaboration that contains the trained model export jobs that you are interested in.</p>
2351
2351
  * @public
@@ -2427,12 +2427,12 @@ export interface CollaborationTrainedModelExportJobSummary {
2427
2427
  * <p>Details about the status of a resource.</p>
2428
2428
  * @public
2429
2429
  */
2430
- statusDetails?: StatusDetails;
2430
+ statusDetails?: StatusDetails | undefined;
2431
2431
  /**
2432
2432
  * <p>The description of the trained model.</p>
2433
2433
  * @public
2434
2434
  */
2435
- description?: string;
2435
+ description?: string | undefined;
2436
2436
  /**
2437
2437
  * <p>The account ID of the member that created the trained model.</p>
2438
2438
  * @public
@@ -2462,7 +2462,7 @@ export interface ListCollaborationTrainedModelExportJobsResponse {
2462
2462
  * <p>The token value used to access the next page of results.</p>
2463
2463
  * @public
2464
2464
  */
2465
- nextToken?: string;
2465
+ nextToken?: string | undefined;
2466
2466
  /**
2467
2467
  * <p>The exports jobs that exist for the requested trained model in the requested collaboration.</p>
2468
2468
  * @public
@@ -2477,12 +2477,12 @@ export interface ListCollaborationTrainedModelInferenceJobsRequest {
2477
2477
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
2478
2478
  * @public
2479
2479
  */
2480
- nextToken?: string;
2480
+ nextToken?: string | undefined;
2481
2481
  /**
2482
2482
  * <p>The maximum size of the results that is returned per call.</p>
2483
2483
  * @public
2484
2484
  */
2485
- maxResults?: number;
2485
+ maxResults?: number | undefined;
2486
2486
  /**
2487
2487
  * <p>The collaboration ID of the collaboration that contains the trained model inference jobs that you are interested in.</p>
2488
2488
  * @public
@@ -2492,7 +2492,7 @@ export interface ListCollaborationTrainedModelInferenceJobsRequest {
2492
2492
  * <p>The Amazon Resource Name (ARN) of the trained model that was used to create the trained model inference jobs that you are interested in.</p>
2493
2493
  * @public
2494
2494
  */
2495
- trainedModelArn?: string;
2495
+ trainedModelArn?: string | undefined;
2496
2496
  }
2497
2497
  /**
2498
2498
  * @public
@@ -2538,7 +2538,7 @@ export interface InferenceOutputConfiguration {
2538
2538
  * <p>The MIME type used to specify the output data.</p>
2539
2539
  * @public
2540
2540
  */
2541
- accept?: string;
2541
+ accept?: string | undefined;
2542
2542
  /**
2543
2543
  * <p>Defines the members that can receive inference output.</p>
2544
2544
  * @public
@@ -2577,7 +2577,7 @@ export interface CollaborationTrainedModelInferenceJobSummary {
2577
2577
  * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for the trained model inference job.</p>
2578
2578
  * @public
2579
2579
  */
2580
- configuredModelAlgorithmAssociationArn?: string;
2580
+ configuredModelAlgorithmAssociationArn?: string | undefined;
2581
2581
  /**
2582
2582
  * <p>The membership ID of the membership that contains the trained model inference job.</p>
2583
2583
  * @public
@@ -2612,27 +2612,27 @@ export interface CollaborationTrainedModelInferenceJobSummary {
2612
2612
  * <p>The description of the trained model inference job.</p>
2613
2613
  * @public
2614
2614
  */
2615
- description?: string;
2615
+ description?: string | undefined;
2616
2616
  /**
2617
2617
  * <p>the trained model inference job metrics status.</p>
2618
2618
  * @public
2619
2619
  */
2620
- metricsStatus?: MetricsStatus;
2620
+ metricsStatus?: MetricsStatus | undefined;
2621
2621
  /**
2622
2622
  * <p>Details about the metrics status for trained model inference job.</p>
2623
2623
  * @public
2624
2624
  */
2625
- metricsStatusDetails?: string;
2625
+ metricsStatusDetails?: string | undefined;
2626
2626
  /**
2627
2627
  * <p>The trained model inference job logs status.</p>
2628
2628
  * @public
2629
2629
  */
2630
- logsStatus?: LogsStatus;
2630
+ logsStatus?: LogsStatus | undefined;
2631
2631
  /**
2632
2632
  * <p>Details about the logs status for the trained model inference job.</p>
2633
2633
  * @public
2634
2634
  */
2635
- logsStatusDetails?: string;
2635
+ logsStatusDetails?: string | undefined;
2636
2636
  /**
2637
2637
  * <p>The time at which the trained model inference job was created.</p>
2638
2638
  * @public
@@ -2657,7 +2657,7 @@ export interface ListCollaborationTrainedModelInferenceJobsResponse {
2657
2657
  * <p>The token value used to access the next page of results.</p>
2658
2658
  * @public
2659
2659
  */
2660
- nextToken?: string;
2660
+ nextToken?: string | undefined;
2661
2661
  /**
2662
2662
  * <p>The trained model inference jobs that you are interested in.</p>
2663
2663
  * @public
@@ -2672,12 +2672,12 @@ export interface ListCollaborationTrainedModelsRequest {
2672
2672
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
2673
2673
  * @public
2674
2674
  */
2675
- nextToken?: string;
2675
+ nextToken?: string | undefined;
2676
2676
  /**
2677
2677
  * <p>The maximum size of the results that is returned per call.</p>
2678
2678
  * @public
2679
2679
  */
2680
- maxResults?: number;
2680
+ maxResults?: number | undefined;
2681
2681
  /**
2682
2682
  * <p>The collaboration ID of the collaboration that contains the trained models you are interested in.</p>
2683
2683
  * @public
@@ -2734,7 +2734,7 @@ export interface CollaborationTrainedModelSummary {
2734
2734
  * <p>The description of the trained model.</p>
2735
2735
  * @public
2736
2736
  */
2737
- description?: string;
2737
+ description?: string | undefined;
2738
2738
  /**
2739
2739
  * <p>The membership ID of the member that created the trained model.</p>
2740
2740
  * @public
@@ -2769,7 +2769,7 @@ export interface ListCollaborationTrainedModelsResponse {
2769
2769
  * <p>The token value used to access the next page of results.</p>
2770
2770
  * @public
2771
2771
  */
2772
- nextToken?: string;
2772
+ nextToken?: string | undefined;
2773
2773
  /**
2774
2774
  * <p>The trained models in the collaboration that you requested.</p>
2775
2775
  * @public
@@ -2836,7 +2836,7 @@ export interface MLOutputConfiguration {
2836
2836
  * <p>The Amazon S3 location where exported model artifacts are stored.</p>
2837
2837
  * @public
2838
2838
  */
2839
- destination?: Destination;
2839
+ destination?: Destination | undefined;
2840
2840
  /**
2841
2841
  * <p>The Amazon Resource Name (ARN) of the service access role that is used to store the model artifacts.</p>
2842
2842
  * @public
@@ -2904,12 +2904,12 @@ export interface WorkerComputeConfiguration {
2904
2904
  * <p>The instance type of the compute workers that are used.</p>
2905
2905
  * @public
2906
2906
  */
2907
- type?: WorkerComputeType;
2907
+ type?: WorkerComputeType | undefined;
2908
2908
  /**
2909
2909
  * <p>The number of compute workers that are used.</p>
2910
2910
  * @public
2911
2911
  */
2912
- number?: number;
2912
+ number?: number | undefined;
2913
2913
  }
2914
2914
  /**
2915
2915
  * <p>Provides configuration information for the instances that will perform the compute work.</p>
@@ -2955,7 +2955,7 @@ export interface ProtectedQueryInputParameters {
2955
2955
  * <p>Provides configuration information for the workers that will perform the protected query.</p>
2956
2956
  * @public
2957
2957
  */
2958
- computeConfiguration?: ComputeConfiguration;
2958
+ computeConfiguration?: ComputeConfiguration | undefined;
2959
2959
  }
2960
2960
  /**
2961
2961
  * <p>Provides the data source that is used to define an input channel.</p>
@@ -3037,12 +3037,12 @@ export interface CreateMLInputChannelRequest {
3037
3037
  * <p>The description of the ML input channel.</p>
3038
3038
  * @public
3039
3039
  */
3040
- description?: string;
3040
+ description?: string | undefined;
3041
3041
  /**
3042
3042
  * <p>The Amazon Resource Name (ARN) of the KMS key that is used to access the input channel.</p>
3043
3043
  * @public
3044
3044
  */
3045
- kmsKeyArn?: string;
3045
+ kmsKeyArn?: string | undefined;
3046
3046
  /**
3047
3047
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3048
3048
  * <p>The following basic restrictions apply to tags:</p>
@@ -3071,7 +3071,7 @@ export interface CreateMLInputChannelRequest {
3071
3071
  * </ul>
3072
3072
  * @public
3073
3073
  */
3074
- tags?: Record<string, string>;
3074
+ tags?: Record<string, string> | undefined;
3075
3075
  }
3076
3076
  /**
3077
3077
  * @public
@@ -3166,7 +3166,7 @@ export interface GetCollaborationMLInputChannelResponse {
3166
3166
  * <p>Details about the status of a resource.</p>
3167
3167
  * @public
3168
3168
  */
3169
- statusDetails?: StatusDetails;
3169
+ statusDetails?: StatusDetails | undefined;
3170
3170
  /**
3171
3171
  * <p>The number of days to retain the data for the ML input channel.</p>
3172
3172
  * @public
@@ -3176,12 +3176,12 @@ export interface GetCollaborationMLInputChannelResponse {
3176
3176
  * <p>The number of records in the ML input channel.</p>
3177
3177
  * @public
3178
3178
  */
3179
- numberOfRecords?: number;
3179
+ numberOfRecords?: number | undefined;
3180
3180
  /**
3181
3181
  * <p>The description of the ML input channel.</p>
3182
3182
  * @public
3183
3183
  */
3184
- description?: string;
3184
+ description?: string | undefined;
3185
3185
  }
3186
3186
  /**
3187
3187
  * @public
@@ -3231,7 +3231,7 @@ export interface GetMLInputChannelResponse {
3231
3231
  * <p>The ID of the protected query that was used to create the ML input channel.</p>
3232
3232
  * @public
3233
3233
  */
3234
- protectedQueryIdentifier?: string;
3234
+ protectedQueryIdentifier?: string | undefined;
3235
3235
  /**
3236
3236
  * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
3237
3237
  * @public
@@ -3256,7 +3256,7 @@ export interface GetMLInputChannelResponse {
3256
3256
  * <p>Details about the status of a resource.</p>
3257
3257
  * @public
3258
3258
  */
3259
- statusDetails?: StatusDetails;
3259
+ statusDetails?: StatusDetails | undefined;
3260
3260
  /**
3261
3261
  * <p>The number of days to keep the data in the ML input channel.</p>
3262
3262
  * @public
@@ -3266,27 +3266,27 @@ export interface GetMLInputChannelResponse {
3266
3266
  * <p>The number of records in the ML input channel.</p>
3267
3267
  * @public
3268
3268
  */
3269
- numberOfRecords?: number;
3269
+ numberOfRecords?: number | undefined;
3270
3270
  /**
3271
3271
  * <p>The number of files in the ML input channel.</p>
3272
3272
  * @public
3273
3273
  */
3274
- numberOfFiles?: number;
3274
+ numberOfFiles?: number | undefined;
3275
3275
  /**
3276
3276
  * <p>The size, in GB, of the ML input channel.</p>
3277
3277
  * @public
3278
3278
  */
3279
- sizeInGb?: number;
3279
+ sizeInGb?: number | undefined;
3280
3280
  /**
3281
3281
  * <p>The description of the ML input channel.</p>
3282
3282
  * @public
3283
3283
  */
3284
- description?: string;
3284
+ description?: string | undefined;
3285
3285
  /**
3286
3286
  * <p>The Amazon Resource Name (ARN) of the KMS key that was used to create the ML input channel.</p>
3287
3287
  * @public
3288
3288
  */
3289
- kmsKeyArn?: string;
3289
+ kmsKeyArn?: string | undefined;
3290
3290
  /**
3291
3291
  * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3292
3292
  * <p>The following basic restrictions apply to tags:</p>
@@ -3315,7 +3315,7 @@ export interface GetMLInputChannelResponse {
3315
3315
  * </ul>
3316
3316
  * @public
3317
3317
  */
3318
- tags?: Record<string, string>;
3318
+ tags?: Record<string, string> | undefined;
3319
3319
  }
3320
3320
  /**
3321
3321
  * @public
@@ -3325,12 +3325,12 @@ export interface ListMLInputChannelsRequest {
3325
3325
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
3326
3326
  * @public
3327
3327
  */
3328
- nextToken?: string;
3328
+ nextToken?: string | undefined;
3329
3329
  /**
3330
3330
  * <p>The maximum number of ML input channels to return.</p>
3331
3331
  * @public
3332
3332
  */
3333
- maxResults?: number;
3333
+ maxResults?: number | undefined;
3334
3334
  /**
3335
3335
  * <p>The membership ID of the membership that contains the ML input channels that you want to list.</p>
3336
3336
  * @public
@@ -3376,7 +3376,7 @@ export interface MLInputChannelSummary {
3376
3376
  * <p>The ID of the protected query that was used to create the ML input channel.</p>
3377
3377
  * @public
3378
3378
  */
3379
- protectedQueryIdentifier?: string;
3379
+ protectedQueryIdentifier?: string | undefined;
3380
3380
  /**
3381
3381
  * <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
3382
3382
  * @public
@@ -3391,7 +3391,7 @@ export interface MLInputChannelSummary {
3391
3391
  * <p>The description of the ML input channel.</p>
3392
3392
  * @public
3393
3393
  */
3394
- description?: string;
3394
+ description?: string | undefined;
3395
3395
  }
3396
3396
  /**
3397
3397
  * @public
@@ -3401,7 +3401,7 @@ export interface ListMLInputChannelsResponse {
3401
3401
  * <p>The token value used to access the next page of results.</p>
3402
3402
  * @public
3403
3403
  */
3404
- nextToken?: string;
3404
+ nextToken?: string | undefined;
3405
3405
  /**
3406
3406
  * <p>The list of ML input channels that you wanted.</p>
3407
3407
  * @public
@@ -3591,7 +3591,7 @@ export interface ResourceConfig {
3591
3591
  * <p>The number of resources that are used to train the model.</p>
3592
3592
  * @public
3593
3593
  */
3594
- instanceCount?: number;
3594
+ instanceCount?: number | undefined;
3595
3595
  /**
3596
3596
  * <p>The instance type that is used to train the model.</p>
3597
3597
  * @public
@@ -3612,7 +3612,7 @@ export interface StoppingCondition {
3612
3612
  * <p>The maximum amount of time, in seconds, that model training can run before it is terminated.</p>
3613
3613
  * @public
3614
3614
  */
3615
- maxRuntimeInSeconds?: number;
3615
+ maxRuntimeInSeconds?: number | undefined;
3616
3616
  }
3617
3617
  /**
3618
3618
  * @public
@@ -3637,12 +3637,12 @@ export interface CreateTrainedModelRequest {
3637
3637
  * <p>Algorithm-specific parameters that influence the quality of the model. You set hyperparameters before you start the learning process.</p>
3638
3638
  * @public
3639
3639
  */
3640
- hyperparameters?: Record<string, string>;
3640
+ hyperparameters?: Record<string, string> | undefined;
3641
3641
  /**
3642
3642
  * <p>The environment variables to set in the Docker container.</p>
3643
3643
  * @public
3644
3644
  */
3645
- environment?: Record<string, string>;
3645
+ environment?: Record<string, string> | undefined;
3646
3646
  /**
3647
3647
  * <p>Information about the EC2 resources that are used to train this model.</p>
3648
3648
  * @public
@@ -3652,7 +3652,7 @@ export interface CreateTrainedModelRequest {
3652
3652
  * <p>The criteria that is used to stop model training.</p>
3653
3653
  * @public
3654
3654
  */
3655
- stoppingCondition?: StoppingCondition;
3655
+ stoppingCondition?: StoppingCondition | undefined;
3656
3656
  /**
3657
3657
  * <p>Defines the data channels that are used as input for the trained model request.</p>
3658
3658
  * @public
@@ -3662,12 +3662,12 @@ export interface CreateTrainedModelRequest {
3662
3662
  * <p>The description of the trained model.</p>
3663
3663
  * @public
3664
3664
  */
3665
- description?: string;
3665
+ description?: string | undefined;
3666
3666
  /**
3667
3667
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and the associated data.</p>
3668
3668
  * @public
3669
3669
  */
3670
- kmsKeyArn?: string;
3670
+ kmsKeyArn?: string | undefined;
3671
3671
  /**
3672
3672
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3673
3673
  * <p>The following basic restrictions apply to tags:</p>
@@ -3696,7 +3696,7 @@ export interface CreateTrainedModelRequest {
3696
3696
  * </ul>
3697
3697
  * @public
3698
3698
  */
3699
- tags?: Record<string, string>;
3699
+ tags?: Record<string, string> | undefined;
3700
3700
  }
3701
3701
  /**
3702
3702
  * @public
@@ -3766,7 +3766,7 @@ export interface GetCollaborationTrainedModelResponse {
3766
3766
  * <p>The description of the trained model.</p>
3767
3767
  * @public
3768
3768
  */
3769
- description?: string;
3769
+ description?: string | undefined;
3770
3770
  /**
3771
3771
  * <p>The status of the trained model.</p>
3772
3772
  * @public
@@ -3776,7 +3776,7 @@ export interface GetCollaborationTrainedModelResponse {
3776
3776
  * <p>Details about the status of a resource.</p>
3777
3777
  * @public
3778
3778
  */
3779
- statusDetails?: StatusDetails;
3779
+ statusDetails?: StatusDetails | undefined;
3780
3780
  /**
3781
3781
  * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used to create this trained model.</p>
3782
3782
  * @public
@@ -3786,37 +3786,37 @@ export interface GetCollaborationTrainedModelResponse {
3786
3786
  * <p>The EC2 resource configuration that was used to train this model.</p>
3787
3787
  * @public
3788
3788
  */
3789
- resourceConfig?: ResourceConfig;
3789
+ resourceConfig?: ResourceConfig | undefined;
3790
3790
  /**
3791
3791
  * <p>The stopping condition that determined when model training ended.</p>
3792
3792
  * @public
3793
3793
  */
3794
- stoppingCondition?: StoppingCondition;
3794
+ stoppingCondition?: StoppingCondition | undefined;
3795
3795
  /**
3796
3796
  * <p>The status of the model metrics.</p>
3797
3797
  * @public
3798
3798
  */
3799
- metricsStatus?: MetricsStatus;
3799
+ metricsStatus?: MetricsStatus | undefined;
3800
3800
  /**
3801
3801
  * <p>Details about the status information for the model metrics.</p>
3802
3802
  * @public
3803
3803
  */
3804
- metricsStatusDetails?: string;
3804
+ metricsStatusDetails?: string | undefined;
3805
3805
  /**
3806
3806
  * <p>Status information for the logs.</p>
3807
3807
  * @public
3808
3808
  */
3809
- logsStatus?: LogsStatus;
3809
+ logsStatus?: LogsStatus | undefined;
3810
3810
  /**
3811
3811
  * <p>Details about the status information for the logs.</p>
3812
3812
  * @public
3813
3813
  */
3814
- logsStatusDetails?: string;
3814
+ logsStatusDetails?: string | undefined;
3815
3815
  /**
3816
3816
  * <p>Information about the training container image.</p>
3817
3817
  * @public
3818
3818
  */
3819
- trainingContainerImageDigest?: string;
3819
+ trainingContainerImageDigest?: string | undefined;
3820
3820
  /**
3821
3821
  * <p>The time at which the trained model was created.</p>
3822
3822
  * @public
@@ -3876,7 +3876,7 @@ export interface GetTrainedModelResponse {
3876
3876
  * <p>The description of the trained model.</p>
3877
3877
  * @public
3878
3878
  */
3879
- description?: string;
3879
+ description?: string | undefined;
3880
3880
  /**
3881
3881
  * <p>The status of the trained model.</p>
3882
3882
  * @public
@@ -3886,7 +3886,7 @@ export interface GetTrainedModelResponse {
3886
3886
  * <p>Details about the status of a resource.</p>
3887
3887
  * @public
3888
3888
  */
3889
- statusDetails?: StatusDetails;
3889
+ statusDetails?: StatusDetails | undefined;
3890
3890
  /**
3891
3891
  * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used to create the trained model.</p>
3892
3892
  * @public
@@ -3896,37 +3896,37 @@ export interface GetTrainedModelResponse {
3896
3896
  * <p>The EC2 resource configuration that was used to create the trained model.</p>
3897
3897
  * @public
3898
3898
  */
3899
- resourceConfig?: ResourceConfig;
3899
+ resourceConfig?: ResourceConfig | undefined;
3900
3900
  /**
3901
3901
  * <p>The stopping condition that was used to terminate model training.</p>
3902
3902
  * @public
3903
3903
  */
3904
- stoppingCondition?: StoppingCondition;
3904
+ stoppingCondition?: StoppingCondition | undefined;
3905
3905
  /**
3906
3906
  * <p>The status of the model metrics.</p>
3907
3907
  * @public
3908
3908
  */
3909
- metricsStatus?: MetricsStatus;
3909
+ metricsStatus?: MetricsStatus | undefined;
3910
3910
  /**
3911
3911
  * <p>Details about the metrics status for the trained model.</p>
3912
3912
  * @public
3913
3913
  */
3914
- metricsStatusDetails?: string;
3914
+ metricsStatusDetails?: string | undefined;
3915
3915
  /**
3916
3916
  * <p>The logs status for the trained model.</p>
3917
3917
  * @public
3918
3918
  */
3919
- logsStatus?: LogsStatus;
3919
+ logsStatus?: LogsStatus | undefined;
3920
3920
  /**
3921
3921
  * <p>Details about the logs status for the trained model.</p>
3922
3922
  * @public
3923
3923
  */
3924
- logsStatusDetails?: string;
3924
+ logsStatusDetails?: string | undefined;
3925
3925
  /**
3926
3926
  * <p>Information about the training image container.</p>
3927
3927
  * @public
3928
3928
  */
3929
- trainingContainerImageDigest?: string;
3929
+ trainingContainerImageDigest?: string | undefined;
3930
3930
  /**
3931
3931
  * <p>The time at which the trained model was created.</p>
3932
3932
  * @public
@@ -3941,17 +3941,17 @@ export interface GetTrainedModelResponse {
3941
3941
  * <p>The hyperparameters that were used to create the trained model.</p>
3942
3942
  * @public
3943
3943
  */
3944
- hyperparameters?: Record<string, string>;
3944
+ hyperparameters?: Record<string, string> | undefined;
3945
3945
  /**
3946
3946
  * <p>The EC2 environment that was used to create the trained model.</p>
3947
3947
  * @public
3948
3948
  */
3949
- environment?: Record<string, string>;
3949
+ environment?: Record<string, string> | undefined;
3950
3950
  /**
3951
3951
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the trained ML model and associated data.</p>
3952
3952
  * @public
3953
3953
  */
3954
- kmsKeyArn?: string;
3954
+ kmsKeyArn?: string | undefined;
3955
3955
  /**
3956
3956
  * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
3957
3957
  * <p>The following basic restrictions apply to tags:</p>
@@ -3980,7 +3980,7 @@ export interface GetTrainedModelResponse {
3980
3980
  * </ul>
3981
3981
  * @public
3982
3982
  */
3983
- tags?: Record<string, string>;
3983
+ tags?: Record<string, string> | undefined;
3984
3984
  /**
3985
3985
  * <p>The data channels that were used for the trained model.</p>
3986
3986
  * @public
@@ -3995,12 +3995,12 @@ export interface ListTrainedModelsRequest {
3995
3995
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
3996
3996
  * @public
3997
3997
  */
3998
- nextToken?: string;
3998
+ nextToken?: string | undefined;
3999
3999
  /**
4000
4000
  * <p>The maximum size of the results that is returned per call.</p>
4001
4001
  * @public
4002
4002
  */
4003
- maxResults?: number;
4003
+ maxResults?: number | undefined;
4004
4004
  /**
4005
4005
  * <p>The membership ID of the member that created the trained models you are interested in.</p>
4006
4006
  * @public
@@ -4036,7 +4036,7 @@ export interface TrainedModelSummary {
4036
4036
  * <p>The description of the trained model.</p>
4037
4037
  * @public
4038
4038
  */
4039
- description?: string;
4039
+ description?: string | undefined;
4040
4040
  /**
4041
4041
  * <p>The membership ID of the member that created the trained model.</p>
4042
4042
  * @public
@@ -4066,7 +4066,7 @@ export interface ListTrainedModelsResponse {
4066
4066
  * <p>The token value used to access the next page of results.</p>
4067
4067
  * @public
4068
4068
  */
4069
- nextToken?: string;
4069
+ nextToken?: string | undefined;
4070
4070
  /**
4071
4071
  * <p>The list of trained models.</p>
4072
4072
  * @public
@@ -4101,7 +4101,7 @@ export interface StartTrainedModelExportJobRequest {
4101
4101
  * <p>The description of the trained model export job.</p>
4102
4102
  * @public
4103
4103
  */
4104
- description?: string;
4104
+ description?: string | undefined;
4105
4105
  }
4106
4106
  /**
4107
4107
  * @public
@@ -4142,7 +4142,7 @@ export interface InferenceContainerExecutionParameters {
4142
4142
  * <p>The maximum size of the inference container payload, specified in MB. </p>
4143
4143
  * @public
4144
4144
  */
4145
- maxPayloadInMB?: number;
4145
+ maxPayloadInMB?: number | undefined;
4146
4146
  }
4147
4147
  /**
4148
4148
  * <p>Defines information about the data source used for model inference.</p>
@@ -4273,7 +4273,7 @@ export interface InferenceResourceConfig {
4273
4273
  * <p>The number of instances to use.</p>
4274
4274
  * @public
4275
4275
  */
4276
- instanceCount?: number;
4276
+ instanceCount?: number | undefined;
4277
4277
  }
4278
4278
  /**
4279
4279
  * @public
@@ -4298,7 +4298,7 @@ export interface GetTrainedModelInferenceJobResponse {
4298
4298
  * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that was used for the trained model inference job.</p>
4299
4299
  * @public
4300
4300
  */
4301
- configuredModelAlgorithmAssociationArn?: string;
4301
+ configuredModelAlgorithmAssociationArn?: string | undefined;
4302
4302
  /**
4303
4303
  * <p>The name of the trained model inference job.</p>
4304
4304
  * @public
@@ -4338,52 +4338,52 @@ export interface GetTrainedModelInferenceJobResponse {
4338
4338
  * <p>The execution parameters for the model inference job container.</p>
4339
4339
  * @public
4340
4340
  */
4341
- containerExecutionParameters?: InferenceContainerExecutionParameters;
4341
+ containerExecutionParameters?: InferenceContainerExecutionParameters | undefined;
4342
4342
  /**
4343
4343
  * <p>Details about the status of a resource.</p>
4344
4344
  * @public
4345
4345
  */
4346
- statusDetails?: StatusDetails;
4346
+ statusDetails?: StatusDetails | undefined;
4347
4347
  /**
4348
4348
  * <p>The description of the trained model inference job.</p>
4349
4349
  * @public
4350
4350
  */
4351
- description?: string;
4351
+ description?: string | undefined;
4352
4352
  /**
4353
4353
  * <p>Information about the training container image.</p>
4354
4354
  * @public
4355
4355
  */
4356
- inferenceContainerImageDigest?: string;
4356
+ inferenceContainerImageDigest?: string | undefined;
4357
4357
  /**
4358
4358
  * <p>The environment variables to set in the Docker container.</p>
4359
4359
  * @public
4360
4360
  */
4361
- environment?: Record<string, string>;
4361
+ environment?: Record<string, string> | undefined;
4362
4362
  /**
4363
4363
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the ML inference job and associated data.</p>
4364
4364
  * @public
4365
4365
  */
4366
- kmsKeyArn?: string;
4366
+ kmsKeyArn?: string | undefined;
4367
4367
  /**
4368
4368
  * <p>The metrics status for the trained model inference job.</p>
4369
4369
  * @public
4370
4370
  */
4371
- metricsStatus?: MetricsStatus;
4371
+ metricsStatus?: MetricsStatus | undefined;
4372
4372
  /**
4373
4373
  * <p>Details about the metrics status for the trained model inference job.</p>
4374
4374
  * @public
4375
4375
  */
4376
- metricsStatusDetails?: string;
4376
+ metricsStatusDetails?: string | undefined;
4377
4377
  /**
4378
4378
  * <p>The logs status for the trained model inference job.</p>
4379
4379
  * @public
4380
4380
  */
4381
- logsStatus?: LogsStatus;
4381
+ logsStatus?: LogsStatus | undefined;
4382
4382
  /**
4383
4383
  * <p>Details about the logs status for the trained model inference job.</p>
4384
4384
  * @public
4385
4385
  */
4386
- logsStatusDetails?: string;
4386
+ logsStatusDetails?: string | undefined;
4387
4387
  /**
4388
4388
  * <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
4389
4389
  * <p>The following basic restrictions apply to tags:</p>
@@ -4412,7 +4412,7 @@ export interface GetTrainedModelInferenceJobResponse {
4412
4412
  * </ul>
4413
4413
  * @public
4414
4414
  */
4415
- tags?: Record<string, string>;
4415
+ tags?: Record<string, string> | undefined;
4416
4416
  }
4417
4417
  /**
4418
4418
  * @public
@@ -4422,12 +4422,12 @@ export interface ListTrainedModelInferenceJobsRequest {
4422
4422
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
4423
4423
  * @public
4424
4424
  */
4425
- nextToken?: string;
4425
+ nextToken?: string | undefined;
4426
4426
  /**
4427
4427
  * <p>The maximum size of the results that is returned per call.</p>
4428
4428
  * @public
4429
4429
  */
4430
- maxResults?: number;
4430
+ maxResults?: number | undefined;
4431
4431
  /**
4432
4432
  * <p>The membership </p>
4433
4433
  * @public
@@ -4437,7 +4437,7 @@ export interface ListTrainedModelInferenceJobsRequest {
4437
4437
  * <p>The Amazon Resource Name (ARN) of a trained model that was used to create the trained model inference jobs that you are interested in.</p>
4438
4438
  * @public
4439
4439
  */
4440
- trainedModelArn?: string;
4440
+ trainedModelArn?: string | undefined;
4441
4441
  }
4442
4442
  /**
4443
4443
  * <p>Provides information about the trained model inference job.</p>
@@ -4453,7 +4453,7 @@ export interface TrainedModelInferenceJobSummary {
4453
4453
  * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for the trained model inference job.</p>
4454
4454
  * @public
4455
4455
  */
4456
- configuredModelAlgorithmAssociationArn?: string;
4456
+ configuredModelAlgorithmAssociationArn?: string | undefined;
4457
4457
  /**
4458
4458
  * <p>The membership ID of the membership that contains the trained model inference job.</p>
4459
4459
  * @public
@@ -4488,27 +4488,27 @@ export interface TrainedModelInferenceJobSummary {
4488
4488
  * <p>The description of the trained model inference job.</p>
4489
4489
  * @public
4490
4490
  */
4491
- description?: string;
4491
+ description?: string | undefined;
4492
4492
  /**
4493
4493
  * <p>The metric status of the trained model inference job.</p>
4494
4494
  * @public
4495
4495
  */
4496
- metricsStatus?: MetricsStatus;
4496
+ metricsStatus?: MetricsStatus | undefined;
4497
4497
  /**
4498
4498
  * <p>Details about the metrics status for the trained model inference job.</p>
4499
4499
  * @public
4500
4500
  */
4501
- metricsStatusDetails?: string;
4501
+ metricsStatusDetails?: string | undefined;
4502
4502
  /**
4503
4503
  * <p>The log status of the trained model inference job.</p>
4504
4504
  * @public
4505
4505
  */
4506
- logsStatus?: LogsStatus;
4506
+ logsStatus?: LogsStatus | undefined;
4507
4507
  /**
4508
4508
  * <p>Details about the log status for the trained model inference job.</p>
4509
4509
  * @public
4510
4510
  */
4511
- logsStatusDetails?: string;
4511
+ logsStatusDetails?: string | undefined;
4512
4512
  /**
4513
4513
  * <p>The time at which the trained model inference job was created.</p>
4514
4514
  * @public
@@ -4528,7 +4528,7 @@ export interface ListTrainedModelInferenceJobsResponse {
4528
4528
  * <p>The token value used to access the next page of results.</p>
4529
4529
  * @public
4530
4530
  */
4531
- nextToken?: string;
4531
+ nextToken?: string | undefined;
4532
4532
  /**
4533
4533
  * <p>Returns the requested trained model inference jobs.</p>
4534
4534
  * @public
@@ -4558,7 +4558,7 @@ export interface StartTrainedModelInferenceJobRequest {
4558
4558
  * <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for this trained model inference job.</p>
4559
4559
  * @public
4560
4560
  */
4561
- configuredModelAlgorithmAssociationArn?: string;
4561
+ configuredModelAlgorithmAssociationArn?: string | undefined;
4562
4562
  /**
4563
4563
  * <p>Defines the resource configuration for the trained model inference job.</p>
4564
4564
  * @public
@@ -4578,22 +4578,22 @@ export interface StartTrainedModelInferenceJobRequest {
4578
4578
  * <p>The description of the trained model inference job.</p>
4579
4579
  * @public
4580
4580
  */
4581
- description?: string;
4581
+ description?: string | undefined;
4582
4582
  /**
4583
4583
  * <p>The execution parameters for the container.</p>
4584
4584
  * @public
4585
4585
  */
4586
- containerExecutionParameters?: InferenceContainerExecutionParameters;
4586
+ containerExecutionParameters?: InferenceContainerExecutionParameters | undefined;
4587
4587
  /**
4588
4588
  * <p>The environment variables to set in the Docker container.</p>
4589
4589
  * @public
4590
4590
  */
4591
- environment?: Record<string, string>;
4591
+ environment?: Record<string, string> | undefined;
4592
4592
  /**
4593
4593
  * <p>The Amazon Resource Name (ARN) of the KMS key. This key is used to encrypt and decrypt customer-owned data in the ML inference job and associated data.</p>
4594
4594
  * @public
4595
4595
  */
4596
- kmsKeyArn?: string;
4596
+ kmsKeyArn?: string | undefined;
4597
4597
  /**
4598
4598
  * <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
4599
4599
  * <p>The following basic restrictions apply to tags:</p>
@@ -4622,7 +4622,7 @@ export interface StartTrainedModelInferenceJobRequest {
4622
4622
  * </ul>
4623
4623
  * @public
4624
4624
  */
4625
- tags?: Record<string, string>;
4625
+ tags?: Record<string, string> | undefined;
4626
4626
  }
4627
4627
  /**
4628
4628
  * @public
@@ -4653,7 +4653,7 @@ export interface GlueDataSource {
4653
4653
  * <p>The Glue catalog that contains the training data.</p>
4654
4654
  * @public
4655
4655
  */
4656
- catalogId?: string;
4656
+ catalogId?: string | undefined;
4657
4657
  }
4658
4658
  /**
4659
4659
  * <p>Defines information about the Glue data source that contains the training data.</p>
@@ -4788,12 +4788,12 @@ export interface CreateTrainingDatasetRequest {
4788
4788
  * </ul>
4789
4789
  * @public
4790
4790
  */
4791
- tags?: Record<string, string>;
4791
+ tags?: Record<string, string> | undefined;
4792
4792
  /**
4793
4793
  * <p>The description of the training dataset.</p>
4794
4794
  * @public
4795
4795
  */
4796
- description?: string;
4796
+ description?: string | undefined;
4797
4797
  }
4798
4798
  /**
4799
4799
  * @public
@@ -4879,12 +4879,12 @@ export interface GetTrainingDatasetResponse {
4879
4879
  * <p>The tags that are assigned to this training dataset.</p>
4880
4880
  * @public
4881
4881
  */
4882
- tags?: Record<string, string>;
4882
+ tags?: Record<string, string> | undefined;
4883
4883
  /**
4884
4884
  * <p>The description of the training dataset.</p>
4885
4885
  * @public
4886
4886
  */
4887
- description?: string;
4887
+ description?: string | undefined;
4888
4888
  }
4889
4889
  /**
4890
4890
  * @public
@@ -4894,12 +4894,12 @@ export interface ListTrainingDatasetsRequest {
4894
4894
  * <p>The token value retrieved from a previous call to access the next page of results.</p>
4895
4895
  * @public
4896
4896
  */
4897
- nextToken?: string;
4897
+ nextToken?: string | undefined;
4898
4898
  /**
4899
4899
  * <p>The maximum size of the results that is returned per call.</p>
4900
4900
  * @public
4901
4901
  */
4902
- maxResults?: number;
4902
+ maxResults?: number | undefined;
4903
4903
  }
4904
4904
  /**
4905
4905
  * <p>Provides information about the training dataset.</p>
@@ -4935,7 +4935,7 @@ export interface TrainingDatasetSummary {
4935
4935
  * <p>The description of the training dataset.</p>
4936
4936
  * @public
4937
4937
  */
4938
- description?: string;
4938
+ description?: string | undefined;
4939
4939
  }
4940
4940
  /**
4941
4941
  * @public
@@ -4945,7 +4945,7 @@ export interface ListTrainingDatasetsResponse {
4945
4945
  * <p>The token value used to access the next page of results.</p>
4946
4946
  * @public
4947
4947
  */
4948
- nextToken?: string;
4948
+ nextToken?: string | undefined;
4949
4949
  /**
4950
4950
  * <p>The training datasets that match the request.</p>
4951
4951
  * @public