@aws-sdk/client-personalize 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.
@@ -9,7 +9,7 @@ export interface AlgorithmImage {
9
9
  * <p>The name of the algorithm image.</p>
10
10
  * @public
11
11
  */
12
- name?: string;
12
+ name?: string | undefined;
13
13
  /**
14
14
  * <p>The URI of the Docker container for the algorithm image.</p>
15
15
  * @public
@@ -27,17 +27,17 @@ export interface DefaultCategoricalHyperParameterRange {
27
27
  * <p>The name of the hyperparameter.</p>
28
28
  * @public
29
29
  */
30
- name?: string;
30
+ name?: string | undefined;
31
31
  /**
32
32
  * <p>A list of the categories for the hyperparameter.</p>
33
33
  * @public
34
34
  */
35
- values?: string[];
35
+ values?: string[] | undefined;
36
36
  /**
37
37
  * <p>Whether the hyperparameter is tunable.</p>
38
38
  * @public
39
39
  */
40
- isTunable?: boolean;
40
+ isTunable?: boolean | undefined;
41
41
  }
42
42
  /**
43
43
  * <p>Provides the name and default range of a continuous hyperparameter
@@ -50,22 +50,22 @@ export interface DefaultContinuousHyperParameterRange {
50
50
  * <p>The name of the hyperparameter.</p>
51
51
  * @public
52
52
  */
53
- name?: string;
53
+ name?: string | undefined;
54
54
  /**
55
55
  * <p>The minimum allowable value for the hyperparameter.</p>
56
56
  * @public
57
57
  */
58
- minValue?: number;
58
+ minValue?: number | undefined;
59
59
  /**
60
60
  * <p>The maximum allowable value for the hyperparameter.</p>
61
61
  * @public
62
62
  */
63
- maxValue?: number;
63
+ maxValue?: number | undefined;
64
64
  /**
65
65
  * <p>Whether the hyperparameter is tunable.</p>
66
66
  * @public
67
67
  */
68
- isTunable?: boolean;
68
+ isTunable?: boolean | undefined;
69
69
  }
70
70
  /**
71
71
  * <p>Provides the name and default range of a integer-valued hyperparameter
@@ -78,22 +78,22 @@ export interface DefaultIntegerHyperParameterRange {
78
78
  * <p>The name of the hyperparameter.</p>
79
79
  * @public
80
80
  */
81
- name?: string;
81
+ name?: string | undefined;
82
82
  /**
83
83
  * <p>The minimum allowable value for the hyperparameter.</p>
84
84
  * @public
85
85
  */
86
- minValue?: number;
86
+ minValue?: number | undefined;
87
87
  /**
88
88
  * <p>The maximum allowable value for the hyperparameter.</p>
89
89
  * @public
90
90
  */
91
- maxValue?: number;
91
+ maxValue?: number | undefined;
92
92
  /**
93
93
  * <p>Indicates whether the hyperparameter is tunable.</p>
94
94
  * @public
95
95
  */
96
- isTunable?: boolean;
96
+ isTunable?: boolean | undefined;
97
97
  }
98
98
  /**
99
99
  * <p>Specifies the hyperparameters and their default ranges.
@@ -105,17 +105,17 @@ export interface DefaultHyperParameterRanges {
105
105
  * <p>The integer-valued hyperparameters and their default ranges.</p>
106
106
  * @public
107
107
  */
108
- integerHyperParameterRanges?: DefaultIntegerHyperParameterRange[];
108
+ integerHyperParameterRanges?: DefaultIntegerHyperParameterRange[] | undefined;
109
109
  /**
110
110
  * <p>The continuous hyperparameters and their default ranges.</p>
111
111
  * @public
112
112
  */
113
- continuousHyperParameterRanges?: DefaultContinuousHyperParameterRange[];
113
+ continuousHyperParameterRanges?: DefaultContinuousHyperParameterRange[] | undefined;
114
114
  /**
115
115
  * <p>The categorical hyperparameters and their default ranges.</p>
116
116
  * @public
117
117
  */
118
- categoricalHyperParameterRanges?: DefaultCategoricalHyperParameterRange[];
118
+ categoricalHyperParameterRanges?: DefaultCategoricalHyperParameterRange[] | undefined;
119
119
  }
120
120
  /**
121
121
  * <p>Describes a custom algorithm.</p>
@@ -126,54 +126,54 @@ export interface Algorithm {
126
126
  * <p>The name of the algorithm.</p>
127
127
  * @public
128
128
  */
129
- name?: string;
129
+ name?: string | undefined;
130
130
  /**
131
131
  * <p>The Amazon Resource Name (ARN) of the algorithm.</p>
132
132
  * @public
133
133
  */
134
- algorithmArn?: string;
134
+ algorithmArn?: string | undefined;
135
135
  /**
136
136
  * <p>The URI of the Docker container for the algorithm image.</p>
137
137
  * @public
138
138
  */
139
- algorithmImage?: AlgorithmImage;
139
+ algorithmImage?: AlgorithmImage | undefined;
140
140
  /**
141
141
  * <p>Specifies the default hyperparameters.</p>
142
142
  * @public
143
143
  */
144
- defaultHyperParameters?: Record<string, string>;
144
+ defaultHyperParameters?: Record<string, string> | undefined;
145
145
  /**
146
146
  * <p>Specifies the default hyperparameters, their ranges, and whether they
147
147
  * are tunable. A tunable hyperparameter can
148
148
  * have its value determined during hyperparameter optimization (HPO).</p>
149
149
  * @public
150
150
  */
151
- defaultHyperParameterRanges?: DefaultHyperParameterRanges;
151
+ defaultHyperParameterRanges?: DefaultHyperParameterRanges | undefined;
152
152
  /**
153
153
  * <p>Specifies the default maximum number of training jobs and parallel training jobs.</p>
154
154
  * @public
155
155
  */
156
- defaultResourceConfig?: Record<string, string>;
156
+ defaultResourceConfig?: Record<string, string> | undefined;
157
157
  /**
158
158
  * <p>The training input mode.</p>
159
159
  * @public
160
160
  */
161
- trainingInputMode?: string;
161
+ trainingInputMode?: string | undefined;
162
162
  /**
163
163
  * <p>The Amazon Resource Name (ARN) of the role.</p>
164
164
  * @public
165
165
  */
166
- roleArn?: string;
166
+ roleArn?: string | undefined;
167
167
  /**
168
168
  * <p>The date and time (in Unix time) that the algorithm was created.</p>
169
169
  * @public
170
170
  */
171
- creationDateTime?: Date;
171
+ creationDateTime?: Date | undefined;
172
172
  /**
173
173
  * <p>The date and time (in Unix time) that the algorithm was last updated.</p>
174
174
  * @public
175
175
  */
176
- lastUpdatedDateTime?: Date;
176
+ lastUpdatedDateTime?: Date | undefined;
177
177
  }
178
178
  /**
179
179
  * <p>The configuration details of a batch inference job.</p>
@@ -187,7 +187,7 @@ export interface BatchInferenceJobConfig {
187
187
  * See <a href="https://docs.aws.amazon.com/personalize/latest/dg/native-recipe-new-item-USER_PERSONALIZATION.html">User-Personalization</a>.</p>
188
188
  * @public
189
189
  */
190
- itemExplorationConfig?: Record<string, string>;
190
+ itemExplorationConfig?: Record<string, string> | undefined;
191
191
  }
192
192
  /**
193
193
  * @public
@@ -216,7 +216,7 @@ export interface S3DataConfig {
216
216
  * encrypt or decrypt the input and output files.</p>
217
217
  * @public
218
218
  */
219
- kmsKeyArn?: string;
219
+ kmsKeyArn?: string | undefined;
220
220
  }
221
221
  /**
222
222
  * <p>The input configuration of a batch inference job.</p>
@@ -302,12 +302,12 @@ export interface CreateBatchInferenceJobRequest {
302
302
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/filter-batch.html">Filtering batch recommendations</a>.</p>
303
303
  * @public
304
304
  */
305
- filterArn?: string;
305
+ filterArn?: string | undefined;
306
306
  /**
307
307
  * <p>The number of recommendations to retrieve.</p>
308
308
  * @public
309
309
  */
310
- numResults?: number;
310
+ numResults?: number | undefined;
311
311
  /**
312
312
  * <p>The Amazon S3 path that leads to the input file to base your recommendations on. The input
313
313
  * material must be in JSON format.</p>
@@ -329,12 +329,12 @@ export interface CreateBatchInferenceJobRequest {
329
329
  * <p>The configuration details of a batch inference job.</p>
330
330
  * @public
331
331
  */
332
- batchInferenceJobConfig?: BatchInferenceJobConfig;
332
+ batchInferenceJobConfig?: BatchInferenceJobConfig | undefined;
333
333
  /**
334
334
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the batch inference job.</p>
335
335
  * @public
336
336
  */
337
- tags?: Tag[];
337
+ tags?: Tag[] | undefined;
338
338
  /**
339
339
  * <p>The mode of the batch inference job. To generate descriptive themes for groups of similar items, set the
340
340
  * job mode to <code>THEME_GENERATION</code>. If you don't want to generate themes, use the default <code>BATCH_INFERENCE</code>.</p>
@@ -343,13 +343,13 @@ export interface CreateBatchInferenceJobRequest {
343
343
  * </p>
344
344
  * @public
345
345
  */
346
- batchInferenceJobMode?: BatchInferenceJobMode;
346
+ batchInferenceJobMode?: BatchInferenceJobMode | undefined;
347
347
  /**
348
348
  * <p>For theme generation jobs, specify the name of the column in your Items
349
349
  * dataset that contains each item's name.</p>
350
350
  * @public
351
351
  */
352
- themeGenerationConfig?: ThemeGenerationConfig;
352
+ themeGenerationConfig?: ThemeGenerationConfig | undefined;
353
353
  }
354
354
  /**
355
355
  * @public
@@ -359,7 +359,7 @@ export interface CreateBatchInferenceJobResponse {
359
359
  * <p>The ARN of the batch inference job.</p>
360
360
  * @public
361
361
  */
362
- batchInferenceJobArn?: string;
362
+ batchInferenceJobArn?: string | undefined;
363
363
  }
364
364
  /**
365
365
  * <p>Provide a valid value for the field or parameter.</p>
@@ -475,12 +475,12 @@ export interface CreateBatchSegmentJobRequest {
475
475
  * filters, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/filter-batch.html">Filtering batch recommendations</a>.</p>
476
476
  * @public
477
477
  */
478
- filterArn?: string;
478
+ filterArn?: string | undefined;
479
479
  /**
480
480
  * <p>The number of predicted users generated by the batch segment job for each line of input data. The maximum number of users per segment is 5 million.</p>
481
481
  * @public
482
482
  */
483
- numResults?: number;
483
+ numResults?: number | undefined;
484
484
  /**
485
485
  * <p>The Amazon S3 path for the input data used to generate the batch segment job.</p>
486
486
  * @public
@@ -501,7 +501,7 @@ export interface CreateBatchSegmentJobRequest {
501
501
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the batch segment job.</p>
502
502
  * @public
503
503
  */
504
- tags?: Tag[];
504
+ tags?: Tag[] | undefined;
505
505
  }
506
506
  /**
507
507
  * @public
@@ -511,7 +511,7 @@ export interface CreateBatchSegmentJobResponse {
511
511
  * <p>The ARN of the batch segment job.</p>
512
512
  * @public
513
513
  */
514
- batchSegmentJobArn?: string;
514
+ batchSegmentJobArn?: string | undefined;
515
515
  }
516
516
  /**
517
517
  * <p>The configuration details of a campaign.</p>
@@ -525,7 +525,7 @@ export interface CampaignConfig {
525
525
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/native-recipe-new-item-USER_PERSONALIZATION.html">User-Personalization</a> recipe.</p>
526
526
  * @public
527
527
  */
528
- itemExplorationConfig?: Record<string, string>;
528
+ itemExplorationConfig?: Record<string, string> | undefined;
529
529
  /**
530
530
  * <p>Whether metadata with recommendations is enabled for the campaign.
531
531
  * If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response.
@@ -535,7 +535,7 @@ export interface CampaignConfig {
535
535
  * </p>
536
536
  * @public
537
537
  */
538
- enableMetadataWithRecommendations?: boolean;
538
+ enableMetadataWithRecommendations?: boolean | undefined;
539
539
  /**
540
540
  * <p>Whether the campaign automatically updates to use the latest solution version (trained model) of a solution. If you specify <code>True</code>,
541
541
  * you must specify the ARN of your <i>solution</i> for the <code>SolutionVersionArn</code> parameter. It must be in <code>SolutionArn/$LATEST</code> format.
@@ -547,7 +547,7 @@ export interface CampaignConfig {
547
547
  * </p>
548
548
  * @public
549
549
  */
550
- syncWithLatestSolutionVersion?: boolean;
550
+ syncWithLatestSolutionVersion?: boolean | undefined;
551
551
  }
552
552
  /**
553
553
  * @public
@@ -580,17 +580,17 @@ export interface CreateCampaignRequest {
580
580
  * your usage using Amazon CloudWatch metrics, and increase the <code>minProvisionedTPS</code> as necessary.</p>
581
581
  * @public
582
582
  */
583
- minProvisionedTPS?: number;
583
+ minProvisionedTPS?: number | undefined;
584
584
  /**
585
585
  * <p>The configuration details of a campaign.</p>
586
586
  * @public
587
587
  */
588
- campaignConfig?: CampaignConfig;
588
+ campaignConfig?: CampaignConfig | undefined;
589
589
  /**
590
590
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the campaign.</p>
591
591
  * @public
592
592
  */
593
- tags?: Tag[];
593
+ tags?: Tag[] | undefined;
594
594
  }
595
595
  /**
596
596
  * @public
@@ -600,7 +600,7 @@ export interface CreateCampaignResponse {
600
600
  * <p>The Amazon Resource Name (ARN) of the campaign.</p>
601
601
  * @public
602
602
  */
603
- campaignArn?: string;
603
+ campaignArn?: string | undefined;
604
604
  }
605
605
  /**
606
606
  * <p>Describes the data source that contains the data to upload to a dataset, or the list of
@@ -625,7 +625,7 @@ export interface DataSource {
625
625
  * </p>
626
626
  * @public
627
627
  */
628
- dataLocation?: string;
628
+ dataLocation?: string | undefined;
629
629
  }
630
630
  /**
631
631
  * @public
@@ -657,7 +657,7 @@ export interface CreateDataDeletionJobRequest {
657
657
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the data deletion job.</p>
658
658
  * @public
659
659
  */
660
- tags?: Tag[];
660
+ tags?: Tag[] | undefined;
661
661
  }
662
662
  /**
663
663
  * @public
@@ -667,7 +667,7 @@ export interface CreateDataDeletionJobResponse {
667
667
  * <p>The Amazon Resource Name (ARN) of the data deletion job.</p>
668
668
  * @public
669
669
  */
670
- dataDeletionJobArn?: string;
670
+ dataDeletionJobArn?: string | undefined;
671
671
  }
672
672
  /**
673
673
  * @public
@@ -717,7 +717,7 @@ export interface CreateDatasetRequest {
717
717
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the dataset.</p>
718
718
  * @public
719
719
  */
720
- tags?: Tag[];
720
+ tags?: Tag[] | undefined;
721
721
  }
722
722
  /**
723
723
  * @public
@@ -727,7 +727,7 @@ export interface CreateDatasetResponse {
727
727
  * <p>The ARN of the dataset.</p>
728
728
  * @public
729
729
  */
730
- datasetArn?: string;
730
+ datasetArn?: string | undefined;
731
731
  }
732
732
  /**
733
733
  * @public
@@ -777,7 +777,7 @@ export interface CreateDatasetExportJobRequest {
777
777
  * </p>
778
778
  * @public
779
779
  */
780
- ingestionMode?: IngestionMode;
780
+ ingestionMode?: IngestionMode | undefined;
781
781
  /**
782
782
  * <p>The Amazon Resource Name (ARN) of the IAM service role that has
783
783
  * permissions to add data to your output Amazon S3 bucket.</p>
@@ -793,7 +793,7 @@ export interface CreateDatasetExportJobRequest {
793
793
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the dataset export job.</p>
794
794
  * @public
795
795
  */
796
- tags?: Tag[];
796
+ tags?: Tag[] | undefined;
797
797
  }
798
798
  /**
799
799
  * @public
@@ -803,7 +803,7 @@ export interface CreateDatasetExportJobResponse {
803
803
  * <p>The Amazon Resource Name (ARN) of the dataset export job.</p>
804
804
  * @public
805
805
  */
806
- datasetExportJobArn?: string;
806
+ datasetExportJobArn?: string | undefined;
807
807
  }
808
808
  /**
809
809
  * @public
@@ -832,13 +832,13 @@ export interface CreateDatasetGroupRequest {
832
832
  * specifying a KMS key.</p>
833
833
  * @public
834
834
  */
835
- roleArn?: string;
835
+ roleArn?: string | undefined;
836
836
  /**
837
837
  * <p>The Amazon Resource Name (ARN) of a Key Management Service (KMS) key used to
838
838
  * encrypt the datasets.</p>
839
839
  * @public
840
840
  */
841
- kmsKeyArn?: string;
841
+ kmsKeyArn?: string | undefined;
842
842
  /**
843
843
  * <p>The domain of the dataset group. Specify a domain to create a
844
844
  * Domain dataset group. The domain you specify determines the default
@@ -847,12 +847,12 @@ export interface CreateDatasetGroupRequest {
847
847
  * versions that you deploy with a campaign. </p>
848
848
  * @public
849
849
  */
850
- domain?: Domain;
850
+ domain?: Domain | undefined;
851
851
  /**
852
852
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the dataset group.</p>
853
853
  * @public
854
854
  */
855
- tags?: Tag[];
855
+ tags?: Tag[] | undefined;
856
856
  }
857
857
  /**
858
858
  * @public
@@ -862,12 +862,12 @@ export interface CreateDatasetGroupResponse {
862
862
  * <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
863
863
  * @public
864
864
  */
865
- datasetGroupArn?: string;
865
+ datasetGroupArn?: string | undefined;
866
866
  /**
867
867
  * <p>The domain for the new Domain dataset group.</p>
868
868
  * @public
869
869
  */
870
- domain?: Domain;
870
+ domain?: Domain | undefined;
871
871
  }
872
872
  /**
873
873
  * @public
@@ -910,7 +910,7 @@ export interface CreateDatasetImportJobRequest {
910
910
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the dataset import job.</p>
911
911
  * @public
912
912
  */
913
- tags?: Tag[];
913
+ tags?: Tag[] | undefined;
914
914
  /**
915
915
  * <p>Specify how to add the new records to an existing dataset. The default
916
916
  * import mode is <code>FULL</code>. If you haven't imported bulk records into the dataset previously, you
@@ -928,12 +928,12 @@ export interface CreateDatasetImportJobRequest {
928
928
  * </ul>
929
929
  * @public
930
930
  */
931
- importMode?: ImportMode;
931
+ importMode?: ImportMode | undefined;
932
932
  /**
933
933
  * <p>If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3</p>
934
934
  * @public
935
935
  */
936
- publishAttributionMetricsToS3?: boolean;
936
+ publishAttributionMetricsToS3?: boolean | undefined;
937
937
  }
938
938
  /**
939
939
  * @public
@@ -943,7 +943,7 @@ export interface CreateDatasetImportJobResponse {
943
943
  * <p>The ARN of the dataset import job.</p>
944
944
  * @public
945
945
  */
946
- datasetImportJobArn?: string;
946
+ datasetImportJobArn?: string | undefined;
947
947
  }
948
948
  /**
949
949
  * @public
@@ -963,7 +963,7 @@ export interface CreateEventTrackerRequest {
963
963
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the event tracker.</p>
964
964
  * @public
965
965
  */
966
- tags?: Tag[];
966
+ tags?: Tag[] | undefined;
967
967
  }
968
968
  /**
969
969
  * @public
@@ -973,13 +973,13 @@ export interface CreateEventTrackerResponse {
973
973
  * <p>The ARN of the event tracker.</p>
974
974
  * @public
975
975
  */
976
- eventTrackerArn?: string;
976
+ eventTrackerArn?: string | undefined;
977
977
  /**
978
978
  * <p>The ID of the event tracker. Include this ID in requests to the
979
979
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_UBS_PutEvents.html">PutEvents</a> API.</p>
980
980
  * @public
981
981
  */
982
- trackingId?: string;
982
+ trackingId?: string | undefined;
983
983
  }
984
984
  /**
985
985
  * @public
@@ -1006,7 +1006,7 @@ export interface CreateFilterRequest {
1006
1006
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the filter.</p>
1007
1007
  * @public
1008
1008
  */
1009
- tags?: Tag[];
1009
+ tags?: Tag[] | undefined;
1010
1010
  }
1011
1011
  /**
1012
1012
  * @public
@@ -1016,7 +1016,7 @@ export interface CreateFilterResponse {
1016
1016
  * <p>The ARN of the new filter.</p>
1017
1017
  * @public
1018
1018
  */
1019
- filterArn?: string;
1019
+ filterArn?: string | undefined;
1020
1020
  }
