@aws-sdk/client-frauddetector 3.933.0 → 3.935.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.
@@ -0,0 +1,204 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AsyncJobStatus: {
6
+ readonly CANCELED: "CANCELED";
7
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
8
+ readonly COMPLETE: "COMPLETE";
9
+ readonly FAILED: "FAILED";
10
+ readonly IN_PROGRESS: "IN_PROGRESS";
11
+ readonly IN_PROGRESS_INITIALIZING: "IN_PROGRESS_INITIALIZING";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type AsyncJobStatus = (typeof AsyncJobStatus)[keyof typeof AsyncJobStatus];
17
+ /**
18
+ * @public
19
+ * @enum
20
+ */
21
+ export declare const DataSource: {
22
+ readonly EVENT: "EVENT";
23
+ readonly EXTERNAL_MODEL_SCORE: "EXTERNAL_MODEL_SCORE";
24
+ readonly MODEL_SCORE: "MODEL_SCORE";
25
+ };
26
+ /**
27
+ * @public
28
+ */
29
+ export type DataSource = (typeof DataSource)[keyof typeof DataSource];
30
+ /**
31
+ * @public
32
+ * @enum
33
+ */
34
+ export declare const DataType: {
35
+ readonly BOOLEAN: "BOOLEAN";
36
+ readonly DATETIME: "DATETIME";
37
+ readonly FLOAT: "FLOAT";
38
+ readonly INTEGER: "INTEGER";
39
+ readonly STRING: "STRING";
40
+ };
41
+ /**
42
+ * @public
43
+ */
44
+ export type DataType = (typeof DataType)[keyof typeof DataType];
45
+ /**
46
+ * @public
47
+ * @enum
48
+ */
49
+ export declare const ModelTypeEnum: {
50
+ readonly ACCOUNT_TAKEOVER_INSIGHTS: "ACCOUNT_TAKEOVER_INSIGHTS";
51
+ readonly ONLINE_FRAUD_INSIGHTS: "ONLINE_FRAUD_INSIGHTS";
52
+ readonly TRANSACTION_FRAUD_INSIGHTS: "TRANSACTION_FRAUD_INSIGHTS";
53
+ };
54
+ /**
55
+ * @public
56
+ */
57
+ export type ModelTypeEnum = (typeof ModelTypeEnum)[keyof typeof ModelTypeEnum];
58
+ /**
59
+ * @public
60
+ * @enum
61
+ */
62
+ export declare const RuleExecutionMode: {
63
+ readonly ALL_MATCHED: "ALL_MATCHED";
64
+ readonly FIRST_MATCHED: "FIRST_MATCHED";
65
+ };
66
+ /**
67
+ * @public
68
+ */
69
+ export type RuleExecutionMode = (typeof RuleExecutionMode)[keyof typeof RuleExecutionMode];
70
+ /**
71
+ * @public
72
+ * @enum
73
+ */
74
+ export declare const DetectorVersionStatus: {
75
+ readonly ACTIVE: "ACTIVE";
76
+ readonly DRAFT: "DRAFT";
77
+ readonly INACTIVE: "INACTIVE";
78
+ };
79
+ /**
80
+ * @public
81
+ */
82
+ export type DetectorVersionStatus = (typeof DetectorVersionStatus)[keyof typeof DetectorVersionStatus];
83
+ /**
84
+ * @public
85
+ * @enum
86
+ */
87
+ export declare const UnlabeledEventsTreatment: {
88
+ readonly AUTO: "AUTO";
89
+ readonly FRAUD: "FRAUD";
90
+ readonly IGNORE: "IGNORE";
91
+ readonly LEGIT: "LEGIT";
92
+ };
93
+ /**
94
+ * @public
95
+ */
96
+ export type UnlabeledEventsTreatment = (typeof UnlabeledEventsTreatment)[keyof typeof UnlabeledEventsTreatment];
97
+ /**
98
+ * @public
99
+ * @enum
100
+ */
101
+ export declare const TrainingDataSourceEnum: {
102
+ readonly EXTERNAL_EVENTS: "EXTERNAL_EVENTS";
103
+ readonly INGESTED_EVENTS: "INGESTED_EVENTS";
104
+ };
105
+ /**
106
+ * @public
107
+ */
108
+ export type TrainingDataSourceEnum = (typeof TrainingDataSourceEnum)[keyof typeof TrainingDataSourceEnum];
109
+ /**
110
+ * @public
111
+ * @enum
112
+ */
113
+ export declare const Language: {
114
+ readonly DETECTORPL: "DETECTORPL";
115
+ };
116
+ /**
117
+ * @public
118
+ */
119
+ export type Language = (typeof Language)[keyof typeof Language];
120
+ /**
121
+ * @public
122
+ * @enum
123
+ */
124
+ export declare const ModelSource: {
125
+ readonly SAGEMAKER: "SAGEMAKER";
126
+ };
127
+ /**
128
+ * @public
129
+ */
130
+ export type ModelSource = (typeof ModelSource)[keyof typeof ModelSource];
131
+ /**
132
+ * @public
133
+ * @enum
134
+ */
135
+ export declare const EventIngestion: {
136
+ readonly DISABLED: "DISABLED";
137
+ readonly ENABLED: "ENABLED";
138
+ };
139
+ /**
140
+ * @public
141
+ */
142
+ export type EventIngestion = (typeof EventIngestion)[keyof typeof EventIngestion];
143
+ /**
144
+ * @public
145
+ * @enum
146
+ */
147
+ export declare const ModelInputDataFormat: {
148
+ readonly CSV: "TEXT_CSV";
149
+ readonly JSON: "APPLICATION_JSON";
150
+ };
151
+ /**
152
+ * @public
153
+ */
154
+ export type ModelInputDataFormat = (typeof ModelInputDataFormat)[keyof typeof ModelInputDataFormat];
155
+ /**
156
+ * @public
157
+ * @enum
158
+ */
159
+ export declare const ModelEndpointStatus: {
160
+ readonly ASSOCIATED: "ASSOCIATED";
161
+ readonly DISSOCIATED: "DISSOCIATED";
162
+ };
163
+ /**
164
+ * @public
165
+ */
166
+ export type ModelEndpointStatus = (typeof ModelEndpointStatus)[keyof typeof ModelEndpointStatus];
167
+ /**
168
+ * @public
169
+ * @enum
170
+ */
171
+ export declare const ModelOutputDataFormat: {
172
+ readonly CSV: "TEXT_CSV";
173
+ readonly JSONLINES: "APPLICATION_JSONLINES";
174
+ };
175
+ /**
176
+ * @public
177
+ */
178
+ export type ModelOutputDataFormat = (typeof ModelOutputDataFormat)[keyof typeof ModelOutputDataFormat];
179
+ /**
180
+ * @public
181
+ * @enum
182
+ */
183
+ export declare const ListUpdateMode: {
184
+ readonly APPEND: "APPEND";
185
+ readonly REMOVE: "REMOVE";
186
+ readonly REPLACE: "REPLACE";
187
+ };
188
+ /**
189
+ * @public
190
+ */
191
+ export type ListUpdateMode = (typeof ListUpdateMode)[keyof typeof ListUpdateMode];
192
+ /**
193
+ * @public
194
+ * @enum
195
+ */
196
+ export declare const ModelVersionStatus: {
197
+ readonly ACTIVE: "ACTIVE";
198
+ readonly INACTIVE: "INACTIVE";
199
+ readonly TRAINING_CANCELLED: "TRAINING_CANCELLED";
200
+ };
201
+ /**
202
+ * @public
203
+ */
204
+ export type ModelVersionStatus = (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
@@ -0,0 +1,86 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { FraudDetectorServiceException as __BaseException } from "./FraudDetectorServiceException";
3
+ /**
4
+ * <p>An exception indicating Amazon Fraud Detector does not have the needed permissions. This can occur if you submit a request, such as <code>PutExternalModel</code>, that specifies a role that is not in your account.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>An exception indicating an internal server error.</p>
17
+ * @public
18
+ */
19
+ export declare class InternalServerException extends __BaseException {
20
+ readonly name: "InternalServerException";
21
+ readonly $fault: "server";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>An exception indicating a throttling error.</p>
29
+ * @public
30
+ */
31
+ export declare class ThrottlingException extends __BaseException {
32
+ readonly name: "ThrottlingException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>An exception indicating a specified value is not allowed.</p>
41
+ * @public
42
+ */
43
+ export declare class ValidationException extends __BaseException {
44
+ readonly name: "ValidationException";
45
+ readonly $fault: "client";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>An exception indicating the specified resource was not found.</p>
53
+ * @public
54
+ */
55
+ export declare class ResourceNotFoundException extends __BaseException {
56
+ readonly name: "ResourceNotFoundException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
62
+ }
63
+ /**
64
+ * <p>An exception indicating there was a conflict during a delete operation.</p>
65
+ * @public
66
+ */
67
+ export declare class ConflictException extends __BaseException {
68
+ readonly name: "ConflictException";
69
+ readonly $fault: "client";
70
+ /**
71
+ * @internal
72
+ */
73
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
74
+ }
75
+ /**
76
+ * <p>An exception indicating that the attached customer-owned (external) model threw an exception when Amazon Fraud Detector invoked the model.</p>
77
+ * @public
78
+ */
79
+ export declare class ResourceUnavailableException extends __BaseException {
80
+ readonly name: "ResourceUnavailableException";
81
+ readonly $fault: "client";
82
+ /**
83
+ * @internal
84
+ */
85
+ constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
86
+ }
@@ -1,17 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { FraudDetectorServiceException as __BaseException } from "./FraudDetectorServiceException";
3
- /**
4
- * <p>An exception indicating Amazon Fraud Detector does not have the needed permissions. This can occur if you submit a request, such as <code>PutExternalModel</code>, that specifies a role that is not in your account.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- /**
11
- * @internal
12
- */
13
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
- }
1
+ import { AsyncJobStatus, DataSource, DataType, DetectorVersionStatus, EventIngestion, Language, ListUpdateMode, ModelEndpointStatus, ModelInputDataFormat, ModelOutputDataFormat, ModelSource, ModelTypeEnum, ModelVersionStatus, RuleExecutionMode, TrainingDataSourceEnum, UnlabeledEventsTreatment } from "./enums";
15
2
  /**
16
3
  * <p>The log odds metric details.</p>
17
4
  * <p>Account Takeover Insights (ATI) model uses event variables from the login data you
@@ -139,22 +126,6 @@ export interface AllowDenyList {
139
126
  */
140
127
  arn?: string | undefined;
141
128
  }
142
- /**
143
- * @public
144
- * @enum
145
- */
146
- export declare const AsyncJobStatus: {
147
- readonly CANCELED: "CANCELED";
148
- readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
149
- readonly COMPLETE: "COMPLETE";
150
- readonly FAILED: "FAILED";
151
- readonly IN_PROGRESS: "IN_PROGRESS";
152
- readonly IN_PROGRESS_INITIALIZING: "IN_PROGRESS_INITIALIZING";
153
- };
154
- /**
155
- * @public
156
- */
157
- export type AsyncJobStatus = (typeof AsyncJobStatus)[keyof typeof AsyncJobStatus];
158
129
  /**
159
130
  * <p>
160
131
  * The Account Takeover Insights (ATI) model performance metrics data points.
@@ -335,42 +306,6 @@ export interface BatchCreateVariableResult {
335
306
  */
336
307
  errors?: BatchCreateVariableError[] | undefined;
337
308
  }
338
- /**
339
- * <p>An exception indicating an internal server error.</p>
340
- * @public
341
- */
342
- export declare class InternalServerException extends __BaseException {
343
- readonly name: "InternalServerException";
344
- readonly $fault: "server";
345
- /**
346
- * @internal
347
- */
348
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
349
- }
350
- /**
351
- * <p>An exception indicating a throttling error.</p>
352
- * @public
353
- */
354
- export declare class ThrottlingException extends __BaseException {
355
- readonly name: "ThrottlingException";
356
- readonly $fault: "client";
357
- /**
358
- * @internal
359
- */
360
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
361
- }
362
- /**
363
- * <p>An exception indicating a specified value is not allowed.</p>
364
- * @public
365
- */
366
- export declare class ValidationException extends __BaseException {
367
- readonly name: "ValidationException";
368
- readonly $fault: "client";
369
- /**
370
- * @internal
371
- */
372
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
373
- }
374
309
  /**
375
310
  * @public
376
311
  */
@@ -402,34 +337,6 @@ export interface BatchGetVariableError {
402
337
  */
403
338
  message?: string | undefined;
404
339
  }
405
- /**
406
- * @public
407
- * @enum
408
- */
409
- export declare const DataSource: {
410
- readonly EVENT: "EVENT";
411
- readonly EXTERNAL_MODEL_SCORE: "EXTERNAL_MODEL_SCORE";
412
- readonly MODEL_SCORE: "MODEL_SCORE";
413
- };
414
- /**
415
- * @public
416
- */
417
- export type DataSource = (typeof DataSource)[keyof typeof DataSource];
418
- /**
419
- * @public
420
- * @enum
421
- */
422
- export declare const DataType: {
423
- readonly BOOLEAN: "BOOLEAN";
424
- readonly DATETIME: "DATETIME";
425
- readonly FLOAT: "FLOAT";
426
- readonly INTEGER: "INTEGER";
427
- readonly STRING: "STRING";
428
- };
429
- /**
430
- * @public
431
- */
432
- export type DataType = (typeof DataType)[keyof typeof DataType];
433
340
  /**
434
341
  * <p>The variable.</p>
435
342
  * @public
@@ -514,18 +421,6 @@ export interface CancelBatchImportJobRequest {
514
421
  */
515
422
  export interface CancelBatchImportJobResult {
516
423
  }
517
- /**
518
- * <p>An exception indicating the specified resource was not found.</p>
519
- * @public
520
- */
521
- export declare class ResourceNotFoundException extends __BaseException {
522
- readonly name: "ResourceNotFoundException";
523
- readonly $fault: "client";
524
- /**
525
- * @internal
526
- */
527
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
528
- }
529
424
  /**
530
425
  * @public
531
426
  */
@@ -637,19 +532,6 @@ export interface CreateBatchPredictionJobRequest {
637
532
  */
638
533
  export interface CreateBatchPredictionJobResult {
639
534
  }
640
- /**
641
- * @public
642
- * @enum
643
- */
644
- export declare const ModelTypeEnum: {
645
- readonly ACCOUNT_TAKEOVER_INSIGHTS: "ACCOUNT_TAKEOVER_INSIGHTS";
646
- readonly ONLINE_FRAUD_INSIGHTS: "ONLINE_FRAUD_INSIGHTS";
647
- readonly TRANSACTION_FRAUD_INSIGHTS: "TRANSACTION_FRAUD_INSIGHTS";
648
- };
649
- /**
650
- * @public
651
- */
652
- export type ModelTypeEnum = (typeof ModelTypeEnum)[keyof typeof ModelTypeEnum];
653
535
  /**
654
536
  * <p>The model version.</p>
655
537
  * @public
@@ -676,18 +558,6 @@ export interface ModelVersion {
676
558
  */
677
559
  arn?: string | undefined;
678
560
  }
679
- /**
680
- * @public
681
- * @enum
682
- */
683
- export declare const RuleExecutionMode: {
684
- readonly ALL_MATCHED: "ALL_MATCHED";
685
- readonly FIRST_MATCHED: "FIRST_MATCHED";
686
- };
687
- /**
688
- * @public
689
- */
690
- export type RuleExecutionMode = (typeof RuleExecutionMode)[keyof typeof RuleExecutionMode];
691
561
  /**
692
562
  * <p>A rule.</p>
693
563
  * @public
@@ -753,19 +623,6 @@ export interface CreateDetectorVersionRequest {
753
623
  */
754
624
  tags?: Tag[] | undefined;
755
625
  }
756
- /**
757
- * @public
758
- * @enum
759
- */
760
- export declare const DetectorVersionStatus: {
761
- readonly ACTIVE: "ACTIVE";
762
- readonly DRAFT: "DRAFT";
763
- readonly INACTIVE: "INACTIVE";
764
- };
765
- /**
766
- * @public
767
- */
768
- export type DetectorVersionStatus = (typeof DetectorVersionStatus)[keyof typeof DetectorVersionStatus];
769
626
  /**
770
627
  * @public
771
628
  */
@@ -910,20 +767,6 @@ export interface IngestedEventsDetail {
910
767
  */
911
768
  ingestedEventsTimeWindow: IngestedEventsTimeWindow | undefined;
912
769
  }
913
- /**
914
- * @public
915
- * @enum
916
- */
917
- export declare const UnlabeledEventsTreatment: {
918
- readonly AUTO: "AUTO";
919
- readonly FRAUD: "FRAUD";
920
- readonly IGNORE: "IGNORE";
921
- readonly LEGIT: "LEGIT";
922
- };
923
- /**
924
- * @public
925
- */
926
- export type UnlabeledEventsTreatment = (typeof UnlabeledEventsTreatment)[keyof typeof UnlabeledEventsTreatment];
927
770
  /**
928
771
  * <p>The label schema.</p>
929
772
  * @public
@@ -972,18 +815,6 @@ export interface TrainingDataSchema {
972
815
  */
973
816
  labelSchema?: LabelSchema | undefined;
974
817
  }
