@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.
- package/dist-cjs/index.js +77 -76
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +76 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -161
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +204 -0
- package/dist-types/models/errors.d.ts +86 -0
- package/dist-types/models/models_0.d.ts +1 -290
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +103 -0
- package/dist-types/ts3.4/models/errors.d.ts +49 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -152
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
export declare const AsyncJobStatus: {
|
|
2
|
+
readonly CANCELED: "CANCELED";
|
|
3
|
+
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
4
|
+
readonly COMPLETE: "COMPLETE";
|
|
5
|
+
readonly FAILED: "FAILED";
|
|
6
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
7
|
+
readonly IN_PROGRESS_INITIALIZING: "IN_PROGRESS_INITIALIZING";
|
|
8
|
+
};
|
|
9
|
+
export type AsyncJobStatus =
|
|
10
|
+
(typeof AsyncJobStatus)[keyof typeof AsyncJobStatus];
|
|
11
|
+
export declare const DataSource: {
|
|
12
|
+
readonly EVENT: "EVENT";
|
|
13
|
+
readonly EXTERNAL_MODEL_SCORE: "EXTERNAL_MODEL_SCORE";
|
|
14
|
+
readonly MODEL_SCORE: "MODEL_SCORE";
|
|
15
|
+
};
|
|
16
|
+
export type DataSource = (typeof DataSource)[keyof typeof DataSource];
|
|
17
|
+
export declare const DataType: {
|
|
18
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
19
|
+
readonly DATETIME: "DATETIME";
|
|
20
|
+
readonly FLOAT: "FLOAT";
|
|
21
|
+
readonly INTEGER: "INTEGER";
|
|
22
|
+
readonly STRING: "STRING";
|
|
23
|
+
};
|
|
24
|
+
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
25
|
+
export declare const ModelTypeEnum: {
|
|
26
|
+
readonly ACCOUNT_TAKEOVER_INSIGHTS: "ACCOUNT_TAKEOVER_INSIGHTS";
|
|
27
|
+
readonly ONLINE_FRAUD_INSIGHTS: "ONLINE_FRAUD_INSIGHTS";
|
|
28
|
+
readonly TRANSACTION_FRAUD_INSIGHTS: "TRANSACTION_FRAUD_INSIGHTS";
|
|
29
|
+
};
|
|
30
|
+
export type ModelTypeEnum = (typeof ModelTypeEnum)[keyof typeof ModelTypeEnum];
|
|
31
|
+
export declare const RuleExecutionMode: {
|
|
32
|
+
readonly ALL_MATCHED: "ALL_MATCHED";
|
|
33
|
+
readonly FIRST_MATCHED: "FIRST_MATCHED";
|
|
34
|
+
};
|
|
35
|
+
export type RuleExecutionMode =
|
|
36
|
+
(typeof RuleExecutionMode)[keyof typeof RuleExecutionMode];
|
|
37
|
+
export declare const DetectorVersionStatus: {
|
|
38
|
+
readonly ACTIVE: "ACTIVE";
|
|
39
|
+
readonly DRAFT: "DRAFT";
|
|
40
|
+
readonly INACTIVE: "INACTIVE";
|
|
41
|
+
};
|
|
42
|
+
export type DetectorVersionStatus =
|
|
43
|
+
(typeof DetectorVersionStatus)[keyof typeof DetectorVersionStatus];
|
|
44
|
+
export declare const UnlabeledEventsTreatment: {
|
|
45
|
+
readonly AUTO: "AUTO";
|
|
46
|
+
readonly FRAUD: "FRAUD";
|
|
47
|
+
readonly IGNORE: "IGNORE";
|
|
48
|
+
readonly LEGIT: "LEGIT";
|
|
49
|
+
};
|
|
50
|
+
export type UnlabeledEventsTreatment =
|
|
51
|
+
(typeof UnlabeledEventsTreatment)[keyof typeof UnlabeledEventsTreatment];
|
|
52
|
+
export declare const TrainingDataSourceEnum: {
|
|
53
|
+
readonly EXTERNAL_EVENTS: "EXTERNAL_EVENTS";
|
|
54
|
+
readonly INGESTED_EVENTS: "INGESTED_EVENTS";
|
|
55
|
+
};
|
|
56
|
+
export type TrainingDataSourceEnum =
|
|
57
|
+
(typeof TrainingDataSourceEnum)[keyof typeof TrainingDataSourceEnum];
|
|
58
|
+
export declare const Language: {
|
|
59
|
+
readonly DETECTORPL: "DETECTORPL";
|
|
60
|
+
};
|
|
61
|
+
export type Language = (typeof Language)[keyof typeof Language];
|
|
62
|
+
export declare const ModelSource: {
|
|
63
|
+
readonly SAGEMAKER: "SAGEMAKER";
|
|
64
|
+
};
|
|
65
|
+
export type ModelSource = (typeof ModelSource)[keyof typeof ModelSource];
|
|
66
|
+
export declare const EventIngestion: {
|
|
67
|
+
readonly DISABLED: "DISABLED";
|
|
68
|
+
readonly ENABLED: "ENABLED";
|
|
69
|
+
};
|
|
70
|
+
export type EventIngestion =
|
|
71
|
+
(typeof EventIngestion)[keyof typeof EventIngestion];
|
|
72
|
+
export declare const ModelInputDataFormat: {
|
|
73
|
+
readonly CSV: "TEXT_CSV";
|
|
74
|
+
readonly JSON: "APPLICATION_JSON";
|
|
75
|
+
};
|
|
76
|
+
export type ModelInputDataFormat =
|
|
77
|
+
(typeof ModelInputDataFormat)[keyof typeof ModelInputDataFormat];
|
|
78
|
+
export declare const ModelEndpointStatus: {
|
|
79
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
80
|
+
readonly DISSOCIATED: "DISSOCIATED";
|
|
81
|
+
};
|
|
82
|
+
export type ModelEndpointStatus =
|
|
83
|
+
(typeof ModelEndpointStatus)[keyof typeof ModelEndpointStatus];
|
|
84
|
+
export declare const ModelOutputDataFormat: {
|
|
85
|
+
readonly CSV: "TEXT_CSV";
|
|
86
|
+
readonly JSONLINES: "APPLICATION_JSONLINES";
|
|
87
|
+
};
|
|
88
|
+
export type ModelOutputDataFormat =
|
|
89
|
+
(typeof ModelOutputDataFormat)[keyof typeof ModelOutputDataFormat];
|
|
90
|
+
export declare const ListUpdateMode: {
|
|
91
|
+
readonly APPEND: "APPEND";
|
|
92
|
+
readonly REMOVE: "REMOVE";
|
|
93
|
+
readonly REPLACE: "REPLACE";
|
|
94
|
+
};
|
|
95
|
+
export type ListUpdateMode =
|
|
96
|
+
(typeof ListUpdateMode)[keyof typeof ListUpdateMode];
|
|
97
|
+
export declare const ModelVersionStatus: {
|
|
98
|
+
readonly ACTIVE: "ACTIVE";
|
|
99
|
+
readonly INACTIVE: "INACTIVE";
|
|
100
|
+
readonly TRAINING_CANCELLED: "TRAINING_CANCELLED";
|
|
101
|
+
};
|
|
102
|
+
export type ModelVersionStatus =
|
|
103
|
+
(typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { FraudDetectorServiceException as __BaseException } from "./FraudDetectorServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class InternalServerException extends __BaseException {
|
|
11
|
+
readonly name: "InternalServerException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ThrottlingException extends __BaseException {
|
|
18
|
+
readonly name: "ThrottlingException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ValidationException extends __BaseException {
|
|
25
|
+
readonly name: "ValidationException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
32
|
+
readonly name: "ResourceNotFoundException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ConflictException extends __BaseException {
|
|
39
|
+
readonly name: "ConflictException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
42
|
+
}
|
|
43
|
+
export declare class ResourceUnavailableException extends __BaseException {
|
|
44
|
+
readonly name: "ResourceUnavailableException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
@@ -1,12 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
AsyncJobStatus,
|
|
3
|
+
DataSource,
|
|
4
|
+
DataType,
|
|
5
|
+
DetectorVersionStatus,
|
|
6
|
+
EventIngestion,
|
|
7
|
+
Language,
|
|
8
|
+
ListUpdateMode,
|
|
9
|
+
ModelEndpointStatus,
|
|
10
|
+
ModelInputDataFormat,
|
|
11
|
+
ModelOutputDataFormat,
|
|
12
|
+
ModelSource,
|
|
13
|
+
ModelTypeEnum,
|
|
14
|
+
ModelVersionStatus,
|
|
15
|
+
RuleExecutionMode,
|
|
16
|
+
TrainingDataSourceEnum,
|
|
17
|
+
UnlabeledEventsTreatment,
|
|
18
|
+
} from "./enums";
|
|
10
19
|
export interface AggregatedLogOddsMetric {
|
|
11
20
|
variableNames: string[] | undefined;
|
|
12
21
|
aggregatedVariablesImportance: number | undefined;
|
|
@@ -27,16 +36,6 @@ export interface AllowDenyList {
|
|
|
27
36
|
updatedTime?: string | undefined;
|
|
28
37
|
arn?: string | undefined;
|
|
29
38
|
}
|
|
30
|
-
export declare const AsyncJobStatus: {
|
|
31
|
-
readonly CANCELED: "CANCELED";
|
|
32
|
-
readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
|
|
33
|
-
readonly COMPLETE: "COMPLETE";
|
|
34
|
-
readonly FAILED: "FAILED";
|
|
35
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
36
|
-
readonly IN_PROGRESS_INITIALIZING: "IN_PROGRESS_INITIALIZING";
|
|
37
|
-
};
|
|
38
|
-
export type AsyncJobStatus =
|
|
39
|
-
(typeof AsyncJobStatus)[keyof typeof AsyncJobStatus];
|
|
40
39
|
export interface ATIMetricDataPoint {
|
|
41
40
|
cr?: number | undefined;
|
|
42
41
|
adr?: number | undefined;
|
|
@@ -74,27 +73,6 @@ export interface BatchCreateVariableError {
|
|
|
74
73
|
export interface BatchCreateVariableResult {
|
|
75
74
|
errors?: BatchCreateVariableError[] | undefined;
|
|
76
75
|
}
|
|
77
|
-
export declare class InternalServerException extends __BaseException {
|
|
78
|
-
readonly name: "InternalServerException";
|
|
79
|
-
readonly $fault: "server";
|
|
80
|
-
constructor(
|
|
81
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
82
|
-
);
|
|
83
|
-
}
|
|
84
|
-
export declare class ThrottlingException extends __BaseException {
|
|
85
|
-
readonly name: "ThrottlingException";
|
|
86
|
-
readonly $fault: "client";
|
|
87
|
-
constructor(
|
|
88
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
89
|
-
);
|
|
90
|
-
}
|
|
91
|
-
export declare class ValidationException extends __BaseException {
|
|
92
|
-
readonly name: "ValidationException";
|
|
93
|
-
readonly $fault: "client";
|
|
94
|
-
constructor(
|
|
95
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
96
|
-
);
|
|
97
|
-
}
|
|
98
76
|
export interface BatchGetVariableRequest {
|
|
99
77
|
names: string[] | undefined;
|
|
100
78
|
}
|
|
@@ -103,20 +81,6 @@ export interface BatchGetVariableError {
|
|
|
103
81
|
code?: number | undefined;
|
|
104
82
|
message?: string | undefined;
|
|
105
83
|
}
|
|
106
|
-
export declare const DataSource: {
|
|
107
|
-
readonly EVENT: "EVENT";
|
|
108
|
-
readonly EXTERNAL_MODEL_SCORE: "EXTERNAL_MODEL_SCORE";
|
|
109
|
-
readonly MODEL_SCORE: "MODEL_SCORE";
|
|
110
|
-
};
|
|
111
|
-
export type DataSource = (typeof DataSource)[keyof typeof DataSource];
|
|
112
|
-
export declare const DataType: {
|
|
113
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
114
|
-
readonly DATETIME: "DATETIME";
|
|
115
|
-
readonly FLOAT: "FLOAT";
|
|
116
|
-
readonly INTEGER: "INTEGER";
|
|
117
|
-
readonly STRING: "STRING";
|
|
118
|
-
};
|
|
119
|
-
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
120
84
|
export interface Variable {
|
|
121
85
|
name?: string | undefined;
|
|
122
86
|
dataType?: DataType | undefined;
|
|
@@ -136,13 +100,6 @@ export interface CancelBatchImportJobRequest {
|
|
|
136
100
|
jobId: string | undefined;
|
|
137
101
|
}
|
|
138
102
|
export interface CancelBatchImportJobResult {}
|
|
139
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
140
|
-
readonly name: "ResourceNotFoundException";
|
|
141
|
-
readonly $fault: "client";
|
|
142
|
-
constructor(
|
|
143
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
144
|
-
);
|
|
145
|
-
}
|
|
146
103
|
export interface CancelBatchPredictionJobRequest {
|
|
147
104
|
jobId: string | undefined;
|
|
148
105
|
}
|
|
@@ -167,24 +124,12 @@ export interface CreateBatchPredictionJobRequest {
|
|
|
167
124
|
tags?: Tag[] | undefined;
|
|
168
125
|
}
|
|
169
126
|
export interface CreateBatchPredictionJobResult {}
|
|
170
|
-
export declare const ModelTypeEnum: {
|
|
171
|
-
readonly ACCOUNT_TAKEOVER_INSIGHTS: "ACCOUNT_TAKEOVER_INSIGHTS";
|
|
172
|
-
readonly ONLINE_FRAUD_INSIGHTS: "ONLINE_FRAUD_INSIGHTS";
|
|
173
|
-
readonly TRANSACTION_FRAUD_INSIGHTS: "TRANSACTION_FRAUD_INSIGHTS";
|
|
174
|
-
};
|
|
175
|
-
export type ModelTypeEnum = (typeof ModelTypeEnum)[keyof typeof ModelTypeEnum];
|
|
176
127
|
export interface ModelVersion {
|
|
177
128
|
modelId: string | undefined;
|
|
178
129
|
modelType: ModelTypeEnum | undefined;
|
|
179
130
|
modelVersionNumber: string | undefined;
|
|
180
131
|
arn?: string | undefined;
|
|
181
132
|
}
|
|
182
|
-
export declare const RuleExecutionMode: {
|
|
183
|
-
readonly ALL_MATCHED: "ALL_MATCHED";
|
|
184
|
-
readonly FIRST_MATCHED: "FIRST_MATCHED";
|
|
185
|
-
};
|
|
186
|
-
export type RuleExecutionMode =
|
|
187
|
-
(typeof RuleExecutionMode)[keyof typeof RuleExecutionMode];
|
|
188
133
|
export interface Rule {
|
|
189
134
|
detectorId: string | undefined;
|
|
190
135
|
ruleId: string | undefined;
|
|
@@ -199,13 +144,6 @@ export interface CreateDetectorVersionRequest {
|
|
|
199
144
|
ruleExecutionMode?: RuleExecutionMode | undefined;
|
|
200
145
|
tags?: Tag[] | undefined;
|
|
201
146
|
}
|
|
202
|
-
export declare const DetectorVersionStatus: {
|
|
203
|
-
readonly ACTIVE: "ACTIVE";
|
|
204
|
-
readonly DRAFT: "DRAFT";
|
|
205
|
-
readonly INACTIVE: "INACTIVE";
|
|
206
|
-
};
|
|
207
|
-
export type DetectorVersionStatus =
|
|
208
|
-
(typeof DetectorVersionStatus)[keyof typeof DetectorVersionStatus];
|
|
209
147
|
export interface CreateDetectorVersionResult {
|
|
210
148
|
detectorId?: string | undefined;
|
|
211
149
|
detectorVersionId?: string | undefined;
|
|
@@ -238,14 +176,6 @@ export interface IngestedEventsTimeWindow {
|
|
|
238
176
|
export interface IngestedEventsDetail {
|
|
239
177
|
ingestedEventsTimeWindow: IngestedEventsTimeWindow | undefined;
|
|
240
178
|
}
|
|
241
|
-
export declare const UnlabeledEventsTreatment: {
|
|
242
|
-
readonly AUTO: "AUTO";
|
|
243
|
-
readonly FRAUD: "FRAUD";
|
|
244
|
-
readonly IGNORE: "IGNORE";
|
|
245
|
-
readonly LEGIT: "LEGIT";
|
|
246
|
-
};
|
|
247
|
-
export type UnlabeledEventsTreatment =
|
|
248
|
-
(typeof UnlabeledEventsTreatment)[keyof typeof UnlabeledEventsTreatment];
|
|
249
179
|
export interface LabelSchema {
|
|
250
180
|
labelMapper?: Record<string, string[]> | undefined;
|
|
251
181
|
unlabeledEventsTreatment?: UnlabeledEventsTreatment | undefined;
|
|
@@ -254,12 +184,6 @@ export interface TrainingDataSchema {
|
|
|
254
184
|
modelVariables: string[] | undefined;
|
|
255
185
|
labelSchema?: LabelSchema | undefined;
|
|
256
186
|
}
|
|
257
|
-
export declare const TrainingDataSourceEnum: {
|
|
258
|
-
readonly EXTERNAL_EVENTS: "EXTERNAL_EVENTS";
|
|
259
|
-
readonly INGESTED_EVENTS: "INGESTED_EVENTS";
|
|
260
|
-
};
|
|
261
|
-
export type TrainingDataSourceEnum =
|
|
262
|
-
(typeof TrainingDataSourceEnum)[keyof typeof TrainingDataSourceEnum];
|
|
263
187
|
export interface CreateModelVersionRequest {
|
|
264
188
|
modelId: string | undefined;
|
|
265
189
|
modelType: ModelTypeEnum | undefined;
|
|
@@ -275,10 +199,6 @@ export interface CreateModelVersionResult {
|
|
|
275
199
|
modelVersionNumber?: string | undefined;
|
|
276
200
|
status?: string | undefined;
|
|
277
201
|
}
|
|
278
|
-
export declare const Language: {
|
|
279
|
-
readonly DETECTORPL: "DETECTORPL";
|
|
280
|
-
};
|
|
281
|
-
export type Language = (typeof Language)[keyof typeof Language];
|
|
282
202
|
export interface CreateRuleRequest {
|
|
283
203
|
ruleId: string | undefined;
|
|
284
204
|
detectorId: string | undefined;
|
|
@@ -309,11 +229,6 @@ export interface DeleteBatchPredictionJobRequest {
|
|
|
309
229
|
jobId: string | undefined;
|
|
310
230
|
}
|
|
311
231
|
export interface DeleteBatchPredictionJobResult {}
|
|
312
|
-
export declare class ConflictException extends __BaseException {
|
|
313
|
-
readonly name: "ConflictException";
|
|
314
|
-
readonly $fault: "client";
|
|
315
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
316
|
-
}
|
|
317
232
|
export interface DeleteDetectorRequest {
|
|
318
233
|
detectorId: string | undefined;
|
|
319
234
|
}
|
|
@@ -649,10 +564,6 @@ export interface GetEventPredictionRequest {
|
|
|
649
564
|
| Record<string, ModelEndpointDataBlob>
|
|
650
565
|
| undefined;
|
|
651
566
|
}
|
|
652
|
-
export declare const ModelSource: {
|
|
653
|
-
readonly SAGEMAKER: "SAGEMAKER";
|
|
654
|
-
};
|
|
655
|
-
export type ModelSource = (typeof ModelSource)[keyof typeof ModelSource];
|
|
656
567
|
export interface ExternalModelSummary {
|
|
657
568
|
modelEndpoint?: string | undefined;
|
|
658
569
|
modelSource?: ModelSource | undefined;
|
|
@@ -674,13 +585,6 @@ export interface GetEventPredictionResult {
|
|
|
674
585
|
ruleResults?: RuleResult[] | undefined;
|
|
675
586
|
externalModelOutputs?: ExternalModelOutputs[] | undefined;
|
|
676
587
|
}
|
|
677
|
-
export declare class ResourceUnavailableException extends __BaseException {
|
|
678
|
-
readonly name: "ResourceUnavailableException";
|
|
679
|
-
readonly $fault: "client";
|
|
680
|
-
constructor(
|
|
681
|
-
opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
|
|
682
|
-
);
|
|
683
|
-
}
|
|
684
588
|
export interface GetEventPredictionMetadataRequest {
|
|
685
589
|
eventId: string | undefined;
|
|
686
590
|
eventTypeName: string | undefined;
|
|
@@ -752,12 +656,6 @@ export interface GetEventTypesRequest {
|
|
|
752
656
|
nextToken?: string | undefined;
|
|
753
657
|
maxResults?: number | undefined;
|
|
754
658
|
}
|
|
755
|
-
export declare const EventIngestion: {
|
|
756
|
-
readonly DISABLED: "DISABLED";
|
|
757
|
-
readonly ENABLED: "ENABLED";
|
|
758
|
-
};
|
|
759
|
-
export type EventIngestion =
|
|
760
|
-
(typeof EventIngestion)[keyof typeof EventIngestion];
|
|
761
659
|
export interface EventOrchestration {
|
|
762
660
|
eventBridgeEnabled: boolean | undefined;
|
|
763
661
|
}
|
|
@@ -790,12 +688,6 @@ export interface GetExternalModelsRequest {
|
|
|
790
688
|
nextToken?: string | undefined;
|
|
791
689
|
maxResults?: number | undefined;
|
|
792
690
|
}
|
|
793
|
-
export declare const ModelInputDataFormat: {
|
|
794
|
-
readonly CSV: "TEXT_CSV";
|
|
795
|
-
readonly JSON: "APPLICATION_JSON";
|
|
796
|
-
};
|
|
797
|
-
export type ModelInputDataFormat =
|
|
798
|
-
(typeof ModelInputDataFormat)[keyof typeof ModelInputDataFormat];
|
|
799
691
|
export interface ModelInputConfiguration {
|
|
800
692
|
eventTypeName?: string | undefined;
|
|
801
693
|
format?: ModelInputDataFormat | undefined;
|
|
@@ -803,18 +695,6 @@ export interface ModelInputConfiguration {
|
|
|
803
695
|
jsonInputTemplate?: string | undefined;
|
|
804
696
|
csvInputTemplate?: string | undefined;
|
|
805
697
|
}
|
|
806
|
-
export declare const ModelEndpointStatus: {
|
|
807
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
808
|
-
readonly DISSOCIATED: "DISSOCIATED";
|
|
809
|
-
};
|
|
810
|
-
export type ModelEndpointStatus =
|
|
811
|
-
(typeof ModelEndpointStatus)[keyof typeof ModelEndpointStatus];
|
|
812
|
-
export declare const ModelOutputDataFormat: {
|
|
813
|
-
readonly CSV: "TEXT_CSV";
|
|
814
|
-
readonly JSONLINES: "APPLICATION_JSONLINES";
|
|
815
|
-
};
|
|
816
|
-
export type ModelOutputDataFormat =
|
|
817
|
-
(typeof ModelOutputDataFormat)[keyof typeof ModelOutputDataFormat];
|
|
818
698
|
export interface ModelOutputConfiguration {
|
|
819
699
|
format: ModelOutputDataFormat | undefined;
|
|
820
700
|
jsonKeyToVariableMap?: Record<string, string> | undefined;
|
|
@@ -1094,13 +974,6 @@ export interface UpdateEventLabelRequest {
|
|
|
1094
974
|
labelTimestamp: string | undefined;
|
|
1095
975
|
}
|
|
1096
976
|
export interface UpdateEventLabelResult {}
|
|
1097
|
-
export declare const ListUpdateMode: {
|
|
1098
|
-
readonly APPEND: "APPEND";
|
|
1099
|
-
readonly REMOVE: "REMOVE";
|
|
1100
|
-
readonly REPLACE: "REPLACE";
|
|
1101
|
-
};
|
|
1102
|
-
export type ListUpdateMode =
|
|
1103
|
-
(typeof ListUpdateMode)[keyof typeof ListUpdateMode];
|
|
1104
977
|
export interface UpdateListRequest {
|
|
1105
978
|
name: string | undefined;
|
|
1106
979
|
elements?: string[] | undefined;
|
|
@@ -1129,13 +1002,6 @@ export interface UpdateModelVersionResult {
|
|
|
1129
1002
|
modelVersionNumber?: string | undefined;
|
|
1130
1003
|
status?: string | undefined;
|
|
1131
1004
|
}
|
|
1132
|
-
export declare const ModelVersionStatus: {
|
|
1133
|
-
readonly ACTIVE: "ACTIVE";
|
|
1134
|
-
readonly INACTIVE: "INACTIVE";
|
|
1135
|
-
readonly TRAINING_CANCELLED: "TRAINING_CANCELLED";
|
|
1136
|
-
};
|
|
1137
|
-
export type ModelVersionStatus =
|
|
1138
|
-
(typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];
|
|
1139
1005
|
export interface UpdateModelVersionStatusRequest {
|
|
1140
1006
|
modelId: string | undefined;
|
|
1141
1007
|
modelType: ModelTypeEnum | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-frauddetector",
|
|
3
3
|
"description": "AWS SDK for JavaScript Frauddetector Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-frauddetector",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|