1021
1021
  /**
1022
1022
  * <p>Contains information on a metric that a metric attribution reports on. For more information, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/measuring-recommendation-impact.html">Measuring impact of recommendations</a>.</p>
@@ -1049,7 +1049,7 @@ export interface MetricAttributionOutput {
1049
1049
  * <p>The configuration details of an Amazon S3 input or output bucket.</p>
1050
1050
  * @public
1051
1051
  */
1052
- s3DataDestination?: S3DataConfig;
1052
+ s3DataDestination?: S3DataConfig | undefined;
1053
1053
  /**
1054
1054
  * <p>The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket and add metrics to Amazon CloudWatch. For more information, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/measuring-recommendation-impact.html">Measuring impact of recommendations</a>.</p>
1055
1055
  * @public
@@ -1091,7 +1091,7 @@ export interface CreateMetricAttributionResponse {
1091
1091
  * <p>The Amazon Resource Name (ARN) for the new metric attribution.</p>
1092
1092
  * @public
1093
1093
  */
1094
- metricAttributionArn?: string;
1094
+ metricAttributionArn?: string | undefined;
1095
1095
  }
1096
1096
  /**
1097
1097
  * <p>The training data configuration to use when creating a domain recommender or custom solution version (trained model).</p>
@@ -1107,7 +1107,7 @@ export interface TrainingDataConfig {
1107
1107
  * </p>
1108
1108
  * @public
1109
1109
  */
1110
- excludedDatasetColumns?: Record<string, string[]>;
1110
+ excludedDatasetColumns?: Record<string, string[]> | undefined;
1111
1111
  }
1112
1112
  /**
1113
1113
  * <p>The configuration details of the recommender.</p>
@@ -1121,7 +1121,7 @@ export interface RecommenderConfig {
1121
1121
  * (not popular items or similar items).</p>
1122
1122
  * @public
1123
1123
  */
1124
- itemExplorationConfig?: Record<string, string>;
1124
+ itemExplorationConfig?: Record<string, string> | undefined;
1125
1125
  /**
1126
1126
  * <p>Specifies the requested minimum provisioned recommendation requests per second that
1127
1127
  * Amazon Personalize will support. A high <code>minRecommendationRequestsPerSecond</code> will increase your bill. We recommend starting with 1 for <code>minRecommendationRequestsPerSecond</code> (the default). Track
@@ -1129,14 +1129,14 @@ export interface RecommenderConfig {
1129
1129
  * as necessary.</p>
1130
1130
  * @public
1131
1131
  */
1132
- minRecommendationRequestsPerSecond?: number;
1132
+ minRecommendationRequestsPerSecond?: number | undefined;
1133
1133
  /**
1134
1134
  * <p>
1135
1135
  * Specifies the training data configuration to use when creating a domain recommender.
1136
1136
  * </p>
1137
1137
  * @public
1138
1138
  */
1139
- trainingDataConfig?: TrainingDataConfig;
1139
+ trainingDataConfig?: TrainingDataConfig | undefined;
1140
1140
  /**
1141
1141
  * <p>Whether metadata with recommendations is enabled for the recommender.
1142
1142
  * If enabled, you can specify the columns from your Items dataset in your request for recommendations. Amazon Personalize returns this data for each item in the recommendation response.
@@ -1146,7 +1146,7 @@ export interface RecommenderConfig {
1146
1146
  * </p>
1147
1147
  * @public
1148
1148
  */
1149
- enableMetadataWithRecommendations?: boolean;
1149
+ enableMetadataWithRecommendations?: boolean | undefined;
1150
1150
  }
1151
1151
  /**
1152
1152
  * @public
@@ -1173,12 +1173,12 @@ export interface CreateRecommenderRequest {
1173
1173
  * <p>The configuration details of the recommender.</p>
1174
1174
  * @public
1175
1175
  */
1176
- recommenderConfig?: RecommenderConfig;
1176
+ recommenderConfig?: RecommenderConfig | undefined;
1177
1177
  /**
1178
1178
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the recommender.</p>
1179
1179
  * @public
1180
1180
  */
1181
- tags?: Tag[];
1181
+ tags?: Tag[] | undefined;
1182
1182
  }
1183
1183
  /**
1184
1184
  * @public
@@ -1188,7 +1188,7 @@ export interface CreateRecommenderResponse {
1188
1188
  * <p>The Amazon Resource Name (ARN) of the recommender.</p>
1189
1189
  * @public
1190
1190
  */
1191
- recommenderArn?: string;
1191
+ recommenderArn?: string | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * @public
@@ -1209,7 +1209,7 @@ export interface CreateSchemaRequest {
1209
1209
  * the domain you chose when you created the Domain dataset group.</p>
1210
1210
  * @public
1211
1211
  */
1212
- domain?: Domain;
1212
+ domain?: Domain | undefined;
1213
1213
  }
1214
1214
  /**
1215
1215
  * @public
@@ -1219,7 +1219,7 @@ export interface CreateSchemaResponse {
1219
1219
  * <p>The Amazon Resource Name (ARN) of the created schema.</p>
1220
1220
  * @public
1221
1221
  */
1222
- schemaArn?: string;
1222
+ schemaArn?: string | undefined;
1223
1223
  }
1224
1224
  /**
1225
1225
  * <p>When the solution performs AutoML (<code>performAutoML</code> is true in
@@ -1233,12 +1233,12 @@ export interface AutoMLConfig {
1233
1233
  * <p>The metric to optimize.</p>
1234
1234
  * @public
1235
1235
  */
1236
- metricName?: string;
1236
+ metricName?: string | undefined;
1237
1237
  /**
1238
1238
  * <p>The list of candidate recipes.</p>
1239
1239
  * @public
1240
1240
  */
1241
- recipeList?: string[];
1241
+ recipeList?: string[] | undefined;
1242
1242
  }
1243
1243
  /**
1244
1244
  * <p>The automatic training configuration to use when <code>performAutoTraining</code> is true.</p>
@@ -1253,7 +1253,7 @@ export interface AutoTrainingConfig {
1253
1253
  * <p>For more information about auto training, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/customizing-solution-config.html">Creating and configuring a solution</a>.</p>
1254
1254
  * @public
1255
1255
  */
1256
- schedulingExpression?: string;
1256
+ schedulingExpression?: string | undefined;
1257
1257
  }
1258
1258
  /**
1259
1259
  * <p>Provides the name and range of a categorical hyperparameter.</p>
@@ -1264,12 +1264,12 @@ export interface CategoricalHyperParameterRange {
1264
1264
  * <p>The name of the hyperparameter.</p>
1265
1265
  * @public
1266
1266
  */
1267
- name?: string;
1267
+ name?: string | undefined;
1268
1268
  /**
1269
1269
  * <p>A list of the categories for the hyperparameter.</p>
1270
1270
  * @public
1271
1271
  */
1272
- values?: string[];
1272
+ values?: string[] | undefined;
1273
1273
  }
1274
1274
  /**
1275
1275
  * <p>Provides the name and range of a continuous hyperparameter.</p>
@@ -1280,17 +1280,17 @@ export interface ContinuousHyperParameterRange {
1280
1280
  * <p>The name of the hyperparameter.</p>
1281
1281
  * @public
1282
1282
  */
1283
- name?: string;
1283
+ name?: string | undefined;
1284
1284
  /**
1285
1285
  * <p>The minimum allowable value for the hyperparameter.</p>
1286
1286
  * @public
1287
1287
  */
1288
- minValue?: number;
1288
+ minValue?: number | undefined;
1289
1289
  /**
1290
1290
  * <p>The maximum allowable value for the hyperparameter.</p>
1291
1291
  * @public
1292
1292
  */
1293
- maxValue?: number;
1293
+ maxValue?: number | undefined;
1294
1294
  }
1295
1295
  /**
1296
1296
  * <p>Provides the name and range of an integer-valued hyperparameter.</p>
@@ -1301,17 +1301,17 @@ export interface IntegerHyperParameterRange {
1301
1301
  * <p>The name of the hyperparameter.</p>
1302
1302
  * @public
1303
1303
  */
1304
- name?: string;
1304
+ name?: string | undefined;
1305
1305
  /**
1306
1306
  * <p>The minimum allowable value for the hyperparameter.</p>
1307
1307
  * @public
1308
1308
  */
1309
- minValue?: number;
1309
+ minValue?: number | undefined;
1310
1310
  /**
1311
1311
  * <p>The maximum allowable value for the hyperparameter.</p>
1312
1312
  * @public
1313
1313
  */
1314
- maxValue?: number;
1314
+ maxValue?: number | undefined;
1315
1315
  }
1316
1316
  /**
1317
1317
  * <p>Specifies the hyperparameters and their ranges.
@@ -1323,17 +1323,17 @@ export interface HyperParameterRanges {
1323
1323
  * <p>The integer-valued hyperparameters and their ranges.</p>
1324
1324
  * @public
1325
1325
  */
1326
- integerHyperParameterRanges?: IntegerHyperParameterRange[];
1326
+ integerHyperParameterRanges?: IntegerHyperParameterRange[] | undefined;
1327
1327
  /**
1328
1328
  * <p>The continuous hyperparameters and their ranges.</p>
1329
1329
  * @public
1330
1330
  */
1331
- continuousHyperParameterRanges?: ContinuousHyperParameterRange[];
1331
+ continuousHyperParameterRanges?: ContinuousHyperParameterRange[] | undefined;
1332
1332
  /**
1333
1333
  * <p>The categorical hyperparameters and their ranges.</p>
1334
1334
  * @public
1335
1335
  */
1336
- categoricalHyperParameterRanges?: CategoricalHyperParameterRange[];
1336
+ categoricalHyperParameterRanges?: CategoricalHyperParameterRange[] | undefined;
1337
1337
  }
1338
1338
  /**
1339
1339
  * <p>The metric to optimize during hyperparameter optimization (HPO).</p>
@@ -1348,17 +1348,17 @@ export interface HPOObjective {
1348
1348
  * <p>The type of the metric. Valid values are <code>Maximize</code> and <code>Minimize</code>.</p>
1349
1349
  * @public
1350
1350
  */
1351
- type?: string;
1351
+ type?: string | undefined;
1352
1352
  /**
1353
1353
  * <p>The name of the metric.</p>
1354
1354
  * @public
1355
1355
  */
1356
- metricName?: string;
1356
+ metricName?: string | undefined;
1357
1357
  /**
1358
1358
  * <p>A regular expression for finding the metric in the training job logs.</p>
1359
1359
  * @public
1360
1360
  */
1361
- metricRegex?: string;
1361
+ metricRegex?: string | undefined;
1362
1362
  }
1363
1363
  /**
1364
1364
  * <p>Describes the resource configuration for hyperparameter optimization (HPO).</p>
@@ -1374,7 +1374,7 @@ export interface HPOResourceConfig {
1374
1374
  * <code>40</code>.</p>
1375
1375
  * @public
1376
1376
  */
1377
- maxNumberOfTrainingJobs?: string;
1377
+ maxNumberOfTrainingJobs?: string | undefined;
1378
1378
  /**
1379
1379
  * <p>The maximum number of parallel training
1380
1380
  * jobs when you create a
@@ -1384,7 +1384,7 @@ export interface HPOResourceConfig {
1384
1384
  * <code>10</code>.</p>
1385
1385
  * @public
1386
1386
  */
1387
- maxParallelTrainingJobs?: string;
1387
+ maxParallelTrainingJobs?: string | undefined;
1388
1388
  }
1389
1389
  /**
1390
1390
  * <p>Describes the properties for hyperparameter optimization (HPO).</p>
@@ -1399,17 +1399,17 @@ export interface HPOConfig {
1399
1399
  * </note>
1400
1400
  * @public
1401
1401
  */
1402
- hpoObjective?: HPOObjective;
1402
+ hpoObjective?: HPOObjective | undefined;
1403
1403
  /**
1404
1404
  * <p>Describes the resource configuration for HPO.</p>
1405
1405
  * @public
1406
1406
  */
1407
- hpoResourceConfig?: HPOResourceConfig;
1407
+ hpoResourceConfig?: HPOResourceConfig | undefined;
1408
1408
  /**
1409
1409
  * <p>The hyperparameters and their allowable ranges.</p>
1410
1410
  * @public
1411
1411
  */
1412
- algorithmHyperParameterRanges?: HyperParameterRanges;
1412
+ algorithmHyperParameterRanges?: HyperParameterRanges | undefined;
1413
1413
  }
1414
1414
  /**
1415
1415
  * @public
@@ -1435,12 +1435,12 @@ export interface OptimizationObjective {
1435
1435
  * <p>The numerical metadata column in an Items dataset related to the optimization objective. For example, VIDEO_LENGTH (to maximize streaming minutes), or PRICE (to maximize revenue).</p>
1436
1436
  * @public
1437
1437
  */
1438
- itemAttribute?: string;
1438
+ itemAttribute?: string | undefined;
1439
1439
  /**
1440
1440
  * <p>Specifies how Amazon Personalize balances the importance of your optimization objective versus relevance.</p>
1441
1441
  * @public
1442
1442
  */
1443
- objectiveSensitivity?: ObjectiveSensitivity;
1443
+ objectiveSensitivity?: ObjectiveSensitivity | undefined;
1444
1444
  }
1445
1445
  /**
1446
1446
  * <p>Describes the configuration properties for the solution.</p>
@@ -1452,46 +1452,46 @@ export interface SolutionConfig {
1452
1452
  * used for training a model.</p>
1453
1453
  * @public
1454
1454
  */
1455
- eventValueThreshold?: string;
1455
+ eventValueThreshold?: string | undefined;
1456
1456
  /**
1457
1457
  * <p>Describes the properties for hyperparameter optimization (HPO).</p>
1458
1458
  * @public
1459
1459
  */
1460
- hpoConfig?: HPOConfig;
1460
+ hpoConfig?: HPOConfig | undefined;
1461
1461
  /**
1462
1462
  * <p>Lists the algorithm hyperparameters and their values.</p>
1463
1463
  * @public
1464
1464
  */
1465
- algorithmHyperParameters?: Record<string, string>;
1465
+ algorithmHyperParameters?: Record<string, string> | undefined;
1466
1466
  /**
1467
1467
  * <p>Lists the feature transformation parameters.</p>
1468
1468
  * @public
1469
1469
  */
1470
- featureTransformationParameters?: Record<string, string>;
1470
+ featureTransformationParameters?: Record<string, string> | undefined;
1471
1471
  /**
1472
1472
  * <p>The <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_AutoMLConfig.html">AutoMLConfig</a> object containing a list of recipes to search
1473
1473
  * when AutoML is performed.</p>
1474
1474
  * @public
1475
1475
  */
1476
- autoMLConfig?: AutoMLConfig;
1476
+ autoMLConfig?: AutoMLConfig | undefined;
1477
1477
  /**
1478
1478
  * <p>Describes the additional objective for the solution, such as maximizing streaming
1479
1479
  * minutes or increasing revenue. For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/optimizing-solution-for-objective.html">Optimizing a solution</a>.</p>
1480
1480
  * @public
1481
1481
  */
1482
- optimizationObjective?: OptimizationObjective;
1482
+ optimizationObjective?: OptimizationObjective | undefined;
1483
1483
  /**
1484
1484
  * <p>
1485
1485
  * Specifies the training data configuration to use when creating a custom solution version (trained model).
1486
1486
  * </p>
1487
1487
  * @public
1488
1488
  */
1489
- trainingDataConfig?: TrainingDataConfig;
1489
+ trainingDataConfig?: TrainingDataConfig | undefined;
1490
1490
  /**
1491
1491
  * <p>Specifies the automatic training configuration to use.</p>
1492
1492
  * @public
1493
1493
  */
1494
- autoTrainingConfig?: AutoTrainingConfig;
1494
+ autoTrainingConfig?: AutoTrainingConfig | undefined;
1495
1495
  }
1496
1496
  /**
1497
1497
  * @public
@@ -1509,7 +1509,7 @@ export interface CreateSolutionRequest {
1509
1509
  * should not set it to <code>false</code>.</p>
1510
1510
  * @public
1511
1511
  */
1512
- performHPO?: boolean;
1512
+ performHPO?: boolean | undefined;
1513
1513
  /**
1514
1514
  * <important>
1515
1515
  * <p>We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize
@@ -1524,7 +1524,7 @@ export interface CreateSolutionRequest {
1524
1524
  * AutoML lengthens the training process as compared to selecting a specific recipe.</p>
1525
1525
  * @public
1526
1526
  */
1527
- performAutoML?: boolean;
1527
+ performAutoML?: boolean | undefined;
1528
1528
  /**
1529
1529
  * <p>Whether the solution uses automatic training to create new solution versions (trained models). The default is
1530
1530
  * <code>True</code> and the solution automatically creates new solution versions every 7 days. You can change the training
@@ -1542,7 +1542,7 @@ export interface CreateSolutionRequest {
1542
1542
  * </p>
1543
1543
  * @public
1544
1544
  */
1545
- performAutoTraining?: boolean;
1545
+ performAutoTraining?: boolean | undefined;
1546
1546
  /**
1547
1547
  * <p>The Amazon Resource Name (ARN) of the recipe to use for model training. This is required when
1548
1548
  * <code>performAutoML</code> is false. For information about different Amazon Personalize recipes and their ARNs,
@@ -1550,7 +1550,7 @@ export interface CreateSolutionRequest {
1550
1550
  * </p>
1551
1551
  * @public
1552
1552
  */
1553
- recipeArn?: string;
1553
+ recipeArn?: string | undefined;
1554
1554
  /**
1555
1555
  * <p>The Amazon Resource Name (ARN) of the dataset group that provides the training data.</p>
1556
1556
  * @public
@@ -1564,7 +1564,7 @@ export interface CreateSolutionRequest {
1564
1564
  * equal weight regardless of type.</p>
1565
1565
  * @public
1566
1566
  */
1567
- eventType?: string;
1567
+ eventType?: string | undefined;
1568
1568
  /**
1569
1569
  * <p>The configuration properties for the solution. When <code>performAutoML</code> is set to
1570
1570
  * true, Amazon Personalize only evaluates the <code>autoMLConfig</code> section
@@ -1575,12 +1575,12 @@ export interface CreateSolutionRequest {
1575
1575
  * </note>
1576
1576
  * @public
1577
1577
  */
1578
- solutionConfig?: SolutionConfig;
1578
+ solutionConfig?: SolutionConfig | undefined;
1579
1579
  /**
1580
1580
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the solution.</p>
1581
1581
  * @public
1582
1582
  */
1583
- tags?: Tag[];
1583
+ tags?: Tag[] | undefined;
1584
1584
  }
1585
1585
  /**
1586
1586
  * @public
@@ -1590,7 +1590,7 @@ export interface CreateSolutionResponse {
1590
1590
  * <p>The ARN of the solution.</p>
1591
1591
  * @public
1592
1592
  */
1593
- solutionArn?: string;
1593
+ solutionArn?: string | undefined;
1594
1594
  }
1595
1595
  /**
1596
1596
  * @public
@@ -1613,7 +1613,7 @@ export interface CreateSolutionVersionRequest {
1613
1613
  * <p>The name of the solution version.</p>
1614
1614
  * @public
1615
1615
  */
1616
- name?: string;
1616
+ name?: string | undefined;
1617
1617
  /**
1618
1618
  * <p>The Amazon Resource Name (ARN) of the solution containing the training configuration
1619
1619
  * information.</p>
@@ -1642,12 +1642,12 @@ export interface CreateSolutionVersionRequest {
1642
1642
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/native-recipe-hrnn-coldstart.html">HRNN-Coldstart</a> recipe.</p>
1643
1643
  * @public
1644
1644
  */
1645
- trainingMode?: TrainingMode;
1645
+ trainingMode?: TrainingMode | undefined;
1646
1646
  /**
1647
1647
  * <p>A list of <a href="https://docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html">tags</a> to apply to the solution version.</p>
1648
1648
  * @public
1649
1649
  */
1650
- tags?: Tag[];
1650
+ tags?: Tag[] | undefined;
1651
1651
  }
1652
1652
  /**
1653
1653
  * @public
@@ -1657,7 +1657,7 @@ export interface CreateSolutionVersionResponse {
1657
1657
  * <p>The ARN of the new solution version.</p>
1658
1658
  * @public
1659
1659
  */
1660
- solutionVersionArn?: string;
1660
+ solutionVersionArn?: string | undefined;
1661
1661
  }
1662
1662
  /**
1663
1663
  * @public
@@ -1767,7 +1767,7 @@ export interface DescribeAlgorithmResponse {
1767
1767
  * <p>A listing of the properties of the algorithm.</p>
1768
1768
  * @public
1769
1769
  */
1770
- algorithm?: Algorithm;
1770
+ algorithm?: Algorithm | undefined;
1771
1771
  }
1772
1772
  /**
1773
1773
  * @public
@@ -1788,65 +1788,65 @@ export interface BatchInferenceJob {
1788
1788
  * <p>The name of the batch inference job.</p>
1789
1789
  * @public
1790
1790
  */
1791
- jobName?: string;
1791
+ jobName?: string | undefined;
1792
1792
  /**
1793
1793
  * <p>The Amazon Resource Name (ARN) of the batch inference job.</p>
1794
1794
  * @public
1795
1795
  */
