@aws-sdk/client-frauddetector 3.687.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.
- package/dist-types/models/models_0.d.ts +459 -459
- package/dist-types/ts3.4/models/models_0.d.ts +465 -459
- package/package.json +7 -7
|
@@ -50,14 +50,14 @@ export interface AggregatedVariablesImpactExplanation {
|
|
|
50
50
|
* </p>
|
|
51
51
|
* @public
|
|
52
52
|
*/
|
|
53
|
-
eventVariableNames?: string[];
|
|
53
|
+
eventVariableNames?: string[] | undefined;
|
|
54
54
|
/**
|
|
55
55
|
* <p>
|
|
56
56
|
* The relative impact of the aggregated variables in terms of magnitude on the prediction scores.
|
|
57
57
|
* </p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
relativeImpact?: string;
|
|
60
|
+
relativeImpact?: string | undefined;
|
|
61
61
|
/**
|
|
62
62
|
* <p>
|
|
63
63
|
* The raw, uninterpreted value represented as log-odds of the fraud. These values are usually between -10 to +10, but range from -infinity to +infinity.</p>
|
|
@@ -71,7 +71,7 @@ export interface AggregatedVariablesImpactExplanation {
|
|
|
71
71
|
* </ul>
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
|
-
logOddsImpact?: number;
|
|
74
|
+
logOddsImpact?: number | undefined;
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* <p>The details of the relative importance of the aggregated variables.</p>
|
|
@@ -87,7 +87,7 @@ export interface AggregatedVariablesImportanceMetrics {
|
|
|
87
87
|
* </p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
logOddsMetrics?: AggregatedLogOddsMetric[];
|
|
90
|
+
logOddsMetrics?: AggregatedLogOddsMetric[] | undefined;
|
|
91
91
|
}
|
|
92
92
|
/**
|
|
93
93
|
* <p>
|
|
@@ -109,35 +109,35 @@ export interface AllowDenyList {
|
|
|
109
109
|
* </p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
description?: string;
|
|
112
|
+
description?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* <p>
|
|
115
115
|
* The variable type of the list.
|
|
116
116
|
* </p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
variableType?: string;
|
|
119
|
+
variableType?: string | undefined;
|
|
120
120
|
/**
|
|
121
121
|
* <p>
|
|
122
122
|
* The time the list was created.
|
|
123
123
|
* </p>
|
|
124
124
|
* @public
|
|
125
125
|
*/
|
|
126
|
-
createdTime?: string;
|
|
126
|
+
createdTime?: string | undefined;
|
|
127
127
|
/**
|
|
128
128
|
* <p>
|
|
129
129
|
* The time the list was last updated.
|
|
130
130
|
* </p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
updatedTime?: string;
|
|
133
|
+
updatedTime?: string | undefined;
|
|
134
134
|
/**
|
|
135
135
|
* <p>
|
|
136
136
|
* The ARN of the list.
|
|
137
137
|
* </p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
arn?: string;
|
|
140
|
+
arn?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
@@ -169,7 +169,7 @@ export interface ATIMetricDataPoint {
|
|
|
169
169
|
* </p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
cr?: number;
|
|
172
|
+
cr?: number | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>
|
|
175
175
|
* The anomaly discovery rate. This metric quantifies the percentage of anomalies that can be detected by the model at the selected score threshold.
|
|
@@ -178,7 +178,7 @@ export interface ATIMetricDataPoint {
|
|
|
178
178
|
* </p>
|
|
179
179
|
* @public
|
|
180
180
|
*/
|
|
181
|
-
adr?: number;
|
|
181
|
+
adr?: number | undefined;
|
|
182
182
|
/**
|
|
183
183
|
* <p>
|
|
184
184
|
* The model's threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is
|
|
@@ -186,7 +186,7 @@ export interface ATIMetricDataPoint {
|
|
|
186
186
|
* </p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
threshold?: number;
|
|
189
|
+
threshold?: number | undefined;
|
|
190
190
|
/**
|
|
191
191
|
* <p>
|
|
192
192
|
* The account takeover discovery rate. This metric quantifies the percentage of account compromise events that can be detected by the model at the selected score threshold.
|
|
@@ -194,7 +194,7 @@ export interface ATIMetricDataPoint {
|
|
|
194
194
|
* </p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
atodr?: number;
|
|
197
|
+
atodr?: number | undefined;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* <p>
|
|
@@ -211,7 +211,7 @@ export interface ATIModelPerformance {
|
|
|
211
211
|
* </p>
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
asi?: number;
|
|
214
|
+
asi?: number | undefined;
|
|
215
215
|
}
|
|
216
216
|
/**
|
|
217
217
|
* <p>
|
|
@@ -226,14 +226,14 @@ export interface ATITrainingMetricsValue {
|
|
|
226
226
|
* </p>
|
|
227
227
|
* @public
|
|
228
228
|
*/
|
|
229
|
-
metricDataPoints?: ATIMetricDataPoint[];
|
|
229
|
+
metricDataPoints?: ATIMetricDataPoint[] | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* <p>
|
|
232
232
|
* The model's overall performance scores.
|
|
233
233
|
* </p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
modelPerformance?: ATIModelPerformance;
|
|
236
|
+
modelPerformance?: ATIModelPerformance | undefined;
|
|
237
237
|
}
|
|
238
238
|
/**
|
|
239
239
|
* <p>A key and value pair. </p>
|
|
@@ -260,34 +260,34 @@ export interface VariableEntry {
|
|
|
260
260
|
* <p>The name of the variable.</p>
|
|
261
261
|
* @public
|
|
262
262
|
*/
|
|
263
|
-
name?: string;
|
|
263
|
+
name?: string | undefined;
|
|
264
264
|
/**
|
|
265
265
|
* <p>The data type of the variable.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
dataType?: string;
|
|
268
|
+
dataType?: string | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>The data source of the variable.</p>
|
|
271
271
|
* @public
|
|
272
272
|
*/
|
|
273
|
-
dataSource?: string;
|
|
273
|
+
dataSource?: string | undefined;
|
|
274
274
|
/**
|
|
275
275
|
* <p>The default value of the variable.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
defaultValue?: string;
|
|
278
|
+
defaultValue?: string | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>The description of the variable.</p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
description?: string;
|
|
283
|
+
description?: string | undefined;
|
|
284
284
|
/**
|
|
285
285
|
* <p>The type of the variable. For more information see <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types">Variable types</a>.</p>
|
|
286
286
|
* <p>Valid Values: <code>AUTH_CODE | AVS | BILLING_ADDRESS_L1 | BILLING_ADDRESS_L2 | BILLING_CITY | BILLING_COUNTRY | BILLING_NAME | BILLING_PHONE | BILLING_STATE | BILLING_ZIP | CARD_BIN | CATEGORICAL | CURRENCY_CODE | EMAIL_ADDRESS | FINGERPRINT | FRAUD_LABEL | FREE_FORM_TEXT | IP_ADDRESS | NUMERIC | ORDER_ID | PAYMENT_TYPE | PHONE_NUMBER | PRICE | PRODUCT_CATEGORY | SHIPPING_ADDRESS_L1 | SHIPPING_ADDRESS_L2 | SHIPPING_CITY | SHIPPING_COUNTRY | SHIPPING_NAME | SHIPPING_PHONE | SHIPPING_STATE | SHIPPING_ZIP | USERAGENT </code>
|
|
287
287
|
* </p>
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
variableType?: string;
|
|
290
|
+
variableType?: string | undefined;
|
|
291
291
|
}
|
|
292
292
|
/**
|
|
293
293
|
* @public
|
|
@@ -302,7 +302,7 @@ export interface BatchCreateVariableRequest {
|
|
|
302
302
|
* <p>A collection of key and value pairs.</p>
|
|
303
303
|
* @public
|
|
304
304
|
*/
|
|
305
|
-
tags?: Tag[];
|
|
305
|
+
tags?: Tag[] | undefined;
|
|
306
306
|
}
|
|
307
307
|
/**
|
|
308
308
|
* <p>Provides the error of the batch create variable API.</p>
|
|
@@ -313,17 +313,17 @@ export interface BatchCreateVariableError {
|
|
|
313
313
|
* <p>The name.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
name?: string;
|
|
316
|
+
name?: string | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>The error code. </p>
|
|
319
319
|
* @public
|
|
320
320
|
*/
|
|
321
|
-
code?: number;
|
|
321
|
+
code?: number | undefined;
|
|
322
322
|
/**
|
|
323
323
|
* <p>The error message.</p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
message?: string;
|
|
326
|
+
message?: string | undefined;
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
329
|
* @public
|
|
@@ -333,7 +333,7 @@ export interface BatchCreateVariableResult {
|
|
|
333
333
|
* <p>Provides the errors for the <code>BatchCreateVariable</code> request.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
errors?: BatchCreateVariableError[];
|
|
336
|
+
errors?: BatchCreateVariableError[] | undefined;
|
|
337
337
|
}
|
|
338
338
|
/**
|
|
339
339
|
* <p>An exception indicating an internal server error.</p>
|
|
@@ -390,17 +390,17 @@ export interface BatchGetVariableError {
|
|
|
390
390
|
* <p>The error name. </p>
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
name?: string;
|
|
393
|
+
name?: string | undefined;
|
|
394
394
|
/**
|
|
395
395
|
* <p>The error code. </p>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
code?: number;
|
|
398
|
+
code?: number | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* <p>The error message.</p>
|
|
401
401
|
* @public
|
|
402
402
|
*/
|
|
403
|
-
message?: string;
|
|
403
|
+
message?: string | undefined;
|
|
404
404
|
}
|
|
405
405
|
/**
|
|
406
406
|
* @public
|
|
@@ -439,49 +439,49 @@ export interface Variable {
|
|
|
439
439
|
* <p>The name of the variable.</p>
|
|
440
440
|
* @public
|
|
441
441
|
*/
|
|
442
|
-
name?: string;
|
|
442
|
+
name?: string | undefined;
|
|
443
443
|
/**
|
|
444
444
|
* <p>The data type of the variable. For more information see <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types">Variable types</a>.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
dataType?: DataType;
|
|
447
|
+
dataType?: DataType | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* <p>The data source of the variable.</p>
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
dataSource?: DataSource;
|
|
452
|
+
dataSource?: DataSource | undefined;
|
|
453
453
|
/**
|
|
454
454
|
* <p>The default value of the variable.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
defaultValue?: string;
|
|
457
|
+
defaultValue?: string | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>The description of the variable. </p>
|
|
460
460
|
* @public
|
|
461
461
|
*/
|
|
462
|
-
description?: string;
|
|
462
|
+
description?: string | undefined;
|
|
463
463
|
/**
|
|
464
464
|
* <p>The variable type of the variable.</p>
|
|
465
465
|
* <p>Valid Values: <code>AUTH_CODE | AVS | BILLING_ADDRESS_L1 | BILLING_ADDRESS_L2 | BILLING_CITY | BILLING_COUNTRY | BILLING_NAME | BILLING_PHONE | BILLING_STATE | BILLING_ZIP | CARD_BIN | CATEGORICAL | CURRENCY_CODE | EMAIL_ADDRESS | FINGERPRINT | FRAUD_LABEL | FREE_FORM_TEXT | IP_ADDRESS | NUMERIC | ORDER_ID | PAYMENT_TYPE | PHONE_NUMBER | PRICE | PRODUCT_CATEGORY | SHIPPING_ADDRESS_L1 | SHIPPING_ADDRESS_L2 | SHIPPING_CITY | SHIPPING_COUNTRY | SHIPPING_NAME | SHIPPING_PHONE | SHIPPING_STATE | SHIPPING_ZIP | USERAGENT </code>
|
|
466
466
|
* </p>
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
variableType?: string;
|
|
469
|
+
variableType?: string | undefined;
|
|
470
470
|
/**
|
|
471
471
|
* <p>The time when variable was last updated.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
lastUpdatedTime?: string;
|
|
474
|
+
lastUpdatedTime?: string | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>The time when the variable was created.</p>
|
|
477
477
|
* @public
|
|
478
478
|
*/
|
|
479
|
-
createdTime?: string;
|
|
479
|
+
createdTime?: string | undefined;
|
|
480
480
|
/**
|
|
481
481
|
* <p>The ARN of the variable.</p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
arn?: string;
|
|
484
|
+
arn?: string | undefined;
|
|
485
485
|
}
|
|
486
486
|
/**
|
|
487
487
|
* @public
|
|
@@ -491,12 +491,12 @@ export interface BatchGetVariableResult {
|
|
|
491
491
|
* <p>The returned variables.</p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
variables?: Variable[];
|
|
494
|
+
variables?: Variable[] | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>The errors from the request.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
errors?: BatchGetVariableError[];
|
|
499
|
+
errors?: BatchGetVariableError[] | undefined;
|
|
500
500
|
}
|
|
501
501
|
/**
|
|
502
502
|
* @public
|
|
@@ -577,7 +577,7 @@ export interface CreateBatchImportJobRequest {
|
|
|
577
577
|
* <p>A collection of key-value pairs associated with this request. </p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
tags?: Tag[];
|
|
580
|
+
tags?: Tag[] | undefined;
|
|
581
581
|
}
|
|
582
582
|
/**
|
|
583
583
|
* @public
|
|
@@ -617,7 +617,7 @@ export interface CreateBatchPredictionJobRequest {
|
|
|
617
617
|
* <p>The detector version.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
detectorVersion?: string;
|
|
620
|
+
detectorVersion?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>The ARN of the IAM role to use for this job request.</p>
|
|
623
623
|
* <p>The IAM Role must have read permissions to your input S3 bucket and write permissions to your output S3 bucket.
|
|
@@ -630,7 +630,7 @@ export interface CreateBatchPredictionJobRequest {
|
|
|
630
630
|
* <p>A collection of key and value pairs.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
tags?: Tag[];
|
|
633
|
+
tags?: Tag[] | undefined;
|
|
634
634
|
}
|
|
635
635
|
/**
|
|
636
636
|
* @public
|
|
@@ -674,7 +674,7 @@ export interface ModelVersion {
|
|
|
674
674
|
* <p>The model version ARN.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
arn?: string;
|
|
677
|
+
arn?: string | undefined;
|
|
678
678
|
}
|
|
679
679
|
/**
|
|
680
680
|
* @public
|
|
@@ -722,12 +722,12 @@ export interface CreateDetectorVersionRequest {
|
|
|
722
722
|
* <p>The description of the detector version.</p>
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
description?: string;
|
|
725
|
+
description?: string | undefined;
|
|
726
726
|
/**
|
|
727
727
|
* <p>The Amazon Sagemaker model endpoints to include in the detector version.</p>
|
|
728
728
|
* @public
|
|
729
729
|
*/
|
|
730
|
-
externalModelEndpoints?: string[];
|
|
730
|
+
externalModelEndpoints?: string[] | undefined;
|
|
731
731
|
/**
|
|
732
732
|
* <p>The rules to include in the detector version.</p>
|
|
733
733
|
* @public
|
|
@@ -737,7 +737,7 @@ export interface CreateDetectorVersionRequest {
|
|
|
737
737
|
* <p>The model versions to include in the detector version.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
modelVersions?: ModelVersion[];
|
|
740
|
+
modelVersions?: ModelVersion[] | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>The rule execution mode for the rules included in the detector version.</p>
|
|
743
743
|
* <p>You can define and edit the rule mode at the detector version level, when it is in draft status.</p>
|
|
@@ -746,12 +746,12 @@ export interface CreateDetectorVersionRequest {
|
|
|
746
746
|
* <p>The default behavior is <code>FIRST_MATCHED</code>.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
ruleExecutionMode?: RuleExecutionMode;
|
|
749
|
+
ruleExecutionMode?: RuleExecutionMode | undefined;
|
|
750
750
|
/**
|
|
751
751
|
* <p>A collection of key and value pairs.</p>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
tags?: Tag[];
|
|
754
|
+
tags?: Tag[] | undefined;
|
|
755
755
|
}
|
|
756
756
|
/**
|
|
757
757
|
* @public
|
|
@@ -774,17 +774,17 @@ export interface CreateDetectorVersionResult {
|
|
|
774
774
|
* <p>The ID for the created version's parent detector.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
detectorId?: string;
|
|
777
|
+
detectorId?: string | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>The ID for the created detector. </p>
|
|
780
780
|
* @public
|
|
781
781
|
*/
|
|
782
|
-
detectorVersionId?: string;
|
|
782
|
+
detectorVersionId?: string | undefined;
|
|
783
783
|
/**
|
|
784
784
|
* <p>The status of the detector version.</p>
|
|
785
785
|
* @public
|
|
786
786
|
*/
|
|
787
|
-
status?: DetectorVersionStatus;
|
|
787
|
+
status?: DetectorVersionStatus | undefined;
|
|
788
788
|
}
|
|
789
789
|
/**
|
|
790
790
|
* @public
|
|
@@ -803,7 +803,7 @@ export interface CreateListRequest {
|
|
|
803
803
|
* </p>
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
|
-
elements?: string[];
|
|
806
|
+
elements?: string[] | undefined;
|
|
807
807
|
/**
|
|
808
808
|
* <p>
|
|
809
809
|
* The variable type of the list. You can only assign the variable type with String data type. For more information, see
|
|
@@ -811,21 +811,21 @@ export interface CreateListRequest {
|
|
|
811
811
|
* </p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
variableType?: string;
|
|
814
|
+
variableType?: string | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* <p>
|
|
817
817
|
* The description of the list.
|
|
818
818
|
* </p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
description?: string;
|
|
821
|
+
description?: string | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* <p>
|
|
824
824
|
* A collection of the key and value pairs.
|
|
825
825
|
* </p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
tags?: Tag[];
|
|
828
|
+
tags?: Tag[] | undefined;
|
|
829
829
|
}
|
|
830
830
|
/**
|
|
831
831
|
* @public
|
|
@@ -850,7 +850,7 @@ export interface CreateModelRequest {
|
|
|
850
850
|
* <p>The model description. </p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
description?: string;
|
|
853
|
+
description?: string | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>The name of the event type.</p>
|
|
856
856
|
* @public
|
|
@@ -860,7 +860,7 @@ export interface CreateModelRequest {
|
|
|
860
860
|
* <p>A collection of key and value pairs.</p>
|
|
861
861
|
* @public
|
|
862
862
|
*/
|
|
863
|
-
tags?: Tag[];
|
|
863
|
+
tags?: Tag[] | undefined;
|
|
864
864
|
}
|
|
865
865
|
/**
|
|
866
866
|
* @public
|
|
@@ -934,7 +934,7 @@ export interface LabelSchema {
|
|
|
934
934
|
* </p>
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
labelMapper?: Record<string, string[]
|
|
937
|
+
labelMapper?: Record<string, string[]> | undefined;
|
|
938
938
|
/**
|
|
939
939
|
* <p>The action to take for unlabeled events.</p>
|
|
940
940
|
* <ul>
|
|
@@ -954,7 +954,7 @@ export interface LabelSchema {
|
|
|
954
954
|
* <p>By default, Amazon Fraud Detector ignores the unlabeled data.</p>
|
|
955
955
|
* @public
|
|
956
956
|
*/
|
|
957
|
-
unlabeledEventsTreatment?: UnlabeledEventsTreatment;
|
|
957
|
+
unlabeledEventsTreatment?: UnlabeledEventsTreatment | undefined;
|
|
958
958
|
}
|
|
959
959
|
/**
|
|
960
960
|
* <p>The training data schema.</p>
|
|
@@ -970,7 +970,7 @@ export interface TrainingDataSchema {
|
|
|
970
970
|
* <p>The label schema.</p>
|
|
971
971
|
* @public
|
|
972
972
|
*/
|
|
973
|
-
labelSchema?: LabelSchema;
|
|
973
|
+
labelSchema?: LabelSchema | undefined;
|
|
974
974
|
}
|
|
975
975
|
/**
|
|
976
976
|
* @public
|
|
@@ -1012,17 +1012,17 @@ export interface CreateModelVersionRequest {
|
|
|
1012
1012
|
* <p>Details of the external events data used for model version training. Required if <code>trainingDataSource</code> is <code>EXTERNAL_EVENTS</code>.</p>
|
|
1013
1013
|
* @public
|
|
1014
1014
|
*/
|
|
1015
|
-
externalEventsDetail?: ExternalEventsDetail;
|
|
1015
|
+
externalEventsDetail?: ExternalEventsDetail | undefined;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>Details of the ingested events data used for model version training. Required if <code>trainingDataSource</code> is <code>INGESTED_EVENTS</code>.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
ingestedEventsDetail?: IngestedEventsDetail;
|
|
1020
|
+
ingestedEventsDetail?: IngestedEventsDetail | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>A collection of key and value pairs.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
tags?: Tag[];
|
|
1025
|
+
tags?: Tag[] | undefined;
|
|
1026
1026
|
}
|
|
1027
1027
|
/**
|
|
1028
1028
|
* @public
|
|
@@ -1032,22 +1032,22 @@ export interface CreateModelVersionResult {
|
|
|
1032
1032
|
* <p>The model ID.</p>
|
|
1033
1033
|
* @public
|
|
1034
1034
|
*/
|
|
1035
|
-
modelId?: string;
|
|
1035
|
+
modelId?: string | undefined;
|
|
1036
1036
|
/**
|
|
1037
1037
|
* <p>The model type.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
modelType?: ModelTypeEnum;
|
|
1040
|
+
modelType?: ModelTypeEnum | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>The model version number of the model version created.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
modelVersionNumber?: string;
|
|
1045
|
+
modelVersionNumber?: string | undefined;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* <p>The model version status. </p>
|
|
1048
1048
|
* @public
|
|
1049
1049
|
*/
|
|
1050
|
-
status?: string;
|
|
1050
|
+
status?: string | undefined;
|
|
1051
1051
|
}
|
|
1052
1052
|
/**
|
|
1053
1053
|
* @public
|
|
@@ -1078,7 +1078,7 @@ export interface CreateRuleRequest {
|
|
|
1078
1078
|
* <p>The rule description.</p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
description?: string;
|
|
1081
|
+
description?: string | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>The rule expression.</p>
|
|
1084
1084
|
* @public
|
|
@@ -1098,7 +1098,7 @@ export interface CreateRuleRequest {
|
|
|
1098
1098
|
* <p>A collection of key and value pairs.</p>
|
|
1099
1099
|
* @public
|
|
1100
1100
|
*/
|
|
1101
|
-
tags?: Tag[];
|
|
1101
|
+
tags?: Tag[] | undefined;
|
|
1102
1102
|
}
|
|
1103
1103
|
/**
|
|
1104
1104
|
* @public
|
|
@@ -1108,7 +1108,7 @@ export interface CreateRuleResult {
|
|
|
1108
1108
|
* <p>The created rule.</p>
|
|
1109
1109
|
* @public
|
|
1110
1110
|
*/
|
|
1111
|
-
rule?: Rule;
|
|
1111
|
+
rule?: Rule | undefined;
|
|
1112
1112
|
}
|
|
1113
1113
|
/**
|
|
1114
1114
|
* @public
|
|
@@ -1138,7 +1138,7 @@ export interface CreateVariableRequest {
|
|
|
1138
1138
|
* <p>The description.</p>
|
|
1139
1139
|
* @public
|
|
1140
1140
|
*/
|
|
1141
|
-
description?: string;
|
|
1141
|
+
description?: string | undefined;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* <p>The variable type. For more information see <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types">Variable types</a>.
|
|
1144
1144
|
* </p>
|
|
@@ -1146,12 +1146,12 @@ export interface CreateVariableRequest {
|
|
|
1146
1146
|
* </p>
|
|
1147
1147
|
* @public
|
|
1148
1148
|
*/
|
|
1149
|
-
variableType?: string;
|
|
1149
|
+
variableType?: string | undefined;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>A collection of key and value pairs.</p>
|
|
1152
1152
|
* @public
|
|
1153
1153
|
*/
|
|
1154
|
-
tags?: Tag[];
|
|
1154
|
+
tags?: Tag[] | undefined;
|
|
1155
1155
|
}
|
|
1156
1156
|
/**
|
|
1157
1157
|
* @public
|
|
@@ -1268,7 +1268,7 @@ export interface DeleteEventRequest {
|
|
|
1268
1268
|
* <p>Specifies whether or not to delete any predictions associated with the event. If set to <code>True</code>, </p>
|
|
1269
1269
|
* @public
|
|
1270
1270
|
*/
|
|
1271
|
-
deleteAuditHistory?: boolean;
|
|
1271
|
+
deleteAuditHistory?: boolean | undefined;
|
|
1272
1272
|
}
|
|
1273
1273
|
/**
|
|
1274
1274
|
* @public
|
|
@@ -1293,12 +1293,12 @@ export interface DeleteEventsByEventTypeResult {
|
|
|
1293
1293
|
* <p>Name of event type for which to delete the events.</p>
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
eventTypeName?: string;
|
|
1296
|
+
eventTypeName?: string | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* <p>The status of the delete request.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
eventsDeletionStatus?: string;
|
|
1301
|
+
eventsDeletionStatus?: string | undefined;
|
|
1302
1302
|
}
|
|
1303
1303
|
/**
|
|
1304
1304
|
* @public
|
|
@@ -1465,12 +1465,12 @@ export interface DescribeDetectorRequest {
|
|
|
1465
1465
|
* <p>The next token from the previous response.</p>
|
|
1466
1466
|
* @public
|
|
1467
1467
|
*/
|
|
1468
|
-
nextToken?: string;
|
|
1468
|
+
nextToken?: string | undefined;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* <p>The maximum number of results to return for the request.</p>
|
|
1471
1471
|
* @public
|
|
1472
1472
|
*/
|
|
1473
|
-
maxResults?: number;
|
|
1473
|
+
maxResults?: number | undefined;
|
|
1474
1474
|
}
|
|
1475
1475
|
/**
|
|
1476
1476
|
* <p>The summary of the detector version.</p>
|
|
@@ -1481,22 +1481,22 @@ export interface DetectorVersionSummary {
|
|
|
1481
1481
|
* <p>The detector version ID. </p>
|
|
1482
1482
|
* @public
|
|
1483
1483
|
*/
|
|
1484
|
-
detectorVersionId?: string;
|
|
1484
|
+
detectorVersionId?: string | undefined;
|
|
1485
1485
|
/**
|
|
1486
1486
|
* <p>The detector version status. </p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
status?: DetectorVersionStatus;
|
|
1489
|
+
status?: DetectorVersionStatus | undefined;
|
|
1490
1490
|
/**
|
|
1491
1491
|
* <p>The detector version description. </p>
|
|
1492
1492
|
* @public
|
|
1493
1493
|
*/
|
|
1494
|
-
description?: string;
|
|
1494
|
+
description?: string | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* <p>Timestamp of when the detector version was last updated.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
lastUpdatedTime?: string;
|
|
1499
|
+
lastUpdatedTime?: string | undefined;
|
|
1500
1500
|
}
|
|
1501
1501
|
/**
|
|
1502
1502
|
* @public
|
|
@@ -1506,22 +1506,22 @@ export interface DescribeDetectorResult {
|
|
|
1506
1506
|
* <p>The detector ID.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
detectorId?: string;
|
|
1509
|
+
detectorId?: string | undefined;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* <p>The status and description for each detector version.</p>
|
|
1512
1512
|
* @public
|
|
1513
1513
|
*/
|
|
1514
|
-
detectorVersionSummaries?: DetectorVersionSummary[];
|
|
1514
|
+
detectorVersionSummaries?: DetectorVersionSummary[] | undefined;
|
|
1515
1515
|
/**
|
|
1516
1516
|
* <p>The next token to be used for subsequent requests.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
nextToken?: string;
|
|
1519
|
+
nextToken?: string | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>The detector ARN.</p>
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
arn?: string;
|
|
1524
|
+
arn?: string | undefined;
|
|
1525
1525
|
}
|
|
1526
1526
|
/**
|
|
1527
1527
|
* @public
|
|
@@ -1531,27 +1531,27 @@ export interface DescribeModelVersionsRequest {
|
|
|
1531
1531
|
* <p>The model ID.</p>
|
|
1532
1532
|
* @public
|
|
1533
1533
|
*/
|
|
1534
|
-
modelId?: string;
|
|
1534
|
+
modelId?: string | undefined;
|
|
1535
1535
|
/**
|
|
1536
1536
|
* <p>The model version number.</p>
|
|
1537
1537
|
* @public
|
|
1538
1538
|
*/
|
|
1539
|
-
modelVersionNumber?: string;
|
|
1539
|
+
modelVersionNumber?: string | undefined;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* <p>The model type.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
modelType?: ModelTypeEnum;
|
|
1544
|
+
modelType?: ModelTypeEnum | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* <p>The next token from the previous results.</p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
nextToken?: string;
|
|
1549
|
+
nextToken?: string | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* <p>The maximum number of results to return.</p>
|
|
1552
1552
|
* @public
|
|
1553
1553
|
*/
|
|
1554
|
-
maxResults?: number;
|
|
1554
|
+
maxResults?: number | undefined;
|
|
1555
1555
|
}
|
|
1556
1556
|
/**
|
|
1557
1557
|
* <p>The message details.</p>
|
|
@@ -1562,27 +1562,27 @@ export interface FieldValidationMessage {
|
|
|
1562
1562
|
* <p>The field name.</p>
|
|
1563
1563
|
* @public
|
|
1564
1564
|
*/
|
|
1565
|
-
fieldName?: string;
|
|
1565
|
+
fieldName?: string | undefined;
|
|
1566
1566
|
/**
|
|
1567
1567
|
* <p>The message ID.</p>
|
|
1568
1568
|
* @public
|
|
1569
1569
|
*/
|
|
1570
|
-
identifier?: string;
|
|
1570
|
+
identifier?: string | undefined;
|
|
1571
1571
|
/**
|
|
1572
1572
|
* <p>The message title.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
title?: string;
|
|
1575
|
+
title?: string | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>The message content.</p>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
content?: string;
|
|
1580
|
+
content?: string | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>The message type.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
type?: string;
|
|
1585
|
+
type?: string | undefined;
|
|
1586
1586
|
}
|
|
1587
1587
|
/**
|
|
1588
1588
|
* <p>The message details.</p>
|
|
@@ -1593,17 +1593,17 @@ export interface FileValidationMessage {
|
|
|
1593
1593
|
* <p>The message title.</p>
|
|
1594
1594
|
* @public
|
|
1595
1595
|
*/
|
|
1596
|
-
title?: string;
|
|
1596
|
+
title?: string | undefined;
|
|
1597
1597
|
/**
|
|
1598
1598
|
* <p>The message content.</p>
|
|
1599
1599
|
* @public
|
|
1600
1600
|
*/
|
|
1601
|
-
content?: string;
|
|
1601
|
+
content?: string | undefined;
|
|
1602
1602
|
/**
|
|
1603
1603
|
* <p>The message type.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
type?: string;
|
|
1606
|
+
type?: string | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* <p>The model training data validation metrics.</p>
|
|
@@ -1614,12 +1614,12 @@ export interface DataValidationMetrics {
|
|
|
1614
1614
|
* <p>The file-specific model training data validation messages.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
fileLevelMessages?: FileValidationMessage[];
|
|
1617
|
+
fileLevelMessages?: FileValidationMessage[] | undefined;
|
|
1618
1618
|
/**
|
|
1619
1619
|
* <p>The field-specific model training validation messages.</p>
|
|
1620
1620
|
* @public
|
|
1621
1621
|
*/
|
|
1622
|
-
fieldLevelMessages?: FieldValidationMessage[];
|
|
1622
|
+
fieldLevelMessages?: FieldValidationMessage[] | undefined;
|
|
1623
1623
|
}
|
|
1624
1624
|
/**
|
|
1625
1625
|
* <p>Model performance metrics data points.</p>
|
|
@@ -1630,22 +1630,22 @@ export interface MetricDataPoint {
|
|
|
1630
1630
|
* <p>The false positive rate. This is the percentage of total legitimate events that are incorrectly predicted as fraud.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
fpr?: number;
|
|
1633
|
+
fpr?: number | undefined;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* <p>The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.</p>
|
|
1636
1636
|
* @public
|
|
1637
1637
|
*/
|
|
1638
|
-
precision?: number;
|
|
1638
|
+
precision?: number | undefined;
|
|
1639
1639
|
/**
|
|
1640
1640
|
* <p>The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.</p>
|
|
1641
1641
|
* @public
|
|
1642
1642
|
*/
|
|
1643
|
-
tpr?: number;
|
|
1643
|
+
tpr?: number | undefined;
|
|
1644
1644
|
/**
|
|
1645
1645
|
* <p>The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.</p>
|
|
1646
1646
|
* @public
|
|
1647
1647
|
*/
|
|
1648
|
-
threshold?: number;
|
|
1648
|
+
threshold?: number | undefined;
|
|
1649
1649
|
}
|
|
1650
1650
|
/**
|
|
1651
1651
|
* <p>The training metric details.</p>
|
|
@@ -1656,12 +1656,12 @@ export interface TrainingMetrics {
|
|
|
1656
1656
|
* <p>The area under the curve. This summarizes true positive rate (TPR) and false positive rate (FPR) across all possible model score thresholds. A model with no predictive power has an AUC of 0.5, whereas a perfect model has a score of 1.0.</p>
|
|
1657
1657
|
* @public
|
|
1658
1658
|
*/
|
|
1659
|
-
auc?: number;
|
|
1659
|
+
auc?: number | undefined;
|
|
1660
1660
|
/**
|
|
1661
1661
|
* <p>The data points details.</p>
|
|
1662
1662
|
* @public
|
|
1663
1663
|
*/
|
|
1664
|
-
metricDataPoints?: MetricDataPoint[];
|
|
1664
|
+
metricDataPoints?: MetricDataPoint[] | undefined;
|
|
1665
1665
|
}
|
|
1666
1666
|
/**
|
|
1667
1667
|
* <p>The log odds metric details.</p>
|
|
@@ -1693,7 +1693,7 @@ export interface VariableImportanceMetrics {
|
|
|
1693
1693
|
* <p>List of variable metrics.</p>
|
|
1694
1694
|
* @public
|
|
1695
1695
|
*/
|
|
1696
|
-
logOddsMetrics?: LogOddsMetric[];
|
|
1696
|
+
logOddsMetrics?: LogOddsMetric[] | undefined;
|
|
1697
1697
|
}
|
|
1698
1698
|
/**
|
|
1699
1699
|
* <p>The training result details.</p>
|
|
@@ -1704,17 +1704,17 @@ export interface TrainingResult {
|
|
|
1704
1704
|
* <p>The validation metrics.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
dataValidationMetrics?: DataValidationMetrics;
|
|
1707
|
+
dataValidationMetrics?: DataValidationMetrics | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* <p>The training metric details.</p>
|
|
1710
1710
|
* @public
|
|
1711
1711
|
*/
|
|
1712
|
-
trainingMetrics?: TrainingMetrics;
|
|
1712
|
+
trainingMetrics?: TrainingMetrics | undefined;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* <p>The variable importance metrics.</p>
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
variableImportanceMetrics?: VariableImportanceMetrics;
|
|
1717
|
+
variableImportanceMetrics?: VariableImportanceMetrics | undefined;
|
|
1718
1718
|
}
|
|
1719
1719
|
/**
|
|
1720
1720
|
* <p>
|
|
@@ -1729,28 +1729,28 @@ export interface OFIMetricDataPoint {
|
|
|
1729
1729
|
* </p>
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
fpr?: number;
|
|
1732
|
+
fpr?: number | undefined;
|
|
1733
1733
|
/**
|
|
1734
1734
|
* <p>
|
|
1735
1735
|
* The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
|
|
1736
1736
|
* </p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
precision?: number;
|
|
1739
|
+
precision?: number | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>
|
|
1742
1742
|
* The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.
|
|
1743
1743
|
* </p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
tpr?: number;
|
|
1746
|
+
tpr?: number | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>
|
|
1749
1749
|
* The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any model score 500 or above is labeled as fraud.
|
|
1750
1750
|
* </p>
|
|
1751
1751
|
* @public
|
|
1752
1752
|
*/
|
|
1753
|
-
threshold?: number;
|
|
1753
|
+
threshold?: number | undefined;
|
|
1754
1754
|
}
|
|
1755
1755
|
/**
|
|
1756
1756
|
* <p>
|
|
@@ -1788,14 +1788,14 @@ export interface OFIModelPerformance {
|
|
|
1788
1788
|
* </p>
|
|
1789
1789
|
* @public
|
|
1790
1790
|
*/
|
|
1791
|
-
auc?: number;
|
|
1791
|
+
auc?: number | undefined;
|
|
1792
1792
|
/**
|
|
1793
1793
|
* <p>
|
|
1794
1794
|
* Indicates the range of area under curve (auc) expected from the OFI model. A range greater than 0.1 indicates higher model uncertainity.
|
|
1795
1795
|
* </p>
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
uncertaintyRange?: UncertaintyRange;
|
|
1798
|
+
uncertaintyRange?: UncertaintyRange | undefined;
|
|
1799
1799
|
}
|
|
1800
1800
|
/**
|
|
1801
1801
|
* <p>
|
|
@@ -1810,14 +1810,14 @@ export interface OFITrainingMetricsValue {
|
|
|
1810
1810
|
* </p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
metricDataPoints?: OFIMetricDataPoint[];
|
|
1813
|
+
metricDataPoints?: OFIMetricDataPoint[] | undefined;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>
|
|
1816
1816
|
* The model's overall performance score.
|
|
1817
1817
|
* </p>
|
|
1818
1818
|
* @public
|
|
1819
1819
|
*/
|
|
1820
|
-
modelPerformance?: OFIModelPerformance;
|
|
1820
|
+
modelPerformance?: OFIModelPerformance | undefined;
|
|
1821
1821
|
}
|
|
1822
1822
|
/**
|
|
1823
1823
|
* <p>
|
|
@@ -1832,21 +1832,21 @@ export interface TFIMetricDataPoint {
|
|
|
1832
1832
|
* </p>
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
fpr?: number;
|
|
1835
|
+
fpr?: number | undefined;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* <p>
|
|
1838
1838
|
* The percentage of fraud events correctly predicted as fraudulent as compared to all events predicted as fraudulent.
|
|
1839
1839
|
* </p>
|
|
1840
1840
|
* @public
|
|
1841
1841
|
*/
|
|
1842
|
-
precision?: number;
|
|
1842
|
+
precision?: number | undefined;
|
|
1843
1843
|
/**
|
|
1844
1844
|
* <p>
|
|
1845
1845
|
* The true positive rate. This is the percentage of total fraud the model detects. Also known as capture rate.
|
|
1846
1846
|
* </p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
tpr?: number;
|
|
1849
|
+
tpr?: number | undefined;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* <p>
|
|
1852
1852
|
* The model threshold that specifies an acceptable fraud capture rate. For example, a threshold of 500 means any
|
|
@@ -1854,7 +1854,7 @@ export interface TFIMetricDataPoint {
|
|
|
1854
1854
|
* </p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
threshold?: number;
|
|
1857
|
+
threshold?: number | undefined;
|
|
1858
1858
|
}
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>
|
|
@@ -1869,14 +1869,14 @@ export interface TFIModelPerformance {
|
|
|
1869
1869
|
* </p>
|
|
1870
1870
|
* @public
|
|
1871
1871
|
*/
|
|
1872
|
-
auc?: number;
|
|
1872
|
+
auc?: number | undefined;
|
|
1873
1873
|
/**
|
|
1874
1874
|
* <p>
|
|
1875
1875
|
* Indicates the range of area under curve (auc) expected from the TFI model. A range greater than 0.1 indicates higher model uncertainity.
|
|
1876
1876
|
* </p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
uncertaintyRange?: UncertaintyRange;
|
|
1879
|
+
uncertaintyRange?: UncertaintyRange | undefined;
|
|
1880
1880
|
}
|
|
1881
1881
|
/**
|
|
1882
1882
|
* <p>
|
|
@@ -1891,14 +1891,14 @@ export interface TFITrainingMetricsValue {
|
|
|
1891
1891
|
* </p>
|
|
1892
1892
|
* @public
|
|
1893
1893
|
*/
|
|
1894
|
-
metricDataPoints?: TFIMetricDataPoint[];
|
|
1894
|
+
metricDataPoints?: TFIMetricDataPoint[] | undefined;
|
|
1895
1895
|
/**
|
|
1896
1896
|
* <p>
|
|
1897
1897
|
* The model performance score.
|
|
1898
1898
|
* </p>
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
modelPerformance?: TFIModelPerformance;
|
|
1901
|
+
modelPerformance?: TFIModelPerformance | undefined;
|
|
1902
1902
|
}
|
|
1903
1903
|
/**
|
|
1904
1904
|
* <p>
|
|
@@ -1913,21 +1913,21 @@ export interface TrainingMetricsV2 {
|
|
|
1913
1913
|
* </p>
|
|
1914
1914
|
* @public
|
|
1915
1915
|
*/
|
|
1916
|
-
ofi?: OFITrainingMetricsValue;
|
|
1916
|
+
ofi?: OFITrainingMetricsValue | undefined;
|
|
1917
1917
|
/**
|
|
1918
1918
|
* <p>
|
|
1919
1919
|
* The Transaction Fraud Insights (TFI) model training metric details.
|
|
1920
1920
|
* </p>
|
|
1921
1921
|
* @public
|
|
1922
1922
|
*/
|
|
1923
|
-
tfi?: TFITrainingMetricsValue;
|
|
1923
|
+
tfi?: TFITrainingMetricsValue | undefined;
|
|
1924
1924
|
/**
|
|
1925
1925
|
* <p>
|
|
1926
1926
|
* The Account Takeover Insights (ATI) model training metric details.
|
|
1927
1927
|
* </p>
|
|
1928
1928
|
* @public
|
|
1929
1929
|
*/
|
|
1930
|
-
ati?: ATITrainingMetricsValue;
|
|
1930
|
+
ati?: ATITrainingMetricsValue | undefined;
|
|
1931
1931
|
}
|
|
1932
1932
|
/**
|
|
1933
1933
|
* <p>
|
|
@@ -1940,19 +1940,19 @@ export interface TrainingResultV2 {
|
|
|
1940
1940
|
* <p>The model training data validation metrics.</p>
|
|
1941
1941
|
* @public
|
|
1942
1942
|
*/
|
|
1943
|
-
dataValidationMetrics?: DataValidationMetrics;
|
|
1943
|
+
dataValidationMetrics?: DataValidationMetrics | undefined;
|
|
1944
1944
|
/**
|
|
1945
1945
|
* <p>
|
|
1946
1946
|
* The training metric details.
|
|
1947
1947
|
* </p>
|
|
1948
1948
|
* @public
|
|
1949
1949
|
*/
|
|
1950
|
-
trainingMetricsV2?: TrainingMetricsV2;
|
|
1950
|
+
trainingMetricsV2?: TrainingMetricsV2 | undefined;
|
|
1951
1951
|
/**
|
|
1952
1952
|
* <p>The variable importance metrics details.</p>
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
variableImportanceMetrics?: VariableImportanceMetrics;
|
|
1955
|
+
variableImportanceMetrics?: VariableImportanceMetrics | undefined;
|
|
1956
1956
|
/**
|
|
1957
1957
|
* <p>
|
|
1958
1958
|
* The variable importance metrics of the aggregated variables.
|
|
@@ -1962,7 +1962,7 @@ export interface TrainingResultV2 {
|
|
|
1962
1962
|
* In this case, event variables used to derive the aggregated variables are <code>IP address</code> and <code>user</code>.</p>
|
|
1963
1963
|
* @public
|
|
1964
1964
|
*/
|
|
1965
|
-
aggregatedVariablesImportanceMetrics?: AggregatedVariablesImportanceMetrics;
|
|
1965
|
+
aggregatedVariablesImportanceMetrics?: AggregatedVariablesImportanceMetrics | undefined;
|
|
1966
1966
|
}
|
|
1967
1967
|
/**
|
|
1968
1968
|
* <p>The details of the model version.</p>
|
|
@@ -1973,69 +1973,69 @@ export interface ModelVersionDetail {
|
|
|
1973
1973
|
* <p>The model ID.</p>
|
|
1974
1974
|
* @public
|
|
1975
1975
|
*/
|
|
1976
|
-
modelId?: string;
|
|
1976
|
+
modelId?: string | undefined;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* <p>The model type.</p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
modelType?: ModelTypeEnum;
|
|
1981
|
+
modelType?: ModelTypeEnum | undefined;
|
|
1982
1982
|
/**
|
|
1983
1983
|
* <p>The model version number.</p>
|
|
1984
1984
|
* @public
|
|
1985
1985
|
*/
|
|
1986
|
-
modelVersionNumber?: string;
|
|
1986
|
+
modelVersionNumber?: string | undefined;
|
|
1987
1987
|
/**
|
|
1988
1988
|
* <p>The status of the model version.</p>
|
|
1989
1989
|
* @public
|
|
1990
1990
|
*/
|
|
1991
|
-
status?: string;
|
|
1991
|
+
status?: string | undefined;
|
|
1992
1992
|
/**
|
|
1993
1993
|
* <p>The model version training data source.</p>
|
|
1994
1994
|
* @public
|
|
1995
1995
|
*/
|
|
1996
|
-
trainingDataSource?: TrainingDataSourceEnum;
|
|
1996
|
+
trainingDataSource?: TrainingDataSourceEnum | undefined;
|
|
1997
1997
|
/**
|
|
1998
1998
|
* <p>The training data schema.</p>
|
|
1999
1999
|
* @public
|
|
2000
2000
|
*/
|
|
2001
|
-
trainingDataSchema?: TrainingDataSchema;
|
|
2001
|
+
trainingDataSchema?: TrainingDataSchema | undefined;
|
|
2002
2002
|
/**
|
|
2003
2003
|
* <p>The external events data details. This will be populated if the <code>trainingDataSource</code> for the model version is specified as <code>EXTERNAL_EVENTS</code>.</p>
|
|
2004
2004
|
* @public
|
|
2005
2005
|
*/
|
|
2006
|
-
externalEventsDetail?: ExternalEventsDetail;
|
|
2006
|
+
externalEventsDetail?: ExternalEventsDetail | undefined;
|
|
2007
2007
|
/**
|
|
2008
2008
|
* <p>The ingested events data details. This will be populated if the <code>trainingDataSource</code> for the model version is specified as <code>INGESTED_EVENTS</code>.</p>
|
|
2009
2009
|
* @public
|
|
2010
2010
|
*/
|
|
2011
|
-
ingestedEventsDetail?: IngestedEventsDetail;
|
|
2011
|
+
ingestedEventsDetail?: IngestedEventsDetail | undefined;
|
|
2012
2012
|
/**
|
|
2013
2013
|
* <p>The training results.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
trainingResult?: TrainingResult;
|
|
2016
|
+
trainingResult?: TrainingResult | undefined;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* <p>The timestamp when the model was last updated.</p>
|
|
2019
2019
|
* @public
|
|
2020
2020
|
*/
|
|
2021
|
-
lastUpdatedTime?: string;
|
|
2021
|
+
lastUpdatedTime?: string | undefined;
|
|
2022
2022
|
/**
|
|
2023
2023
|
* <p>The timestamp when the model was created.</p>
|
|
2024
2024
|
* @public
|
|
2025
2025
|
*/
|
|
2026
|
-
createdTime?: string;
|
|
2026
|
+
createdTime?: string | undefined;
|
|
2027
2027
|
/**
|
|
2028
2028
|
* <p>The model version ARN.</p>
|
|
2029
2029
|
* @public
|
|
2030
2030
|
*/
|
|
2031
|
-
arn?: string;
|
|
2031
|
+
arn?: string | undefined;
|
|
2032
2032
|
/**
|
|
2033
2033
|
* <p>
|
|
2034
2034
|
* The training result details. The details include the relative importance of the variables.
|
|
2035
2035
|
* </p>
|
|
2036
2036
|
* @public
|
|
2037
2037
|
*/
|
|
2038
|
-
trainingResultV2?: TrainingResultV2;
|
|
2038
|
+
trainingResultV2?: TrainingResultV2 | undefined;
|
|
2039
2039
|
}
|
|
2040
2040
|
/**
|
|
2041
2041
|
* @public
|
|
@@ -2045,12 +2045,12 @@ export interface DescribeModelVersionsResult {
|
|
|
2045
2045
|
* <p>The model version details.</p>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
modelVersionDetails?: ModelVersionDetail[];
|
|
2048
|
+
modelVersionDetails?: ModelVersionDetail[] | undefined;
|
|
2049
2049
|
/**
|
|
2050
2050
|
* <p>The next token.</p>
|
|
2051
2051
|
* @public
|
|
2052
2052
|
*/
|
|
2053
|
-
nextToken?: string;
|
|
2053
|
+
nextToken?: string | undefined;
|
|
2054
2054
|
}
|
|
2055
2055
|
/**
|
|
2056
2056
|
* @public
|
|
@@ -2060,17 +2060,17 @@ export interface GetBatchImportJobsRequest {
|
|
|
2060
2060
|
* <p>The ID of the batch import job to get.</p>
|
|
2061
2061
|
* @public
|
|
2062
2062
|
*/
|
|
2063
|
-
jobId?: string;
|
|
2063
|
+
jobId?: string | undefined;
|
|
2064
2064
|
/**
|
|
2065
2065
|
* <p>The maximum number of objects to return for request.</p>
|
|
2066
2066
|
* @public
|
|
2067
2067
|
*/
|
|
2068
|
-
maxResults?: number;
|
|
2068
|
+
maxResults?: number | undefined;
|
|
2069
2069
|
/**
|
|
2070
2070
|
* <p>The next token from the previous request.</p>
|
|
2071
2071
|
* @public
|
|
2072
2072
|
*/
|
|
2073
|
-
nextToken?: string;
|
|
2073
|
+
nextToken?: string | undefined;
|
|
2074
2074
|
}
|
|
2075
2075
|
/**
|
|
2076
2076
|
* <p>The batch import job details.</p>
|
|
@@ -2081,67 +2081,67 @@ export interface BatchImport {
|
|
|
2081
2081
|
* <p>The ID of the batch import job. </p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
jobId?: string;
|
|
2084
|
+
jobId?: string | undefined;
|
|
2085
2085
|
/**
|
|
2086
2086
|
* <p>The status of the batch import job.</p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
status?: AsyncJobStatus;
|
|
2089
|
+
status?: AsyncJobStatus | undefined;
|
|
2090
2090
|
/**
|
|
2091
2091
|
* <p>The reason batch import job failed.</p>
|
|
2092
2092
|
* @public
|
|
2093
2093
|
*/
|
|
2094
|
-
failureReason?: string;
|
|
2094
|
+
failureReason?: string | undefined;
|
|
2095
2095
|
/**
|
|
2096
2096
|
* <p>Timestamp of when the batch import job started.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
startTime?: string;
|
|
2099
|
+
startTime?: string | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>Timestamp of when batch import job completed.</p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
completionTime?: string;
|
|
2104
|
+
completionTime?: string | undefined;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* <p>The Amazon S3 location of your data file for batch import.</p>
|
|
2107
2107
|
* @public
|
|
2108
2108
|
*/
|
|
2109
|
-
inputPath?: string;
|
|
2109
|
+
inputPath?: string | undefined;
|
|
2110
2110
|
/**
|
|
2111
2111
|
* <p>The Amazon S3 location of your output file.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
outputPath?: string;
|
|
2114
|
+
outputPath?: string | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* <p>The name of the event type.</p>
|
|
2117
2117
|
* @public
|
|
2118
2118
|
*/
|
|
2119
|
-
eventTypeName?: string;
|
|
2119
|
+
eventTypeName?: string | undefined;
|
|
2120
2120
|
/**
|
|
2121
2121
|
* <p>The ARN of the IAM role to use for this job request.</p>
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
iamRoleArn?: string;
|
|
2124
|
+
iamRoleArn?: string | undefined;
|
|
2125
2125
|
/**
|
|
2126
2126
|
* <p>The ARN of the batch import job.</p>
|
|
2127
2127
|
* @public
|
|
2128
2128
|
*/
|
|
2129
|
-
arn?: string;
|
|
2129
|
+
arn?: string | undefined;
|
|
2130
2130
|
/**
|
|
2131
2131
|
* <p>The number of records processed by batch import job.</p>
|
|
2132
2132
|
* @public
|
|
2133
2133
|
*/
|
|
2134
|
-
processedRecordsCount?: number;
|
|
2134
|
+
processedRecordsCount?: number | undefined;
|
|
2135
2135
|
/**
|
|
2136
2136
|
* <p>The number of records that failed to import. </p>
|
|
2137
2137
|
* @public
|
|
2138
2138
|
*/
|
|
2139
|
-
failedRecordsCount?: number;
|
|
2139
|
+
failedRecordsCount?: number | undefined;
|
|
2140
2140
|
/**
|
|
2141
2141
|
* <p>The total number of records in the batch import job.</p>
|
|
2142
2142
|
* @public
|
|
2143
2143
|
*/
|
|
2144
|
-
totalRecordsCount?: number;
|
|
2144
|
+
totalRecordsCount?: number | undefined;
|
|
2145
2145
|
}
|
|
2146
2146
|
/**
|
|
2147
2147
|
* @public
|
|
@@ -2151,12 +2151,12 @@ export interface GetBatchImportJobsResult {
|
|
|
2151
2151
|
* <p>An array containing the details of each batch import job.</p>
|
|
2152
2152
|
* @public
|
|
2153
2153
|
*/
|
|
2154
|
-
batchImports?: BatchImport[];
|
|
2154
|
+
batchImports?: BatchImport[] | undefined;
|
|
2155
2155
|
/**
|
|
2156
2156
|
* <p>The next token for the subsequent resquest.</p>
|
|
2157
2157
|
* @public
|
|
2158
2158
|
*/
|
|
2159
|
-
nextToken?: string;
|
|
2159
|
+
nextToken?: string | undefined;
|
|
2160
2160
|
}
|
|
2161
2161
|
/**
|
|
2162
2162
|
* @public
|
|
@@ -2166,17 +2166,17 @@ export interface GetBatchPredictionJobsRequest {
|
|
|
2166
2166
|
* <p>The batch prediction job for which to get the details.</p>
|
|
2167
2167
|
* @public
|
|
2168
2168
|
*/
|
|
2169
|
-
jobId?: string;
|
|
2169
|
+
jobId?: string | undefined;
|
|
2170
2170
|
/**
|
|
2171
2171
|
* <p>The maximum number of objects to return for the request.</p>
|
|
2172
2172
|
* @public
|
|
2173
2173
|
*/
|
|
2174
|
-
maxResults?: number;
|
|
2174
|
+
maxResults?: number | undefined;
|
|
2175
2175
|
/**
|
|
2176
2176
|
* <p>The next token from the previous request.</p>
|
|
2177
2177
|
* @public
|
|
2178
2178
|
*/
|
|
2179
|
-
nextToken?: string;
|
|
2179
|
+
nextToken?: string | undefined;
|
|
2180
2180
|
}
|
|
2181
2181
|
/**
|
|
2182
2182
|
* <p>The batch prediction details.</p>
|
|
@@ -2187,77 +2187,77 @@ export interface BatchPrediction {
|
|
|
2187
2187
|
* <p>The job ID for the batch prediction.</p>
|
|
2188
2188
|
* @public
|
|
2189
2189
|
*/
|
|
2190
|
-
jobId?: string;
|
|
2190
|
+
jobId?: string | undefined;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* <p>The batch prediction status.</p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
status?: AsyncJobStatus;
|
|
2195
|
+
status?: AsyncJobStatus | undefined;
|
|
2196
2196
|
/**
|
|
2197
2197
|
* <p>The reason a batch prediction job failed.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
failureReason?: string;
|
|
2200
|
+
failureReason?: string | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>Timestamp of when the batch prediction job started.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
startTime?: string;
|
|
2205
|
+
startTime?: string | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>Timestamp of when the batch prediction job completed.</p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
completionTime?: string;
|
|
2210
|
+
completionTime?: string | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>Timestamp of most recent heartbeat indicating the batch prediction job was making progress.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
lastHeartbeatTime?: string;
|
|
2215
|
+
lastHeartbeatTime?: string | undefined;
|
|
2216
2216
|
/**
|
|
2217
2217
|
* <p>The Amazon S3 location of your training file.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
inputPath?: string;
|
|
2220
|
+
inputPath?: string | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* <p>The Amazon S3 location of your output file.</p>
|
|
2223
2223
|
* @public
|
|
2224
2224
|
*/
|
|
2225
|
-
outputPath?: string;
|
|
2225
|
+
outputPath?: string | undefined;
|
|
2226
2226
|
/**
|
|
2227
2227
|
* <p>The name of the event type.</p>
|
|
2228
2228
|
* @public
|
|
2229
2229
|
*/
|
|
2230
|
-
eventTypeName?: string;
|
|
2230
|
+
eventTypeName?: string | undefined;
|
|
2231
2231
|
/**
|
|
2232
2232
|
* <p>The name of the detector.</p>
|
|
2233
2233
|
* @public
|
|
2234
2234
|
*/
|
|
2235
|
-
detectorName?: string;
|
|
2235
|
+
detectorName?: string | undefined;
|
|
2236
2236
|
/**
|
|
2237
2237
|
* <p>The detector version. </p>
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
detectorVersion?: string;
|
|
2240
|
+
detectorVersion?: string | undefined;
|
|
2241
2241
|
/**
|
|
2242
2242
|
* <p>The ARN of the IAM role to use for this job request.</p>
|
|
2243
2243
|
* @public
|
|
2244
2244
|
*/
|
|
2245
|
-
iamRoleArn?: string;
|
|
2245
|
+
iamRoleArn?: string | undefined;
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>The ARN of batch prediction job.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
arn?: string;
|
|
2250
|
+
arn?: string | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The number of records processed by the batch prediction job.</p>
|
|
2253
2253
|
* @public
|
|
2254
2254
|
*/
|
|
2255
|
-
processedRecordsCount?: number;
|
|
2255
|
+
processedRecordsCount?: number | undefined;
|
|
2256
2256
|
/**
|
|
2257
2257
|
* <p>The total number of records in the batch prediction job.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
totalRecordsCount?: number;
|
|
2260
|
+
totalRecordsCount?: number | undefined;
|
|
2261
2261
|
}
|
|
2262
2262
|
/**
|
|
2263
2263
|
* @public
|
|
@@ -2267,12 +2267,12 @@ export interface GetBatchPredictionJobsResult {
|
|
|
2267
2267
|
* <p>An array containing the details of each batch prediction job.</p>
|
|
2268
2268
|
* @public
|
|
2269
2269
|
*/
|
|
2270
|
-
batchPredictions?: BatchPrediction[];
|
|
2270
|
+
batchPredictions?: BatchPrediction[] | undefined;
|
|
2271
2271
|
/**
|
|
2272
2272
|
* <p>The next token for the subsequent request.</p>
|
|
2273
2273
|
* @public
|
|
2274
2274
|
*/
|
|
2275
|
-
nextToken?: string;
|
|
2275
|
+
nextToken?: string | undefined;
|
|
2276
2276
|
}
|
|
2277
2277
|
/**
|
|
2278
2278
|
* @public
|
|
@@ -2292,12 +2292,12 @@ export interface GetDeleteEventsByEventTypeStatusResult {
|
|
|
2292
2292
|
* <p>The event type name.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
eventTypeName?: string;
|
|
2295
|
+
eventTypeName?: string | undefined;
|
|
2296
2296
|
/**
|
|
2297
2297
|
* <p>The deletion status.</p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
eventsDeletionStatus?: AsyncJobStatus;
|
|
2300
|
+
eventsDeletionStatus?: AsyncJobStatus | undefined;
|
|
2301
2301
|
}
|
|
2302
2302
|
/**
|
|
2303
2303
|
* @public
|
|
@@ -2307,17 +2307,17 @@ export interface GetDetectorsRequest {
|
|
|
2307
2307
|
* <p>The detector ID.</p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
detectorId?: string;
|
|
2310
|
+
detectorId?: string | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>The next token for the subsequent request.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
nextToken?: string;
|
|
2315
|
+
nextToken?: string | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>The maximum number of objects to return for the request.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
maxResults?: number;
|
|
2320
|
+
maxResults?: number | undefined;
|
|
2321
2321
|
}
|
|
2322
2322
|
/**
|
|
2323
2323
|
* <p>The detector.</p>
|
|
@@ -2328,32 +2328,32 @@ export interface Detector {
|
|
|
2328
2328
|
* <p>The detector ID.</p>
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
detectorId?: string;
|
|
2331
|
+
detectorId?: string | undefined;
|
|
2332
2332
|
/**
|
|
2333
2333
|
* <p>The detector description.</p>
|
|
2334
2334
|
* @public
|
|
2335
2335
|
*/
|
|
2336
|
-
description?: string;
|
|
2336
|
+
description?: string | undefined;
|
|
2337
2337
|
/**
|
|
2338
2338
|
* <p>The name of the event type.</p>
|
|
2339
2339
|
* @public
|
|
2340
2340
|
*/
|
|
2341
|
-
eventTypeName?: string;
|
|
2341
|
+
eventTypeName?: string | undefined;
|
|
2342
2342
|
/**
|
|
2343
2343
|
* <p>Timestamp of when the detector was last updated.</p>
|
|
2344
2344
|
* @public
|
|
2345
2345
|
*/
|
|
2346
|
-
lastUpdatedTime?: string;
|
|
2346
|
+
lastUpdatedTime?: string | undefined;
|
|
2347
2347
|
/**
|
|
2348
2348
|
* <p>Timestamp of when the detector was created.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
createdTime?: string;
|
|
2351
|
+
createdTime?: string | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>The detector ARN.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
arn?: string;
|
|
2356
|
+
arn?: string | undefined;
|
|
2357
2357
|
}
|
|
2358
2358
|
/**
|
|
2359
2359
|
* @public
|
|
@@ -2363,12 +2363,12 @@ export interface GetDetectorsResult {
|
|
|
2363
2363
|
* <p>The detectors.</p>
|
|
2364
2364
|
* @public
|
|
2365
2365
|
*/
|
|
2366
|
-
detectors?: Detector[];
|
|
2366
|
+
detectors?: Detector[] | undefined;
|
|
2367
2367
|
/**
|
|
2368
2368
|
* <p>The next page token.</p>
|
|
2369
2369
|
* @public
|
|
2370
2370
|
*/
|
|
2371
|
-
nextToken?: string;
|
|
2371
|
+
nextToken?: string | undefined;
|
|
2372
2372
|
}
|
|
2373
2373
|
/**
|
|
2374
2374
|
* @public
|
|
@@ -2393,48 +2393,48 @@ export interface GetDetectorVersionResult {
|
|
|
2393
2393
|
* <p>The detector ID.</p>
|
|
2394
2394
|
* @public
|
|
2395
2395
|
*/
|
|
2396
|
-
detectorId?: string;
|
|
2396
|
+
detectorId?: string | undefined;
|
|
2397
2397
|
/**
|
|
2398
2398
|
* <p>The detector version ID.</p>
|
|
2399
2399
|
* @public
|
|
2400
2400
|
*/
|
|
2401
|
-
detectorVersionId?: string;
|
|
2401
|
+
detectorVersionId?: string | undefined;
|
|
2402
2402
|
/**
|
|
2403
2403
|
* <p>The detector version description.</p>
|
|
2404
2404
|
* @public
|
|
2405
2405
|
*/
|
|
2406
|
-
description?: string;
|
|
2406
|
+
description?: string | undefined;
|
|
2407
2407
|
/**
|
|
2408
2408
|
* <p>The Amazon SageMaker model endpoints included in the detector version.</p>
|
|
2409
2409
|
* @public
|
|
2410
2410
|
*/
|
|
2411
|
-
externalModelEndpoints?: string[];
|
|
2411
|
+
externalModelEndpoints?: string[] | undefined;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* <p>The model versions included in the detector version. </p>
|
|
2414
2414
|
* @public
|
|
2415
2415
|
*/
|
|
2416
|
-
modelVersions?: ModelVersion[];
|
|
2416
|
+
modelVersions?: ModelVersion[] | undefined;
|
|
2417
2417
|
/**
|
|
2418
2418
|
* <p>The rules included in the detector version.</p>
|
|
2419
2419
|
* @public
|
|
2420
2420
|
*/
|
|
2421
|
-
rules?: Rule[];
|
|
2421
|
+
rules?: Rule[] | undefined;
|
|
2422
2422
|
/**
|
|
2423
2423
|
* <p>The status of the detector version.</p>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
status?: DetectorVersionStatus;
|
|
2426
|
+
status?: DetectorVersionStatus | undefined;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* <p>The timestamp when the detector version was last updated.
|
|
2429
2429
|
* </p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
lastUpdatedTime?: string;
|
|
2432
|
+
lastUpdatedTime?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>The timestamp when the detector version was created. </p>
|
|
2435
2435
|
* @public
|
|
2436
2436
|
*/
|
|
2437
|
-
createdTime?: string;
|
|
2437
|
+
createdTime?: string | undefined;
|
|
2438
2438
|
/**
|
|
2439
2439
|
* <p>The execution mode of the rule in the dectector</p>
|
|
2440
2440
|
* <p>
|
|
@@ -2443,12 +2443,12 @@ export interface GetDetectorVersionResult {
|
|
|
2443
2443
|
* <code>ALL_MATCHED</code> indicates that Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules. You can define and edit the rule mode at the detector version level, when it is in draft status.</p>
|
|
2444
2444
|
* @public
|
|
2445
2445
|
*/
|
|
2446
|
-
ruleExecutionMode?: RuleExecutionMode;
|
|
2446
|
+
ruleExecutionMode?: RuleExecutionMode | undefined;
|
|
2447
2447
|
/**
|
|
2448
2448
|
* <p>The detector version ARN.</p>
|
|
2449
2449
|
* @public
|
|
2450
2450
|
*/
|
|
2451
|
-
arn?: string;
|
|
2451
|
+
arn?: string | undefined;
|
|
2452
2452
|
}
|
|
2453
2453
|
/**
|
|
2454
2454
|
* @public
|
|
@@ -2458,17 +2458,17 @@ export interface GetEntityTypesRequest {
|
|
|
2458
2458
|
* <p>The name.</p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
name?: string;
|
|
2461
|
+
name?: string | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p>The next token for the subsequent request.</p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
nextToken?: string;
|
|
2466
|
+
nextToken?: string | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>The maximum number of objects to return for the request.</p>
|
|
2469
2469
|
* @public
|
|
2470
2470
|
*/
|
|
2471
|
-
maxResults?: number;
|
|
2471
|
+
maxResults?: number | undefined;
|
|
2472
2472
|
}
|
|
2473
2473
|
/**
|
|
2474
2474
|
* <p>The entity type details.</p>
|
|
@@ -2479,27 +2479,27 @@ export interface EntityType {
|
|
|
2479
2479
|
* <p>The entity type name.</p>
|
|
2480
2480
|
* @public
|
|
2481
2481
|
*/
|
|
2482
|
-
name?: string;
|
|
2482
|
+
name?: string | undefined;
|
|
2483
2483
|
/**
|
|
2484
2484
|
* <p>The entity type description.</p>
|
|
2485
2485
|
* @public
|
|
2486
2486
|
*/
|
|
2487
|
-
description?: string;
|
|
2487
|
+
description?: string | undefined;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* <p>Timestamp of when the entity type was last updated.</p>
|
|
2490
2490
|
* @public
|
|
2491
2491
|
*/
|
|
2492
|
-
lastUpdatedTime?: string;
|
|
2492
|
+
lastUpdatedTime?: string | undefined;
|
|
2493
2493
|
/**
|
|
2494
2494
|
* <p>Timestamp of when the entity type was created.</p>
|
|
2495
2495
|
* @public
|
|
2496
2496
|
*/
|
|
2497
|
-
createdTime?: string;
|
|
2497
|
+
createdTime?: string | undefined;
|
|
2498
2498
|
/**
|
|
2499
2499
|
* <p>The entity type ARN.</p>
|
|
2500
2500
|
* @public
|
|
2501
2501
|
*/
|
|
2502
|
-
arn?: string;
|
|
2502
|
+
arn?: string | undefined;
|
|
2503
2503
|
}
|
|
2504
2504
|
/**
|
|
2505
2505
|
* @public
|
|
@@ -2509,12 +2509,12 @@ export interface GetEntityTypesResult {
|
|
|
2509
2509
|
* <p>An array of entity types.</p>
|
|
2510
2510
|
* @public
|
|
2511
2511
|
*/
|
|
2512
|
-
entityTypes?: EntityType[];
|
|
2512
|
+
entityTypes?: EntityType[] | undefined;
|
|
2513
2513
|
/**
|
|
2514
2514
|
* <p>The next page token.</p>
|
|
2515
2515
|
* @public
|
|
2516
2516
|
*/
|
|
2517
|
-
nextToken?: string;
|
|
2517
|
+
nextToken?: string | undefined;
|
|
2518
2518
|
}
|
|
2519
2519
|
/**
|
|
2520
2520
|
* @public
|
|
@@ -2556,37 +2556,37 @@ export interface Event {
|
|
|
2556
2556
|
* <p>The event ID.</p>
|
|
2557
2557
|
* @public
|
|
2558
2558
|
*/
|
|
2559
|
-
eventId?: string;
|
|
2559
|
+
eventId?: string | undefined;
|
|
2560
2560
|
/**
|
|
2561
2561
|
* <p>The event type.</p>
|
|
2562
2562
|
* @public
|
|
2563
2563
|
*/
|
|
2564
|
-
eventTypeName?: string;
|
|
2564
|
+
eventTypeName?: string | undefined;
|
|
2565
2565
|
/**
|
|
2566
2566
|
* <p>The timestamp that defines when the event under evaluation occurred. The timestamp must be specified using ISO 8601 standard in UTC.</p>
|
|
2567
2567
|
* @public
|
|
2568
2568
|
*/
|
|
2569
|
-
eventTimestamp?: string;
|
|
2569
|
+
eventTimestamp?: string | undefined;
|
|
2570
2570
|
/**
|
|
2571
2571
|
* <p>Names of the event type's variables you defined in Amazon Fraud Detector to represent data elements and their corresponding values for the event you are sending for evaluation.</p>
|
|
2572
2572
|
* @public
|
|
2573
2573
|
*/
|
|
2574
|
-
eventVariables?: Record<string, string
|
|
2574
|
+
eventVariables?: Record<string, string> | undefined;
|
|
2575
2575
|
/**
|
|
2576
2576
|
* <p>The label associated with the event.</p>
|
|
2577
2577
|
* @public
|
|
2578
2578
|
*/
|
|
2579
|
-
currentLabel?: string;
|
|
2579
|
+
currentLabel?: string | undefined;
|
|
2580
2580
|
/**
|
|
2581
2581
|
* <p>The timestamp associated with the label to update. The timestamp must be specified using ISO 8601 standard in UTC.</p>
|
|
2582
2582
|
* @public
|
|
2583
2583
|
*/
|
|
2584
|
-
labelTimestamp?: string;
|
|
2584
|
+
labelTimestamp?: string | undefined;
|
|
2585
2585
|
/**
|
|
2586
2586
|
* <p>The event entities.</p>
|
|
2587
2587
|
* @public
|
|
2588
2588
|
*/
|
|
2589
|
-
entities?: Entity[];
|
|
2589
|
+
entities?: Entity[] | undefined;
|
|
2590
2590
|
}
|
|
2591
2591
|
/**
|
|
2592
2592
|
* @public
|
|
@@ -2596,7 +2596,7 @@ export interface GetEventResult {
|
|
|
2596
2596
|
* <p>The details of the event.</p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
event?: Event;
|
|
2599
|
+
event?: Event | undefined;
|
|
2600
2600
|
}
|
|
2601
2601
|
/**
|
|
2602
2602
|
* <p>A pre-formed Amazon SageMaker model input you can include if your detector version includes an imported Amazon SageMaker model endpoint with pass-through input configuration.</p>
|
|
@@ -2607,12 +2607,12 @@ export interface ModelEndpointDataBlob {
|
|
|
2607
2607
|
* <p>The byte buffer of the Amazon SageMaker model endpoint input data blob.</p>
|
|
2608
2608
|
* @public
|
|
2609
2609
|
*/
|
|
2610
|
-
byteBuffer?: Uint8Array;
|
|
2610
|
+
byteBuffer?: Uint8Array | undefined;
|
|
2611
2611
|
/**
|
|
2612
2612
|
* <p>The content type of the Amazon SageMaker model endpoint input data blob. </p>
|
|
2613
2613
|
* @public
|
|
2614
2614
|
*/
|
|
2615
|
-
contentType?: string;
|
|
2615
|
+
contentType?: string | undefined;
|
|
2616
2616
|
}
|
|
2617
2617
|
/**
|
|
2618
2618
|
* @public
|
|
@@ -2627,7 +2627,7 @@ export interface GetEventPredictionRequest {
|
|
|
2627
2627
|
* <p>The detector version ID.</p>
|
|
2628
2628
|
* @public
|
|
2629
2629
|
*/
|
|
2630
|
-
detectorVersionId?: string;
|
|
2630
|
+
detectorVersionId?: string | undefined;
|
|
2631
2631
|
/**
|
|
2632
2632
|
* <p>The unique ID used to identify the event.</p>
|
|
2633
2633
|
* @public
|
|
@@ -2672,7 +2672,7 @@ export interface GetEventPredictionRequest {
|
|
|
2672
2672
|
* <p>The Amazon SageMaker model endpoint input data blobs.</p>
|
|
2673
2673
|
* @public
|
|
2674
2674
|
*/
|
|
2675
|
-
externalModelEndpointDataBlobs?: Record<string, ModelEndpointDataBlob
|
|
2675
|
+
externalModelEndpointDataBlobs?: Record<string, ModelEndpointDataBlob> | undefined;
|
|
2676
2676
|
}
|
|
2677
2677
|
/**
|
|
2678
2678
|
* @public
|
|
@@ -2694,12 +2694,12 @@ export interface ExternalModelSummary {
|
|
|
2694
2694
|
* <p>The endpoint of the Amazon SageMaker model.</p>
|
|
2695
2695
|
* @public
|
|
2696
2696
|
*/
|
|
2697
|
-
modelEndpoint?: string;
|
|
2697
|
+
modelEndpoint?: string | undefined;
|
|
2698
2698
|
/**
|
|
2699
2699
|
* <p>The source of the model.</p>
|
|
2700
2700
|
* @public
|
|
2701
2701
|
*/
|
|
2702
|
-
modelSource?: ModelSource;
|
|
2702
|
+
modelSource?: ModelSource | undefined;
|
|
2703
2703
|
}
|
|
2704
2704
|
/**
|
|
2705
2705
|
* <p>The fraud prediction scores from Amazon SageMaker model.</p>
|
|
@@ -2710,12 +2710,12 @@ export interface ExternalModelOutputs {
|
|
|
2710
2710
|
* <p>The Amazon SageMaker model.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
externalModel?: ExternalModelSummary;
|
|
2713
|
+
externalModel?: ExternalModelSummary | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>The fraud prediction scores from Amazon SageMaker model.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
outputs?: Record<string, string
|
|
2718
|
+
outputs?: Record<string, string> | undefined;
|
|
2719
2719
|
}
|
|
2720
2720
|
/**
|
|
2721
2721
|
* <p>The fraud prediction scores.</p>
|
|
@@ -2726,12 +2726,12 @@ export interface ModelScores {
|
|
|
2726
2726
|
* <p>The model version.</p>
|
|
2727
2727
|
* @public
|
|
2728
2728
|
*/
|
|
2729
|
-
modelVersion?: ModelVersion;
|
|
2729
|
+
modelVersion?: ModelVersion | undefined;
|
|
2730
2730
|
/**
|
|
2731
2731
|
* <p>The model's fraud prediction scores.</p>
|
|
2732
2732
|
* @public
|
|
2733
2733
|
*/
|
|
2734
|
-
scores?: Record<string, number
|
|
2734
|
+
scores?: Record<string, number> | undefined;
|
|
2735
2735
|
}
|
|
2736
2736
|
/**
|
|
2737
2737
|
* <p>The rule results.</p>
|
|
@@ -2742,12 +2742,12 @@ export interface RuleResult {
|
|
|
2742
2742
|
* <p>The rule ID that was matched, based on the rule execution mode.</p>
|
|
2743
2743
|
* @public
|
|
2744
2744
|
*/
|
|
2745
|
-
ruleId?: string;
|
|
2745
|
+
ruleId?: string | undefined;
|
|
2746
2746
|
/**
|
|
2747
2747
|
* <p>The outcomes of the matched rule, based on the rule execution mode.</p>
|
|
2748
2748
|
* @public
|
|
2749
2749
|
*/
|
|
2750
|
-
outcomes?: string[];
|
|
2750
|
+
outcomes?: string[] | undefined;
|
|
2751
2751
|
}
|
|
2752
2752
|
/**
|
|
2753
2753
|
* @public
|
|
@@ -2757,17 +2757,17 @@ export interface GetEventPredictionResult {
|
|
|
2757
2757
|
* <p>The model scores. Amazon Fraud Detector generates model scores between 0 and 1000, where 0 is low fraud risk and 1000 is high fraud risk. Model scores are directly related to the false positive rate (FPR). For example, a score of 600 corresponds to an estimated 10% false positive rate whereas a score of 900 corresponds to an estimated 2% false positive rate.</p>
|
|
2758
2758
|
* @public
|
|
2759
2759
|
*/
|
|
2760
|
-
modelScores?: ModelScores[];
|
|
2760
|
+
modelScores?: ModelScores[] | undefined;
|
|
2761
2761
|
/**
|
|
2762
2762
|
* <p>The results from the rules.</p>
|
|
2763
2763
|
* @public
|
|
2764
2764
|
*/
|
|
2765
|
-
ruleResults?: RuleResult[];
|
|
2765
|
+
ruleResults?: RuleResult[] | undefined;
|
|
2766
2766
|
/**
|
|
2767
2767
|
* <p>The model scores for Amazon SageMaker models.</p>
|
|
2768
2768
|
* @public
|
|
2769
2769
|
*/
|
|
2770
|
-
externalModelOutputs?: ExternalModelOutputs[];
|
|
2770
|
+
externalModelOutputs?: ExternalModelOutputs[] | undefined;
|
|
2771
2771
|
}
|
|
2772
2772
|
/**
|
|
2773
2773
|
* <p>An exception indicating that the attached customer-owned (external) model threw an exception when Amazon Fraud Detector invoked the model.</p>
|
|
@@ -2835,28 +2835,28 @@ export interface EvaluatedExternalModel {
|
|
|
2835
2835
|
* </p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
modelEndpoint?: string;
|
|
2838
|
+
modelEndpoint?: string | undefined;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* <p>
|
|
2841
2841
|
* Indicates whether event variables were used to generate predictions.
|
|
2842
2842
|
* </p>
|
|
2843
2843
|
* @public
|
|
2844
2844
|
*/
|
|
2845
|
-
useEventVariables?: boolean;
|
|
2845
|
+
useEventVariables?: boolean | undefined;
|
|
2846
2846
|
/**
|
|
2847
2847
|
* <p>
|
|
2848
2848
|
* Input variables use for generating predictions.
|
|
2849
2849
|
* </p>
|
|
2850
2850
|
* @public
|
|
2851
2851
|
*/
|
|
2852
|
-
inputVariables?: Record<string, string
|
|
2852
|
+
inputVariables?: Record<string, string> | undefined;
|
|
2853
2853
|
/**
|
|
2854
2854
|
* <p>
|
|
2855
2855
|
* Output variables.
|
|
2856
2856
|
* </p>
|
|
2857
2857
|
* @public
|
|
2858
2858
|
*/
|
|
2859
|
-
outputVariables?: Record<string, string
|
|
2859
|
+
outputVariables?: Record<string, string> | undefined;
|
|
2860
2860
|
}
|
|
2861
2861
|
/**
|
|
2862
2862
|
* <p>
|
|
@@ -2871,7 +2871,7 @@ export interface VariableImpactExplanation {
|
|
|
2871
2871
|
* </p>
|
|
2872
2872
|
* @public
|
|
2873
2873
|
*/
|
|
2874
|
-
eventVariableName?: string;
|
|
2874
|
+
eventVariableName?: string | undefined;
|
|
2875
2875
|
/**
|
|
2876
2876
|
* <p>
|
|
2877
2877
|
* The event variable's relative impact in terms of magnitude on the prediction scores.
|
|
@@ -2879,7 +2879,7 @@ export interface VariableImpactExplanation {
|
|
|
2879
2879
|
* </p>
|
|
2880
2880
|
* @public
|
|
2881
2881
|
*/
|
|
2882
|
-
relativeImpact?: string;
|
|
2882
|
+
relativeImpact?: string | undefined;
|
|
2883
2883
|
/**
|
|
2884
2884
|
* <p>
|
|
2885
2885
|
* The raw, uninterpreted value represented as log-odds of the fraud. These values are usually between -10 to +10, but range from - infinity to + infinity.</p>
|
|
@@ -2893,7 +2893,7 @@ export interface VariableImpactExplanation {
|
|
|
2893
2893
|
* </ul>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
logOddsImpact?: number;
|
|
2896
|
+
logOddsImpact?: number | undefined;
|
|
2897
2897
|
}
|
|
2898
2898
|
/**
|
|
2899
2899
|
* <p>
|
|
@@ -2908,7 +2908,7 @@ export interface PredictionExplanations {
|
|
|
2908
2908
|
* </p>
|
|
2909
2909
|
* @public
|
|
2910
2910
|
*/
|
|
2911
|
-
variableImpactExplanations?: VariableImpactExplanation[];
|
|
2911
|
+
variableImpactExplanations?: VariableImpactExplanation[] | undefined;
|
|
2912
2912
|
/**
|
|
2913
2913
|
* <p>
|
|
2914
2914
|
* The details of the aggregated variables impact on the prediction score.
|
|
@@ -2918,7 +2918,7 @@ export interface PredictionExplanations {
|
|
|
2918
2918
|
* In this case, event variables used to derive the aggregated variables are <code>IP address</code> and <code>user</code>.</p>
|
|
2919
2919
|
* @public
|
|
2920
2920
|
*/
|
|
2921
|
-
aggregatedVariablesImpactExplanations?: AggregatedVariablesImpactExplanation[];
|
|
2921
|
+
aggregatedVariablesImpactExplanations?: AggregatedVariablesImpactExplanation[] | undefined;
|
|
2922
2922
|
}
|
|
2923
2923
|
/**
|
|
2924
2924
|
* <p>
|
|
@@ -2933,21 +2933,21 @@ export interface ModelVersionEvaluation {
|
|
|
2933
2933
|
* </p>
|
|
2934
2934
|
* @public
|
|
2935
2935
|
*/
|
|
2936
|
-
outputVariableName?: string;
|
|
2936
|
+
outputVariableName?: string | undefined;
|
|
2937
2937
|
/**
|
|
2938
2938
|
* <p>
|
|
2939
2939
|
* The evaluation score generated for the model version.
|
|
2940
2940
|
* </p>
|
|
2941
2941
|
* @public
|
|
2942
2942
|
*/
|
|
2943
|
-
evaluationScore?: string;
|
|
2943
|
+
evaluationScore?: string | undefined;
|
|
2944
2944
|
/**
|
|
2945
2945
|
* <p>
|
|
2946
2946
|
* The prediction explanations generated for the model version.
|
|
2947
2947
|
* </p>
|
|
2948
2948
|
* @public
|
|
2949
2949
|
*/
|
|
2950
|
-
predictionExplanations?: PredictionExplanations;
|
|
2950
|
+
predictionExplanations?: PredictionExplanations | undefined;
|
|
2951
2951
|
}
|
|
2952
2952
|
/**
|
|
2953
2953
|
* <p>
|
|
@@ -2962,28 +2962,28 @@ export interface EvaluatedModelVersion {
|
|
|
2962
2962
|
* </p>
|
|
2963
2963
|
* @public
|
|
2964
2964
|
*/
|
|
2965
|
-
modelId?: string;
|
|
2965
|
+
modelId?: string | undefined;
|
|
2966
2966
|
/**
|
|
2967
2967
|
* <p>
|
|
2968
2968
|
* The model version.
|
|
2969
2969
|
* </p>
|
|
2970
2970
|
* @public
|
|
2971
2971
|
*/
|
|
2972
|
-
modelVersion?: string;
|
|
2972
|
+
modelVersion?: string | undefined;
|
|
2973
2973
|
/**
|
|
2974
2974
|
* <p>The model type. </p>
|
|
2975
2975
|
* <p>Valid values: <code>ONLINE_FRAUD_INSIGHTS</code> | <code>TRANSACTION_FRAUD_INSIGHTS</code>
|
|
2976
2976
|
* </p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
modelType?: string;
|
|
2979
|
+
modelType?: string | undefined;
|
|
2980
2980
|
/**
|
|
2981
2981
|
* <p>
|
|
2982
2982
|
* Evaluations generated for the model version.
|
|
2983
2983
|
* </p>
|
|
2984
2984
|
* @public
|
|
2985
2985
|
*/
|
|
2986
|
-
evaluations?: ModelVersionEvaluation[];
|
|
2986
|
+
evaluations?: ModelVersionEvaluation[] | undefined;
|
|
2987
2987
|
}
|
|
2988
2988
|
/**
|
|
2989
2989
|
* <p>
|
|
@@ -2998,21 +2998,21 @@ export interface EventVariableSummary {
|
|
|
2998
2998
|
* </p>
|
|
2999
2999
|
* @public
|
|
3000
3000
|
*/
|
|
3001
|
-
name?: string;
|
|
3001
|
+
name?: string | undefined;
|
|
3002
3002
|
/**
|
|
3003
3003
|
* <p>
|
|
3004
3004
|
* The value of the event variable.
|
|
3005
3005
|
* </p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
value?: string;
|
|
3008
|
+
value?: string | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p>
|
|
3011
3011
|
* The event variable source.
|
|
3012
3012
|
* </p>
|
|
3013
3013
|
* @public
|
|
3014
3014
|
*/
|
|
3015
|
-
source?: string;
|
|
3015
|
+
source?: string | undefined;
|
|
3016
3016
|
}
|
|
3017
3017
|
/**
|
|
3018
3018
|
* <p>
|
|
@@ -3027,49 +3027,49 @@ export interface EvaluatedRule {
|
|
|
3027
3027
|
* </p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
ruleId?: string;
|
|
3030
|
+
ruleId?: string | undefined;
|
|
3031
3031
|
/**
|
|
3032
3032
|
* <p>
|
|
3033
3033
|
* The rule version.
|
|
3034
3034
|
* </p>
|
|
3035
3035
|
* @public
|
|
3036
3036
|
*/
|
|
3037
|
-
ruleVersion?: string;
|
|
3037
|
+
ruleVersion?: string | undefined;
|
|
3038
3038
|
/**
|
|
3039
3039
|
* <p>
|
|
3040
3040
|
* The rule expression.
|
|
3041
3041
|
* </p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
expression?: string;
|
|
3044
|
+
expression?: string | undefined;
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>
|
|
3047
3047
|
* The rule expression value.
|
|
3048
3048
|
* </p>
|
|
3049
3049
|
* @public
|
|
3050
3050
|
*/
|
|
3051
|
-
expressionWithValues?: string;
|
|
3051
|
+
expressionWithValues?: string | undefined;
|
|
3052
3052
|
/**
|
|
3053
3053
|
* <p>
|
|
3054
3054
|
* The rule outcome.
|
|
3055
3055
|
* </p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
outcomes?: string[];
|
|
3058
|
+
outcomes?: string[] | undefined;
|
|
3059
3059
|
/**
|
|
3060
3060
|
* <p>
|
|
3061
3061
|
* Indicates whether the rule was evaluated.
|
|
3062
3062
|
* </p>
|
|
3063
3063
|
* @public
|
|
3064
3064
|
*/
|
|
3065
|
-
evaluated?: boolean;
|
|
3065
|
+
evaluated?: boolean | undefined;
|
|
3066
3066
|
/**
|
|
3067
3067
|
* <p>
|
|
3068
3068
|
* Indicates whether the rule matched.
|
|
3069
3069
|
* </p>
|
|
3070
3070
|
* @public
|
|
3071
3071
|
*/
|
|
3072
|
-
matched?: boolean;
|
|
3072
|
+
matched?: boolean | undefined;
|
|
3073
3073
|
}
|
|
3074
3074
|
/**
|
|
3075
3075
|
* @public
|
|
@@ -3081,103 +3081,103 @@ export interface GetEventPredictionMetadataResult {
|
|
|
3081
3081
|
* </p>
|
|
3082
3082
|
* @public
|
|
3083
3083
|
*/
|
|
3084
|
-
eventId?: string;
|
|
3084
|
+
eventId?: string | undefined;
|
|
3085
3085
|
/**
|
|
3086
3086
|
* <p>
|
|
3087
3087
|
* The event type associated with the detector specified for this prediction.
|
|
3088
3088
|
* </p>
|
|
3089
3089
|
* @public
|
|
3090
3090
|
*/
|
|
3091
|
-
eventTypeName?: string;
|
|
3091
|
+
eventTypeName?: string | undefined;
|
|
3092
3092
|
/**
|
|
3093
3093
|
* <p>
|
|
3094
3094
|
* The entity ID.
|
|
3095
3095
|
* </p>
|
|
3096
3096
|
* @public
|
|
3097
3097
|
*/
|
|
3098
|
-
entityId?: string;
|
|
3098
|
+
entityId?: string | undefined;
|
|
3099
3099
|
/**
|
|
3100
3100
|
* <p>
|
|
3101
3101
|
* The entity type.
|
|
3102
3102
|
* </p>
|
|
3103
3103
|
* @public
|
|
3104
3104
|
*/
|
|
3105
|
-
entityType?: string;
|
|
3105
|
+
entityType?: string | undefined;
|
|
3106
3106
|
/**
|
|
3107
3107
|
* <p>
|
|
3108
3108
|
* The timestamp for when the prediction was generated for the associated event ID.
|
|
3109
3109
|
* </p>
|
|
3110
3110
|
* @public
|
|
3111
3111
|
*/
|
|
3112
|
-
eventTimestamp?: string;
|
|
3112
|
+
eventTimestamp?: string | undefined;
|
|
3113
3113
|
/**
|
|
3114
3114
|
* <p>
|
|
3115
3115
|
* The detector ID.
|
|
3116
3116
|
* </p>
|
|
3117
3117
|
* @public
|
|
3118
3118
|
*/
|
|
3119
|
-
detectorId?: string;
|
|
3119
|
+
detectorId?: string | undefined;
|
|
3120
3120
|
/**
|
|
3121
3121
|
* <p>
|
|
3122
3122
|
* The detector version ID.
|
|
3123
3123
|
* </p>
|
|
3124
3124
|
* @public
|
|
3125
3125
|
*/
|
|
3126
|
-
detectorVersionId?: string;
|
|
3126
|
+
detectorVersionId?: string | undefined;
|
|
3127
3127
|
/**
|
|
3128
3128
|
* <p>
|
|
3129
3129
|
* The status of the detector version.
|
|
3130
3130
|
* </p>
|
|
3131
3131
|
* @public
|
|
3132
3132
|
*/
|
|
3133
|
-
detectorVersionStatus?: string;
|
|
3133
|
+
detectorVersionStatus?: string | undefined;
|
|
3134
3134
|
/**
|
|
3135
3135
|
* <p>
|
|
3136
3136
|
* A list of event variables that influenced the prediction scores.
|
|
3137
3137
|
* </p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
eventVariables?: EventVariableSummary[];
|
|
3140
|
+
eventVariables?: EventVariableSummary[] | undefined;
|
|
3141
3141
|
/**
|
|
3142
3142
|
* <p>
|
|
3143
3143
|
* List of rules associated with the detector version that were used for evaluating variable values.
|
|
3144
3144
|
* </p>
|
|
3145
3145
|
* @public
|
|
3146
3146
|
*/
|
|
3147
|
-
rules?: EvaluatedRule[];
|
|
3147
|
+
rules?: EvaluatedRule[] | undefined;
|
|
3148
3148
|
/**
|
|
3149
3149
|
* <p>
|
|
3150
3150
|
* The execution mode of the rule used for evaluating variable values.
|
|
3151
3151
|
* </p>
|
|
3152
3152
|
* @public
|
|
3153
3153
|
*/
|
|
3154
|
-
ruleExecutionMode?: RuleExecutionMode;
|
|
3154
|
+
ruleExecutionMode?: RuleExecutionMode | undefined;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>
|
|
3157
3157
|
* The outcomes of the matched rule, based on the rule execution mode.
|
|
3158
3158
|
* </p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
|
-
outcomes?: string[];
|
|
3161
|
+
outcomes?: string[] | undefined;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>
|
|
3164
3164
|
* Model versions that were evaluated for generating predictions.
|
|
3165
3165
|
* </p>
|
|
3166
3166
|
* @public
|
|
3167
3167
|
*/
|
|
3168
|
-
evaluatedModelVersions?: EvaluatedModelVersion[];
|
|
3168
|
+
evaluatedModelVersions?: EvaluatedModelVersion[] | undefined;
|
|
3169
3169
|
/**
|
|
3170
3170
|
* <p>
|
|
3171
3171
|
* External (Amazon SageMaker) models that were evaluated for generating predictions.
|
|
3172
3172
|
* </p>
|
|
3173
3173
|
* @public
|
|
3174
3174
|
*/
|
|
3175
|
-
evaluatedExternalModels?: EvaluatedExternalModel[];
|
|
3175
|
+
evaluatedExternalModels?: EvaluatedExternalModel[] | undefined;
|
|
3176
3176
|
/**
|
|
3177
3177
|
* <p>The timestamp that defines when the prediction was generated. </p>
|
|
3178
3178
|
* @public
|
|
3179
3179
|
*/
|
|
3180
|
-
predictionTimestamp?: string;
|
|
3180
|
+
predictionTimestamp?: string | undefined;
|
|
3181
3181
|
}
|
|
3182
3182
|
/**
|
|
3183
3183
|
* @public
|
|
@@ -3187,17 +3187,17 @@ export interface GetEventTypesRequest {
|
|
|
3187
3187
|
* <p>The name.</p>
|
|
3188
3188
|
* @public
|
|
3189
3189
|
*/
|
|
3190
|
-
name?: string;
|
|
3190
|
+
name?: string | undefined;
|
|
3191
3191
|
/**
|
|
3192
3192
|
* <p>The next token for the subsequent request.</p>
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
nextToken?: string;
|
|
3195
|
+
nextToken?: string | undefined;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* <p>The maximum number of objects to return for the request.</p>
|
|
3198
3198
|
* @public
|
|
3199
3199
|
*/
|
|
3200
|
-
maxResults?: number;
|
|
3200
|
+
maxResults?: number | undefined;
|
|
3201
3201
|
}
|
|
3202
3202
|
/**
|
|
3203
3203
|
* @public
|
|
@@ -3233,28 +3233,28 @@ export interface IngestedEventStatistics {
|
|
|
3233
3233
|
* <p>The number of stored events.</p>
|
|
3234
3234
|
* @public
|
|
3235
3235
|
*/
|
|
3236
|
-
numberOfEvents?: number;
|
|
3236
|
+
numberOfEvents?: number | undefined;
|
|
3237
3237
|
/**
|
|
3238
3238
|
* <p>The total size of the stored events.</p>
|
|
3239
3239
|
* @public
|
|
3240
3240
|
*/
|
|
3241
|
-
eventDataSizeInBytes?: number;
|
|
3241
|
+
eventDataSizeInBytes?: number | undefined;
|
|
3242
3242
|
/**
|
|
3243
3243
|
* <p>The oldest stored event.</p>
|
|
3244
3244
|
* @public
|
|
3245
3245
|
*/
|
|
3246
|
-
leastRecentEvent?: string;
|
|
3246
|
+
leastRecentEvent?: string | undefined;
|
|
3247
3247
|
/**
|
|
3248
3248
|
* <p>The newest stored event.</p>
|
|
3249
3249
|
* @public
|
|
3250
3250
|
*/
|
|
3251
|
-
mostRecentEvent?: string;
|
|
3251
|
+
mostRecentEvent?: string | undefined;
|
|
3252
3252
|
/**
|
|
3253
3253
|
* <p>Timestamp of when the stored event was last updated.
|
|
3254
3254
|
* </p>
|
|
3255
3255
|
* @public
|
|
3256
3256
|
*/
|
|
3257
|
-
lastUpdatedTime?: string;
|
|
3257
|
+
lastUpdatedTime?: string | undefined;
|
|
3258
3258
|
}
|
|
3259
3259
|
/**
|
|
3260
3260
|
* <p>The event type details.</p>
|
|
@@ -3265,57 +3265,57 @@ export interface EventType {
|
|
|
3265
3265
|
* <p>The event type name.</p>
|
|
3266
3266
|
* @public
|
|
3267
3267
|
*/
|
|
3268
|
-
name?: string;
|
|
3268
|
+
name?: string | undefined;
|
|
3269
3269
|
/**
|
|
3270
3270
|
* <p>The event type description.</p>
|
|
3271
3271
|
* @public
|
|
3272
3272
|
*/
|
|
3273
|
-
description?: string;
|
|
3273
|
+
description?: string | undefined;
|
|
3274
3274
|
/**
|
|
3275
3275
|
* <p>The event type event variables.</p>
|
|
3276
3276
|
* @public
|
|
3277
3277
|
*/
|
|
3278
|
-
eventVariables?: string[];
|
|
3278
|
+
eventVariables?: string[] | undefined;
|
|
3279
3279
|
/**
|
|
3280
3280
|
* <p>The event type labels.</p>
|
|
3281
3281
|
* @public
|
|
3282
3282
|
*/
|
|
3283
|
-
labels?: string[];
|
|
3283
|
+
labels?: string[] | undefined;
|
|
3284
3284
|
/**
|
|
3285
3285
|
* <p>The event type entity types.</p>
|
|
3286
3286
|
* @public
|
|
3287
3287
|
*/
|
|
3288
|
-
entityTypes?: string[];
|
|
3288
|
+
entityTypes?: string[] | undefined;
|
|
3289
3289
|
/**
|
|
3290
3290
|
* <p>If <code>Enabled</code>, Amazon Fraud Detector stores event data when you generate a prediction and uses that data to update calculated variables in near real-time. Amazon Fraud Detector uses this data, known as <code>INGESTED_EVENTS</code>, to train your model and improve fraud predictions.</p>
|
|
3291
3291
|
* @public
|
|
3292
3292
|
*/
|
|
3293
|
-
eventIngestion?: EventIngestion;
|
|
3293
|
+
eventIngestion?: EventIngestion | undefined;
|
|
3294
3294
|
/**
|
|
3295
3295
|
* <p>Data about the stored events.</p>
|
|
3296
3296
|
* @public
|
|
3297
3297
|
*/
|
|
3298
|
-
ingestedEventStatistics?: IngestedEventStatistics;
|
|
3298
|
+
ingestedEventStatistics?: IngestedEventStatistics | undefined;
|
|
3299
3299
|
/**
|
|
3300
3300
|
* <p>Timestamp of when the event type was last updated.</p>
|
|
3301
3301
|
* @public
|
|
3302
3302
|
*/
|
|
3303
|
-
lastUpdatedTime?: string;
|
|
3303
|
+
lastUpdatedTime?: string | undefined;
|
|
3304
3304
|
/**
|
|
3305
3305
|
* <p>Timestamp of when the event type was created.</p>
|
|
3306
3306
|
* @public
|
|
3307
3307
|
*/
|
|
3308
|
-
createdTime?: string;
|
|
3308
|
+
createdTime?: string | undefined;
|
|
3309
3309
|
/**
|
|
3310
3310
|
* <p>The entity type ARN.</p>
|
|
3311
3311
|
* @public
|
|
3312
3312
|
*/
|
|
3313
|
-
arn?: string;
|
|
3313
|
+
arn?: string | undefined;
|
|
3314
3314
|
/**
|
|
3315
3315
|
* <p>The event orchestration status. </p>
|
|
3316
3316
|
* @public
|
|
3317
3317
|
*/
|
|
3318
|
-
eventOrchestration?: EventOrchestration;
|
|
3318
|
+
eventOrchestration?: EventOrchestration | undefined;
|
|
3319
3319
|
}
|
|
3320
3320
|
/**
|
|
3321
3321
|
* @public
|
|
@@ -3325,12 +3325,12 @@ export interface GetEventTypesResult {
|
|
|
3325
3325
|
* <p>An array of event types.</p>
|
|
3326
3326
|
* @public
|
|
3327
3327
|
*/
|
|
3328
|
-
eventTypes?: EventType[];
|
|
3328
|
+
eventTypes?: EventType[] | undefined;
|
|
3329
3329
|
/**
|
|
3330
3330
|
* <p>The next page token.</p>
|
|
3331
3331
|
* @public
|
|
3332
3332
|
*/
|
|
3333
|
-
nextToken?: string;
|
|
3333
|
+
nextToken?: string | undefined;
|
|
3334
3334
|
}
|
|
3335
3335
|
/**
|
|
3336
3336
|
* @public
|
|
@@ -3340,17 +3340,17 @@ export interface GetExternalModelsRequest {
|
|
|
3340
3340
|
* <p>The Amazon SageMaker model endpoint.</p>
|
|
3341
3341
|
* @public
|
|
3342
3342
|
*/
|
|
3343
|
-
modelEndpoint?: string;
|
|
3343
|
+
modelEndpoint?: string | undefined;
|
|
3344
3344
|
/**
|
|
3345
3345
|
* <p>The next page token for the request.</p>
|
|
3346
3346
|
* @public
|
|
3347
3347
|
*/
|
|
3348
|
-
nextToken?: string;
|
|
3348
|
+
nextToken?: string | undefined;
|
|
3349
3349
|
/**
|
|
3350
3350
|
* <p>The maximum number of objects to return for the request.</p>
|
|
3351
3351
|
* @public
|
|
3352
3352
|
*/
|
|
3353
|
-
maxResults?: number;
|
|
3353
|
+
maxResults?: number | undefined;
|
|
3354
3354
|
}
|
|
3355
3355
|
/**
|
|
3356
3356
|
* @public
|
|
@@ -3373,13 +3373,13 @@ export interface ModelInputConfiguration {
|
|
|
3373
3373
|
* <p>The event type name.</p>
|
|
3374
3374
|
* @public
|
|
3375
3375
|
*/
|
|
3376
|
-
eventTypeName?: string;
|
|
3376
|
+
eventTypeName?: string | undefined;
|
|
3377
3377
|
/**
|
|
3378
3378
|
* <p> The format of the model input configuration. The format differs depending on if it is
|
|
3379
3379
|
* passed through to SageMaker or constructed by Amazon Fraud Detector.</p>
|
|
3380
3380
|
* @public
|
|
3381
3381
|
*/
|
|
3382
|
-
format?: ModelInputDataFormat;
|
|
3382
|
+
format?: ModelInputDataFormat | undefined;
|
|
3383
3383
|
/**
|
|
3384
3384
|
* <p>The event variables.</p>
|
|
3385
3385
|
* @public
|
|
@@ -3391,14 +3391,14 @@ export interface ModelInputConfiguration {
|
|
|
3391
3391
|
* values before being sent to SageMaker. </p>
|
|
3392
3392
|
* @public
|
|
3393
3393
|
*/
|
|
3394
|
-
jsonInputTemplate?: string;
|
|
3394
|
+
jsonInputTemplate?: string | undefined;
|
|
3395
3395
|
/**
|
|
3396
3396
|
* <p> Template for constructing the CSV input-data sent to SageMaker. At event-evaluation,
|
|
3397
3397
|
* the placeholders for variable-names in the template will be replaced with the variable
|
|
3398
3398
|
* values before being sent to SageMaker. </p>
|
|
3399
3399
|
* @public
|
|
3400
3400
|
*/
|
|
3401
|
-
csvInputTemplate?: string;
|
|
3401
|
+
csvInputTemplate?: string | undefined;
|
|
3402
3402
|
}
|
|
3403
3403
|
/**
|
|
3404
3404
|
* @public
|
|
@@ -3438,12 +3438,12 @@ export interface ModelOutputConfiguration {
|
|
|
3438
3438
|
* <p>A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables. </p>
|
|
3439
3439
|
* @public
|
|
3440
3440
|
*/
|
|
3441
|
-
jsonKeyToVariableMap?: Record<string, string
|
|
3441
|
+
jsonKeyToVariableMap?: Record<string, string> | undefined;
|
|
3442
3442
|
/**
|
|
3443
3443
|
* <p>A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables. </p>
|
|
3444
3444
|
* @public
|
|
3445
3445
|
*/
|
|
3446
|
-
csvIndexToVariableMap?: Record<string, string
|
|
3446
|
+
csvIndexToVariableMap?: Record<string, string> | undefined;
|
|
3447
3447
|
}
|
|
3448
3448
|
/**
|
|
3449
3449
|
* <p>The Amazon SageMaker model.</p>
|
|
@@ -3454,47 +3454,47 @@ export interface ExternalModel {
|
|
|
3454
3454
|
* <p>The Amazon SageMaker model endpoints.</p>
|
|
3455
3455
|
* @public
|
|
3456
3456
|
*/
|
|
3457
|
-
modelEndpoint?: string;
|
|
3457
|
+
modelEndpoint?: string | undefined;
|
|
3458
3458
|
/**
|
|
3459
3459
|
* <p>The source of the model.</p>
|
|
3460
3460
|
* @public
|
|
3461
3461
|
*/
|
|
3462
|
-
modelSource?: ModelSource;
|
|
3462
|
+
modelSource?: ModelSource | undefined;
|
|
3463
3463
|
/**
|
|
3464
3464
|
* <p>The role used to invoke the model. </p>
|
|
3465
3465
|
* @public
|
|
3466
3466
|
*/
|
|
3467
|
-
invokeModelEndpointRoleArn?: string;
|
|
3467
|
+
invokeModelEndpointRoleArn?: string | undefined;
|
|
3468
3468
|
/**
|
|
3469
3469
|
* <p>The input configuration.</p>
|
|
3470
3470
|
* @public
|
|
3471
3471
|
*/
|
|
3472
|
-
inputConfiguration?: ModelInputConfiguration;
|
|
3472
|
+
inputConfiguration?: ModelInputConfiguration | undefined;
|
|
3473
3473
|
/**
|
|
3474
3474
|
* <p>The output configuration.</p>
|
|
3475
3475
|
* @public
|
|
3476
3476
|
*/
|
|
3477
|
-
outputConfiguration?: ModelOutputConfiguration;
|
|
3477
|
+
outputConfiguration?: ModelOutputConfiguration | undefined;
|
|
3478
3478
|
/**
|
|
3479
3479
|
* <p>The Amazon Fraud Detector status for the external model endpoint</p>
|
|
3480
3480
|
* @public
|
|
3481
3481
|
*/
|
|
3482
|
-
modelEndpointStatus?: ModelEndpointStatus;
|
|
3482
|
+
modelEndpointStatus?: ModelEndpointStatus | undefined;
|
|
3483
3483
|
/**
|
|
3484
3484
|
* <p>Timestamp of when the model was last updated.</p>
|
|
3485
3485
|
* @public
|
|
3486
3486
|
*/
|
|
3487
|
-
lastUpdatedTime?: string;
|
|
3487
|
+
lastUpdatedTime?: string | undefined;
|
|
3488
3488
|
/**
|
|
3489
3489
|
* <p>Timestamp of when the model was last created.</p>
|
|
3490
3490
|
* @public
|
|
3491
3491
|
*/
|
|
3492
|
-
createdTime?: string;
|
|
3492
|
+
createdTime?: string | undefined;
|
|
3493
3493
|
/**
|
|
3494
3494
|
* <p>The model ARN.</p>
|
|
3495
3495
|
* @public
|
|
3496
3496
|
*/
|
|
3497
|
-
arn?: string;
|
|
3497
|
+
arn?: string | undefined;
|
|
3498
3498
|
}
|
|
3499
3499
|
/**
|
|
3500
3500
|
* @public
|
|
@@ -3504,12 +3504,12 @@ export interface GetExternalModelsResult {
|
|
|
3504
3504
|
* <p>Gets the Amazon SageMaker models.</p>
|
|
3505
3505
|
* @public
|
|
3506
3506
|
*/
|
|
3507
|
-
externalModels?: ExternalModel[];
|
|
3507
|
+
externalModels?: ExternalModel[] | undefined;
|
|
3508
3508
|
/**
|
|
3509
3509
|
* <p>The next page token to be used in subsequent requests.</p>
|
|
3510
3510
|
* @public
|
|
3511
3511
|
*/
|
|
3512
|
-
nextToken?: string;
|
|
3512
|
+
nextToken?: string | undefined;
|
|
3513
3513
|
}
|
|
3514
3514
|
/**
|
|
3515
3515
|
* <p>The KMS key details.</p>
|
|
@@ -3520,7 +3520,7 @@ export interface KMSKey {
|
|
|
3520
3520
|
* <p>The encryption key ARN.</p>
|
|
3521
3521
|
* @public
|
|
3522
3522
|
*/
|
|
3523
|
-
kmsEncryptionKeyArn?: string;
|
|
3523
|
+
kmsEncryptionKeyArn?: string | undefined;
|
|
3524
3524
|
}
|
|
3525
3525
|
/**
|
|
3526
3526
|
* @public
|
|
@@ -3530,7 +3530,7 @@ export interface GetKMSEncryptionKeyResult {
|
|
|
3530
3530
|
* <p>The KMS encryption key.</p>
|
|
3531
3531
|
* @public
|
|
3532
3532
|
*/
|
|
3533
|
-
kmsKey?: KMSKey;
|
|
3533
|
+
kmsKey?: KMSKey | undefined;
|
|
3534
3534
|
}
|
|
3535
3535
|
/**
|
|
3536
3536
|
* @public
|
|
@@ -3540,17 +3540,17 @@ export interface GetLabelsRequest {
|
|
|
3540
3540
|
* <p>The name of the label or labels to get.</p>
|
|
3541
3541
|
* @public
|
|
3542
3542
|
*/
|
|
3543
|
-
name?: string;
|
|
3543
|
+
name?: string | undefined;
|
|
3544
3544
|
/**
|
|
3545
3545
|
* <p>The next token for the subsequent request.</p>
|
|
3546
3546
|
* @public
|
|
3547
3547
|
*/
|
|
3548
|
-
nextToken?: string;
|
|
3548
|
+
nextToken?: string | undefined;
|
|
3549
3549
|
/**
|
|
3550
3550
|
* <p>The maximum number of objects to return for the request.</p>
|
|
3551
3551
|
* @public
|
|
3552
3552
|
*/
|
|
3553
|
-
maxResults?: number;
|
|
3553
|
+
maxResults?: number | undefined;
|
|
3554
3554
|
}
|
|
3555
3555
|
/**
|
|
3556
3556
|
* <p>The label details.</p>
|
|
@@ -3561,27 +3561,27 @@ export interface Label {
|
|
|
3561
3561
|
* <p>The label name.</p>
|
|
3562
3562
|
* @public
|
|
3563
3563
|
*/
|
|
3564
|
-
name?: string;
|
|
3564
|
+
name?: string | undefined;
|
|
3565
3565
|
/**
|
|
3566
3566
|
* <p>The label description.</p>
|
|
3567
3567
|
* @public
|
|
3568
3568
|
*/
|
|
3569
|
-
description?: string;
|
|
3569
|
+
description?: string | undefined;
|
|
3570
3570
|
/**
|
|
3571
3571
|
* <p>Timestamp of when the label was last updated.</p>
|
|
3572
3572
|
* @public
|
|
3573
3573
|
*/
|
|
3574
|
-
lastUpdatedTime?: string;
|
|
3574
|
+
lastUpdatedTime?: string | undefined;
|
|
3575
3575
|
/**
|
|
3576
3576
|
* <p>Timestamp of when the event type was created.</p>
|
|
3577
3577
|
* @public
|
|
3578
3578
|
*/
|
|
3579
|
-
createdTime?: string;
|
|
3579
|
+
createdTime?: string | undefined;
|
|
3580
3580
|
/**
|
|
3581
3581
|
* <p>The label ARN.</p>
|
|
3582
3582
|
* @public
|
|
3583
3583
|
*/
|
|
3584
|
-
arn?: string;
|
|
3584
|
+
arn?: string | undefined;
|
|
3585
3585
|
}
|
|
3586
3586
|
/**
|
|
3587
3587
|
* @public
|
|
@@ -3591,12 +3591,12 @@ export interface GetLabelsResult {
|
|
|
3591
3591
|
* <p>An array of labels.</p>
|
|
3592
3592
|
* @public
|
|
3593
3593
|
*/
|
|
3594
|
-
labels?: Label[];
|
|
3594
|
+
labels?: Label[] | undefined;
|
|
3595
3595
|
/**
|
|
3596
3596
|
* <p>The next page token.</p>
|
|
3597
3597
|
* @public
|
|
3598
3598
|
*/
|
|
3599
|
-
nextToken?: string;
|
|
3599
|
+
nextToken?: string | undefined;
|
|
3600
3600
|
}
|
|
3601
3601
|
/**
|
|
3602
3602
|
* @public
|
|
@@ -3615,14 +3615,14 @@ export interface GetListElementsRequest {
|
|
|
3615
3615
|
* </p>
|
|
3616
3616
|
* @public
|
|
3617
3617
|
*/
|
|
3618
|
-
nextToken?: string;
|
|
3618
|
+
nextToken?: string | undefined;
|
|
3619
3619
|
/**
|
|
3620
3620
|
* <p>
|
|
3621
3621
|
* The maximum number of objects to return for the request.
|
|
3622
3622
|
* </p>
|
|
3623
3623
|
* @public
|
|
3624
3624
|
*/
|
|
3625
|
-
maxResults?: number;
|
|
3625
|
+
maxResults?: number | undefined;
|
|
3626
3626
|
}
|
|
3627
3627
|
/**
|
|
3628
3628
|
* @public
|
|
@@ -3634,14 +3634,14 @@ export interface GetListElementsResult {
|
|
|
3634
3634
|
* </p>
|
|
3635
3635
|
* @public
|
|
3636
3636
|
*/
|
|
3637
|
-
elements?: string[];
|
|
3637
|
+
elements?: string[] | undefined;
|
|
3638
3638
|
/**
|
|
3639
3639
|
* <p>
|
|
3640
3640
|
* The next page token.
|
|
3641
3641
|
* </p>
|
|
3642
3642
|
* @public
|
|
3643
3643
|
*/
|
|
3644
|
-
nextToken?: string;
|
|
3644
|
+
nextToken?: string | undefined;
|
|
3645
3645
|
}
|
|
3646
3646
|
/**
|
|
3647
3647
|
* @public
|
|
@@ -3653,21 +3653,21 @@ export interface GetListsMetadataRequest {
|
|
|
3653
3653
|
* </p>
|
|
3654
3654
|
* @public
|
|
3655
3655
|
*/
|
|
3656
|
-
name?: string;
|
|
3656
|
+
name?: string | undefined;
|
|
3657
3657
|
/**
|
|
3658
3658
|
* <p>
|
|
3659
3659
|
* The next token for the subsequent request.
|
|
3660
3660
|
* </p>
|
|
3661
3661
|
* @public
|
|
3662
3662
|
*/
|
|
3663
|
-
nextToken?: string;
|
|
3663
|
+
nextToken?: string | undefined;
|
|
3664
3664
|
/**
|
|
3665
3665
|
* <p>
|
|
3666
3666
|
* The maximum number of objects to return for the request.
|
|
3667
3667
|
* </p>
|
|
3668
3668
|
* @public
|
|
3669
3669
|
*/
|
|
3670
|
-
maxResults?: number;
|
|
3670
|
+
maxResults?: number | undefined;
|
|
3671
3671
|
}
|
|
3672
3672
|
/**
|
|
3673
3673
|
* @public
|
|
@@ -3679,14 +3679,14 @@ export interface GetListsMetadataResult {
|
|
|
3679
3679
|
* </p>
|
|
3680
3680
|
* @public
|
|
3681
3681
|
*/
|
|
3682
|
-
lists?: AllowDenyList[];
|
|
3682
|
+
lists?: AllowDenyList[] | undefined;
|
|
3683
3683
|
/**
|
|
3684
3684
|
* <p>
|
|
3685
3685
|
* The next page token.
|
|
3686
3686
|
* </p>
|
|
3687
3687
|
* @public
|
|
3688
3688
|
*/
|
|
3689
|
-
nextToken?: string;
|
|
3689
|
+
nextToken?: string | undefined;
|
|
3690
3690
|
}
|
|
3691
3691
|
/**
|
|
3692
3692
|
* @public
|
|
@@ -3696,22 +3696,22 @@ export interface GetModelsRequest {
|
|
|
3696
3696
|
* <p>The model ID.</p>
|
|
3697
3697
|
* @public
|
|
3698
3698
|
*/
|
|
3699
|
-
modelId?: string;
|
|
3699
|
+
modelId?: string | undefined;
|
|
3700
3700
|
/**
|
|
3701
3701
|
* <p>The model type.</p>
|
|
3702
3702
|
* @public
|
|
3703
3703
|
*/
|
|
3704
|
-
modelType?: ModelTypeEnum;
|
|
3704
|
+
modelType?: ModelTypeEnum | undefined;
|
|
3705
3705
|
/**
|
|
3706
3706
|
* <p>The next token for the subsequent request.</p>
|
|
3707
3707
|
* @public
|
|
3708
3708
|
*/
|
|
3709
|
-
nextToken?: string;
|
|
3709
|
+
nextToken?: string | undefined;
|
|
3710
3710
|
/**
|
|
3711
3711
|
* <p>The maximum number of objects to return for the request. </p>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
maxResults?: number;
|
|
3714
|
+
maxResults?: number | undefined;
|
|
3715
3715
|
}
|
|
3716
3716
|
/**
|
|
3717
3717
|
* <p>The model.</p>
|
|
@@ -3722,37 +3722,37 @@ export interface Model {
|
|
|
3722
3722
|
* <p>The model ID.</p>
|
|
3723
3723
|
* @public
|
|
3724
3724
|
*/
|
|
3725
|
-
modelId?: string;
|
|
3725
|
+
modelId?: string | undefined;
|
|
3726
3726
|
/**
|
|
3727
3727
|
* <p>The model type.</p>
|
|
3728
3728
|
* @public
|
|
3729
3729
|
*/
|
|
3730
|
-
modelType?: ModelTypeEnum;
|
|
3730
|
+
modelType?: ModelTypeEnum | undefined;
|
|
3731
3731
|
/**
|
|
3732
3732
|
* <p>The model description.</p>
|
|
3733
3733
|
* @public
|
|
3734
3734
|
*/
|
|
3735
|
-
description?: string;
|
|
3735
|
+
description?: string | undefined;
|
|
3736
3736
|
/**
|
|
3737
3737
|
* <p>The name of the event type.</p>
|
|
3738
3738
|
* @public
|
|
3739
3739
|
*/
|
|
3740
|
-
eventTypeName?: string;
|
|
3740
|
+
eventTypeName?: string | undefined;
|
|
3741
3741
|
/**
|
|
3742
3742
|
* <p>Timestamp of when the model was created.</p>
|
|
3743
3743
|
* @public
|
|
3744
3744
|
*/
|
|
3745
|
-
createdTime?: string;
|
|
3745
|
+
createdTime?: string | undefined;
|
|
3746
3746
|
/**
|
|
3747
3747
|
* <p>Timestamp of last time the model was updated.</p>
|
|
3748
3748
|
* @public
|
|
3749
3749
|
*/
|
|
3750
|
-
lastUpdatedTime?: string;
|
|
3750
|
+
lastUpdatedTime?: string | undefined;
|
|
3751
3751
|
/**
|
|
3752
3752
|
* <p>The ARN of the model.</p>
|
|
3753
3753
|
* @public
|
|
3754
3754
|
*/
|
|
3755
|
-
arn?: string;
|
|
3755
|
+
arn?: string | undefined;
|
|
3756
3756
|
}
|
|
3757
3757
|
/**
|
|
3758
3758
|
* @public
|
|
@@ -3762,12 +3762,12 @@ export interface GetModelsResult {
|
|
|
3762
3762
|
* <p>The next page token to be used in subsequent requests.</p>
|
|
3763
3763
|
* @public
|
|
3764
3764
|
*/
|
|
3765
|
-
nextToken?: string;
|
|
3765
|
+
nextToken?: string | undefined;
|
|
3766
3766
|
/**
|
|
3767
3767
|
* <p>The array of models.</p>
|
|
3768
3768
|
* @public
|
|
3769
3769
|
*/
|
|
3770
|
-
models?: Model[];
|
|
3770
|
+
models?: Model[] | undefined;
|
|
3771
3771
|
}
|
|
3772
3772
|
/**
|
|
3773
3773
|
* @public
|
|
@@ -3797,40 +3797,40 @@ export interface GetModelVersionResult {
|
|
|
3797
3797
|
* <p>The model ID.</p>
|
|
3798
3798
|
* @public
|
|
3799
3799
|
*/
|
|
3800
|
-
modelId?: string;
|
|
3800
|
+
modelId?: string | undefined;
|
|
3801
3801
|
/**
|
|
3802
3802
|
* <p>The model type.</p>
|
|
3803
3803
|
* @public
|
|
3804
3804
|
*/
|
|
3805
|
-
modelType?: ModelTypeEnum;
|
|
3805
|
+
modelType?: ModelTypeEnum | undefined;
|
|
3806
3806
|
/**
|
|
3807
3807
|
* <p>The model version number.</p>
|
|
3808
3808
|
* @public
|
|
3809
3809
|
*/
|
|
3810
|
-
modelVersionNumber?: string;
|
|
3810
|
+
modelVersionNumber?: string | undefined;
|
|
3811
3811
|
/**
|
|
3812
3812
|
* <p>The training data source.</p>
|
|
3813
3813
|
* @public
|
|
3814
3814
|
*/
|
|
3815
|
-
trainingDataSource?: TrainingDataSourceEnum;
|
|
3815
|
+
trainingDataSource?: TrainingDataSourceEnum | undefined;
|
|
3816
3816
|
/**
|
|
3817
3817
|
* <p>The training data schema.</p>
|
|
3818
3818
|
* @public
|
|
3819
3819
|
*/
|
|
3820
|
-
trainingDataSchema?: TrainingDataSchema;
|
|
3820
|
+
trainingDataSchema?: TrainingDataSchema | undefined;
|
|
3821
3821
|
/**
|
|
3822
3822
|
* <p>The details of the external events data used for training the model version.
|
|
3823
3823
|
* This will be populated if the <code>trainingDataSource</code> is <code>EXTERNAL_EVENTS</code>
|
|
3824
3824
|
* </p>
|
|
3825
3825
|
* @public
|
|
3826
3826
|
*/
|
|
3827
|
-
externalEventsDetail?: ExternalEventsDetail;
|
|
3827
|
+
externalEventsDetail?: ExternalEventsDetail | undefined;
|
|
3828
3828
|
/**
|
|
3829
3829
|
* <p>The details of the ingested events data used for training the model version.
|
|
3830
3830
|
* This will be populated if the <code>trainingDataSource</code> is <code>INGESTED_EVENTS</code>.</p>
|
|
3831
3831
|
* @public
|
|
3832
3832
|
*/
|
|
3833
|
-
ingestedEventsDetail?: IngestedEventsDetail;
|
|
3833
|
+
ingestedEventsDetail?: IngestedEventsDetail | undefined;
|
|
3834
3834
|
/**
|
|
3835
3835
|
* <p>The model version status.</p>
|
|
3836
3836
|
* <p>Possible values are:</p>
|
|
@@ -3883,12 +3883,12 @@ export interface GetModelVersionResult {
|
|
|
3883
3883
|
* </ul>
|
|
3884
3884
|
* @public
|
|
3885
3885
|
*/
|
|
3886
|
-
status?: string;
|
|
3886
|
+
status?: string | undefined;
|
|
3887
3887
|
/**
|
|
3888
3888
|
* <p>The model version ARN.</p>
|
|
3889
3889
|
* @public
|
|
3890
3890
|
*/
|
|
3891
|
-
arn?: string;
|
|
3891
|
+
arn?: string | undefined;
|
|
3892
3892
|
}
|
|
3893
3893
|
/**
|
|
3894
3894
|
* @public
|
|
@@ -3898,17 +3898,17 @@ export interface GetOutcomesRequest {
|
|
|
3898
3898
|
* <p>The name of the outcome or outcomes to get.</p>
|
|
3899
3899
|
* @public
|
|
3900
3900
|
*/
|
|
3901
|
-
name?: string;
|
|
3901
|
+
name?: string | undefined;
|
|
3902
3902
|
/**
|
|
3903
3903
|
* <p>The next page token for the request. </p>
|
|
3904
3904
|
* @public
|
|
3905
3905
|
*/
|
|
3906
|
-
nextToken?: string;
|
|
3906
|
+
nextToken?: string | undefined;
|
|
3907
3907
|
/**
|
|
3908
3908
|
* <p>The maximum number of objects to return for the request. </p>
|
|
3909
3909
|
* @public
|
|
3910
3910
|
*/
|
|
3911
|
-
maxResults?: number;
|
|
3911
|
+
maxResults?: number | undefined;
|
|
3912
3912
|
}
|
|
3913
3913
|
/**
|
|
3914
3914
|
* <p>The outcome.</p>
|
|
@@ -3919,27 +3919,27 @@ export interface Outcome {
|
|
|
3919
3919
|
* <p>The outcome name.</p>
|
|
3920
3920
|
* @public
|
|
3921
3921
|
*/
|
|
3922
|
-
name?: string;
|
|
3922
|
+
name?: string | undefined;
|
|
3923
3923
|
/**
|
|
3924
3924
|
* <p>The outcome description.</p>
|
|
3925
3925
|
* @public
|
|
3926
3926
|
*/
|
|
3927
|
-
description?: string;
|
|
3927
|
+
description?: string | undefined;
|
|
3928
3928
|
/**
|
|
3929
3929
|
* <p>The timestamp when the outcome was last updated.</p>
|
|
3930
3930
|
* @public
|
|
3931
3931
|
*/
|
|
3932
|
-
lastUpdatedTime?: string;
|
|
3932
|
+
lastUpdatedTime?: string | undefined;
|
|
3933
3933
|
/**
|
|
3934
3934
|
* <p>The timestamp when the outcome was created.</p>
|
|
3935
3935
|
* @public
|
|
3936
3936
|
*/
|
|
3937
|
-
createdTime?: string;
|
|
3937
|
+
createdTime?: string | undefined;
|
|
3938
3938
|
/**
|
|
3939
3939
|
* <p>The outcome ARN.</p>
|
|
3940
3940
|
* @public
|
|
3941
3941
|
*/
|
|
3942
|
-
arn?: string;
|
|
3942
|
+
arn?: string | undefined;
|
|
3943
3943
|
}
|
|
3944
3944
|
/**
|
|
3945
3945
|
* @public
|
|
@@ -3949,12 +3949,12 @@ export interface GetOutcomesResult {
|
|
|
3949
3949
|
* <p>The outcomes. </p>
|
|
3950
3950
|
* @public
|
|
3951
3951
|
*/
|
|
3952
|
-
outcomes?: Outcome[];
|
|
3952
|
+
outcomes?: Outcome[] | undefined;
|
|
3953
3953
|
/**
|
|
3954
3954
|
* <p>The next page token for subsequent requests.</p>
|
|
3955
3955
|
* @public
|
|
3956
3956
|
*/
|
|
3957
|
-
nextToken?: string;
|
|
3957
|
+
nextToken?: string | undefined;
|
|
3958
3958
|
}
|
|
3959
3959
|
/**
|
|
3960
3960
|
* @public
|
|
@@ -3964,7 +3964,7 @@ export interface GetRulesRequest {
|
|
|
3964
3964
|
* <p>The rule ID.</p>
|
|
3965
3965
|
* @public
|
|
3966
3966
|
*/
|
|
3967
|
-
ruleId?: string;
|
|
3967
|
+
ruleId?: string | undefined;
|
|
3968
3968
|
/**
|
|
3969
3969
|
* <p>The detector ID.</p>
|
|
3970
3970
|
* @public
|
|
@@ -3974,17 +3974,17 @@ export interface GetRulesRequest {
|
|
|
3974
3974
|
* <p>The rule version.</p>
|
|
3975
3975
|
* @public
|
|
3976
3976
|
*/
|
|
3977
|
-
ruleVersion?: string;
|
|
3977
|
+
ruleVersion?: string | undefined;
|
|
3978
3978
|
/**
|
|
3979
3979
|
* <p>The next page token.</p>
|
|
3980
3980
|
* @public
|
|
3981
3981
|
*/
|
|
3982
|
-
nextToken?: string;
|
|
3982
|
+
nextToken?: string | undefined;
|
|
3983
3983
|
/**
|
|
3984
3984
|
* <p>The maximum number of rules to return for the request.</p>
|
|
3985
3985
|
* @public
|
|
3986
3986
|
*/
|
|
3987
|
-
maxResults?: number;
|
|
3987
|
+
maxResults?: number | undefined;
|
|
3988
3988
|
}
|
|
3989
3989
|
/**
|
|
3990
3990
|
* <p>The details of the rule.</p>
|
|
@@ -3995,52 +3995,52 @@ export interface RuleDetail {
|
|
|
3995
3995
|
* <p>The rule ID.</p>
|
|
3996
3996
|
* @public
|
|
3997
3997
|
*/
|
|
3998
|
-
ruleId?: string;
|
|
3998
|
+
ruleId?: string | undefined;
|
|
3999
3999
|
/**
|
|
4000
4000
|
* <p>The rule description.</p>
|
|
4001
4001
|
* @public
|
|
4002
4002
|
*/
|
|
4003
|
-
description?: string;
|
|
4003
|
+
description?: string | undefined;
|
|
4004
4004
|
/**
|
|
4005
4005
|
* <p>The detector for which the rule is associated.</p>
|
|
4006
4006
|
* @public
|
|
4007
4007
|
*/
|
|
4008
|
-
detectorId?: string;
|
|
4008
|
+
detectorId?: string | undefined;
|
|
4009
4009
|
/**
|
|
4010
4010
|
* <p>The rule version.</p>
|
|
4011
4011
|
* @public
|
|
4012
4012
|
*/
|
|
4013
|
-
ruleVersion?: string;
|
|
4013
|
+
ruleVersion?: string | undefined;
|
|
4014
4014
|
/**
|
|
4015
4015
|
* <p>The rule expression.</p>
|
|
4016
4016
|
* @public
|
|
4017
4017
|
*/
|
|
4018
|
-
expression?: string;
|
|
4018
|
+
expression?: string | undefined;
|
|
4019
4019
|
/**
|
|
4020
4020
|
* <p>The rule language.</p>
|
|
4021
4021
|
* @public
|
|
4022
4022
|
*/
|
|
4023
|
-
language?: Language;
|
|
4023
|
+
language?: Language | undefined;
|
|
4024
4024
|
/**
|
|
4025
4025
|
* <p>The rule outcomes.</p>
|
|
4026
4026
|
* @public
|
|
4027
4027
|
*/
|
|
4028
|
-
outcomes?: string[];
|
|
4028
|
+
outcomes?: string[] | undefined;
|
|
4029
4029
|
/**
|
|
4030
4030
|
* <p>Timestamp of the last time the rule was updated.</p>
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
lastUpdatedTime?: string;
|
|
4033
|
+
lastUpdatedTime?: string | undefined;
|
|
4034
4034
|
/**
|
|
4035
4035
|
* <p>The timestamp of when the rule was created.</p>
|
|
4036
4036
|
* @public
|
|
4037
4037
|
*/
|
|
4038
|
-
createdTime?: string;
|
|
4038
|
+
createdTime?: string | undefined;
|
|
4039
4039
|
/**
|
|
4040
4040
|
* <p>The rule ARN.</p>
|
|
4041
4041
|
* @public
|
|
4042
4042
|
*/
|
|
4043
|
-
arn?: string;
|
|
4043
|
+
arn?: string | undefined;
|
|
4044
4044
|
}
|
|
4045
4045
|
/**
|
|
4046
4046
|
* @public
|
|
@@ -4050,12 +4050,12 @@ export interface GetRulesResult {
|
|
|
4050
4050
|
* <p>The details of the requested rule.</p>
|
|
4051
4051
|
* @public
|
|
4052
4052
|
*/
|
|
4053
|
-
ruleDetails?: RuleDetail[];
|
|
4053
|
+
ruleDetails?: RuleDetail[] | undefined;
|
|
4054
4054
|
/**
|
|
4055
4055
|
* <p>The next page token to be used in subsequent requests.</p>
|
|
4056
4056
|
* @public
|
|
4057
4057
|
*/
|
|
4058
|
-
nextToken?: string;
|
|
4058
|
+
nextToken?: string | undefined;
|
|
4059
4059
|
}
|
|
4060
4060
|
/**
|
|
4061
4061
|
* @public
|
|
@@ -4065,17 +4065,17 @@ export interface GetVariablesRequest {
|
|
|
4065
4065
|
* <p>The name of the variable. </p>
|
|
4066
4066
|
* @public
|
|
4067
4067
|
*/
|
|
4068
|
-
name?: string;
|
|
4068
|
+
name?: string | undefined;
|
|
4069
4069
|
/**
|
|
4070
4070
|
* <p>The next page token of the get variable request. </p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
nextToken?: string;
|
|
4073
|
+
nextToken?: string | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* <p>The max size per page determined for the get variable request. </p>
|
|
4076
4076
|
* @public
|
|
4077
4077
|
*/
|
|
4078
|
-
maxResults?: number;
|
|
4078
|
+
maxResults?: number | undefined;
|
|
4079
4079
|
}
|
|
4080
4080
|
/**
|
|
4081
4081
|
* @public
|
|
@@ -4085,12 +4085,12 @@ export interface GetVariablesResult {
|
|
|
4085
4085
|
* <p>The names of the variables returned. </p>
|
|
4086
4086
|
* @public
|
|
4087
4087
|
*/
|
|
4088
|
-
variables?: Variable[];
|
|
4088
|
+
variables?: Variable[] | undefined;
|
|
4089
4089
|
/**
|
|
4090
4090
|
* <p>The next page token to be used in subsequent requests. </p>
|
|
4091
4091
|
* @public
|
|
4092
4092
|
*/
|
|
4093
|
-
nextToken?: string;
|
|
4093
|
+
nextToken?: string | undefined;
|
|
4094
4094
|
}
|
|
4095
4095
|
/**
|
|
4096
4096
|
* <p>
|
|
@@ -4105,7 +4105,7 @@ export interface FilterCondition {
|
|
|
4105
4105
|
* </p>
|
|
4106
4106
|
* @public
|
|
4107
4107
|
*/
|
|
4108
|
-
value?: string;
|
|
4108
|
+
value?: string | undefined;
|
|
4109
4109
|
}
|
|
4110
4110
|
/**
|
|
4111
4111
|
* <p>
|
|
@@ -4139,49 +4139,49 @@ export interface ListEventPredictionsRequest {
|
|
|
4139
4139
|
* </p>
|
|
4140
4140
|
* @public
|
|
4141
4141
|
*/
|
|
4142
|
-
eventId?: FilterCondition;
|
|
4142
|
+
eventId?: FilterCondition | undefined;
|
|
4143
4143
|
/**
|
|
4144
4144
|
* <p>
|
|
4145
4145
|
* The event type associated with the detector.
|
|
4146
4146
|
* </p>
|
|
4147
4147
|
* @public
|
|
4148
4148
|
*/
|
|
4149
|
-
eventType?: FilterCondition;
|
|
4149
|
+
eventType?: FilterCondition | undefined;
|
|
4150
4150
|
/**
|
|
4151
4151
|
* <p>
|
|
4152
4152
|
* The detector ID.
|
|
4153
4153
|
* </p>
|
|
4154
4154
|
* @public
|
|
4155
4155
|
*/
|
|
4156
|
-
detectorId?: FilterCondition;
|
|
4156
|
+
detectorId?: FilterCondition | undefined;
|
|
4157
4157
|
/**
|
|
4158
4158
|
* <p>
|
|
4159
4159
|
* The detector version ID.
|
|
4160
4160
|
* </p>
|
|
4161
4161
|
* @public
|
|
4162
4162
|
*/
|
|
4163
|
-
detectorVersionId?: FilterCondition;
|
|
4163
|
+
detectorVersionId?: FilterCondition | undefined;
|
|
4164
4164
|
/**
|
|
4165
4165
|
* <p>
|
|
4166
4166
|
* The time period for when the predictions were generated.
|
|
4167
4167
|
* </p>
|
|
4168
4168
|
* @public
|
|
4169
4169
|
*/
|
|
4170
|
-
predictionTimeRange?: PredictionTimeRange;
|
|
4170
|
+
predictionTimeRange?: PredictionTimeRange | undefined;
|
|
4171
4171
|
/**
|
|
4172
4172
|
* <p>
|
|
4173
4173
|
* Identifies the next page of results to return. Use the token to make the call again to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.
|
|
4174
4174
|
* </p>
|
|
4175
4175
|
* @public
|
|
4176
4176
|
*/
|
|
4177
|
-
nextToken?: string;
|
|
4177
|
+
nextToken?: string | undefined;
|
|
4178
4178
|
/**
|
|
4179
4179
|
* <p>
|
|
4180
4180
|
* The maximum number of predictions to return for the request.
|
|
4181
4181
|
* </p>
|
|
4182
4182
|
* @public
|
|
4183
4183
|
*/
|
|
4184
|
-
maxResults?: number;
|
|
4184
|
+
maxResults?: number | undefined;
|
|
4185
4185
|
}
|
|
4186
4186
|
/**
|
|
4187
4187
|
* <p>
|
|
@@ -4196,42 +4196,42 @@ export interface EventPredictionSummary {
|
|
|
4196
4196
|
* </p>
|
|
4197
4197
|
* @public
|
|
4198
4198
|
*/
|
|
4199
|
-
eventId?: string;
|
|
4199
|
+
eventId?: string | undefined;
|
|
4200
4200
|
/**
|
|
4201
4201
|
* <p>
|
|
4202
4202
|
* The event type.
|
|
4203
4203
|
* </p>
|
|
4204
4204
|
* @public
|
|
4205
4205
|
*/
|
|
4206
|
-
eventTypeName?: string;
|
|
4206
|
+
eventTypeName?: string | undefined;
|
|
4207
4207
|
/**
|
|
4208
4208
|
* <p>
|
|
4209
4209
|
* The timestamp of the event.
|
|
4210
4210
|
* </p>
|
|
4211
4211
|
* @public
|
|
4212
4212
|
*/
|
|
4213
|
-
eventTimestamp?: string;
|
|
4213
|
+
eventTimestamp?: string | undefined;
|
|
4214
4214
|
/**
|
|
4215
4215
|
* <p>
|
|
4216
4216
|
* The timestamp when the prediction was generated.
|
|
4217
4217
|
* </p>
|
|
4218
4218
|
* @public
|
|
4219
4219
|
*/
|
|
4220
|
-
predictionTimestamp?: string;
|
|
4220
|
+
predictionTimestamp?: string | undefined;
|
|
4221
4221
|
/**
|
|
4222
4222
|
* <p>
|
|
4223
4223
|
* The detector ID.
|
|
4224
4224
|
* </p>
|
|
4225
4225
|
* @public
|
|
4226
4226
|
*/
|
|
4227
|
-
detectorId?: string;
|
|
4227
|
+
detectorId?: string | undefined;
|
|
4228
4228
|
/**
|
|
4229
4229
|
* <p>
|
|
4230
4230
|
* The detector version ID.
|
|
4231
4231
|
* </p>
|
|
4232
4232
|
* @public
|
|
4233
4233
|
*/
|
|
4234
|
-
detectorVersionId?: string;
|
|
4234
|
+
detectorVersionId?: string | undefined;
|
|
4235
4235
|
}
|
|
4236
4236
|
/**
|
|
4237
4237
|
* @public
|
|
@@ -4243,14 +4243,14 @@ export interface ListEventPredictionsResult {
|
|
|
4243
4243
|
* </p>
|
|
4244
4244
|
* @public
|
|
4245
4245
|
*/
|
|
4246
|
-
eventPredictionSummaries?: EventPredictionSummary[];
|
|
4246
|
+
eventPredictionSummaries?: EventPredictionSummary[] | undefined;
|
|
4247
4247
|
/**
|
|
4248
4248
|
* <p>
|
|
4249
4249
|
* Identifies the next page of results to return. Use the token to make the call again to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.
|
|
4250
4250
|
* </p>
|
|
4251
4251
|
* @public
|
|
4252
4252
|
*/
|
|
4253
|
-
nextToken?: string;
|
|
4253
|
+
nextToken?: string | undefined;
|
|
4254
4254
|
}
|
|
4255
4255
|
/**
|
|
4256
4256
|
* @public
|
|
@@ -4265,12 +4265,12 @@ export interface ListTagsForResourceRequest {
|
|
|
4265
4265
|
* <p>The next token from the previous results.</p>
|
|
4266
4266
|
* @public
|
|
4267
4267
|
*/
|
|
4268
|
-
nextToken?: string;
|
|
4268
|
+
nextToken?: string | undefined;
|
|
4269
4269
|
/**
|
|
4270
4270
|
* <p>The maximum number of objects to return for the request. </p>
|
|
4271
4271
|
* @public
|
|
4272
4272
|
*/
|
|
4273
|
-
maxResults?: number;
|
|
4273
|
+
maxResults?: number | undefined;
|
|
4274
4274
|
}
|
|
4275
4275
|
/**
|
|
4276
4276
|
* @public
|
|
@@ -4280,12 +4280,12 @@ export interface ListTagsForResourceResult {
|
|
|
4280
4280
|
* <p>A collection of key and value pairs.</p>
|
|
4281
4281
|
* @public
|
|
4282
4282
|
*/
|
|
4283
|
-
tags?: Tag[];
|
|
4283
|
+
tags?: Tag[] | undefined;
|
|
4284
4284
|
/**
|
|
4285
4285
|
* <p>The next token for subsequent requests. </p>
|
|
4286
4286
|
* @public
|
|
4287
4287
|
*/
|
|
4288
|
-
nextToken?: string;
|
|
4288
|
+
nextToken?: string | undefined;
|
|
4289
4289
|
}
|
|
4290
4290
|
/**
|
|
4291
4291
|
* @public
|
|
@@ -4300,7 +4300,7 @@ export interface PutDetectorRequest {
|
|
|
4300
4300
|
* <p>The description of the detector.</p>
|
|
4301
4301
|
* @public
|
|
4302
4302
|
*/
|
|
4303
|
-
description?: string;
|
|
4303
|
+
description?: string | undefined;
|
|
4304
4304
|
/**
|
|
4305
4305
|
* <p>The name of the event type.</p>
|
|
4306
4306
|
* @public
|
|
@@ -4310,7 +4310,7 @@ export interface PutDetectorRequest {
|
|
|
4310
4310
|
* <p>A collection of key and value pairs.</p>
|
|
4311
4311
|
* @public
|
|
4312
4312
|
*/
|
|
4313
|
-
tags?: Tag[];
|
|
4313
|
+
tags?: Tag[] | undefined;
|
|
4314
4314
|
}
|
|
4315
4315
|
/**
|
|
4316
4316
|
* @public
|
|
@@ -4330,12 +4330,12 @@ export interface PutEntityTypeRequest {
|
|
|
4330
4330
|
* <p>The description.</p>
|
|
4331
4331
|
* @public
|
|
4332
4332
|
*/
|
|
4333
|
-
description?: string;
|
|
4333
|
+
description?: string | undefined;
|
|
4334
4334
|
/**
|
|
4335
4335
|
* <p>A collection of key and value pairs.</p>
|
|
4336
4336
|
* @public
|
|
4337
4337
|
*/
|
|
4338
|
-
tags?: Tag[];
|
|
4338
|
+
tags?: Tag[] | undefined;
|
|
4339
4339
|
}
|
|
4340
4340
|
/**
|
|
4341
4341
|
* @public
|
|
@@ -4355,7 +4355,7 @@ export interface PutEventTypeRequest {
|
|
|
4355
4355
|
* <p>The description of the event type.</p>
|
|
4356
4356
|
* @public
|
|
4357
4357
|
*/
|
|
4358
|
-
description?: string;
|
|
4358
|
+
description?: string | undefined;
|
|
4359
4359
|
/**
|
|
4360
4360
|
* <p>The event type variables.</p>
|
|
4361
4361
|
* @public
|
|
@@ -4365,7 +4365,7 @@ export interface PutEventTypeRequest {
|
|
|
4365
4365
|
* <p>The event type labels.</p>
|
|
4366
4366
|
* @public
|
|
4367
4367
|
*/
|
|
4368
|
-
labels?: string[];
|
|
4368
|
+
labels?: string[] | undefined;
|
|
4369
4369
|
/**
|
|
4370
4370
|
* <p>The entity type for the event type. Example entity types: customer, merchant, account.</p>
|
|
4371
4371
|
* @public
|
|
@@ -4375,17 +4375,17 @@ export interface PutEventTypeRequest {
|
|
|
4375
4375
|
* <p>Specifies if ingestion is enabled or disabled.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
eventIngestion?: EventIngestion;
|
|
4378
|
+
eventIngestion?: EventIngestion | undefined;
|
|
4379
4379
|
/**
|
|
4380
4380
|
* <p>A collection of key and value pairs.</p>
|
|
4381
4381
|
* @public
|
|
4382
4382
|
*/
|
|
4383
|
-
tags?: Tag[];
|
|
4383
|
+
tags?: Tag[] | undefined;
|
|
4384
4384
|
/**
|
|
4385
4385
|
* <p>Enables or disables event orchestration. If enabled, you can send event predictions to select AWS services for downstream processing of the events.</p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
eventOrchestration?: EventOrchestration;
|
|
4388
|
+
eventOrchestration?: EventOrchestration | undefined;
|
|
4389
4389
|
}
|
|
4390
4390
|
/**
|
|
4391
4391
|
* @public
|
|
@@ -4430,7 +4430,7 @@ export interface PutExternalModelRequest {
|
|
|
4430
4430
|
* <p>A collection of key and value pairs.</p>
|
|
4431
4431
|
* @public
|
|
4432
4432
|
*/
|
|
4433
|
-
tags?: Tag[];
|
|
4433
|
+
tags?: Tag[] | undefined;
|
|
4434
4434
|
}
|
|
4435
4435
|
/**
|
|
4436
4436
|
* @public
|
|
@@ -4466,12 +4466,12 @@ export interface PutLabelRequest {
|
|
|
4466
4466
|
* <p>The label description.</p>
|
|
4467
4467
|
* @public
|
|
4468
4468
|
*/
|
|
4469
|
-
description?: string;
|
|
4469
|
+
description?: string | undefined;
|
|
4470
4470
|
/**
|
|
4471
4471
|
* <p>A collection of key and value pairs.</p>
|
|
4472
4472
|
* @public
|
|
4473
4473
|
*/
|
|
4474
|
-
tags?: Tag[];
|
|
4474
|
+
tags?: Tag[] | undefined;
|
|
4475
4475
|
}
|
|
4476
4476
|
/**
|
|
4477
4477
|
* @public
|
|
@@ -4491,12 +4491,12 @@ export interface PutOutcomeRequest {
|
|
|
4491
4491
|
* <p>The outcome description.</p>
|
|
4492
4492
|
* @public
|
|
4493
4493
|
*/
|
|
4494
|
-
description?: string;
|
|
4494
|
+
description?: string | undefined;
|
|
4495
4495
|
/**
|
|
4496
4496
|
* <p>A collection of key and value pairs.</p>
|
|
4497
4497
|
* @public
|
|
4498
4498
|
*/
|
|
4499
|
-
tags?: Tag[];
|
|
4499
|
+
tags?: Tag[] | undefined;
|
|
4500
4500
|
}
|
|
4501
4501
|
/**
|
|
4502
4502
|
* @public
|
|
@@ -4531,12 +4531,12 @@ export interface SendEventRequest {
|
|
|
4531
4531
|
* <p>The label to associate with the event. Required if specifying <code>labelTimestamp</code>.</p>
|
|
4532
4532
|
* @public
|
|
4533
4533
|
*/
|
|
4534
|
-
assignedLabel?: string;
|
|
4534
|
+
assignedLabel?: string | undefined;
|
|
4535
4535
|
/**
|
|
4536
4536
|
* <p>The timestamp associated with the label. Required if specifying <code>assignedLabel</code>.</p>
|
|
4537
4537
|
* @public
|
|
4538
4538
|
*/
|
|
4539
|
-
labelTimestamp?: string;
|
|
4539
|
+
labelTimestamp?: string | undefined;
|
|
4540
4540
|
/**
|
|
4541
4541
|
* <p>An array of entities.</p>
|
|
4542
4542
|
* @public
|
|
@@ -4616,12 +4616,12 @@ export interface UpdateDetectorVersionRequest {
|
|
|
4616
4616
|
* <p>The detector version description. </p>
|
|
4617
4617
|
* @public
|
|
4618
4618
|
*/
|
|
4619
|
-
description?: string;
|
|
4619
|
+
description?: string | undefined;
|
|
4620
4620
|
/**
|
|
4621
4621
|
* <p>The model versions to include in the detector version.</p>
|
|
4622
4622
|
* @public
|
|
4623
4623
|
*/
|
|
4624
|
-
modelVersions?: ModelVersion[];
|
|
4624
|
+
modelVersions?: ModelVersion[] | undefined;
|
|
4625
4625
|
/**
|
|
4626
4626
|
* <p>The rule execution mode to add to the detector.</p>
|
|
4627
4627
|
* <p>If you specify <code>FIRST_MATCHED</code>, Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.</p>
|
|
@@ -4629,7 +4629,7 @@ export interface UpdateDetectorVersionRequest {
|
|
|
4629
4629
|
* <p>The default behavior is <code>FIRST_MATCHED</code>.</p>
|
|
4630
4630
|
* @public
|
|
4631
4631
|
*/
|
|
4632
|
-
ruleExecutionMode?: RuleExecutionMode;
|
|
4632
|
+
ruleExecutionMode?: RuleExecutionMode | undefined;
|
|
4633
4633
|
}
|
|
4634
4634
|
/**
|
|
4635
4635
|
* @public
|
|
@@ -4749,14 +4749,14 @@ export interface UpdateListRequest {
|
|
|
4749
4749
|
* <p>If you are deleting all elements from the list, use <code>REPLACE</code> for the <code>updateMode</code> and provide an empty list (0 elements).</p>
|
|
4750
4750
|
* @public
|
|
4751
4751
|
*/
|
|
4752
|
-
elements?: string[];
|
|
4752
|
+
elements?: string[] | undefined;
|
|
4753
4753
|
/**
|
|
4754
4754
|
* <p>
|
|
4755
4755
|
* The new description.
|
|
4756
4756
|
* </p>
|
|
4757
4757
|
* @public
|
|
4758
4758
|
*/
|
|
4759
|
-
description?: string;
|
|
4759
|
+
description?: string | undefined;
|
|
4760
4760
|
/**
|
|
4761
4761
|
* <p>
|
|
4762
4762
|
* The update mode (type).
|
|
@@ -4774,7 +4774,7 @@ export interface UpdateListRequest {
|
|
|
4774
4774
|
* </ul>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
updateMode?: ListUpdateMode;
|
|
4777
|
+
updateMode?: ListUpdateMode | undefined;
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p>
|
|
4780
4780
|
* The variable type you want to assign to the list.
|
|
@@ -4784,7 +4784,7 @@ export interface UpdateListRequest {
|
|
|
4784
4784
|
* </note>
|
|
4785
4785
|
* @public
|
|
4786
4786
|
*/
|
|
4787
|
-
variableType?: string;
|
|
4787
|
+
variableType?: string | undefined;
|
|
4788
4788
|
}
|
|
4789
4789
|
/**
|
|
4790
4790
|
* @public
|
|
@@ -4809,7 +4809,7 @@ export interface UpdateModelRequest {
|
|
|
4809
4809
|
* <p>The new model description.</p>
|
|
4810
4810
|
* @public
|
|
4811
4811
|
*/
|
|
4812
|
-
description?: string;
|
|
4812
|
+
description?: string | undefined;
|
|
4813
4813
|
}
|
|
4814
4814
|
/**
|
|
4815
4815
|
* @public
|
|
@@ -4839,17 +4839,17 @@ export interface UpdateModelVersionRequest {
|
|
|
4839
4839
|
* <p>The details of the external events data used for training the model version. Required if <code>trainingDataSource</code> is <code>EXTERNAL_EVENTS</code>.</p>
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
externalEventsDetail?: ExternalEventsDetail;
|
|
4842
|
+
externalEventsDetail?: ExternalEventsDetail | undefined;
|
|
4843
4843
|
/**
|
|
4844
4844
|
* <p>The details of the ingested event used for training the model version. Required if your <code>trainingDataSource</code> is <code>INGESTED_EVENTS</code>.</p>
|
|
4845
4845
|
* @public
|
|
4846
4846
|
*/
|
|
4847
|
-
ingestedEventsDetail?: IngestedEventsDetail;
|
|
4847
|
+
ingestedEventsDetail?: IngestedEventsDetail | undefined;
|
|
4848
4848
|
/**
|
|
4849
4849
|
* <p>A collection of key and value pairs.</p>
|
|
4850
4850
|
* @public
|
|
4851
4851
|
*/
|
|
4852
|
-
tags?: Tag[];
|
|
4852
|
+
tags?: Tag[] | undefined;
|
|
4853
4853
|
}
|
|
4854
4854
|
/**
|
|
4855
4855
|
* @public
|
|
@@ -4859,22 +4859,22 @@ export interface UpdateModelVersionResult {
|
|
|
4859
4859
|
* <p>The model ID.</p>
|
|
4860
4860
|
* @public
|
|
4861
4861
|
*/
|
|
4862
|
-
modelId?: string;
|
|
4862
|
+
modelId?: string | undefined;
|
|
4863
4863
|
/**
|
|
4864
4864
|
* <p>The model type.</p>
|
|
4865
4865
|
* @public
|
|
4866
4866
|
*/
|
|
4867
|
-
modelType?: ModelTypeEnum;
|
|
4867
|
+
modelType?: ModelTypeEnum | undefined;
|
|
4868
4868
|
/**
|
|
4869
4869
|
* <p>The model version number of the model version updated.</p>
|
|
4870
4870
|
* @public
|
|
4871
4871
|
*/
|
|
4872
|
-
modelVersionNumber?: string;
|
|
4872
|
+
modelVersionNumber?: string | undefined;
|
|
4873
4873
|
/**
|
|
4874
4874
|
* <p>The status of the updated model version.</p>
|
|
4875
4875
|
* @public
|
|
4876
4876
|
*/
|
|
4877
|
-
status?: string;
|
|
4877
|
+
status?: string | undefined;
|
|
4878
4878
|
}
|
|
4879
4879
|
/**
|
|
4880
4880
|
* @public
|
|
@@ -4952,7 +4952,7 @@ export interface UpdateRuleVersionRequest {
|
|
|
4952
4952
|
* <p>The description.</p>
|
|
4953
4953
|
* @public
|
|
4954
4954
|
*/
|
|
4955
|
-
description?: string;
|
|
4955
|
+
description?: string | undefined;
|
|
4956
4956
|
/**
|
|
4957
4957
|
* <p>The rule expression.</p>
|
|
4958
4958
|
* @public
|
|
@@ -4972,7 +4972,7 @@ export interface UpdateRuleVersionRequest {
|
|
|
4972
4972
|
* <p>The tags to assign to the rule version.</p>
|
|
4973
4973
|
* @public
|
|
4974
4974
|
*/
|
|
4975
|
-
tags?: Tag[];
|
|
4975
|
+
tags?: Tag[] | undefined;
|
|
4976
4976
|
}
|
|
4977
4977
|
/**
|
|
4978
4978
|
* @public
|
|
@@ -4982,7 +4982,7 @@ export interface UpdateRuleVersionResult {
|
|
|
4982
4982
|
* <p>The new rule version that was created.</p>
|
|
4983
4983
|
* @public
|
|
4984
4984
|
*/
|
|
4985
|
-
rule?: Rule;
|
|
4985
|
+
rule?: Rule | undefined;
|
|
4986
4986
|
}
|
|
4987
4987
|
/**
|
|
4988
4988
|
* @public
|
|
@@ -4997,17 +4997,17 @@ export interface UpdateVariableRequest {
|
|
|
4997
4997
|
* <p>The new default value of the variable.</p>
|
|
4998
4998
|
* @public
|
|
4999
4999
|
*/
|
|
5000
|
-
defaultValue?: string;
|
|
5000
|
+
defaultValue?: string | undefined;
|
|
5001
5001
|
/**
|
|
5002
5002
|
* <p>The new description.</p>
|
|
5003
5003
|
* @public
|
|
5004
5004
|
*/
|
|
5005
|
-
description?: string;
|
|
5005
|
+
description?: string | undefined;
|
|
5006
5006
|
/**
|
|
5007
5007
|
* <p>The variable type. For more information see <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types">Variable types</a>.</p>
|
|
5008
5008
|
* @public
|
|
5009
5009
|
*/
|
|
5010
|
-
variableType?: string;
|
|
5010
|
+
variableType?: string | undefined;
|
|
5011
5011
|
}
|
|
5012
5012
|
/**
|
|
5013
5013
|
* @public
|