975
- /**
976
- * @public
977
- * @enum
978
- */
979
- export declare const TrainingDataSourceEnum: {
980
- readonly EXTERNAL_EVENTS: "EXTERNAL_EVENTS";
981
- readonly INGESTED_EVENTS: "INGESTED_EVENTS";
982
- };
983
- /**
984
- * @public
985
- */
986
- export type TrainingDataSourceEnum = (typeof TrainingDataSourceEnum)[keyof typeof TrainingDataSourceEnum];
987
818
  /**
988
819
  * @public
989
820
  */
@@ -1049,17 +880,6 @@ export interface CreateModelVersionResult {
1049
880
  */
1050
881
  status?: string | undefined;
1051
882
  }
1052
- /**
1053
- * @public
1054
- * @enum
1055
- */
1056
- export declare const Language: {
1057
- readonly DETECTORPL: "DETECTORPL";
1058
- };
1059
- /**
1060
- * @public
1061
- */
1062
- export type Language = (typeof Language)[keyof typeof Language];
1063
883
  /**
1064
884
  * @public
1065
885
  */
@@ -1188,18 +1008,6 @@ export interface DeleteBatchPredictionJobRequest {
1188
1008
  */
1189
1009
  export interface DeleteBatchPredictionJobResult {
1190
1010
  }
1191
- /**
1192
- * <p>An exception indicating there was a conflict during a delete operation.</p>
1193
- * @public
1194
- */
1195
- export declare class ConflictException extends __BaseException {
1196
- readonly name: "ConflictException";
1197
- readonly $fault: "client";
1198
- /**
1199
- * @internal
1200
- */
1201
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1202
- }
1203
1011
  /**
1204
1012
  * @public
1205
1013
  */
@@ -2674,17 +2482,6 @@ export interface GetEventPredictionRequest {
2674
2482
  */
2675
2483
  externalModelEndpointDataBlobs?: Record<string, ModelEndpointDataBlob> | undefined;
2676
2484
  }
2677
- /**
2678
- * @public
2679
- * @enum
2680
- */
2681
- export declare const ModelSource: {
2682
- readonly SAGEMAKER: "SAGEMAKER";
2683
- };
2684
- /**
2685
- * @public
2686
- */
2687
- export type ModelSource = (typeof ModelSource)[keyof typeof ModelSource];
2688
2485
  /**
2689
2486
  * <p>The Amazon SageMaker model.</p>
2690
2487
  * @public
@@ -2769,18 +2566,6 @@ export interface GetEventPredictionResult {
2769
2566
  */
2770
2567
  externalModelOutputs?: ExternalModelOutputs[] | undefined;
2771
2568
  }