1796
- batchInferenceJobArn?: string;
1796
+ batchInferenceJobArn?: string | undefined;
1797
1797
  /**
1798
1798
  * <p>The ARN of the filter used on the batch inference job.</p>
1799
1799
  * @public
1800
1800
  */
1801
- filterArn?: string;
1801
+ filterArn?: string | undefined;
1802
1802
  /**
1803
1803
  * <p>If the batch inference job failed, the reason for the failure.</p>
1804
1804
  * @public
1805
1805
  */
1806
- failureReason?: string;
1806
+ failureReason?: string | undefined;
1807
1807
  /**
1808
1808
  * <p>The Amazon Resource Name (ARN) of the solution version from which the batch inference job
1809
1809
  * was created.</p>
1810
1810
  * @public
1811
1811
  */
1812
- solutionVersionArn?: string;
1812
+ solutionVersionArn?: string | undefined;
1813
1813
  /**
1814
1814
  * <p>The number of recommendations generated by the batch inference job. This number includes
1815
1815
  * the error messages generated for failed input records.</p>
1816
1816
  * @public
1817
1817
  */
1818
- numResults?: number;
1818
+ numResults?: number | undefined;
1819
1819
  /**
1820
1820
  * <p>The Amazon S3 path that leads to the input data used to generate the batch inference
1821
1821
  * job.</p>
1822
1822
  * @public
1823
1823
  */
1824
- jobInput?: BatchInferenceJobInput;
1824
+ jobInput?: BatchInferenceJobInput | undefined;
1825
1825
  /**
1826
1826
  * <p>The Amazon S3 bucket that contains the output data generated by the batch inference job.</p>
1827
1827
  * @public
1828
1828
  */
1829
- jobOutput?: BatchInferenceJobOutput;
1829
+ jobOutput?: BatchInferenceJobOutput | undefined;
1830
1830
  /**
1831
1831
  * <p>A string to string map of the configuration details of a batch inference job.</p>
1832
1832
  * @public
1833
1833
  */
1834
- batchInferenceJobConfig?: BatchInferenceJobConfig;
1834
+ batchInferenceJobConfig?: BatchInferenceJobConfig | undefined;
1835
1835
  /**
1836
1836
  * <p>The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch inference job.</p>
1837
1837
  * @public
1838
1838
  */
1839
- roleArn?: string;
1839
+ roleArn?: string | undefined;
1840
1840
  /**
1841
1841
  * <p>The job's mode.</p>
1842
1842
  * @public
1843
1843
  */
1844
- batchInferenceJobMode?: BatchInferenceJobMode;
1844
+ batchInferenceJobMode?: BatchInferenceJobMode | undefined;
1845
1845
  /**
1846
1846
  * <p>The job's theme generation settings.</p>
1847
1847
  * @public
1848
1848
  */
1849
- themeGenerationConfig?: ThemeGenerationConfig;
1849
+ themeGenerationConfig?: ThemeGenerationConfig | undefined;
1850
1850
  /**
1851
1851
  * <p>The status of the batch inference job. The status is one of the following values:</p>
1852
1852
  * <ul>
@@ -1865,17 +1865,17 @@ export interface BatchInferenceJob {
1865
1865
  * </ul>
1866
1866
  * @public
1867
1867
  */
1868
- status?: string;
1868
+ status?: string | undefined;
1869
1869
  /**
1870
1870
  * <p>The time at which the batch inference job was created.</p>
1871
1871
  * @public
1872
1872
  */
1873
- creationDateTime?: Date;
1873
+ creationDateTime?: Date | undefined;
1874
1874
  /**
1875
1875
  * <p>The time at which the batch inference job was last updated.</p>
1876
1876
  * @public
1877
1877
  */
1878
- lastUpdatedDateTime?: Date;
1878
+ lastUpdatedDateTime?: Date | undefined;
1879
1879
  }
1880
1880
  /**
1881
1881
  * @public
@@ -1885,7 +1885,7 @@ export interface DescribeBatchInferenceJobResponse {
1885
1885
  * <p>Information on the specified batch inference job.</p>
1886
1886
  * @public
1887
1887
  */
1888
- batchInferenceJob?: BatchInferenceJob;
1888
+ batchInferenceJob?: BatchInferenceJob | undefined;
1889
1889
  }
1890
1890
  /**
1891
1891
  * @public
@@ -1906,47 +1906,47 @@ export interface BatchSegmentJob {
1906
1906
  * <p>The name of the batch segment job.</p>
1907
1907
  * @public
1908
1908
  */
1909
- jobName?: string;
1909
+ jobName?: string | undefined;
1910
1910
  /**
1911
1911
  * <p>The Amazon Resource Name (ARN) of the batch segment job.</p>
1912
1912
  * @public
1913
1913
  */
1914
- batchSegmentJobArn?: string;
1914
+ batchSegmentJobArn?: string | undefined;
1915
1915
  /**
1916
1916
  * <p>The ARN of the filter used on the batch segment job.</p>
1917
1917
  * @public
1918
1918
  */
1919
- filterArn?: string;
1919
+ filterArn?: string | undefined;
1920
1920
  /**
1921
1921
  * <p>If the batch segment job failed, the reason for the failure.</p>
1922
1922
  * @public
1923
1923
  */
1924
- failureReason?: string;
1924
+ failureReason?: string | undefined;
1925
1925
  /**
1926
1926
  * <p>The Amazon Resource Name (ARN) of the solution version used by the batch segment job to generate batch segments.</p>
1927
1927
  * @public
1928
1928
  */
1929
- solutionVersionArn?: string;
1929
+ solutionVersionArn?: string | undefined;
1930
1930
  /**
1931
1931
  * <p>The number of predicted users generated by the batch segment job for each line of input data. The maximum number of users per segment is 5 million.</p>
1932
1932
  * @public
1933
1933
  */
1934
- numResults?: number;
1934
+ numResults?: number | undefined;
1935
1935
  /**
1936
1936
  * <p>The Amazon S3 path that leads to the input data used to generate the batch segment job.</p>
1937
1937
  * @public
1938
1938
  */
1939
- jobInput?: BatchSegmentJobInput;
1939
+ jobInput?: BatchSegmentJobInput | undefined;
1940
1940
  /**
1941
1941
  * <p>The Amazon S3 bucket that contains the output data generated by the batch segment job.</p>
1942
1942
  * @public
1943
1943
  */
1944
- jobOutput?: BatchSegmentJobOutput;
1944
+ jobOutput?: BatchSegmentJobOutput | undefined;
1945
1945
  /**
1946
1946
  * <p>The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch segment job.</p>
1947
1947
  * @public
1948
1948
  */
1949
- roleArn?: string;
1949
+ roleArn?: string | undefined;
1950
1950
  /**
1951
1951
  * <p>The status of the batch segment job. The status is one of the following values:</p>
1952
1952
  * <ul>
@@ -1965,17 +1965,17 @@ export interface BatchSegmentJob {
1965
1965
  * </ul>
1966
1966
  * @public
1967
1967
  */
1968
- status?: string;
1968
+ status?: string | undefined;
1969
1969
  /**
1970
1970
  * <p>The time at which the batch segment job was created.</p>
1971
1971
  * @public
1972
1972
  */
1973
- creationDateTime?: Date;
1973
+ creationDateTime?: Date | undefined;
1974
1974
  /**
1975
1975
  * <p>The time at which the batch segment job last updated.</p>
1976
1976
  * @public
1977
1977
  */
1978
- lastUpdatedDateTime?: Date;
1978
+ lastUpdatedDateTime?: Date | undefined;
1979
1979
  }
1980
1980
  /**
1981
1981
  * @public
@@ -1985,7 +1985,7 @@ export interface DescribeBatchSegmentJobResponse {
1985
1985
  * <p>Information on the specified batch segment job.</p>
1986
1986
  * @public
1987
1987
  */
1988
- batchSegmentJob?: BatchSegmentJob;
1988
+ batchSegmentJob?: BatchSegmentJob | undefined;
1989
1989
  }
1990
1990
  /**
1991
1991
  * @public
@@ -2007,18 +2007,18 @@ export interface CampaignUpdateSummary {
2007
2007
  * <p>The Amazon Resource Name (ARN) of the deployed solution version.</p>
2008
2008
  * @public
2009
2009
  */
2010
- solutionVersionArn?: string;
2010
+ solutionVersionArn?: string | undefined;
2011
2011
  /**
2012
2012
  * <p>Specifies the requested minimum provisioned transactions (recommendations) per second that
2013
2013
  * Amazon Personalize will support.</p>
2014
2014
  * @public
2015
2015
  */
2016
- minProvisionedTPS?: number;
2016
+ minProvisionedTPS?: number | undefined;
2017
2017
  /**
2018
2018
  * <p>The configuration details of a campaign.</p>
2019
2019
  * @public
2020
2020
  */
2021
- campaignConfig?: CampaignConfig;
2021
+ campaignConfig?: CampaignConfig | undefined;
2022
2022
  /**
2023
2023
  * <p>The status of the campaign update.</p>
2024
2024
  * <p>A campaign update can be in one of the following states:</p>
@@ -2032,22 +2032,22 @@ export interface CampaignUpdateSummary {
2032
2032
  * </ul>
2033
2033
  * @public
2034
2034
  */
2035
- status?: string;
2035
+ status?: string | undefined;
2036
2036
  /**
2037
2037
  * <p>If a campaign update fails, the reason behind the failure.</p>
2038
2038
  * @public
2039
2039
  */
2040
- failureReason?: string;
2040
+ failureReason?: string | undefined;
2041
2041
  /**
2042
2042
  * <p>The date and time (in Unix time) that the campaign update was created.</p>
2043
2043
  * @public
2044
2044
  */
2045
- creationDateTime?: Date;
2045
+ creationDateTime?: Date | undefined;
2046
2046
  /**
2047
2047
  * <p>The date and time (in Unix time) that the campaign update was last updated.</p>
2048
2048
  * @public
2049
2049
  */
2050
- lastUpdatedDateTime?: Date;
2050
+ lastUpdatedDateTime?: Date | undefined;
2051
2051
  }
2052
2052
  /**
2053
2053
  * <p>An object that describes the deployment of a solution version.
@@ -2059,29 +2059,29 @@ export interface Campaign {
2059
2059
  * <p>The name of the campaign.</p>
2060
2060
  * @public
2061
2061
  */
2062
- name?: string;
2062
+ name?: string | undefined;
2063
2063
  /**
2064
2064
  * <p>The Amazon Resource Name (ARN) of the campaign. </p>
2065
2065
  * @public
2066
2066
  */
2067
- campaignArn?: string;
2067
+ campaignArn?: string | undefined;
2068
2068
  /**
2069
2069
  * <p>The Amazon Resource Name (ARN) of the solution version the campaign uses.</p>
2070
2070
  * @public
2071
2071
  */
2072
- solutionVersionArn?: string;
2072
+ solutionVersionArn?: string | undefined;
2073
2073
  /**
2074
2074
  * <p>Specifies the requested minimum provisioned transactions (recommendations) per second. A high <code>minProvisionedTPS</code> will increase your bill. We recommend starting with 1 for <code>minProvisionedTPS</code> (the default). Track
2075
2075
  * your usage using Amazon CloudWatch metrics, and increase the <code>minProvisionedTPS</code>
2076
2076
  * as necessary.</p>
2077
2077
  * @public
2078
2078
  */
2079
- minProvisionedTPS?: number;
2079
+ minProvisionedTPS?: number | undefined;
2080
2080
  /**
2081
2081
  * <p>The configuration details of a campaign.</p>
2082
2082
  * @public
2083
2083
  */
2084
- campaignConfig?: CampaignConfig;
2084
+ campaignConfig?: CampaignConfig | undefined;
2085
2085
  /**
2086
2086
  * <p>The status of the campaign.</p>
2087
2087
  * <p>A campaign can be in one of the following states:</p>
@@ -2095,28 +2095,28 @@ export interface Campaign {
2095
2095
  * </ul>
2096
2096
  * @public
2097
2097
  */
2098
- status?: string;
2098
+ status?: string | undefined;
2099
2099
  /**
2100
2100
  * <p>If a campaign fails, the reason behind the failure.</p>
2101
2101
  * @public
2102
2102
  */
2103
- failureReason?: string;
2103
+ failureReason?: string | undefined;
2104
2104
  /**
2105
2105
  * <p>The date and time (in Unix format) that the campaign was created.</p>
2106
2106
  * @public
2107
2107
  */
2108
- creationDateTime?: Date;
2108
+ creationDateTime?: Date | undefined;
2109
2109
  /**
2110
2110
  * <p>The date and time (in Unix format) that the campaign was last updated.</p>
2111
2111
  * @public
2112
2112
  */
2113
- lastUpdatedDateTime?: Date;
2113
+ lastUpdatedDateTime?: Date | undefined;
2114
2114
  /**
2115
2115
  * <p>Provides a summary of the properties of a campaign update. For a complete listing, call the
2116
2116
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeCampaign.html">DescribeCampaign</a> API.</p>
2117
2117
  * @public
2118
2118
  */
2119
- latestCampaignUpdate?: CampaignUpdateSummary;
2119
+ latestCampaignUpdate?: CampaignUpdateSummary | undefined;
2120
2120
  }
2121
2121
  /**
2122
2122
  * @public
@@ -2126,7 +2126,7 @@ export interface DescribeCampaignResponse {
2126
2126
  * <p>The properties of the campaign.</p>
2127
2127
  * @public
2128
2128
  */
2129
- campaign?: Campaign;
2129
+ campaign?: Campaign | undefined;
2130
2130
  }
2131
2131
  /**
2132
2132
  * @public
@@ -2149,29 +2149,29 @@ export interface DataDeletionJob {
2149
2149
  * <p>The name of the data deletion job.</p>
2150
2150
  * @public
2151
2151
  */
2152
- jobName?: string;
2152
+ jobName?: string | undefined;
2153
2153
  /**
2154
2154
  * <p>The Amazon Resource Name (ARN) of the data deletion job.</p>
2155
2155
  * @public
2156
2156
  */
2157
- dataDeletionJobArn?: string;
2157
+ dataDeletionJobArn?: string | undefined;
2158
2158
  /**
2159
2159
  * <p>The Amazon Resource Name (ARN) of the dataset group the job deletes records from.</p>
2160
2160
  * @public
2161
2161
  */
2162
- datasetGroupArn?: string;
2162
+ datasetGroupArn?: string | undefined;
2163
2163
  /**
2164
2164
  * <p>Describes the data source that contains the data to upload to a dataset, or the list of
2165
2165
  * records to delete from Amazon Personalize.</p>
2166
2166
  * @public
2167
2167
  */
2168
- dataSource?: DataSource;
2168
+ dataSource?: DataSource | undefined;
2169
2169
  /**
2170
2170
  * <p>The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3
2171
2171
  * data source.</p>
2172
2172
  * @public
2173
2173
  */
2174
- roleArn?: string;
2174
+ roleArn?: string | undefined;
2175
2175
  /**
2176
2176
  * <p>The status of the data deletion job.</p>
2177
2177
  * <p>A data deletion job can have one of the following statuses:</p>
@@ -2182,28 +2182,28 @@ export interface DataDeletionJob {
2182
2182
  * </ul>
2183
2183
  * @public
2184
2184
  */
2185
- status?: string;
2185
+ status?: string | undefined;
2186
2186
  /**
2187
2187
  * <p>The number of records deleted by a COMPLETED job.</p>
2188
2188
  * @public
2189
2189
  */
2190
- numDeleted?: number;
2190
+ numDeleted?: number | undefined;
2191
2191
  /**
2192
2192
  * <p>The creation date and time (in Unix time) of the data deletion
2193
2193
  * job.</p>
2194
2194
  * @public
2195
2195
  */
2196
- creationDateTime?: Date;
2196
+ creationDateTime?: Date | undefined;
2197
2197
  /**
2198
2198
  * <p>The date and time (in Unix time) the data deletion job was last updated.</p>
2199
2199
  * @public
2200
2200
  */
2201
- lastUpdatedDateTime?: Date;
2201
+ lastUpdatedDateTime?: Date | undefined;
2202
2202
  /**
2203
2203
  * <p>If a data deletion job fails, provides the reason why.</p>
2204
2204
  * @public
2205
2205
  */
2206
- failureReason?: string;
2206
+ failureReason?: string | undefined;
2207
2207
  }
2208
2208
  /**
2209
2209
  * @public
@@ -2228,7 +2228,7 @@ export interface DescribeDataDeletionJobResponse {
2228
2228
  * </ul>
2229
2229
  * @public
2230
2230
  */
2231
- dataDeletionJob?: DataDeletionJob;
2231
+ dataDeletionJob?: DataDeletionJob | undefined;
2232
2232
  }
2233
2233
  /**
2234
2234
  * @public
@@ -2249,27 +2249,27 @@ export interface DatasetUpdateSummary {
2249
2249
  * <p>The Amazon Resource Name (ARN) of the schema that replaced the previous schema of the dataset.</p>
2250
2250
  * @public
2251
2251
  */
2252
- schemaArn?: string;
2252
+ schemaArn?: string | undefined;
2253
2253
  /**
2254
2254
  * <p>The status of the dataset update. </p>
2255
2255
  * @public
2256
2256
  */
2257
- status?: string;
2257
+ status?: string | undefined;
2258
2258
  /**
2259
2259
  * <p>If updating a dataset fails, provides the reason why.</p>
2260
2260
  * @public
2261
2261
  */
2262
- failureReason?: string;
2262
+ failureReason?: string | undefined;
2263
2263
  /**
2264
2264
  * <p>The creation date and time (in Unix time) of the dataset update.</p>
2265
2265
  * @public
2266
2266
  */
2267
- creationDateTime?: Date;
2267
+ creationDateTime?: Date | undefined;
2268
2268
  /**
2269
2269
  * <p>The last update date and time (in Unix time) of the dataset.</p>
2270
2270
  * @public
2271
2271
  */
2272
- lastUpdatedDateTime?: Date;
2272
+ lastUpdatedDateTime?: Date | undefined;
2273
2273
  }
2274
2274
  /**
2275
2275
  * <p>Provides metadata for a dataset.</p>
@@ -2280,18 +2280,18 @@ export interface Dataset {
2280
2280
  * <p>The name of the dataset.</p>
2281
2281
  * @public
2282
2282
  */
2283
- name?: string;
2283
+ name?: string | undefined;
2284
2284
  /**
2285
2285
  * <p>The Amazon Resource Name (ARN) of the dataset that you want metadata
2286
2286
  * for.</p>
2287
2287
  * @public
2288
2288
  */
2289
- datasetArn?: string;
2289
+ datasetArn?: string | undefined;
2290
2290
  /**
2291
2291
  * <p>The Amazon Resource Name (ARN) of the dataset group.</p>
2292
2292
  * @public
2293
2293
  */
2294
- datasetGroupArn?: string;
2294
+ datasetGroupArn?: string | undefined;
2295
2295
  /**
2296
2296
  * <p>One of the following values:</p>
2297
2297
  * <ul>
@@ -2313,12 +2313,12 @@ export interface Dataset {
2313
2313
  * </ul>
2314
2314
  * @public
2315
2315
  */
2316
- datasetType?: string;
2316
+ datasetType?: string | undefined;
2317
2317
  /**
2318
2318
  * <p>The ARN of the associated schema.</p>
2319
2319
  * @public
2320
2320
  */
2321
- schemaArn?: string;
2321
+ schemaArn?: string | undefined;
2322
2322
  /**
2323
2323
  * <p>The status of the dataset.</p>
2324
2324
  * <p>A dataset can be in one of the following states:</p>
@@ -2333,28 +2333,28 @@ export interface Dataset {
2333
2333
  * </ul>
2334
2334
  * @public
2335
2335
  */
2336
- status?: string;
2336
+ status?: string | undefined;
2337
2337
  /**
2338
2338
  * <p>The creation date and time (in Unix time) of the dataset.</p>
2339
2339
  * @public
2340
2340
  */
2341
- creationDateTime?: Date;
2341
+ creationDateTime?: Date | undefined;
2342
2342
  /**
2343
2343
  * <p>A time stamp that shows when the dataset was updated.</p>
2344
2344
  * @public
2345
2345
  */
2346
- lastUpdatedDateTime?: Date;
2346
+ lastUpdatedDateTime?: Date | undefined;
2347
2347
  /**
2348
2348
  * <p>Describes the latest update to the dataset.</p>
2349
2349
  * @public
2350
2350
  */
2351
- latestDatasetUpdate?: DatasetUpdateSummary;
2351
+ latestDatasetUpdate?: DatasetUpdateSummary | undefined;
2352
2352
  /**
2353
2353
  * <p>The ID of the event tracker for an Action interactions dataset.
2354
2354
  * You specify the tracker's ID in the <code>PutActionInteractions</code> API operation. Amazon Personalize uses it to direct new data to the Action interactions dataset in your dataset group.</p>
2355
2355
  * @public
2356
2356
  */
2357
- trackingId?: string;
2357
+ trackingId?: string | undefined;
2358
2358
  }
2359
2359
  /**
2360
2360
  * @public
@@ -2364,7 +2364,7 @@ export interface DescribeDatasetResponse {
2364
2364
  * <p>A listing of the dataset's properties.</p>
2365
2365
  * @public
2366
2366
  */
2367
- dataset?: Dataset;
2367
+ dataset?: Dataset | undefined;
2368
2368
  }
2369
2369
  /**
2370
2370
  * @public
@@ -2394,17 +2394,17 @@ export interface DatasetExportJob {
2394
2394
  * <p>The name of the export job.</p>
2395
2395
  * @public
2396
2396
  */
2397
- jobName?: string;
2397
+ jobName?: string | undefined;
2398
2398
  /**
2399
2399
  * <p>The Amazon Resource Name (ARN) of the dataset export job.</p>
2400
2400
  * @public
2401
2401
  */
2402
- datasetExportJobArn?: string;
2402
+ datasetExportJobArn?: string | undefined;
2403
2403
  /**
2404
2404
  * <p>The Amazon Resource Name (ARN) of the dataset to export.</p>
2405
2405
  * @public
2406
2406
  */
2407
- datasetArn?: string;
2407
+ datasetArn?: string | undefined;
2408
2408
  /**
2409
2409
  * <p>The data to export, based on how you imported the data. You can choose
2410
2410
  * to export <code>BULK</code> data that you imported using a dataset import
@@ -2413,13 +2413,13 @@ export interface DatasetExportJob {
2413
2413
  * for both types. The default value is <code>PUT</code>. </p>
2414
2414
  * @public
2415
2415
  */
2416
- ingestionMode?: IngestionMode;
2416
+ ingestionMode?: IngestionMode | undefined;
2417
2417
  /**
2418
2418
  * <p>The Amazon Resource Name (ARN) of the IAM service role that has
2419
2419
  * permissions to add data to your output Amazon S3 bucket.</p>
2420
2420
  * @public
2421
2421
  */
2422
- roleArn?: string;
2422
+ roleArn?: string | undefined;
2423
2423
  /**
2424
2424
  * <p>The status of the dataset export job.</p>
2425
2425
  * <p>A dataset export job can be in one of the following states:</p>
@@ -2431,7 +2431,7 @@ export interface DatasetExportJob {
2431
2431
  * </ul>
2432
2432
  * @public
2433
2433
  */
2434
- status?: string;
2434
+ status?: string | undefined;
2435
2435
  /**
2436
2436
  * <p>The path to the Amazon S3 bucket where the job's output is stored. For
2437
2437
  * example:</p>
@@ -2440,24 +2440,24 @@ export interface DatasetExportJob {
2440
2440
  * </p>
2441
2441
  * @public
2442
2442
  */
2443
- jobOutput?: DatasetExportJobOutput;
2443
+ jobOutput?: DatasetExportJobOutput | undefined;
2444
2444
  /**
2445
2445
  * <p>The creation date and time (in Unix time) of the dataset export
2446
2446
  * job.</p>
2447
2447
  * @public
2448
2448
  */
2449
- creationDateTime?: Date;
2449
+ creationDateTime?: Date | undefined;
2450
2450
  /**
2451
2451
  * <p>The date and time (in Unix time) the status of the dataset export job
2452
2452
  * was last updated.</p>
2453
2453
  * @public
2454
2454
  */
2455
- lastUpdatedDateTime?: Date;
2455
+ lastUpdatedDateTime?: Date | undefined;
2456
2456
  /**
2457
2457
  * <p>If a dataset export job fails, provides the reason why.</p>
2458
2458
  * @public
2459
2459
  */
2460
- failureReason?: string;
2460
+ failureReason?: string | undefined;
2461
2461
  }
2462
2462
  /**
2463
2463
  * @public
@@ -2482,7 +2482,7 @@ export interface DescribeDatasetExportJobResponse {
2482
2482
  * </ul>
2483
2483
  * @public
2484
2484
  */
2485
- datasetExportJob?: DatasetExportJob;
2485
+ datasetExportJob?: DatasetExportJob | undefined;
2486
2486
  }
2487
2487
  /**
2488
2488
  * @public
@@ -2510,12 +2510,12 @@ export interface DatasetGroup {
2510
2510
  * <p>The name of the dataset group.</p>
2511
2511
  * @public
2512
2512
  */
2513
- name?: string;
2513
+ name?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The Amazon Resource Name (ARN) of the dataset group.</p>
2516
2516
  * @public
2517
2517
  */
2518
- datasetGroupArn?: string;
2518
+ datasetGroupArn?: string | undefined;
2519
2519
  /**
2520
2520
  * <p>The current status of the dataset group.</p>
2521
2521
  * <p>A dataset group can be in one of the following states:</p>
@@ -2530,41 +2530,41 @@ export interface DatasetGroup {
2530
2530
  * </ul>
2531
2531
  * @public
2532
2532
  */
2533
- status?: string;
2533
+ status?: string | undefined;
2534
2534
  /**
2535
2535
  * <p>The ARN of the Identity and Access Management (IAM) role that has permissions to access
2536
2536
  * the Key Management Service (KMS) key. Supplying an IAM role is only valid when also
2537
2537
  * specifying a KMS key.</p>
2538
2538
  * @public
2539
2539
  */
2540
- roleArn?: string;
2540
+ roleArn?: string | undefined;
2541
2541
  /**
2542
2542
  * <p>The Amazon Resource Name (ARN) of the Key Management Service (KMS) key used to
2543
2543
  * encrypt the datasets.</p>
2544
2544
  * @public
2545
2545
  */
2546
- kmsKeyArn?: string;
2546
+ kmsKeyArn?: string | undefined;
2547
2547
  /**
2548
2548
  * <p>The creation date and time (in Unix time) of the dataset group.</p>
2549
2549
  * @public
2550
2550
  */
2551
- creationDateTime?: Date;
2551
+ creationDateTime?: Date | undefined;
2552
2552
  /**
2553
2553
  * <p>The last update date and time (in Unix time) of the dataset
2554
2554
  * group.</p>
2555
2555
  * @public
2556
2556
  */
2557
- lastUpdatedDateTime?: Date;
2557
+ lastUpdatedDateTime?: Date | undefined;
2558
2558
  /**
2559
2559
  * <p>If creating a dataset group fails, provides the reason why.</p>
2560
2560
  * @public
2561
2561
  */
2562
- failureReason?: string;
2562
+ failureReason?: string | undefined;
2563
2563
  /**
2564
2564
  * <p>The domain of a Domain dataset group.</p>
2565
2565
  * @public
2566
2566
  */
2567
- domain?: Domain;
2567
+ domain?: Domain | undefined;
2568
2568
  }
2569
2569
  /**
2570
2570
  * @public
@@ -2574,7 +2574,7 @@ export interface DescribeDatasetGroupResponse {
2574
2574
  * <p>A listing of the dataset group's properties.</p>
2575
2575
  * @public
2576
2576
  */
2577
- datasetGroup?: DatasetGroup;
2577
+ datasetGroup?: DatasetGroup | undefined;
2578
2578
  }
2579
2579
  /**
2580
2580
  * @public
@@ -2604,29 +2604,29 @@ export interface DatasetImportJob {
2604
2604
  * <p>The name of the import job.</p>
2605
2605
  * @public
2606
2606
  */
2607
- jobName?: string;
2607
+ jobName?: string | undefined;
2608
2608
  /**
2609
2609
  * <p>The ARN of the dataset import job.</p>
2610
2610
  * @public
2611
2611
  */
2612
- datasetImportJobArn?: string;
2612
+ datasetImportJobArn?: string | undefined;
2613
2613
  /**
2614
2614
  * <p>The Amazon Resource Name (ARN) of the dataset that receives the
2615
2615
  * imported data.</p>
2616
2616
  * @public
2617
2617
  */
2618
- datasetArn?: string;
2618
+ datasetArn?: string | undefined;
2619
2619
  /**
2620
2620
  * <p>The Amazon S3 bucket that contains the training data to import.</p>
2621
2621
  * @public
2622
2622
  */
2623
- dataSource?: DataSource;
2623
+ dataSource?: DataSource | undefined;
2624
2624
  /**
2625
2625
  * <p>The ARN of the IAM role that has permissions to read from the Amazon S3
2626
2626
  * data source.</p>
2627
2627
  * @public
2628
2628
  */
2629
- roleArn?: string;
2629
+ roleArn?: string | undefined;
2630
2630
  /**
2631
2631
  * <p>The status of the dataset import job.</p>
2632
2632
  * <p>A dataset import job can be in one of the following states:</p>
@@ -2638,34 +2638,34 @@ export interface DatasetImportJob {
2638
2638
  * </ul>
2639
2639
  * @public
2640
2640
  */
2641
- status?: string;
2641
+ status?: string | undefined;
2642
2642
  /**
2643
2643
  * <p>The creation date and time (in Unix time) of the dataset import
2644
2644
  * job.</p>
2645
2645
  * @public
2646
2646
  */
2647
- creationDateTime?: Date;
2647
+ creationDateTime?: Date | undefined;
2648
2648
  /**
2649
2649
  * <p>The date and time (in Unix time) the dataset was last updated.</p>
2650
2650
  * @public
2651
2651
  */
2652
- lastUpdatedDateTime?: Date;
2652
+ lastUpdatedDateTime?: Date | undefined;
2653
2653
  /**
2654
2654
  * <p>If a dataset import job fails, provides the reason why.</p>
2655
2655
  * @public
2656
2656
  */
2657
- failureReason?: string;
2657
+ failureReason?: string | undefined;
2658
2658
  /**
2659
2659
  * <p>The import mode used by the dataset import job to import new
2660
2660
  * records.</p>
2661
2661
  * @public
2662
2662
  */
2663
- importMode?: ImportMode;
2663
+ importMode?: ImportMode | undefined;
2664
2664
  /**
2665
2665
  * <p>Whether the job publishes metrics to Amazon S3 for a metric attribution.</p>
2666
2666
  * @public
2667
2667
  */
2668
- publishAttributionMetricsToS3?: boolean;
2668
+ publishAttributionMetricsToS3?: boolean | undefined;
2669
2669
  }
2670
2670
  /**
2671
2671
  * @public
@@ -2690,7 +2690,7 @@ export interface DescribeDatasetImportJobResponse {
2690
2690
  * </ul>
2691
2691
  * @public
2692
2692
  */
2693
- datasetImportJob?: DatasetImportJob;
2693
+ datasetImportJob?: DatasetImportJob | undefined;
2694
2694
  }
2695
2695
  /**
2696
2696
  * @public
@@ -2711,28 +2711,28 @@ export interface EventTracker {
2711
2711
  * <p>The name of the event tracker.</p>
2712
2712
  * @public
2713
2713
  */
2714
- name?: string;
2714
+ name?: string | undefined;
2715
2715
  /**
2716
2716
  * <p>The ARN of the event tracker.</p>
2717
2717
  * @public
2718
2718
  */
2719
- eventTrackerArn?: string;
2719
+ eventTrackerArn?: string | undefined;
2720
2720
  /**
2721
2721
  * <p>The Amazon Web Services account that owns the event tracker.</p>
2722
2722
  * @public
2723
2723
  */
2724
- accountId?: string;
2724
+ accountId?: string | undefined;
2725
2725
  /**
2726
2726
  * <p>The ID of the event tracker. Include this ID in requests to the
2727
2727
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_UBS_PutEvents.html">PutEvents</a> API.</p>
2728
2728
  * @public
2729
2729
  */
2730
- trackingId?: string;
2730
+ trackingId?: string | undefined;
2731
2731
  /**
2732
2732
  * <p>The Amazon Resource Name (ARN) of the dataset group that receives the event data.</p>
2733
2733
  * @public
2734
2734
  */
2735
- datasetGroupArn?: string;
2735
+ datasetGroupArn?: string | undefined;
2736
2736
  /**
2737
2737
  * <p>The status of the event tracker.</p>
2738
2738
  * <p>An event tracker can be in one of the following states:</p>
@@ -2746,17 +2746,17 @@ export interface EventTracker {
2746
2746
  * </ul>
2747
2747
  * @public
2748
2748
  */
2749
- status?: string;
2749
+ status?: string | undefined;
2750
2750
  /**
2751
2751
  * <p>The date and time (in Unix format) that the event tracker was created.</p>
2752
2752
  * @public
2753
2753
  */
2754
- creationDateTime?: Date;
2754
+ creationDateTime?: Date | undefined;
2755
2755
  /**
2756
2756
  * <p>The date and time (in Unix time) that the event tracker was last updated.</p>
2757
2757
  * @public
2758
2758
  */
2759
- lastUpdatedDateTime?: Date;
2759
+ lastUpdatedDateTime?: Date | undefined;
2760
2760
  }
2761
2761
  /**
2762
2762
  * @public
@@ -2766,7 +2766,7 @@ export interface DescribeEventTrackerResponse {
2766
2766
  * <p>An object that describes the event tracker.</p>
2767
2767
  * @public
2768
2768
  */
2769
- eventTracker?: EventTracker;
2769
+ eventTracker?: EventTracker | undefined;
2770
2770
  }
2771
2771
  /**
2772
2772
  * @public
@@ -2788,27 +2788,27 @@ export interface FeatureTransformation {
2788
2788
  * <p>The name of the feature transformation.</p>
2789
2789
  * @public
2790
2790
  */
2791
- name?: string;
2791
+ name?: string | undefined;
2792
2792
  /**
2793
2793
  * <p>The Amazon Resource Name (ARN) of the FeatureTransformation object.</p>
2794
2794
  * @public
2795
2795
  */
2796
- featureTransformationArn?: string;
2796
+ featureTransformationArn?: string | undefined;
2797
2797
  /**
2798
2798
  * <p>Provides the default parameters for feature transformation.</p>
2799
2799
  * @public
2800
2800
  */
2801
- defaultParameters?: Record<string, string>;
2801
+ defaultParameters?: Record<string, string> | undefined;
2802
2802
  /**
2803
2803
  * <p>The creation date and time (in Unix time) of the feature transformation.</p>
2804
2804
  * @public
2805
2805
  */
2806
- creationDateTime?: Date;
2806
+ creationDateTime?: Date | undefined;
2807
2807
  /**
2808
2808
  * <p>The last update date and time (in Unix time) of the feature transformation.</p>
2809
2809
  * @public
2810
2810
  */
2811
- lastUpdatedDateTime?: Date;
2811
+ lastUpdatedDateTime?: Date | undefined;
2812
2812
  /**
2813
2813
  * <p>The status of the feature transformation.</p>
2814
2814
  * <p>A feature transformation can be in one of the following states:</p>
@@ -2819,7 +2819,7 @@ export interface FeatureTransformation {
2819
2819
  * </ul>
2820
2820
  * @public
2821
2821
  */
2822
- status?: string;
2822
+ status?: string | undefined;
2823
2823
  }
2824
2824
  /**
2825
2825
  * @public
@@ -2829,7 +2829,7 @@ export interface DescribeFeatureTransformationResponse {
2829
2829
  * <p>A listing of the FeatureTransformation properties.</p>
2830
2830
  * @public
2831
2831
  */
2832
- featureTransformation?: FeatureTransformation;
2832
+ featureTransformation?: FeatureTransformation | undefined;
2833
2833
  }
2834
2834
  /**
2835
2835
  * @public
@@ -2851,44 +2851,44 @@ export interface Filter {
2851
2851
  * <p>The name of the filter.</p>
2852
2852
  * @public
2853
2853
  */
2854
- name?: string;
2854
+ name?: string | undefined;
2855
2855
  /**
2856
2856
  * <p>The ARN of the filter.</p>
2857
2857
  * @public
2858
2858
  */
2859
- filterArn?: string;
2859
+ filterArn?: string | undefined;
2860
2860
  /**
2861
2861
  * <p>The time at which the filter was created.</p>
2862
2862
  * @public
2863
2863
  */
2864
- creationDateTime?: Date;
2864
+ creationDateTime?: Date | undefined;
2865
2865
  /**
2866
2866
  * <p>The time at which the filter was last updated.</p>
2867
2867
  * @public
2868
2868
  */
2869
- lastUpdatedDateTime?: Date;
2869
+ lastUpdatedDateTime?: Date | undefined;
2870
2870
  /**
2871
2871
  * <p>The ARN of the dataset group to which the filter belongs.</p>
2872
2872
  * @public
2873
2873
  */
2874
- datasetGroupArn?: string;
2874
+ datasetGroupArn?: string | undefined;
2875
2875
  /**
2876
2876
  * <p>If the filter failed, the reason for its failure.</p>
2877
2877
  * @public
2878
2878
  */
2879
- failureReason?: string;
2879
+ failureReason?: string | undefined;
2880
2880
  /**
2881
2881
  * <p>Specifies the type of item interactions to filter out of recommendation results. The
2882
2882
  * filter expression must follow specific format rules. For information about filter expression structure and syntax, see
2883
2883
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/filter-expressions.html">Filter expressions</a>.</p>
2884
2884
  * @public
2885
2885
  */
2886
- filterExpression?: string;
2886
+ filterExpression?: string | undefined;
2887
2887
  /**
2888
2888
  * <p>The status of the filter.</p>
2889
2889
  * @public
2890
2890
  */
2891
- status?: string;
2891
+ status?: string | undefined;
2892
2892
  }
2893
2893
  /**
2894
2894
  * @public
@@ -2898,7 +2898,7 @@ export interface DescribeFilterResponse {
2898
2898
  * <p>The filter's details.</p>
2899
2899
  * @public
2900
2900
  */
2901
- filter?: Filter;
2901
+ filter?: Filter | undefined;
2902
2902
  }
2903
2903
  /**
2904
2904
  * @public
@@ -2921,42 +2921,42 @@ export interface MetricAttribution {
2921
2921
  * <p>The metric attribution's name.</p>
2922
2922
  * @public
2923
2923
  */
2924
- name?: string;
2924
+ name?: string | undefined;
2925
2925
  /**
2926
2926
  * <p>The metric attribution's Amazon Resource Name (ARN).</p>
2927
2927
  * @public
2928
2928
  */
2929
- metricAttributionArn?: string;
2929
+ metricAttributionArn?: string | undefined;
2930
2930
  /**
2931
2931
  * <p>The metric attribution's dataset group Amazon Resource Name (ARN).</p>
2932
2932
  * @public
2933
2933
  */
2934
- datasetGroupArn?: string;
2934
+ datasetGroupArn?: string | undefined;
2935
2935
  /**
2936
2936
  * <p>The metric attribution's output configuration.</p>
2937
2937
  * @public
2938
2938
  */
2939
- metricsOutputConfig?: MetricAttributionOutput;
2939
+ metricsOutputConfig?: MetricAttributionOutput | undefined;
2940
2940
  /**
2941
2941
  * <p>The metric attribution's status.</p>
2942
2942
  * @public
2943
2943
  */
2944
- status?: string;
2944
+ status?: string | undefined;
2945
2945
  /**
2946
2946
  * <p>The metric attribution's creation date time.</p>
2947
2947
  * @public
2948
2948
  */
2949
- creationDateTime?: Date;
2949
+ creationDateTime?: Date | undefined;
2950
2950
  /**
2951
2951
  * <p>The metric attribution's last updated date time.</p>
2952
2952
  * @public
2953
2953
  */
2954
- lastUpdatedDateTime?: Date;
2954
+ lastUpdatedDateTime?: Date | undefined;
2955
2955
  /**
2956
2956
  * <p>The metric attribution's failure reason.</p>
2957
2957
  * @public
2958
2958
  */
2959
- failureReason?: string;
2959
+ failureReason?: string | undefined;
2960
2960
  }
2961
2961
  /**
2962
2962
  * @public
@@ -2966,7 +2966,7 @@ export interface DescribeMetricAttributionResponse {
2966
2966
  * <p>The details of the metric attribution.</p>
2967
2967
  * @public
2968
2968
  */
2969
- metricAttribution?: MetricAttribution;
2969
+ metricAttribution?: MetricAttribution | undefined;
2970
2970
  }
2971
2971
  /**
2972
2972
  * @public
@@ -2989,38 +2989,38 @@ export interface Recipe {
2989
2989
  * <p>The name of the recipe.</p>
2990
2990
  * @public
2991
2991
  */
2992
- name?: string;
2992
+ name?: string | undefined;
2993
2993
  /**
2994
2994
  * <p>The Amazon Resource Name (ARN) of the recipe.</p>
2995
2995
  * @public
2996
2996
  */
2997
- recipeArn?: string;
2997
+ recipeArn?: string | undefined;
2998
2998
  /**
2999
2999
  * <p>The Amazon Resource Name (ARN) of the algorithm that Amazon Personalize uses to train
3000
3000
  * the model.</p>
3001
3001
  * @public
3002
3002
  */
3003
- algorithmArn?: string;
3003
+ algorithmArn?: string | undefined;
3004
3004
  /**
3005
3005
  * <p>The ARN of the FeatureTransformation object.</p>
3006
3006
  * @public
3007
3007
  */
3008
- featureTransformationArn?: string;
3008
+ featureTransformationArn?: string | undefined;
3009
3009
  /**
3010
3010
  * <p>The status of the recipe.</p>
3011
3011
  * @public
3012
3012
  */
3013
- status?: string;
3013
+ status?: string | undefined;
3014
3014
  /**
3015
3015
  * <p>The description of the recipe.</p>
3016
3016
  * @public
3017
3017
  */