2772
- /**
2773
- * <p>An exception indicating that the attached customer-owned (external) model threw an exception when Amazon Fraud Detector invoked the model.</p>
2774
- * @public
2775
- */
2776
- export declare class ResourceUnavailableException extends __BaseException {
2777
- readonly name: "ResourceUnavailableException";
2778
- readonly $fault: "client";
2779
- /**
2780
- * @internal
2781
- */
2782
- constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
2783
- }
2784
2569
  /**
2785
2570
  * @public
2786
2571
  */
@@ -3199,18 +2984,6 @@ export interface GetEventTypesRequest {
3199
2984
  */
3200
2985
  maxResults?: number | undefined;
3201
2986
  }
3202
- /**
3203
- * @public
3204
- * @enum
3205
- */
3206
- export declare const EventIngestion: {
3207
- readonly DISABLED: "DISABLED";
3208
- readonly ENABLED: "ENABLED";
3209
- };
3210
- /**
3211
- * @public
3212
- */
3213
- export type EventIngestion = (typeof EventIngestion)[keyof typeof EventIngestion];
3214
2987
  /**
3215
2988
  * <p>
3216
2989
  * The event orchestration status.
@@ -3352,18 +3125,6 @@ export interface GetExternalModelsRequest {
3352
3125
  */
3353
3126
  maxResults?: number | undefined;
3354
3127
  }
3355
- /**
3356
- * @public
3357
- * @enum
3358
- */
3359
- export declare const ModelInputDataFormat: {
3360
- readonly CSV: "TEXT_CSV";
3361
- readonly JSON: "APPLICATION_JSON";
3362
- };
3363
- /**
3364
- * @public
3365
- */
3366
- export type ModelInputDataFormat = (typeof ModelInputDataFormat)[keyof typeof ModelInputDataFormat];
3367
3128
  /**
3368
3129
  * <p>The Amazon SageMaker model input configuration.</p>
3369
3130
  * @public
@@ -3400,30 +3161,6 @@ export interface ModelInputConfiguration {
3400
3161
  */
3401
3162
  csvInputTemplate?: string | undefined;
3402
3163
  }
3403
- /**
3404
- * @public
3405
- * @enum
3406
- */
3407
- export declare const ModelEndpointStatus: {
3408
- readonly ASSOCIATED: "ASSOCIATED";
3409
- readonly DISSOCIATED: "DISSOCIATED";
3410
- };
3411
- /**
3412
- * @public
3413
- */
3414
- export type ModelEndpointStatus = (typeof ModelEndpointStatus)[keyof typeof ModelEndpointStatus];
3415
- /**
3416
- * @public
3417
- * @enum
3418
- */
3419
- export declare const ModelOutputDataFormat: {
3420
- readonly CSV: "TEXT_CSV";
3421
- readonly JSONLINES: "APPLICATION_JSONLINES";
3422
- };
3423
- /**
3424
- * @public
3425
- */
3426
- export type ModelOutputDataFormat = (typeof ModelOutputDataFormat)[keyof typeof ModelOutputDataFormat];
3427
3164
  /**
3428
3165
  * <p>Provides the Amazon Sagemaker model output configuration.</p>
3429
3166
  * @public
@@ -4718,19 +4455,6 @@ export interface UpdateEventLabelRequest {
4718
4455
  */