3018
- description?: string;
3018
+ description?: string | undefined;
3019
3019
  /**
3020
3020
  * <p>The date and time (in Unix format) that the recipe was created.</p>
3021
3021
  * @public
3022
3022
  */
3023
- creationDateTime?: Date;
3023
+ creationDateTime?: Date | undefined;
3024
3024
  /**
3025
3025
  * <p>One of the following values:</p>
3026
3026
  * <ul>
@@ -3036,12 +3036,12 @@ export interface Recipe {
3036
3036
  * </ul>
3037
3037
  * @public
3038
3038
  */
3039
- recipeType?: string;
3039
+ recipeType?: string | undefined;
3040
3040
  /**
3041
3041
  * <p>The date and time (in Unix format) that the recipe was last updated.</p>
3042
3042
  * @public
3043
3043
  */
3044
- lastUpdatedDateTime?: Date;
3044
+ lastUpdatedDateTime?: Date | undefined;
3045
3045
  }
3046
3046
  /**
3047
3047
  * @public
@@ -3051,7 +3051,7 @@ export interface DescribeRecipeResponse {
3051
3051
  * <p>An object that describes the recipe.</p>
3052
3052
  * @public
3053
3053
  */
3054
- recipe?: Recipe;
3054
+ recipe?: Recipe | undefined;
3055
3055
  }
3056
3056
  /**
3057
3057
  * @public
@@ -3073,28 +3073,28 @@ export interface RecommenderUpdateSummary {
3073
3073
  * <p>The configuration details of the recommender update.</p>
3074
3074
  * @public
3075
3075
  */
3076
- recommenderConfig?: RecommenderConfig;
3076
+ recommenderConfig?: RecommenderConfig | undefined;
3077
3077
  /**
3078
3078
  * <p>The date and time (in Unix format) that the recommender update was created.</p>
3079
3079
  * @public
3080
3080
  */
3081
- creationDateTime?: Date;
3081
+ creationDateTime?: Date | undefined;
3082
3082
  /**
3083
3083
  * <p>The date and time (in Unix time) that the recommender update was last updated.</p>
3084
3084
  * @public
3085
3085
  */
3086
- lastUpdatedDateTime?: Date;
3086
+ lastUpdatedDateTime?: Date | undefined;
3087
3087
  /**
3088
3088
  * <p>The status of the recommender update. A recommender update can be in one of the following states:</p>
3089
3089
  * <p>CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED</p>
3090
3090
  * @public
3091
3091
  */
3092
- status?: string;
3092
+ status?: string | undefined;
3093
3093
  /**
3094
3094
  * <p>If a recommender update fails, the reason behind the failure.</p>
3095
3095
  * @public
3096
3096
  */
3097
- failureReason?: string;
3097
+ failureReason?: string | undefined;
3098
3098
  }
3099
3099
  /**
3100
3100
  * <p>Describes a recommendation generator for a Domain dataset group. You create a recommender in a Domain dataset group
@@ -3106,38 +3106,38 @@ export interface Recommender {
3106
3106
  * <p>The Amazon Resource Name (ARN) of the recommender.</p>
3107
3107
  * @public
3108
3108
  */
3109
- recommenderArn?: string;
3109
+ recommenderArn?: string | undefined;
3110
3110
  /**
3111
3111
  * <p>The Amazon Resource Name (ARN) of the Domain dataset group that contains the recommender.</p>
3112
3112
  * @public
3113
3113
  */
3114
- datasetGroupArn?: string;
3114
+ datasetGroupArn?: string | undefined;
3115
3115
  /**
3116
3116
  * <p>The name of the recommender.</p>
3117
3117
  * @public
3118
3118
  */
3119
- name?: string;
3119
+ name?: string | undefined;
3120
3120
  /**
3121
3121
  * <p>The Amazon Resource Name (ARN) of the recipe (Domain dataset group use case) that the recommender was created for.
3122
3122
  * </p>
3123
3123
  * @public
3124
3124
  */
3125
- recipeArn?: string;
3125
+ recipeArn?: string | undefined;
3126
3126
  /**
3127
3127
  * <p>The configuration details of the recommender.</p>
3128
3128
  * @public
3129
3129
  */
3130
- recommenderConfig?: RecommenderConfig;
3130
+ recommenderConfig?: RecommenderConfig | undefined;
3131
3131
  /**
3132
3132
  * <p>The date and time (in Unix format) that the recommender was created.</p>
3133
3133
  * @public
3134
3134
  */
3135
- creationDateTime?: Date;
3135
+ creationDateTime?: Date | undefined;
3136
3136
  /**
3137
3137
  * <p>The date and time (in Unix format) that the recommender was last updated.</p>
3138
3138
  * @public
3139
3139
  */
3140
- lastUpdatedDateTime?: Date;
3140
+ lastUpdatedDateTime?: Date | undefined;
3141
3141
  /**
3142
3142
  * <p>The status of the recommender.</p>
3143
3143
  * <p>A recommender can be in one of the following states:</p>
@@ -3154,17 +3154,17 @@ export interface Recommender {
3154
3154
  * </ul>
3155
3155
  * @public
3156
3156
  */
3157
- status?: string;
3157
+ status?: string | undefined;
3158
3158
  /**
3159
3159
  * <p>If a recommender fails, the reason behind the failure.</p>
3160
3160
  * @public
3161
3161
  */
3162
- failureReason?: string;
3162
+ failureReason?: string | undefined;
3163
3163
  /**
3164
3164
  * <p>Provides a summary of the latest updates to the recommender. </p>
3165
3165
  * @public
3166
3166
  */
3167
- latestRecommenderUpdate?: RecommenderUpdateSummary;
3167
+ latestRecommenderUpdate?: RecommenderUpdateSummary | undefined;
3168
3168
  /**
3169
3169
  * <p>Provides evaluation metrics that help you determine the performance
3170
3170
  * of a recommender. For more information, see
@@ -3172,7 +3172,7 @@ export interface Recommender {
3172
3172
  * Evaluating a recommender</a>.</p>
3173
3173
  * @public
3174
3174
  */
3175
- modelMetrics?: Record<string, number>;
3175
+ modelMetrics?: Record<string, number> | undefined;
3176
3176
  }
3177
3177
  /**
3178
3178
  * @public
@@ -3182,7 +3182,7 @@ export interface DescribeRecommenderResponse {
3182
3182
  * <p>The properties of the recommender.</p>
3183
3183
  * @public
3184
3184
  */
3185
- recommender?: Recommender;
3185
+ recommender?: Recommender | undefined;
3186
3186
  }
3187
3187
  /**
3188
3188
  * @public
@@ -3204,32 +3204,32 @@ export interface DatasetSchema {
3204
3204
  * <p>The name of the schema.</p>
3205
3205
  * @public
3206
3206
  */
3207
- name?: string;
3207
+ name?: string | undefined;
3208
3208
  /**
3209
3209
  * <p>The Amazon Resource Name (ARN) of the schema.</p>
3210
3210
  * @public
3211
3211
  */
3212
- schemaArn?: string;
3212
+ schemaArn?: string | undefined;
3213
3213
  /**
3214
3214
  * <p>The schema.</p>
3215
3215
  * @public
3216
3216
  */
3217
- schema?: string;
3217
+ schema?: string | undefined;
3218
3218
  /**
3219
3219
  * <p>The date and time (in Unix time) that the schema was created.</p>
3220
3220
  * @public
3221
3221
  */
3222
- creationDateTime?: Date;
3222
+ creationDateTime?: Date | undefined;
3223
3223
  /**
3224
3224
  * <p>The date and time (in Unix time) that the schema was last updated.</p>
3225
3225
  * @public
3226
3226
  */
3227
- lastUpdatedDateTime?: Date;
3227
+ lastUpdatedDateTime?: Date | undefined;
3228
3228
  /**
3229
3229
  * <p>The domain of a schema that you created for a dataset in a Domain dataset group.</p>
3230
3230
  * @public
3231
3231
  */
3232
- domain?: Domain;
3232
+ domain?: Domain | undefined;
3233
3233
  }
3234
3234
  /**
3235
3235
  * @public
@@ -3239,7 +3239,7 @@ export interface DescribeSchemaResponse {
3239
3239
  * <p>The requested schema.</p>
3240
3240
  * @public
3241
3241
  */
3242
- schema?: DatasetSchema;
3242
+ schema?: DatasetSchema | undefined;
3243
3243
  }
3244
3244
  /**
3245
3245
  * @public
@@ -3262,7 +3262,7 @@ export interface AutoMLResult {
3262
3262
  * <p>The Amazon Resource Name (ARN) of the best recipe.</p>
3263
3263
  * @public
3264
3264
  */
3265
- bestRecipeArn?: string;
3265
+ bestRecipeArn?: string | undefined;
3266
3266
  }
3267
3267
  /**
3268
3268
  * <p>The configuration details of the solution update.</p>
@@ -3273,7 +3273,7 @@ export interface SolutionUpdateConfig {
3273
3273
  * <p>The automatic training configuration to use when <code>performAutoTraining</code> is true.</p>
3274
3274
  * @public
3275
3275
  */
3276
- autoTrainingConfig?: AutoTrainingConfig;
3276
+ autoTrainingConfig?: AutoTrainingConfig | undefined;
3277
3277
  }
3278
3278
  /**
3279
3279
  * <p>Provides a summary of the properties of a solution update. For a complete listing, call the
@@ -3285,33 +3285,33 @@ export interface SolutionUpdateSummary {
3285
3285
  * <p>The configuration details of the solution.</p>
3286
3286
  * @public
3287
3287
  */
3288
- solutionUpdateConfig?: SolutionUpdateConfig;
3288
+ solutionUpdateConfig?: SolutionUpdateConfig | undefined;
3289
3289
  /**
3290
3290
  * <p>The status of the solution update. A solution update can be in one of the following states:</p>
3291
3291
  * <p>CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED</p>
3292
3292
  * @public
3293
3293
  */
3294
- status?: string;
3294
+ status?: string | undefined;
3295
3295
  /**
3296
3296
  * <p>Whether the solution automatically creates solution versions.</p>
3297
3297
  * @public
3298
3298
  */
3299
- performAutoTraining?: boolean;
3299
+ performAutoTraining?: boolean | undefined;
3300
3300
  /**
3301
3301
  * <p>The date and time (in Unix format) that the solution update was created.</p>
3302
3302
  * @public
3303
3303
  */
3304
- creationDateTime?: Date;
3304
+ creationDateTime?: Date | undefined;
3305
3305
  /**
3306
3306
  * <p>The date and time (in Unix time) that the solution update was last updated.</p>
3307
3307
  * @public
3308
3308
  */
3309
- lastUpdatedDateTime?: Date;
3309
+ lastUpdatedDateTime?: Date | undefined;
3310
3310
  /**
3311
3311
  * <p>If a solution update fails, the reason behind the failure.</p>
3312
3312
  * @public
3313
3313
  */
3314
- failureReason?: string;
3314
+ failureReason?: string | undefined;
3315
3315
  }
3316
3316
  /**
3317
3317
  * @public
@@ -3335,7 +3335,7 @@ export interface SolutionVersionSummary {
3335
3335
  * <p>The Amazon Resource Name (ARN) of the solution version.</p>
3336
3336
  * @public
3337
3337
  */
3338
- solutionVersionArn?: string;
3338
+ solutionVersionArn?: string | undefined;
3339
3339
  /**
3340
3340
  * <p>The status of the solution version.</p>
3341
3341
  * <p>A solution version can be in one of the following states:</p>
@@ -3346,7 +3346,7 @@ export interface SolutionVersionSummary {
3346
3346
  * </ul>
3347
3347
  * @public
3348
3348
  */
3349
- status?: string;
3349
+ status?: string | undefined;
3350
3350
  /**
3351
3351
  * <p>The scope of training to be performed when creating the solution version. A
3352
3352
  * <code>FULL</code> training considers all of the data in your dataset group.
@@ -3356,27 +3356,27 @@ export interface SolutionVersionSummary {
3356
3356
  * </p>
3357
3357
  * @public
3358
3358
  */
3359
- trainingMode?: TrainingMode;
3359
+ trainingMode?: TrainingMode | undefined;
3360
3360
  /**
3361
3361
  * <p>Whether the solution version was created automatically or manually.</p>
3362
3362
  * @public
3363
3363
  */
3364
- trainingType?: TrainingType;
3364
+ trainingType?: TrainingType | undefined;
3365
3365
  /**
3366
3366
  * <p>The date and time (in Unix time) that this version of a solution was created.</p>
3367
3367
  * @public
3368
3368
  */
3369
- creationDateTime?: Date;
3369
+ creationDateTime?: Date | undefined;
3370
3370
  /**
3371
3371
  * <p>The date and time (in Unix time) that the solution version was last updated.</p>
3372
3372
  * @public
3373
3373
  */
3374
- lastUpdatedDateTime?: Date;
3374
+ lastUpdatedDateTime?: Date | undefined;
3375
3375
  /**
3376
3376
  * <p>If a solution version fails, the reason behind the failure.</p>
3377
3377
  * @public
3378
3378
  */
3379
- failureReason?: string;
3379
+ failureReason?: string | undefined;
3380
3380
  }
3381
3381
  /**
3382
3382
  * <important>
@@ -3397,18 +3397,18 @@ export interface Solution {
3397
3397
  * <p>The name of the solution.</p>
3398
3398
  * @public
3399
3399
  */
3400
- name?: string;
3400
+ name?: string | undefined;
3401
3401
  /**
3402
3402
  * <p>The ARN of the solution.</p>
3403
3403
  * @public
3404
3404
  */
3405
- solutionArn?: string;
3405
+ solutionArn?: string | undefined;
3406
3406
  /**
3407
3407
  * <p>Whether to perform hyperparameter optimization (HPO) on the chosen recipe. The
3408
3408
  * default is <code>false</code>.</p>
3409
3409
  * @public
3410
3410
  */
3411
- performHPO?: boolean;
3411
+ performHPO?: boolean | undefined;
3412
3412
  /**
3413
3413
  * <important>
3414
3414
  * <p>We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize
@@ -3420,42 +3420,42 @@ export interface Solution {
3420
3420
  * When false (the default), Amazon Personalize uses <code>recipeArn</code> for training.</p>
3421
3421
  * @public
3422
3422
  */
3423
- performAutoML?: boolean;
3423
+ performAutoML?: boolean | undefined;
3424
3424
  /**
3425
3425
  * <p>Specifies whether the solution automatically creates solution versions. The default is <code>True</code>
3426
3426
  * and the solution automatically creates new solution versions every 7 days.</p>
3427
3427
  * <p>For more information about auto training, see <a href="https://docs.aws.amazon.com/personalize/latest/dg/customizing-solution-config.html">Creating and configuring a solution</a>.</p>
3428
3428
  * @public
3429
3429
  */
3430
- performAutoTraining?: boolean;
3430
+ performAutoTraining?: boolean | undefined;
3431
3431
  /**
3432
3432
  * <p>The ARN of the recipe used to create the solution. This is required when
3433
3433
  * <code>performAutoML</code> is false.</p>
3434
3434
  * @public
3435
3435
  */
3436
- recipeArn?: string;
3436
+ recipeArn?: string | undefined;
3437
3437
  /**
3438
3438
  * <p>The Amazon Resource Name (ARN) of the dataset group that provides the training data.</p>
3439
3439
  * @public
3440
3440
  */
3441
- datasetGroupArn?: string;
3441
+ datasetGroupArn?: string | undefined;
3442
3442
  /**
3443
3443
  * <p>The event type (for example, 'click' or 'like') that is used for training the model.
3444
3444
  * If no <code>eventType</code> is provided, Amazon Personalize uses all interactions for training with
3445
3445
  * equal weight regardless of type.</p>
3446
3446
  * @public
3447
3447
  */
3448
- eventType?: string;
3448
+ eventType?: string | undefined;
3449
3449
  /**
3450
3450
  * <p>Describes the configuration properties for the solution.</p>
3451
3451
  * @public
3452
3452
  */
3453
- solutionConfig?: SolutionConfig;
3453
+ solutionConfig?: SolutionConfig | undefined;
3454
3454
  /**
3455
3455
  * <p>When <code>performAutoML</code> is true, specifies the best recipe found.</p>
3456
3456
  * @public
3457
3457
  */
3458
- autoMLResult?: AutoMLResult;
3458
+ autoMLResult?: AutoMLResult | undefined;
3459
3459
  /**
3460
3460
  * <p>The status of the solution.</p>
3461
3461
  * <p>A solution can be in one of the following states:</p>
@@ -3469,27 +3469,27 @@ export interface Solution {
3469
3469
  * </ul>
3470
3470
  * @public
3471
3471
  */
3472
- status?: string;
3472
+ status?: string | undefined;
3473
3473
  /**
3474
3474
  * <p>The creation date and time (in Unix time) of the solution.</p>
3475
3475
  * @public
3476
3476
  */
3477
- creationDateTime?: Date;
3477
+ creationDateTime?: Date | undefined;
3478
3478
  /**
3479
3479
  * <p>The date and time (in Unix time) that the solution was last updated.</p>
3480
3480
  * @public
3481
3481
  */
3482
- lastUpdatedDateTime?: Date;
3482
+ lastUpdatedDateTime?: Date | undefined;
3483
3483
  /**
3484
3484
  * <p>Describes the latest version of the solution, including the status and the ARN.</p>
3485
3485
  * @public
3486
3486
  */
3487
- latestSolutionVersion?: SolutionVersionSummary;
3487
+ latestSolutionVersion?: SolutionVersionSummary | undefined;
3488
3488
  /**
3489
3489
  * <p>Provides a summary of the latest updates to the solution.</p>
3490
3490
  * @public
3491
3491
  */
3492
- latestSolutionUpdate?: SolutionUpdateSummary;
3492
+ latestSolutionUpdate?: SolutionUpdateSummary | undefined;
3493
3493
  }
3494
3494
  /**
3495
3495
  * @public
@@ -3499,7 +3499,7 @@ export interface DescribeSolutionResponse {
3499
3499
  * <p>An object that describes the solution.</p>
3500
3500
  * @public
3501
3501
  */
3502
- solution?: Solution;
3502
+ solution?: Solution | undefined;
3503
3503
  }
3504
3504
  /**
3505
3505
  * @public
@@ -3521,7 +3521,7 @@ export interface TunedHPOParams {
3521
3521
  * <p>A list of the hyperparameter values of the best performing model.</p>
3522
3522
  * @public
3523
3523
  */
3524
- algorithmHyperParameters?: Record<string, string>;
3524
+ algorithmHyperParameters?: Record<string, string> | undefined;
3525
3525
  }
3526
3526
  /**
3527
3527
  * <p>An object that provides information about a specific version of a <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_Solution.html">Solution</a> in a Custom dataset group.</p>
@@ -3532,56 +3532,56 @@ export interface SolutionVersion {
3532
3532
  * <p>The name of the solution version.</p>
3533
3533
  * @public
3534
3534
  */
3535
- name?: string;
3535
+ name?: string | undefined;
3536
3536
  /**
3537
3537
  * <p>The ARN of the solution version.</p>
3538
3538
  * @public
3539
3539
  */
3540
- solutionVersionArn?: string;
3540
+ solutionVersionArn?: string | undefined;
3541
3541
  /**
3542
3542
  * <p>The ARN of the solution.</p>
3543
3543
  * @public
3544
3544
  */
3545
- solutionArn?: string;
3545
+ solutionArn?: string | undefined;
3546
3546
  /**
3547
3547
  * <p>Whether to perform hyperparameter optimization (HPO) on the chosen recipe. The default is
3548
3548
  * <code>false</code>.</p>
3549
3549
  * @public
3550
3550
  */
3551
- performHPO?: boolean;
3551
+ performHPO?: boolean | undefined;
3552
3552
  /**
3553
3553
  * <p>When true, Amazon Personalize searches for the most optimal recipe according to the solution
3554
3554
  * configuration. When false (the default), Amazon Personalize uses <code>recipeArn</code>.</p>
3555
3555
  * @public
3556
3556
  */
3557
- performAutoML?: boolean;
3557
+ performAutoML?: boolean | undefined;
3558
3558
  /**
3559
3559
  * <p>The ARN of the recipe used in the solution.</p>
3560
3560
  * @public
3561
3561
  */
3562
- recipeArn?: string;
3562
+ recipeArn?: string | undefined;
3563
3563
  /**
3564
3564
  * <p>The event type (for example, 'click' or 'like') that is used for training the
3565
3565
  * model.</p>
3566
3566
  * @public
3567
3567
  */
3568
- eventType?: string;
3568
+ eventType?: string | undefined;
3569
3569
  /**
3570
3570
  * <p>The Amazon Resource Name (ARN) of the dataset group providing the training data.</p>
3571
3571
  * @public
3572
3572
  */
3573
- datasetGroupArn?: string;
3573
+ datasetGroupArn?: string | undefined;
3574
3574
  /**
3575
3575
  * <p>Describes the configuration properties for the solution.</p>
3576
3576
  * @public
3577
3577
  */
3578
- solutionConfig?: SolutionConfig;
3578
+ solutionConfig?: SolutionConfig | undefined;
3579
3579
  /**
3580
3580
  * <p>The time used to train the model. You are billed for the time it takes to train a model.
3581
3581
  * This field is visible only after Amazon Personalize successfully trains a model.</p>
3582
3582
  * @public
3583
3583
  */