4719
4456
  export interface UpdateEventLabelResult {
4720
4457
  }
4721
- /**
4722
- * @public
4723
- * @enum
4724
- */
4725
- export declare const ListUpdateMode: {
4726
- readonly APPEND: "APPEND";
4727
- readonly REMOVE: "REMOVE";
4728
- readonly REPLACE: "REPLACE";
4729
- };
4730
- /**
4731
- * @public
4732
- */
4733
- export type ListUpdateMode = (typeof ListUpdateMode)[keyof typeof ListUpdateMode];
4734
4458
  /**
4735
4459
  * @public
4736
4460
  */
@@ -4876,19 +4600,6 @@ export interface UpdateModelVersionResult {
4876
4600
  */
4877
4601
  status?: string | undefined;
4878
4602
  }
4879
- /**
4880
- * @public
4881
- * @enum
4882
- */
4883
- export declare const ModelVersionStatus: {
4884
- readonly ACTIVE: "ACTIVE";
4885
- readonly INACTIVE: "INACTIVE";
4886
- readonly TRAINING_CANCELLED: "TRAINING_CANCELLED";
4887
- };
4888
- /**
4889
- * @public
4890
- */
4891
- export type ModelVersionStatus = (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
4892
4603
  /**
4893
4604
  * @public
4894
4605
  */
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { FraudDetectorExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { FraudDetectorServiceException } from "./models/FraudDetectorServiceException";