3584
- trainingHours?: number;
3584
+ trainingHours?: number | undefined;
3585
3585
  /**
3586
3586
  * <p>The scope of training to be performed when creating the solution version. A
3587
3587
  * <code>FULL</code> training considers all of the data in your dataset group.
@@ -3591,13 +3591,13 @@ export interface SolutionVersion {
3591
3591
  * </p>
3592
3592
  * @public
3593
3593
  */
3594
- trainingMode?: TrainingMode;
3594
+ trainingMode?: TrainingMode | undefined;
3595
3595
  /**
3596
3596
  * <p>If hyperparameter optimization was performed, contains the hyperparameter values of the
3597
3597
  * best performing model.</p>
3598
3598
  * @public
3599
3599
  */
3600
- tunedHPOParams?: TunedHPOParams;
3600
+ tunedHPOParams?: TunedHPOParams | undefined;
3601
3601
  /**
3602
3602
  * <p>The status of the solution version.</p>
3603
3603
  * <p>A solution version can be in one of the following states:</p>
@@ -3623,31 +3623,31 @@ export interface SolutionVersion {
3623
3623
  * </ul>
3624
3624
  * @public
3625
3625
  */
3626
- status?: string;
3626
+ status?: string | undefined;
3627
3627
  /**
3628
3628
  * <p>If training a solution version fails, the reason for the failure.</p>
3629
3629
  * @public
3630
3630
  */
3631
- failureReason?: string;
3631
+ failureReason?: string | undefined;
3632
3632
  /**
3633
3633
  * <p>The date and
3634
3634
  * time
3635
3635
  * (in Unix time) that this version of the solution was created.</p>
3636
3636
  * @public
3637
3637
  */
3638
- creationDateTime?: Date;
3638
+ creationDateTime?: Date | undefined;
3639
3639
  /**
3640
3640
  * <p>The date and time (in
3641
3641
  * Unix
3642
3642
  * time) that the solution was last updated.</p>
3643
3643
  * @public
3644
3644
  */
3645
- lastUpdatedDateTime?: Date;
3645
+ lastUpdatedDateTime?: Date | undefined;
3646
3646
  /**
3647
3647
  * <p>Whether the solution version was created automatically or manually.</p>
3648
3648
  * @public
3649
3649
  */
3650
- trainingType?: TrainingType;
3650
+ trainingType?: TrainingType | undefined;
3651
3651
  }
3652
3652
  /**
3653
3653
  * @public
@@ -3657,7 +3657,7 @@ export interface DescribeSolutionVersionResponse {
3657
3657
  * <p>The solution version.</p>
3658
3658
  * @public
3659
3659
  */
3660
- solutionVersion?: SolutionVersion;
3660
+ solutionVersion?: SolutionVersion | undefined;
3661
3661
  }
3662
3662
  /**
3663
3663
  * @public
@@ -3677,7 +3677,7 @@ export interface GetSolutionMetricsResponse {
3677
3677
  * <p>The same solution version ARN as specified in the request.</p>
3678
3678
  * @public
3679
3679
  */
3680
- solutionVersionArn?: string;
3680
+ solutionVersionArn?: string | undefined;
3681
3681
  /**
3682
3682
  * <p>The metrics for the solution version. For more information, see
3683
3683
  * <a href="https://docs.aws.amazon.com/personalize/latest/dg/working-with-training-metrics.html">
@@ -3685,7 +3685,7 @@ export interface GetSolutionMetricsResponse {
3685
3685
  * </a>.</p>
3686
3686
  * @public
3687
3687
  */
3688
- metrics?: Record<string, number>;
3688
+ metrics?: Record<string, number> | undefined;
3689
3689
  }
3690
3690
  /**
3691
3691
  * <p>The token is not valid.</p>
@@ -3708,18 +3708,18 @@ export interface ListBatchInferenceJobsRequest {
3708
3708
  * were created.</p>
3709
3709
  * @public
3710
3710
  */
3711
- solutionVersionArn?: string;
3711
+ solutionVersionArn?: string | undefined;
3712
3712
  /**
3713
3713
  * <p>The token to request the next page of results.</p>
3714
3714
  * @public
3715
3715
  */
3716
- nextToken?: string;
3716
+ nextToken?: string | undefined;
3717
3717
  /**
3718
3718
  * <p>The maximum number of batch inference job results to return in each page. The default
3719
3719
  * value is 100.</p>
3720
3720
  * @public
3721
3721
  */
3722
- maxResults?: number;
3722
+ maxResults?: number | undefined;
3723
3723
  }
3724
3724
  /**
3725
3725
  * <p>A truncated version of the <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_BatchInferenceJob.html">BatchInferenceJob</a>. The
@@ -3732,12 +3732,12 @@ export interface BatchInferenceJobSummary {
3732
3732
  * <p>The Amazon Resource Name (ARN) of the batch inference job.</p>
3733
3733
  * @public
3734
3734
  */
3735
- batchInferenceJobArn?: string;
3735
+ batchInferenceJobArn?: string | undefined;
3736
3736
  /**
3737
3737
  * <p>The name of the batch inference job.</p>
3738
3738
  * @public
3739
3739
  */
3740
- jobName?: string;
3740
+ jobName?: string | undefined;
3741
3741
  /**
3742
3742
  * <p>The status of the batch inference job. The status is one of the following values:</p>
3743
3743
  * <ul>
@@ -3756,32 +3756,32 @@ export interface BatchInferenceJobSummary {
3756
3756
  * </ul>
3757
3757
  * @public
3758
3758
  */
3759
- status?: string;
3759
+ status?: string | undefined;
3760
3760
  /**
3761
3761
  * <p>The time at which the batch inference job was created.</p>
3762
3762
  * @public
3763
3763
  */
3764
- creationDateTime?: Date;
3764
+ creationDateTime?: Date | undefined;
3765
3765
  /**
3766
3766
  * <p>The time at which the batch inference job was last updated.</p>
3767
3767
  * @public
3768
3768
  */
3769
- lastUpdatedDateTime?: Date;
3769
+ lastUpdatedDateTime?: Date | undefined;
3770
3770
  /**
3771
3771
  * <p>If the batch inference job failed, the reason for the failure.</p>
3772
3772
  * @public
3773
3773
  */
3774
- failureReason?: string;
3774
+ failureReason?: string | undefined;
3775
3775
  /**
3776
3776
  * <p>The ARN of the solution version used by the batch inference job.</p>
3777
3777
  * @public
3778
3778
  */
3779
- solutionVersionArn?: string;
3779
+ solutionVersionArn?: string | undefined;
3780
3780
  /**
3781
3781
  * <p>The job's mode.</p>
3782
3782
  * @public
3783
3783
  */
3784
- batchInferenceJobMode?: BatchInferenceJobMode;
3784
+ batchInferenceJobMode?: BatchInferenceJobMode | undefined;
3785
3785
  }
3786
3786
  /**
3787
3787
  * @public
@@ -3791,13 +3791,13 @@ export interface ListBatchInferenceJobsResponse {
3791
3791
  * <p>A list containing information on each job that is returned.</p>
3792
3792
  * @public
3793
3793
  */
3794
- batchInferenceJobs?: BatchInferenceJobSummary[];
3794
+ batchInferenceJobs?: BatchInferenceJobSummary[] | undefined;
3795
3795
  /**
3796
3796
  * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when
3797
3797
  * there are no more results to return.</p>
3798
3798
  * @public
3799
3799
  */
3800
- nextToken?: string;
3800
+ nextToken?: string | undefined;
3801
3801
  }
3802
3802
  /**
3803
3803
  * @public
@@ -3807,18 +3807,18 @@ export interface ListBatchSegmentJobsRequest {
3807
3807
  * <p>The Amazon Resource Name (ARN) of the solution version that the batch segment jobs used to generate batch segments.</p>
3808
3808
  * @public
3809
3809
  */
3810
- solutionVersionArn?: string;
3810
+ solutionVersionArn?: string | undefined;
3811
3811
  /**
3812
3812
  * <p>The token to request the next page of results.</p>
3813
3813
  * @public
3814
3814
  */
3815
- nextToken?: string;
3815
+ nextToken?: string | undefined;
3816
3816
  /**
3817
3817
  * <p>The maximum number of batch segment job results to return in each page. The default
3818
3818
  * value is 100.</p>
3819
3819
  * @public
3820
3820
  */
3821
- maxResults?: number;
3821
+ maxResults?: number | undefined;
3822
3822
  }
3823
3823
  /**
3824
3824
  * <p>A truncated version of the <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_BatchSegmentJob.html">BatchSegmentJob</a> datatype.
@@ -3831,12 +3831,12 @@ export interface BatchSegmentJobSummary {
3831
3831
  * <p>The Amazon Resource Name (ARN) of the batch segment job.</p>
3832
3832
  * @public
3833
3833
  */
3834
- batchSegmentJobArn?: string;
3834
+ batchSegmentJobArn?: string | undefined;
3835
3835
  /**
3836
3836
  * <p>The name of the batch segment job.</p>
3837
3837
  * @public
3838
3838
  */
3839
- jobName?: string;
3839
+ jobName?: string | undefined;
3840
3840
  /**
3841
3841
  * <p>The status of the batch segment job. The status is one of the following values:</p>
3842
3842
  * <ul>
@@ -3855,27 +3855,27 @@ export interface BatchSegmentJobSummary {
3855
3855
  * </ul>
3856
3856
  * @public
3857
3857
  */
3858
- status?: string;
3858
+ status?: string | undefined;
3859
3859
  /**
3860
3860
  * <p>The time at which the batch segment job was created.</p>
3861
3861
  * @public
3862
3862
  */
3863
- creationDateTime?: Date;
3863
+ creationDateTime?: Date | undefined;
3864
3864
  /**
3865
3865
  * <p>The time at which the batch segment job was last updated.</p>
3866
3866
  * @public
3867
3867
  */
3868
- lastUpdatedDateTime?: Date;
3868
+ lastUpdatedDateTime?: Date | undefined;
3869
3869
  /**
3870
3870
  * <p>If the batch segment job failed, the reason for the failure.</p>
3871
3871
  * @public
3872
3872
  */
3873
- failureReason?: string;
3873
+ failureReason?: string | undefined;
3874
3874
  /**
3875
3875
  * <p>The Amazon Resource Name (ARN) of the solution version used by the batch segment job to generate batch segments.</p>
3876
3876
  * @public
3877
3877
  */
3878
- solutionVersionArn?: string;
3878
+ solutionVersionArn?: string | undefined;
3879
3879
  }
3880
3880
  /**
3881
3881
  * @public
@@ -3885,13 +3885,13 @@ export interface ListBatchSegmentJobsResponse {
3885
3885
  * <p>A list containing information on each job that is returned.</p>
3886
3886
  * @public
3887
3887
  */
3888
- batchSegmentJobs?: BatchSegmentJobSummary[];
3888
+ batchSegmentJobs?: BatchSegmentJobSummary[] | undefined;
3889
3889
  /**
3890
3890
  * <p>The token to use to retrieve the next page of results. The value is <code>null</code> when
3891
3891
  * there are no more results to return.</p>
3892
3892
  * @public
3893
3893
  */
3894
- nextToken?: string;
3894
+ nextToken?: string | undefined;
3895
3895
  }
3896
3896
  /**
3897
3897
  * @public
@@ -3902,18 +3902,18 @@ export interface ListCampaignsRequest {
3902
3902
  * a solution is not specified, all the campaigns associated with the account are listed.</p>
3903
3903
  * @public
3904
3904
  */
3905
- solutionArn?: string;
3905
+ solutionArn?: string | undefined;
3906
3906
  /**
3907
3907
  * <p>A token returned from the previous call to <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_ListCampaigns.html">ListCampaigns</a> for getting
3908
3908
  * the next set of campaigns (if they exist).</p>
3909
3909
  * @public
3910
3910
  */
3911
- nextToken?: string;
3911
+ nextToken?: string | undefined;
3912
3912
  /**
3913
3913
  * <p>The maximum number of campaigns to return.</p>
3914
3914
  * @public
3915
3915
  */
3916
- maxResults?: number;
3916
+ maxResults?: number | undefined;
3917
3917
  }
3918
3918
  /**
3919
3919
  * <p>Provides a summary of the properties of a campaign. For a complete listing, call the
@@ -3925,12 +3925,12 @@ export interface CampaignSummary {
3925
3925
  * <p>The name of the campaign.</p>
3926
3926
  * @public
3927
3927
  */
3928
- name?: string;
3928
+ name?: string | undefined;
3929
3929
  /**
3930
3930
  * <p>The Amazon Resource Name (ARN) of the campaign.</p>
3931
3931
  * @public
3932
3932
  */
3933
- campaignArn?: string;
3933
+ campaignArn?: string | undefined;
3934
3934
  /**
3935
3935
  * <p>The status of the campaign.</p>
3936
3936
  * <p>A campaign can be in one of the following states:</p>
@@ -3944,22 +3944,22 @@ export interface CampaignSummary {
3944
3944
  * </ul>
3945
3945
  * @public
3946
3946
  */
3947
- status?: string;
3947
+ status?: string | undefined;
3948
3948
  /**
3949
3949
  * <p>The date and time (in Unix time) that the campaign was created.</p>
3950
3950
  * @public
3951
3951
  */
3952
- creationDateTime?: Date;
3952
+ creationDateTime?: Date | undefined;
3953
3953
  /**
3954
3954
  * <p>The date and time (in Unix time) that the campaign was last updated.</p>
3955
3955
  * @public
3956
3956
  */
3957
- lastUpdatedDateTime?: Date;
3957
+ lastUpdatedDateTime?: Date | undefined;
3958
3958
  /**
3959
3959
  * <p>If a campaign fails, the reason behind the failure.</p>
3960
3960
  * @public
3961
3961
  */
3962
- failureReason?: string;
3962
+ failureReason?: string | undefined;
3963
3963
  }
3964
3964
  /**
3965
3965
  * @public
@@ -3969,12 +3969,12 @@ export interface ListCampaignsResponse {
3969
3969
  * <p>A list of the campaigns.</p>
3970
3970
  * @public
3971
3971
  */
3972
- campaigns?: CampaignSummary[];
3972
+ campaigns?: CampaignSummary[] | undefined;
3973
3973
  /**
3974
3974
  * <p>A token for getting the next set of campaigns (if they exist).</p>
3975
3975
  * @public
3976
3976
  */
3977
- nextToken?: string;
3977
+ nextToken?: string | undefined;
3978
3978
  }
3979
3979
  /**
3980
3980
  * @public
@@ -3984,18 +3984,18 @@ export interface ListDataDeletionJobsRequest {
3984
3984
  * <p>The Amazon Resource Name (ARN) of the dataset group to list data deletion jobs for.</p>
3985
3985
  * @public
3986
3986
  */
3987
- datasetGroupArn?: string;
3987
+ datasetGroupArn?: string | undefined;
3988
3988
  /**
3989
3989
  * <p>A token returned from the previous call to
3990
3990
  * <code>ListDataDeletionJobs</code> for getting the next set of jobs (if they exist).</p>
3991
3991
  * @public
3992
3992
  */
3993
- nextToken?: string;
3993
+ nextToken?: string | undefined;
3994
3994
  /**
3995
3995
  * <p>The maximum number of data deletion jobs to return.</p>
3996
3996
  * @public
3997
3997
  */
3998
- maxResults?: number;
3998
+ maxResults?: number | undefined;
3999
3999
  }
4000
4000
  /**
4001
4001
  * <p>Provides a summary of the properties of a data deletion job. For a complete listing, call the <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeDataDeletionJob.html">DescribeDataDeletionJob</a>
@@ -4007,17 +4007,17 @@ export interface DataDeletionJobSummary {
4007
4007
  * <p>The Amazon Resource Name (ARN) of the data deletion job.</p>
4008
4008
  * @public
4009
4009
  */
4010
- dataDeletionJobArn?: string;
4010
+ dataDeletionJobArn?: string | undefined;
4011
4011
  /**
4012
4012
  * <p>The Amazon Resource Name (ARN) of the dataset group the job deleted records from.</p>
4013
4013
  * @public
4014
4014
  */
4015
- datasetGroupArn?: string;
4015
+ datasetGroupArn?: string | undefined;
4016
4016
  /**
4017
4017
  * <p>The name of the data deletion job.</p>
4018
4018
  * @public
4019
4019
  */
4020
- jobName?: string;
4020
+ jobName?: string | undefined;
4021
4021
  /**
4022
4022
  * <p>The status of the data deletion job.</p>
4023
4023
  * <p>A data deletion job can have one of the following statuses:</p>
@@ -4028,23 +4028,23 @@ export interface DataDeletionJobSummary {
4028
4028
  * </ul>
4029
4029
  * @public
4030
4030
  */
4031
- status?: string;
4031
+ status?: string | undefined;
4032
4032
  /**
4033
4033
  * <p>The creation date and time (in Unix time) of the data deletion
4034
4034
  * job.</p>
4035
4035
  * @public
4036
4036
  */
4037
- creationDateTime?: Date;
4037
+ creationDateTime?: Date | undefined;
4038
4038
  /**
4039
4039
  * <p>The date and time (in Unix time) the data deletion job was last updated.</p>
4040
4040
  * @public
4041
4041
  */
4042
- lastUpdatedDateTime?: Date;
4042
+ lastUpdatedDateTime?: Date | undefined;
4043
4043
  /**
4044
4044
  * <p>If a data deletion job fails, provides the reason why.</p>
4045
4045
  * @public
4046
4046
  */
4047
- failureReason?: string;
4047
+ failureReason?: string | undefined;
4048
4048
  }
4049
4049
  /**
4050
4050
  * @public
@@ -4054,13 +4054,13 @@ export interface ListDataDeletionJobsResponse {
4054
4054
  * <p>The list of data deletion jobs.</p>
4055
4055
  * @public
4056
4056
  */
4057
- dataDeletionJobs?: DataDeletionJobSummary[];
4057
+ dataDeletionJobs?: DataDeletionJobSummary[] | undefined;
4058
4058
  /**
4059
4059
  * <p>A token for getting the next set of data deletion jobs (if they
4060
4060
  * exist).</p>
4061
4061
  * @public
4062
4062
  */
4063
- nextToken?: string;
4063
+ nextToken?: string | undefined;
4064
4064
  }
4065
4065
  /**
4066
4066
  * @public
@@ -4071,19 +4071,19 @@ export interface ListDatasetExportJobsRequest {
4071
4071
  * export jobs for.</p>
4072
4072
  * @public
4073
4073
  */
4074
- datasetArn?: string;
4074
+ datasetArn?: string | undefined;
4075
4075
  /**
4076
4076
  * <p>A token returned from the previous call to
4077
4077
  * <code>ListDatasetExportJobs</code> for getting the next set of dataset
4078
4078
  * export jobs (if they exist).</p>
4079
4079
  * @public
4080
4080
  */
4081
- nextToken?: string;
4081
+ nextToken?: string | undefined;
4082
4082
  /**
4083
4083
  * <p>The maximum number of dataset export jobs to return.</p>
4084
4084
  * @public
4085
4085
  */
4086
- maxResults?: number;
4086
+ maxResults?: number | undefined;
4087
4087
  }
4088
4088
  /**
4089
4089
  * <p>Provides a summary of the properties of a dataset export job. For a complete listing, call the
@@ -4095,12 +4095,12 @@ export interface DatasetExportJobSummary {
4095
4095
  * <p>The Amazon Resource Name (ARN) of the dataset export job.</p>
4096
4096
  * @public
4097
4097
  */
4098
- datasetExportJobArn?: string;
4098
+ datasetExportJobArn?: string | undefined;
4099
4099
  /**
4100
4100
  * <p>The name of the dataset export job.</p>
4101
4101
  * @public
4102
4102
  */
4103
- jobName?: string;
4103
+ jobName?: string | undefined;
4104
4104
  /**
4105
4105
  * <p>The status of the dataset export job.</p>
4106
4106
  * <p>A dataset export job can be in one of the following states:</p>
@@ -4111,22 +4111,22 @@ export interface DatasetExportJobSummary {
4111
4111
  * </ul>
4112
4112
  * @public
4113
4113
  */
4114
- status?: string;
4114
+ status?: string | undefined;
4115
4115
  /**
4116
4116
  * <p>The date and time (in Unix time) that the dataset export job was created.</p>
4117
4117
  * @public
4118
4118
  */
4119
- creationDateTime?: Date;
4119
+ creationDateTime?: Date | undefined;
4120
4120
  /**
4121
4121
  * <p>The date and time (in Unix time) that the dataset export job status was last updated.</p>
4122
4122
  * @public
4123
4123
  */
4124
- lastUpdatedDateTime?: Date;
4124
+ lastUpdatedDateTime?: Date | undefined;
4125
4125
  /**
4126
4126
  * <p>If a dataset export job fails, the reason behind the failure.</p>
4127
4127
  * @public
4128
4128
  */
4129
- failureReason?: string;
4129
+ failureReason?: string | undefined;
4130
4130
  }
4131
4131
  /**
4132
4132
  * @public
@@ -4136,13 +4136,13 @@ export interface ListDatasetExportJobsResponse {
4136
4136
  * <p>The list of dataset export jobs.</p>
4137
4137
  * @public
4138
4138
  */
4139
- datasetExportJobs?: DatasetExportJobSummary[];
4139
+ datasetExportJobs?: DatasetExportJobSummary[] | undefined;
4140
4140
  /**
4141
4141
  * <p>A token for getting the next set of dataset export jobs (if they
4142
4142
  * exist).</p>
4143
4143
  * @public
4144
4144
  */
4145
- nextToken?: string;
4145
+ nextToken?: string | undefined;
4146
4146
  }
4147
4147
  /**
4148
4148
  * @public
@@ -4154,12 +4154,12 @@ export interface ListDatasetGroupsRequest {
4154
4154
  * groups (if they exist).</p>
4155
4155
  * @public
4156
4156
  */
4157
- nextToken?: string;
4157
+ nextToken?: string | undefined;
4158
4158
  /**
4159
4159
  * <p>The maximum number of dataset groups to return.</p>
4160
4160
  * @public
4161
4161
  */
4162
- maxResults?: number;
4162
+ maxResults?: number | undefined;
4163
4163
  }
4164
4164
  /**
4165
4165
  * <p>Provides a summary of the properties of a dataset group. For a complete listing, call the
@@ -4171,12 +4171,12 @@ export interface DatasetGroupSummary {
4171
4171
  * <p>The name of the dataset group.</p>
4172
4172
  * @public
4173
4173
  */
4174
- name?: string;
4174
+ name?: string | undefined;
4175
4175
  /**
4176
4176
  * <p>The Amazon Resource Name (ARN) of the dataset group.</p>
4177
4177
  * @public
4178
4178
  */
4179
- datasetGroupArn?: string;
4179
+ datasetGroupArn?: string | undefined;
4180
4180
  /**
4181
4181
  * <p>The status of the dataset group.</p>
4182
4182
  * <p>A dataset group can be in one of the following states:</p>
@@ -4190,27 +4190,27 @@ export interface DatasetGroupSummary {
4190
4190
  * </ul>
4191
4191
  * @public
4192
4192
  */
4193
- status?: string;
4193
+ status?: string | undefined;
4194
4194
  /**
4195
4195
  * <p>The date and time (in Unix time) that the dataset group was created.</p>
4196
4196
  * @public
4197
4197
  */
4198
- creationDateTime?: Date;
4198
+ creationDateTime?: Date | undefined;
4199
4199
  /**
4200
4200
  * <p>The date and time (in Unix time) that the dataset group was last updated.</p>
4201
4201
  * @public
4202
4202
  */
4203
- lastUpdatedDateTime?: Date;
4203
+ lastUpdatedDateTime?: Date | undefined;
4204
4204
  /**
4205
4205
  * <p>If creating a dataset group fails, the reason behind the failure.</p>
4206
4206
  * @public
4207
4207
  */
4208
- failureReason?: string;
4208
+ failureReason?: string | undefined;
4209
4209
  /**
4210
4210
  * <p>The domain of a Domain dataset group.</p>
4211
4211
  * @public
4212
4212
  */
4213
- domain?: Domain;
4213
+ domain?: Domain | undefined;
4214
4214
  }
4215
4215
  /**
4216
4216
  * @public
@@ -4220,13 +4220,13 @@ export interface ListDatasetGroupsResponse {
4220
4220
  * <p>The list of your dataset groups.</p>
4221
4221
  * @public
4222
4222
  */
4223
- datasetGroups?: DatasetGroupSummary[];
4223
+ datasetGroups?: DatasetGroupSummary[] | undefined;
4224
4224
  /**
4225
4225
  * <p>A token for getting the next set of dataset groups (if they
4226
4226
  * exist).</p>
4227
4227
  * @public
4228
4228
  */
4229
- nextToken?: string;
4229
+ nextToken?: string | undefined;
4230
4230
  }
4231
4231
  /**
4232
4232
  * @public
@@ -4237,19 +4237,19 @@ export interface ListDatasetImportJobsRequest {
4237
4237
  * import jobs for.</p>
4238
4238
  * @public
4239
4239
  */
4240
- datasetArn?: string;
4240
+ datasetArn?: string | undefined;
4241
4241
  /**
4242
4242
  * <p>A token returned from the previous call to
4243
4243
  * <code>ListDatasetImportJobs</code> for getting the next set of dataset
4244
4244
  * import jobs (if they exist).</p>
4245
4245
  * @public
4246
4246
  */
4247
- nextToken?: string;
4247
+ nextToken?: string | undefined;
4248
4248
  /**
4249
4249
  * <p>The maximum number of dataset import jobs to return.</p>
4250
4250
  * @public
4251
4251
  */
4252
- maxResults?: number;
4252
+ maxResults?: number | undefined;
4253
4253
  }
4254
4254
  /**
4255
4255
  * <p>Provides a summary of the properties of a dataset import job. For a complete listing, call the
@@ -4261,12 +4261,12 @@ export interface DatasetImportJobSummary {
4261
4261
  * <p>The Amazon Resource Name (ARN) of the dataset import job.</p>
4262
4262
  * @public
4263
4263
  */
4264
- datasetImportJobArn?: string;
4264
+ datasetImportJobArn?: string | undefined;
4265
4265
  /**
4266
4266
  * <p>The name of the dataset import job.</p>
4267
4267
  * @public
4268
4268
  */
4269
- jobName?: string;
4269
+ jobName?: string | undefined;
4270
4270
  /**
4271
4271
  * <p>The status of the dataset import job.</p>
4272
4272
  * <p>A dataset import job can be in one of the following states:</p>
@@ -4277,22 +4277,22 @@ export interface DatasetImportJobSummary {
4277
4277
  * </ul>
4278
4278
  * @public
4279
4279
  */
4280
- status?: string;
4280
+ status?: string | undefined;
4281
4281
  /**
4282
4282
  * <p>The date and time (in Unix time) that the dataset import job was created.</p>
4283
4283
  * @public
4284
4284
  */
4285
- creationDateTime?: Date;
4285
+ creationDateTime?: Date | undefined;
4286
4286
  /**
4287
4287
  * <p>The date and time (in Unix time) that the dataset import job status was last updated.</p>
4288
4288
  * @public
4289
4289
  */
4290
- lastUpdatedDateTime?: Date;
4290
+ lastUpdatedDateTime?: Date | undefined;
4291
4291
  /**
4292
4292
  * <p>If a dataset import job fails, the reason behind the failure.</p>
4293
4293
  * @public
4294
4294
  */
4295
- failureReason?: string;
4295
+ failureReason?: string | undefined;
4296
4296
  /**
4297
4297
  * <p>The import mode the dataset import job used to update the data in the dataset.
4298
4298
  * For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/updating-existing-bulk-data.html">Updating existing bulk
@@ -4300,7 +4300,7 @@ export interface DatasetImportJobSummary {
4300
4300
  * </p>
4301
4301
  * @public
4302
4302
  */
4303
- importMode?: ImportMode;
4303
+ importMode?: ImportMode | undefined;
4304
4304
  }
4305
4305
  /**
4306
4306
  * @public
@@ -4310,13 +4310,13 @@ export interface ListDatasetImportJobsResponse {
4310
4310
  * <p>The list of dataset import jobs.</p>
4311
4311
  * @public
4312
4312
  */
4313
- datasetImportJobs?: DatasetImportJobSummary[];
4313
+ datasetImportJobs?: DatasetImportJobSummary[] | undefined;
4314
4314
  /**
4315
4315
  * <p>A token for getting the next set of dataset import jobs (if they
4316
4316
  * exist).</p>
4317
4317
  * @public
4318
4318
  */
4319
- nextToken?: string;
4319
+ nextToken?: string | undefined;
4320
4320
  }
4321
4321
  /**
4322
4322
  * @public
@@ -4327,19 +4327,19 @@ export interface ListDatasetsRequest {
4327
4327
  * datasets to list.</p>
4328
4328
  * @public
4329
4329
  */
4330
- datasetGroupArn?: string;
4330
+ datasetGroupArn?: string | undefined;
4331
4331
  /**
4332
4332
  * <p>A token returned from the previous call to
4333
4333
  * <code>ListDatasets</code> for getting the next set of dataset
4334
4334
  * import jobs (if they exist).</p>
4335
4335
  * @public
4336
4336
  */
4337
- nextToken?: string;
4337
+ nextToken?: string | undefined;
4338
4338
  /**
4339
4339
  * <p>The maximum number of datasets to return.</p>
4340
4340
  * @public
4341
4341
  */
4342
- maxResults?: number;
4342
+ maxResults?: number | undefined;
4343
4343
  }
4344
4344
  /**
4345
4345
  * <p>Provides a summary of the properties of a dataset. For a complete listing, call the
@@ -4351,12 +4351,12 @@ export interface DatasetSummary {
4351
4351
  * <p>The name of the dataset.</p>
4352
4352
  * @public
4353
4353
  */
4354
- name?: string;
4354
+ name?: string | undefined;
4355
4355
  /**
4356
4356
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
4357
4357
  * @public
4358
4358
  */
4359
- datasetArn?: string;
4359
+ datasetArn?: string | undefined;
4360
4360
  /**
4361
4361
  * <p>The dataset type. One of the following values:</p>
4362
4362
  * <ul>
@@ -4375,7 +4375,7 @@ export interface DatasetSummary {
4375
4375
  * </ul>
4376
4376
  * @public
4377
4377
  */
4378
- datasetType?: string;
4378
+ datasetType?: string | undefined;
4379
4379
  /**
4380
4380
  * <p>The status of the dataset.</p>
4381
4381
  * <p>A dataset can be in one of the following states:</p>
@@ -4389,17 +4389,17 @@ export interface DatasetSummary {
4389
4389
  * </ul>
4390
4390
  * @public
4391
4391
  */
4392
- status?: string;
4392
+ status?: string | undefined;
4393
4393
  /**
4394
4394
  * <p>The date and time (in Unix time) that the dataset was created.</p>
4395
4395
  * @public
4396
4396
  */
4397
- creationDateTime?: Date;
4397
+ creationDateTime?: Date | undefined;
4398
4398
  /**
4399
4399
  * <p>The date and time (in Unix time) that the dataset was last updated.</p>
4400
4400
  * @public
4401
4401
  */
4402
- lastUpdatedDateTime?: Date;
4402
+ lastUpdatedDateTime?: Date | undefined;
4403
4403
  }
4404
4404
  /**
4405
4405
  * @public
@@ -4410,12 +4410,12 @@ export interface ListDatasetsResponse {
4410
4410
  * metadata information.</p>
4411
4411
  * @public
4412
4412
  */
4413
- datasets?: DatasetSummary[];
4413
+ datasets?: DatasetSummary[] | undefined;
4414
4414
  /**
4415
4415
  * <p>A token for getting the next set of datasets (if they exist).</p>
4416
4416
  * @public
4417
4417
  */
4418
- nextToken?: string;
4418
+ nextToken?: string | undefined;
4419
4419
  }
4420
4420
  /**
4421
4421
  * @public
@@ -4425,18 +4425,18 @@ export interface ListEventTrackersRequest {
4425
4425
  * <p>The ARN of a dataset group used to filter the response.</p>
4426
4426
  * @public
4427
4427
  */
4428
- datasetGroupArn?: string;
4428
+ datasetGroupArn?: string | undefined;
4429
4429
  /**
4430
4430
  * <p>A token returned from the previous call to <code>ListEventTrackers</code> for getting
4431
4431
  * the next set of event trackers (if they exist).</p>
4432
4432
  * @public
4433
4433
  */
4434
- nextToken?: string;
4434
+ nextToken?: string | undefined;
4435
4435
  /**
4436
4436
  * <p>The maximum number of event trackers to return.</p>
4437
4437
  * @public
4438
4438
  */
4439
- maxResults?: number;
4439
+ maxResults?: number | undefined;
4440
4440
  }
4441
4441
  /**
4442
4442
  * <p>Provides a summary of the properties of an event tracker. For a complete listing, call the
@@ -4448,12 +4448,12 @@ export interface EventTrackerSummary {
4448
4448
  * <p>The name of the event tracker.</p>
4449
4449
  * @public
4450
4450
  */
4451
- name?: string;
4451
+ name?: string | undefined;
4452
4452
  /**
4453
4453
  * <p>The Amazon Resource Name (ARN) of the event tracker.</p>
4454
4454
  * @public
4455
4455
  */
4456
- eventTrackerArn?: string;
4456
+ eventTrackerArn?: string | undefined;
4457
4457
  /**
4458
4458
  * <p>The status of the event tracker.</p>
4459
4459
  * <p>An event tracker can be in one of the following states:</p>
@@ -4467,17 +4467,17 @@ export interface EventTrackerSummary {
4467
4467
  * </ul>
4468
4468
  * @public
4469
4469
  */
4470
- status?: string;
4470
+ status?: string | undefined;
4471
4471
  /**
4472
4472
  * <p>The date and time (in Unix time) that the event tracker was created.</p>
4473
4473
  * @public
4474
4474
  */
4475
- creationDateTime?: Date;
4475
+ creationDateTime?: Date | undefined;
4476
4476
  /**
4477
4477
  * <p>The date and time (in Unix time) that the event tracker was last updated.</p>
4478
4478
  * @public
4479
4479
  */
4480
- lastUpdatedDateTime?: Date;
4480
+ lastUpdatedDateTime?: Date | undefined;
4481
4481
  }
4482
4482
  /**
4483
4483
  * @public
@@ -4487,12 +4487,12 @@ export interface ListEventTrackersResponse {
4487
4487
  * <p>A list of event trackers.</p>
4488
4488
  * @public
4489
4489
  */
4490
- eventTrackers?: EventTrackerSummary[];
4490
+ eventTrackers?: EventTrackerSummary[] | undefined;
4491
4491
  /**
4492
4492
  * <p>A token for getting the next set of event trackers (if they exist).</p>
4493
4493
  * @public
4494
4494
  */
4495
- nextToken?: string;
4495
+ nextToken?: string | undefined;
4496
4496
  }
4497
4497
  /**
4498
4498
  * @public
@@ -4502,18 +4502,18 @@ export interface ListFiltersRequest {
4502
4502
  * <p>The ARN of the dataset group that contains the filters.</p>
4503
4503
  * @public
4504
4504
  */
4505
- datasetGroupArn?: string;
4505
+ datasetGroupArn?: string | undefined;
4506
4506
  /**
4507
4507
  * <p>A token returned from the previous call to <code>ListFilters</code> for getting the
4508
4508
  * next set of filters (if they exist).</p>
4509
4509
  * @public
4510
4510
  */
4511
- nextToken?: string;
4511
+ nextToken?: string | undefined;
4512
4512
  /**
4513
4513
  * <p>The maximum number of filters to return.</p>
4514
4514
  * @public
4515
4515
  */
4516
- maxResults?: number;
4516
+ maxResults?: number | undefined;
4517
4517
  }
4518
4518
  /**
4519
4519
  * <p>A short summary of a filter's attributes.</p>
@@ -4524,37 +4524,37 @@ export interface FilterSummary {
4524
4524
  * <p>The name of the filter.</p>
4525
4525
  * @public
4526
4526
  */
4527
- name?: string;
4527
+ name?: string | undefined;
4528
4528
  /**
4529
4529
  * <p>The ARN of the filter.</p>
4530
4530
  * @public
4531
4531
  */
4532
- filterArn?: string;
4532
+ filterArn?: string | undefined;
4533
4533
  /**
4534
4534
  * <p>The time at which the filter was created.</p>
4535
4535
  * @public
4536
4536
  */
4537
- creationDateTime?: Date;
4537
+ creationDateTime?: Date | undefined;
4538
4538
  /**
4539
4539
  * <p>The time at which the filter was last updated.</p>
4540
4540
  * @public
4541
4541
  */
4542
- lastUpdatedDateTime?: Date;
4542
+ lastUpdatedDateTime?: Date | undefined;
4543
4543
  /**
4544
4544
  * <p>The ARN of the dataset group to which the filter belongs.</p>
4545
4545
  * @public
4546
4546
  */
4547
- datasetGroupArn?: string;
4547
+ datasetGroupArn?: string | undefined;
4548
4548
  /**
4549
4549
  * <p>If the filter failed, the reason for the failure.</p>
4550
4550
  * @public
4551
4551
  */
4552
- failureReason?: string;
4552
+ failureReason?: string | undefined;
4553
4553
  /**
4554
4554
  * <p>The status of the filter.</p>
4555
4555
  * @public
4556
4556
  */
4557
- status?: string;
4557
+ status?: string | undefined;
4558
4558
  }
4559
4559
  /**
4560
4560
  * @public
@@ -4564,12 +4564,12 @@ export interface ListFiltersResponse {
4564
4564
  * <p>A list of returned filters.</p>
4565
4565
  * @public
4566
4566
  */
4567
- Filters?: FilterSummary[];
4567
+ Filters?: FilterSummary[] | undefined;
4568
4568
  /**
4569
4569
  * <p>A token for getting the next set of filters (if they exist).</p>
4570
4570
  * @public
4571
4571
  */
4572
- nextToken?: string;
4572
+ nextToken?: string | undefined;
4573
4573
  }
4574
4574
  /**
4575
4575
  * @public
@@ -4579,17 +4579,17 @@ export interface ListMetricAttributionMetricsRequest {
4579
4579
  * <p>The Amazon Resource Name (ARN) of the metric attribution to retrieve attributes for.</p>
4580
4580
  * @public
4581
4581
  */
4582
- metricAttributionArn?: string;
4582
+ metricAttributionArn?: string | undefined;
4583
4583
  /**
4584
4584
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
4585
4585
  * @public
4586
4586
  */
4587
- nextToken?: string;
4587
+ nextToken?: string | undefined;
4588
4588
  /**
4589
4589
  * <p>The maximum number of metrics to return in one page of results.</p>
4590
4590
  * @public
4591
4591
  */
4592
- maxResults?: number;
4592
+ maxResults?: number | undefined;
4593
4593
  }
4594
4594
  /**
4595
4595
  * @public
@@ -4599,12 +4599,12 @@ export interface ListMetricAttributionMetricsResponse {
4599
4599
  * <p>The metrics for the specified metric attribution.</p>
4600
4600
  * @public
4601
4601
  */
4602
- metrics?: MetricAttribute[];
4602
+ metrics?: MetricAttribute[] | undefined;
4603
4603
  /**
4604
4604
  * <p>Specify the pagination token from a previous <code>ListMetricAttributionMetricsResponse</code> request to retrieve the next page of results.</p>
4605
4605
  * @public
4606
4606
  */
4607
- nextToken?: string;
4607
+ nextToken?: string | undefined;
4608
4608
  }
4609
4609
  /**
4610
4610
  * @public
@@ -4614,17 +4614,17 @@ export interface ListMetricAttributionsRequest {
4614
4614
  * <p>The metric attributions' dataset group Amazon Resource Name (ARN).</p>
4615
4615
  * @public
4616
4616
  */
4617
- datasetGroupArn?: string;
4617
+ datasetGroupArn?: string | undefined;
4618
4618
  /**
4619
4619
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
4620
4620
  * @public
4621
4621
  */
4622
- nextToken?: string;
4622
+ nextToken?: string | undefined;
4623
4623
  /**
4624
4624
  * <p>The maximum number of metric attributions to return in one page of results.</p>
4625
4625
  * @public
4626
4626
  */
4627
- maxResults?: number;
4627
+ maxResults?: number | undefined;
4628
4628
  }
4629
4629
  /**
4630
4630
  * <p>Provides a summary of the properties of a metric attribution. For a complete listing, call the <a href="https://docs.aws.amazon.com/personalize/latest/dg/API_DescribeMetricAttribution.html">DescribeMetricAttribution</a>.</p>
@@ -4635,32 +4635,32 @@ export interface MetricAttributionSummary {
4635
4635
  * <p>The name of the metric attribution.</p>
4636
4636
  * @public
4637
4637
  */
4638
- name?: string;
4638
+ name?: string | undefined;
4639
4639
  /**
4640
4640
  * <p>The metric attribution's Amazon Resource Name (ARN).</p>
4641
4641
  * @public
4642
4642
  */
4643
- metricAttributionArn?: string;
4643
+ metricAttributionArn?: string | undefined;
4644
4644
  /**
4645
4645
  * <p>The metric attribution's status.</p>
4646
4646
  * @public
4647
4647
  */
4648
- status?: string;
4648
+ status?: string | undefined;
4649
4649
  /**
4650
4650
  * <p>The metric attribution's creation date time.</p>
4651
4651
  * @public
4652
4652
  */
4653
- creationDateTime?: Date;
4653
+ creationDateTime?: Date | undefined;
4654
4654
  /**
4655
4655
  * <p>The metric attribution's last updated date time.</p>
4656
4656
  * @public
4657
4657
  */
4658
- lastUpdatedDateTime?: Date;
4658
+ lastUpdatedDateTime?: Date | undefined;
4659
4659
  /**
4660
4660
  * <p>The metric attribution's failure reason.</p>
4661
4661
  * @public
4662
4662
  */
4663
- failureReason?: string;
4663
+ failureReason?: string | undefined;
4664
4664
  }
4665
4665
  /**
4666
4666
  * @public
@@ -4670,12 +4670,12 @@ export interface ListMetricAttributionsResponse {
4670
4670
  * <p>The list of metric attributions.</p>
4671
4671
  * @public
4672
4672
  */
4673
- metricAttributions?: MetricAttributionSummary[];
4673
+ metricAttributions?: MetricAttributionSummary[] | undefined;
4674
4674
  /**
4675
4675
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
4676
4676
  * @public
4677
4677
  */
4678
- nextToken?: string;
4678
+ nextToken?: string | undefined;
4679
4679
  }
4680
4680
  /**
4681
4681
  * @public
@@ -4696,18 +4696,18 @@ export interface ListRecipesRequest {
4696
4696
  * <p>The default is <code>SERVICE</code>.</p>
4697
4697
  * @public
4698
4698
  */
4699
- recipeProvider?: RecipeProvider;
4699
+ recipeProvider?: RecipeProvider | undefined;
4700
4700
  /**
4701
4701
  * <p>A token returned from the previous call to <code>ListRecipes</code> for getting
4702
4702
  * the next set of recipes (if they exist).</p>
4703
4703
  * @public
4704
4704
  */
4705
- nextToken?: string;
4705
+ nextToken?: string | undefined;
4706
4706
  /**
4707
4707
  * <p>The maximum number of recipes to return.</p>
4708
4708
  * @public
4709
4709
  */
4710
- maxResults?: number;
4710
+ maxResults?: number | undefined;
4711
4711
  /**
4712
4712
  * <p>
4713
4713
  * Filters returned recipes by domain for a Domain dataset group. Only recipes (Domain dataset group use cases)
@@ -4715,7 +4715,7 @@ export interface ListRecipesRequest {
4715
4715
  * </p>
4716
4716
  * @public
4717
4717
  */
4718
- domain?: Domain;
4718
+ domain?: Domain | undefined;
4719
4719
  }
4720
4720
  /**
4721
4721
  * <p>Provides a summary of the properties of a recipe. For a complete listing, call the
@@ -4727,32 +4727,32 @@ export interface RecipeSummary {
4727
4727
  * <p>The name of the recipe.</p>
4728
4728
  * @public
4729
4729
  */
4730
- name?: string;
4730
+ name?: string | undefined;
4731
4731
  /**
4732
4732
  * <p>The Amazon Resource Name (ARN) of the recipe.</p>
4733
4733
  * @public
4734
4734
  */
4735
- recipeArn?: string;
4735
+ recipeArn?: string | undefined;
4736
4736
  /**
4737
4737
  * <p>The status of the recipe.</p>
4738
4738
  * @public
4739
4739
  */
4740
- status?: string;
4740
+ status?: string | undefined;
4741
4741
  /**
4742
4742
  * <p>The date and time (in Unix time) that the recipe was created.</p>
4743
4743
  * @public
4744
4744
  */
4745
- creationDateTime?: Date;
4745
+ creationDateTime?: Date | undefined;
4746
4746
  /**
4747
4747
  * <p>The date and time (in Unix time) that the recipe was last updated.</p>
4748
4748
  * @public
4749
4749
  */
4750
- lastUpdatedDateTime?: Date;
4750
+ lastUpdatedDateTime?: Date | undefined;
4751
4751
  /**
4752
4752
  * <p>The domain of the recipe (if the recipe is a Domain dataset group use case).</p>
4753
4753
  * @public
4754
4754
  */
4755
- domain?: Domain;
4755
+ domain?: Domain | undefined;
4756
4756
  }
4757
4757
  /**
4758
4758
  * @public
@@ -4762,12 +4762,12 @@ export interface ListRecipesResponse {
4762
4762
  * <p>The list of available recipes.</p>
4763
4763
  * @public
4764
4764
  */
4765
- recipes?: RecipeSummary[];
4765
+ recipes?: RecipeSummary[] | undefined;
4766
4766
  /**
4767
4767
  * <p>A token for getting the next set of recipes.</p>
4768
4768
  * @public
4769
4769
  */
4770
- nextToken?: string;
4770
+ nextToken?: string | undefined;
4771
4771
  }
4772
4772
  /**
4773
4773
  * @public
@@ -4778,18 +4778,18 @@ export interface ListRecommendersRequest {
4778
4778
  * a Domain dataset group is not specified, all the recommenders associated with the account are listed.</p>
4779
4779
  * @public
4780
4780
  */
4781
- datasetGroupArn?: string;
4781
+ datasetGroupArn?: string | undefined;
4782
4782
  /**
4783
4783
  * <p>A token returned from the previous call to <code>ListRecommenders</code> for getting
4784
4784
  * the next set of recommenders (if they exist).</p>
4785
4785
  * @public
4786
4786
  */
4787
- nextToken?: string;
4787
+ nextToken?: string | undefined;
4788
4788
  /**
4789
4789
  * <p>The maximum number of recommenders to return.</p>
4790
4790
  * @public
4791
4791
  */
4792
- maxResults?: number;
4792
+ maxResults?: number | undefined;
4793
4793
  }
4794
4794
  /**
4795
4795
  * <p>Provides a summary of the properties of the recommender.</p>
@@ -4800,27 +4800,27 @@ export interface RecommenderSummary {
4800
4800
  * <p>The name of the recommender.</p>
4801
4801
  * @public
4802
4802
  */
4803
- name?: string;
4803
+ name?: string | undefined;
4804
4804
  /**
4805
4805
  * <p>The Amazon Resource Name (ARN) of the recommender.</p>
4806
4806
  * @public
4807
4807
  */
4808
- recommenderArn?: string;
4808
+ recommenderArn?: string | undefined;
4809
4809
  /**
4810
4810
  * <p>The Amazon Resource Name (ARN) of the Domain dataset group that contains the recommender.</p>
4811
4811
  * @public
4812
4812
  */
4813
- datasetGroupArn?: string;
4813
+ datasetGroupArn?: string | undefined;
4814
4814
  /**
4815
4815
  * <p>The Amazon Resource Name (ARN) of the recipe (Domain dataset group use case) that the recommender was created for.</p>
4816
4816
  * @public
4817
4817
  */
4818
- recipeArn?: string;
4818
+ recipeArn?: string | undefined;
4819
4819
  /**
4820
4820
  * <p>The configuration details of the recommender.</p>
4821
4821
  * @public
4822
4822
  */
4823
- recommenderConfig?: RecommenderConfig;
4823
+ recommenderConfig?: RecommenderConfig | undefined;
4824
4824
  /**
4825
4825
  * <p>The status of the recommender. A recommender can be in one of the following states:</p>
4826
4826
  * <ul>
@@ -4836,17 +4836,17 @@ export interface RecommenderSummary {
4836
4836
  * </ul>
4837
4837
  * @public
4838
4838
  */
4839
- status?: string;
4839
+ status?: string | undefined;
4840
4840
  /**
4841
4841
  * <p>The date and time (in Unix format) that the recommender was created.</p>
4842
4842
  * @public
4843
4843
  */
4844
- creationDateTime?: Date;
4844
+ creationDateTime?: Date | undefined;
4845
4845
  /**
4846
4846
  * <p>The date and time (in Unix format) that the recommender was last updated.</p>
4847
4847
  * @public
4848
4848
  */
4849
- lastUpdatedDateTime?: Date;
4849
+ lastUpdatedDateTime?: Date | undefined;
4850
4850
  }
4851
4851
  /**
4852
4852
  * @public
@@ -4856,12 +4856,12 @@ export interface ListRecommendersResponse {
4856
4856
  * <p>A list of the recommenders.</p>
4857
4857
  * @public
4858
4858
  */
4859
- recommenders?: RecommenderSummary[];
4859
+ recommenders?: RecommenderSummary[] | undefined;
4860
4860
  /**
4861
4861
  * <p>A token for getting the next set of recommenders (if they exist).</p>
4862
4862
  * @public
4863
4863
  */
4864
- nextToken?: string;
4864
+ nextToken?: string | undefined;
4865
4865
  }
4866
4866
  /**
4867
4867
  * @public
@@ -4872,12 +4872,12 @@ export interface ListSchemasRequest {
4872
4872
  * the next set of schemas (if they exist).</p>
4873
4873
  * @public
4874
4874
  */
4875
- nextToken?: string;
4875
+ nextToken?: string | undefined;
4876
4876
  /**
4877
4877
  * <p>The maximum number of schemas to return.</p>
4878
4878
  * @public
4879
4879
  */
4880
- maxResults?: number;
4880
+ maxResults?: number | undefined;
4881
4881
  }
4882
4882
  /**
4883
4883
  * <p>Provides a summary of the properties of a dataset schema. For a complete listing, call the
@@ -4889,27 +4889,27 @@ export interface DatasetSchemaSummary {
4889
4889
  * <p>The name of the schema.</p>
4890
4890
  * @public
4891
4891
  */
4892
- name?: string;
4892
+ name?: string | undefined;
4893
4893
  /**
4894
4894
  * <p>The Amazon Resource Name (ARN) of the schema.</p>
4895
4895
  * @public
4896
4896
  */
4897
- schemaArn?: string;
4897
+ schemaArn?: string | undefined;
4898
4898
  /**
4899
4899
  * <p>The date and time (in Unix time) that the schema was created.</p>
4900
4900
  * @public
4901
4901
  */
4902
- creationDateTime?: Date;
4902
+ creationDateTime?: Date | undefined;
4903
4903
  /**
4904
4904
  * <p>The date and time (in Unix time) that the schema was last updated.</p>
4905
4905
  * @public
4906
4906
  */
4907
- lastUpdatedDateTime?: Date;
4907
+ lastUpdatedDateTime?: Date | undefined;
4908
4908
  /**
4909
4909
  * <p>The domain of a schema that you created for a dataset in a Domain dataset group.</p>
4910
4910
  * @public
4911
4911
  */
4912
- domain?: Domain;
4912
+ domain?: Domain | undefined;
4913
4913
  }
4914
4914
  /**
4915
4915
  * @public
@@ -4919,12 +4919,12 @@ export interface ListSchemasResponse {
4919
4919
  * <p>A list of schemas.</p>
4920
4920
  * @public
4921
4921
  */
4922
- schemas?: DatasetSchemaSummary[];
4922
+ schemas?: DatasetSchemaSummary[] | undefined;
4923
4923
  /**
4924
4924
  * <p>A token used to get the next set of schemas (if they exist).</p>
4925
4925
  * @public
4926
4926
  */
4927
- nextToken?: string;
4927
+ nextToken?: string | undefined;
4928
4928
  }
4929
4929
  /**
4930
4930
  * @public
@@ -4934,18 +4934,18 @@ export interface ListSolutionsRequest {
4934
4934
  * <p>The Amazon Resource Name (ARN) of the dataset group.</p>
4935
4935
  * @public
4936
4936
  */
4937
- datasetGroupArn?: string;
4937
+ datasetGroupArn?: string | undefined;
4938
4938
  /**
4939
4939
  * <p>A token returned from the previous call to <code>ListSolutions</code> for getting
4940
4940
  * the next set of solutions (if they exist).</p>
4941
4941
  * @public
4942
4942
  */
4943
- nextToken?: string;
4943
+ nextToken?: string | undefined;
4944
4944
  /**
4945
4945
  * <p>The maximum number of solutions to return.</p>
4946
4946
  * @public
4947
4947
  */
4948
- maxResults?: number;
4948
+ maxResults?: number | undefined;
4949
4949
  }
4950
4950
  /**
4951
4951
  * <p>Provides a summary of the properties of a solution. For a complete listing, call the
@@ -4957,12 +4957,12 @@ export interface SolutionSummary {
4957
4957
  * <p>The name of the solution.</p>
4958
4958
  * @public
4959
4959
  */
4960
- name?: string;
4960
+ name?: string | undefined;
4961
4961
  /**
4962
4962
  * <p>The Amazon Resource Name (ARN) of the solution.</p>
4963
4963
  * @public
4964
4964
  */
4965
- solutionArn?: string;
4965
+ solutionArn?: string | undefined;
4966
4966
  /**
4967
4967
  * <p>The status of the solution.</p>
4968
4968
  * <p>A solution can be in one of the following states:</p>
@@ -4976,22 +4976,22 @@ export interface SolutionSummary {
4976
4976
  * </ul>
4977
4977
  * @public
4978
4978
  */
4979
- status?: string;
4979
+ status?: string | undefined;
4980
4980
  /**
4981
4981
  * <p>The date and time (in Unix time) that the solution was created.</p>
4982
4982
  * @public
4983
4983
  */
4984
- creationDateTime?: Date;
4984
+ creationDateTime?: Date | undefined;
4985
4985
  /**
4986
4986
  * <p>The date and time (in Unix time) that the solution was last updated.</p>
4987
4987
  * @public
4988
4988
  */
4989
- lastUpdatedDateTime?: Date;
4989
+ lastUpdatedDateTime?: Date | undefined;
4990
4990
  /**
4991
4991
  * <p>The Amazon Resource Name (ARN) of the recipe used by the solution.</p>
4992
4992
  * @public
4993
4993
  */
4994
- recipeArn?: string;
4994
+ recipeArn?: string | undefined;
4995
4995
  }
4996
4996
  /**
4997
4997
  * @public
@@ -5001,12 +5001,12 @@ export interface ListSolutionsResponse {
5001
5001
  * <p>A list of the current solutions.</p>
5002
5002
  * @public
5003
5003
  */
5004
- solutions?: SolutionSummary[];
5004
+ solutions?: SolutionSummary[] | undefined;
5005
5005
  /**
5006
5006
  * <p>A token for getting the next set of solutions (if they exist).</p>
5007
5007
  * @public
5008
5008
  */
5009
- nextToken?: string;
5009
+ nextToken?: string | undefined;
5010
5010
  }
5011
5011
  /**
5012
5012
  * @public
@@ -5016,18 +5016,18 @@ export interface ListSolutionVersionsRequest {
5016
5016
  * <p>The Amazon Resource Name (ARN) of the solution.</p>
5017
5017
  * @public
5018
5018
  */
5019
- solutionArn?: string;
5019
+ solutionArn?: string | undefined;
5020
5020
  /**
5021
5021
  * <p>A token returned from the previous call to <code>ListSolutionVersions</code> for getting
5022
5022
  * the next set of solution versions (if they exist).</p>
5023
5023
  * @public
5024
5024
  */
5025
- nextToken?: string;
5025
+ nextToken?: string | undefined;
5026
5026
  /**
5027
5027
  * <p>The maximum number of solution versions to return.</p>
5028
5028
  * @public
5029
5029
  */
5030
- maxResults?: number;
5030
+ maxResults?: number | undefined;
5031
5031
  }
5032
5032
  /**
5033
5033
  * @public
@@ -5037,12 +5037,12 @@ export interface ListSolutionVersionsResponse {
5037
5037
  * <p>A list of solution versions describing the version properties.</p>
5038
5038
  * @public
5039
5039
  */
5040
- solutionVersions?: SolutionVersionSummary[];
5040
+ solutionVersions?: SolutionVersionSummary[] | undefined;
5041
5041
  /**
5042
5042
  * <p>A token for getting the next set of solution versions (if they exist).</p>
5043
5043
  * @public
5044
5044
  */
5045
- nextToken?: string;
5045
+ nextToken?: string | undefined;
5046
5046
  }
5047
5047
  /**
5048
5048
  * @public
@@ -5062,7 +5062,7 @@ export interface ListTagsForResourceResponse {
5062
5062
  * <p>The resource's tags.</p>
5063
5063
  * @public
5064
5064
  */
5065
- tags?: Tag[];
5065
+ tags?: Tag[] | undefined;
5066
5066
  }
5067
5067
  /**
5068
5068
  * @public
@@ -5082,7 +5082,7 @@ export interface StartRecommenderResponse {
5082
5082
  * <p>The Amazon Resource Name (ARN) of the recommender you started.</p>
5083
5083
  * @public
5084
5084
  */
5085
- recommenderArn?: string;
5085
+ recommenderArn?: string | undefined;
5086
5086
  }
5087
5087
  /**
5088
5088
  * @public
@@ -5102,7 +5102,7 @@ export interface StopRecommenderResponse {
5102
5102
  * <p>The Amazon Resource Name (ARN) of the recommender you stopped.</p>
5103
5103
  * @public
5104
5104
  */
5105
- recommenderArn?: string;
5105
+ recommenderArn?: string | undefined;
5106
5106
  }
5107
5107
  /**
5108
5108
  * @public
@@ -5190,7 +5190,7 @@ export interface UpdateCampaignRequest {
5190
5190
  * </p>
5191
5191
  * @public
5192
5192
  */
5193
- solutionVersionArn?: string;
5193
+ solutionVersionArn?: string | undefined;
5194
5194
  /**
5195
5195
  * <p>Specifies the requested minimum provisioned transactions (recommendations) per second that
5196
5196
  * Amazon Personalize will support. A high <code>minProvisionedTPS</code> will increase your bill. We recommend starting with 1 for <code>minProvisionedTPS</code> (the default). Track
@@ -5198,12 +5198,12 @@ export interface UpdateCampaignRequest {
5198
5198
  * as necessary.</p>
5199
5199
  * @public
5200
5200
  */
5201
- minProvisionedTPS?: number;
5201
+ minProvisionedTPS?: number | undefined;
5202
5202
  /**
5203
5203
  * <p>The configuration details of a campaign.</p>
5204
5204
  * @public
5205
5205
  */
5206
- campaignConfig?: CampaignConfig;
5206
+ campaignConfig?: CampaignConfig | undefined;
5207
5207
  }
5208
5208
  /**
5209
5209
  * @public
@@ -5213,7 +5213,7 @@ export interface UpdateCampaignResponse {
5213
5213
  * <p>The same campaign ARN as given in the request.</p>
5214
5214
  * @public
5215
5215
  */
5216
- campaignArn?: string;
5216
+ campaignArn?: string | undefined;
5217
5217
  }
5218
5218
  /**
5219
5219
  * @public
@@ -5238,7 +5238,7 @@ export interface UpdateDatasetResponse {
5238
5238
  * <p>The Amazon Resource Name (ARN) of the dataset you updated.</p>
5239
5239
  * @public
5240
5240
  */
5241
- datasetArn?: string;
5241
+ datasetArn?: string | undefined;
5242
5242
  }
5243
5243
  /**
5244
5244
  * @public
@@ -5248,22 +5248,22 @@ export interface UpdateMetricAttributionRequest {
5248
5248
  * <p>Add new metric attributes to the metric attribution.</p>
5249
5249
  * @public
5250
5250
  */
5251
- addMetrics?: MetricAttribute[];
5251
+ addMetrics?: MetricAttribute[] | undefined;
5252
5252
  /**
5253
5253
  * <p>Remove metric attributes from the metric attribution.</p>
5254
5254
  * @public
5255
5255
  */
5256
- removeMetrics?: string[];
5256
+ removeMetrics?: string[] | undefined;
5257
5257
  /**
5258
5258
  * <p>An output config for the metric attribution.</p>
5259
5259
  * @public
5260
5260
  */
5261
- metricsOutputConfig?: MetricAttributionOutput;
5261
+ metricsOutputConfig?: MetricAttributionOutput | undefined;
5262
5262
  /**
5263
5263
  * <p>The Amazon Resource Name (ARN) for the metric attribution to update.</p>
5264
5264
  * @public
5265
5265
  */
5266
- metricAttributionArn?: string;
5266
+ metricAttributionArn?: string | undefined;
5267
5267
  }
5268
5268
  /**
5269
5269
  * @public
@@ -5273,7 +5273,7 @@ export interface UpdateMetricAttributionResponse {
5273
5273
  * <p>The Amazon Resource Name (ARN) for the metric attribution that you updated.</p>
5274
5274
  * @public
5275
5275
  */
5276
- metricAttributionArn?: string;
5276
+ metricAttributionArn?: string | undefined;
5277
5277
  }
5278
5278
  /**
5279
5279
  * @public
@@ -5298,7 +5298,7 @@ export interface UpdateRecommenderResponse {
5298
5298
  * <p>The same recommender Amazon Resource Name (ARN) as given in the request.</p>
5299
5299
  * @public
5300
5300
  */
5301
- recommenderArn?: string;
5301
+ recommenderArn?: string | undefined;
5302
5302
  }
5303
5303
  /**
5304
5304
  * @public
@@ -5326,12 +5326,12 @@ export interface UpdateSolutionRequest {
5326
5326
  * </p>
5327
5327
  * @public
5328
5328
  */
5329
- performAutoTraining?: boolean;
5329
+ performAutoTraining?: boolean | undefined;
5330
5330
  /**
5331
5331
  * <p>The new configuration details of the solution.</p>
5332
5332
  * @public
5333
5333
  */
5334
- solutionUpdateConfig?: SolutionUpdateConfig;
5334
+ solutionUpdateConfig?: SolutionUpdateConfig | undefined;
5335
5335
  }
5336
5336
  /**
5337
5337
  * @public
@@ -5341,7 +5341,7 @@ export interface UpdateSolutionResponse {
5341
5341
  * <p>The same solution Amazon Resource Name (ARN) as given in the request.</p>
5342
5342
  * @public
5343
5343
  */
5344
- solutionArn?: string;
5344
+ solutionArn?: string | undefined;
5345
5345
  }
5346
5346
  /**
5347
5347
  * @internal