@aws-sdk/client-frauddetector 3.48.0 → 3.49.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/CHANGELOG.md +11 -0
- package/dist-cjs/FraudDetector.js +30 -0
- package/dist-cjs/commands/GetEventPredictionMetadataCommand.js +36 -0
- package/dist-cjs/commands/ListEventPredictionsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +101 -2
- package/dist-cjs/pagination/ListEventPredictionsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +408 -3
- package/dist-es/FraudDetector.js +30 -0
- package/dist-es/commands/GetEventPredictionMetadataCommand.js +39 -0
- package/dist-es/commands/ListEventPredictionsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +62 -0
- package/dist-es/pagination/ListEventPredictionsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +405 -0
- package/dist-types/FraudDetector.d.ts +29 -0
- package/dist-types/FraudDetectorClient.d.ts +4 -2
- package/dist-types/commands/GetEventPredictionMetadataCommand.d.ts +37 -0
- package/dist-types/commands/ListEventPredictionsCommand.d.ts +48 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +551 -0
- package/dist-types/pagination/ListEventPredictionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/FraudDetector.d.ts +10 -0
- package/dist-types/ts3.4/FraudDetectorClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetEventPredictionMetadataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventPredictionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +224 -0
- package/dist-types/ts3.4/pagination/ListEventPredictionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
- package/package.json +39 -33
|
@@ -36,6 +36,7 @@ import { GetDetectorVersionCommandInput, GetDetectorVersionCommandOutput } from
|
|
|
36
36
|
import { GetEntityTypesCommandInput, GetEntityTypesCommandOutput } from "../commands/GetEntityTypesCommand";
|
|
37
37
|
import { GetEventCommandInput, GetEventCommandOutput } from "../commands/GetEventCommand";
|
|
38
38
|
import { GetEventPredictionCommandInput, GetEventPredictionCommandOutput } from "../commands/GetEventPredictionCommand";
|
|
39
|
+
import { GetEventPredictionMetadataCommandInput, GetEventPredictionMetadataCommandOutput } from "../commands/GetEventPredictionMetadataCommand";
|
|
39
40
|
import { GetEventTypesCommandInput, GetEventTypesCommandOutput } from "../commands/GetEventTypesCommand";
|
|
40
41
|
import { GetExternalModelsCommandInput, GetExternalModelsCommandOutput } from "../commands/GetExternalModelsCommand";
|
|
41
42
|
import { GetKMSEncryptionKeyCommandInput, GetKMSEncryptionKeyCommandOutput } from "../commands/GetKMSEncryptionKeyCommand";
|
|
@@ -45,6 +46,7 @@ import { GetModelVersionCommandInput, GetModelVersionCommandOutput } from "../co
|
|
|
45
46
|
import { GetOutcomesCommandInput, GetOutcomesCommandOutput } from "../commands/GetOutcomesCommand";
|
|
46
47
|
import { GetRulesCommandInput, GetRulesCommandOutput } from "../commands/GetRulesCommand";
|
|
47
48
|
import { GetVariablesCommandInput, GetVariablesCommandOutput } from "../commands/GetVariablesCommand";
|
|
49
|
+
import { ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput } from "../commands/ListEventPredictionsCommand";
|
|
48
50
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
49
51
|
import { PutDetectorCommandInput, PutDetectorCommandOutput } from "../commands/PutDetectorCommand";
|
|
50
52
|
import { PutEntityTypeCommandInput, PutEntityTypeCommandOutput } from "../commands/PutEntityTypeCommand";
|
|
@@ -102,6 +104,7 @@ export declare const serializeAws_json1_1GetDetectorVersionCommand: (input: GetD
|
|
|
102
104
|
export declare const serializeAws_json1_1GetEntityTypesCommand: (input: GetEntityTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
105
|
export declare const serializeAws_json1_1GetEventCommand: (input: GetEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
106
|
export declare const serializeAws_json1_1GetEventPredictionCommand: (input: GetEventPredictionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
export declare const serializeAws_json1_1GetEventPredictionMetadataCommand: (input: GetEventPredictionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
108
|
export declare const serializeAws_json1_1GetEventTypesCommand: (input: GetEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
109
|
export declare const serializeAws_json1_1GetExternalModelsCommand: (input: GetExternalModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
110
|
export declare const serializeAws_json1_1GetKMSEncryptionKeyCommand: (input: GetKMSEncryptionKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -111,6 +114,7 @@ export declare const serializeAws_json1_1GetModelVersionCommand: (input: GetMode
|
|
|
111
114
|
export declare const serializeAws_json1_1GetOutcomesCommand: (input: GetOutcomesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
115
|
export declare const serializeAws_json1_1GetRulesCommand: (input: GetRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
116
|
export declare const serializeAws_json1_1GetVariablesCommand: (input: GetVariablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
export declare const serializeAws_json1_1ListEventPredictionsCommand: (input: ListEventPredictionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
118
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
119
|
export declare const serializeAws_json1_1PutDetectorCommand: (input: PutDetectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
120
|
export declare const serializeAws_json1_1PutEntityTypeCommand: (input: PutEntityTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -168,6 +172,7 @@ export declare const deserializeAws_json1_1GetDetectorVersionCommand: (output: _
|
|
|
168
172
|
export declare const deserializeAws_json1_1GetEntityTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntityTypesCommandOutput>;
|
|
169
173
|
export declare const deserializeAws_json1_1GetEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventCommandOutput>;
|
|
170
174
|
export declare const deserializeAws_json1_1GetEventPredictionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventPredictionCommandOutput>;
|
|
175
|
+
export declare const deserializeAws_json1_1GetEventPredictionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventPredictionMetadataCommandOutput>;
|
|
171
176
|
export declare const deserializeAws_json1_1GetEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventTypesCommandOutput>;
|
|
172
177
|
export declare const deserializeAws_json1_1GetExternalModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExternalModelsCommandOutput>;
|
|
173
178
|
export declare const deserializeAws_json1_1GetKMSEncryptionKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKMSEncryptionKeyCommandOutput>;
|
|
@@ -177,6 +182,7 @@ export declare const deserializeAws_json1_1GetModelVersionCommand: (output: __Ht
|
|
|
177
182
|
export declare const deserializeAws_json1_1GetOutcomesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutcomesCommandOutput>;
|
|
178
183
|
export declare const deserializeAws_json1_1GetRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRulesCommandOutput>;
|
|
179
184
|
export declare const deserializeAws_json1_1GetVariablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVariablesCommandOutput>;
|
|
185
|
+
export declare const deserializeAws_json1_1ListEventPredictionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventPredictionsCommandOutput>;
|
|
180
186
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
181
187
|
export declare const deserializeAws_json1_1PutDetectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutDetectorCommandOutput>;
|
|
182
188
|
export declare const deserializeAws_json1_1PutEntityTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutEntityTypeCommandOutput>;
|
|
@@ -35,6 +35,7 @@ import { GetDetectorVersionCommandInput, GetDetectorVersionCommandOutput } from
|
|
|
35
35
|
import { GetEntityTypesCommandInput, GetEntityTypesCommandOutput } from "./commands/GetEntityTypesCommand";
|
|
36
36
|
import { GetEventCommandInput, GetEventCommandOutput } from "./commands/GetEventCommand";
|
|
37
37
|
import { GetEventPredictionCommandInput, GetEventPredictionCommandOutput } from "./commands/GetEventPredictionCommand";
|
|
38
|
+
import { GetEventPredictionMetadataCommandInput, GetEventPredictionMetadataCommandOutput } from "./commands/GetEventPredictionMetadataCommand";
|
|
38
39
|
import { GetEventTypesCommandInput, GetEventTypesCommandOutput } from "./commands/GetEventTypesCommand";
|
|
39
40
|
import { GetExternalModelsCommandInput, GetExternalModelsCommandOutput } from "./commands/GetExternalModelsCommand";
|
|
40
41
|
import { GetKMSEncryptionKeyCommandInput, GetKMSEncryptionKeyCommandOutput } from "./commands/GetKMSEncryptionKeyCommand";
|
|
@@ -44,6 +45,7 @@ import { GetModelVersionCommandInput, GetModelVersionCommandOutput } from "./com
|
|
|
44
45
|
import { GetOutcomesCommandInput, GetOutcomesCommandOutput } from "./commands/GetOutcomesCommand";
|
|
45
46
|
import { GetRulesCommandInput, GetRulesCommandOutput } from "./commands/GetRulesCommand";
|
|
46
47
|
import { GetVariablesCommandInput, GetVariablesCommandOutput } from "./commands/GetVariablesCommand";
|
|
48
|
+
import { ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput } from "./commands/ListEventPredictionsCommand";
|
|
47
49
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
48
50
|
import { PutDetectorCommandInput, PutDetectorCommandOutput } from "./commands/PutDetectorCommand";
|
|
49
51
|
import { PutEntityTypeCommandInput, PutEntityTypeCommandOutput } from "./commands/PutEntityTypeCommand";
|
|
@@ -213,6 +215,10 @@ export declare class FraudDetector extends FraudDetectorClient {
|
|
|
213
215
|
getEventPrediction(args: GetEventPredictionCommandInput, cb: (err: any, data?: GetEventPredictionCommandOutput) => void): void;
|
|
214
216
|
getEventPrediction(args: GetEventPredictionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventPredictionCommandOutput) => void): void;
|
|
215
217
|
|
|
218
|
+
getEventPredictionMetadata(args: GetEventPredictionMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetEventPredictionMetadataCommandOutput>;
|
|
219
|
+
getEventPredictionMetadata(args: GetEventPredictionMetadataCommandInput, cb: (err: any, data?: GetEventPredictionMetadataCommandOutput) => void): void;
|
|
220
|
+
getEventPredictionMetadata(args: GetEventPredictionMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventPredictionMetadataCommandOutput) => void): void;
|
|
221
|
+
|
|
216
222
|
getEventTypes(args: GetEventTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetEventTypesCommandOutput>;
|
|
217
223
|
getEventTypes(args: GetEventTypesCommandInput, cb: (err: any, data?: GetEventTypesCommandOutput) => void): void;
|
|
218
224
|
getEventTypes(args: GetEventTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventTypesCommandOutput) => void): void;
|
|
@@ -249,6 +255,10 @@ export declare class FraudDetector extends FraudDetectorClient {
|
|
|
249
255
|
getVariables(args: GetVariablesCommandInput, cb: (err: any, data?: GetVariablesCommandOutput) => void): void;
|
|
250
256
|
getVariables(args: GetVariablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVariablesCommandOutput) => void): void;
|
|
251
257
|
|
|
258
|
+
listEventPredictions(args: ListEventPredictionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventPredictionsCommandOutput>;
|
|
259
|
+
listEventPredictions(args: ListEventPredictionsCommandInput, cb: (err: any, data?: ListEventPredictionsCommandOutput) => void): void;
|
|
260
|
+
listEventPredictions(args: ListEventPredictionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventPredictionsCommandOutput) => void): void;
|
|
261
|
+
|
|
252
262
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
253
263
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
254
264
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
@@ -42,6 +42,7 @@ import { GetDetectorVersionCommandInput, GetDetectorVersionCommandOutput } from
|
|
|
42
42
|
import { GetEntityTypesCommandInput, GetEntityTypesCommandOutput } from "./commands/GetEntityTypesCommand";
|
|
43
43
|
import { GetEventCommandInput, GetEventCommandOutput } from "./commands/GetEventCommand";
|
|
44
44
|
import { GetEventPredictionCommandInput, GetEventPredictionCommandOutput } from "./commands/GetEventPredictionCommand";
|
|
45
|
+
import { GetEventPredictionMetadataCommandInput, GetEventPredictionMetadataCommandOutput } from "./commands/GetEventPredictionMetadataCommand";
|
|
45
46
|
import { GetEventTypesCommandInput, GetEventTypesCommandOutput } from "./commands/GetEventTypesCommand";
|
|
46
47
|
import { GetExternalModelsCommandInput, GetExternalModelsCommandOutput } from "./commands/GetExternalModelsCommand";
|
|
47
48
|
import { GetKMSEncryptionKeyCommandInput, GetKMSEncryptionKeyCommandOutput } from "./commands/GetKMSEncryptionKeyCommand";
|
|
@@ -51,6 +52,7 @@ import { GetModelVersionCommandInput, GetModelVersionCommandOutput } from "./com
|
|
|
51
52
|
import { GetOutcomesCommandInput, GetOutcomesCommandOutput } from "./commands/GetOutcomesCommand";
|
|
52
53
|
import { GetRulesCommandInput, GetRulesCommandOutput } from "./commands/GetRulesCommand";
|
|
53
54
|
import { GetVariablesCommandInput, GetVariablesCommandOutput } from "./commands/GetVariablesCommand";
|
|
55
|
+
import { ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput } from "./commands/ListEventPredictionsCommand";
|
|
54
56
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
55
57
|
import { PutDetectorCommandInput, PutDetectorCommandOutput } from "./commands/PutDetectorCommand";
|
|
56
58
|
import { PutEntityTypeCommandInput, PutEntityTypeCommandOutput } from "./commands/PutEntityTypeCommand";
|
|
@@ -72,8 +74,8 @@ import { UpdateModelVersionStatusCommandInput, UpdateModelVersionStatusCommandOu
|
|
|
72
74
|
import { UpdateRuleMetadataCommandInput, UpdateRuleMetadataCommandOutput } from "./commands/UpdateRuleMetadataCommand";
|
|
73
75
|
import { UpdateRuleVersionCommandInput, UpdateRuleVersionCommandOutput } from "./commands/UpdateRuleVersionCommand";
|
|
74
76
|
import { UpdateVariableCommandInput, UpdateVariableCommandOutput } from "./commands/UpdateVariableCommand";
|
|
75
|
-
export declare type ServiceInputTypes = BatchCreateVariableCommandInput | BatchGetVariableCommandInput | CancelBatchImportJobCommandInput | CancelBatchPredictionJobCommandInput | CreateBatchImportJobCommandInput | CreateBatchPredictionJobCommandInput | CreateDetectorVersionCommandInput | CreateModelCommandInput | CreateModelVersionCommandInput | CreateRuleCommandInput | CreateVariableCommandInput | DeleteBatchImportJobCommandInput | DeleteBatchPredictionJobCommandInput | DeleteDetectorCommandInput | DeleteDetectorVersionCommandInput | DeleteEntityTypeCommandInput | DeleteEventCommandInput | DeleteEventTypeCommandInput | DeleteEventsByEventTypeCommandInput | DeleteExternalModelCommandInput | DeleteLabelCommandInput | DeleteModelCommandInput | DeleteModelVersionCommandInput | DeleteOutcomeCommandInput | DeleteRuleCommandInput | DeleteVariableCommandInput | DescribeDetectorCommandInput | DescribeModelVersionsCommandInput | GetBatchImportJobsCommandInput | GetBatchPredictionJobsCommandInput | GetDeleteEventsByEventTypeStatusCommandInput | GetDetectorVersionCommandInput | GetDetectorsCommandInput | GetEntityTypesCommandInput | GetEventCommandInput | GetEventPredictionCommandInput | GetEventTypesCommandInput | GetExternalModelsCommandInput | GetKMSEncryptionKeyCommandInput | GetLabelsCommandInput | GetModelVersionCommandInput | GetModelsCommandInput | GetOutcomesCommandInput | GetRulesCommandInput | GetVariablesCommandInput | ListTagsForResourceCommandInput | PutDetectorCommandInput | PutEntityTypeCommandInput | PutEventTypeCommandInput | PutExternalModelCommandInput | PutKMSEncryptionKeyCommandInput | PutLabelCommandInput | PutOutcomeCommandInput | SendEventCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDetectorVersionCommandInput | UpdateDetectorVersionMetadataCommandInput | UpdateDetectorVersionStatusCommandInput | UpdateEventLabelCommandInput | UpdateModelCommandInput | UpdateModelVersionCommandInput | UpdateModelVersionStatusCommandInput | UpdateRuleMetadataCommandInput | UpdateRuleVersionCommandInput | UpdateVariableCommandInput;
|
|
76
|
-
export declare type ServiceOutputTypes = BatchCreateVariableCommandOutput | BatchGetVariableCommandOutput | CancelBatchImportJobCommandOutput | CancelBatchPredictionJobCommandOutput | CreateBatchImportJobCommandOutput | CreateBatchPredictionJobCommandOutput | CreateDetectorVersionCommandOutput | CreateModelCommandOutput | CreateModelVersionCommandOutput | CreateRuleCommandOutput | CreateVariableCommandOutput | DeleteBatchImportJobCommandOutput | DeleteBatchPredictionJobCommandOutput | DeleteDetectorCommandOutput | DeleteDetectorVersionCommandOutput | DeleteEntityTypeCommandOutput | DeleteEventCommandOutput | DeleteEventTypeCommandOutput | DeleteEventsByEventTypeCommandOutput | DeleteExternalModelCommandOutput | DeleteLabelCommandOutput | DeleteModelCommandOutput | DeleteModelVersionCommandOutput | DeleteOutcomeCommandOutput | DeleteRuleCommandOutput | DeleteVariableCommandOutput | DescribeDetectorCommandOutput | DescribeModelVersionsCommandOutput | GetBatchImportJobsCommandOutput | GetBatchPredictionJobsCommandOutput | GetDeleteEventsByEventTypeStatusCommandOutput | GetDetectorVersionCommandOutput | GetDetectorsCommandOutput | GetEntityTypesCommandOutput | GetEventCommandOutput | GetEventPredictionCommandOutput | GetEventTypesCommandOutput | GetExternalModelsCommandOutput | GetKMSEncryptionKeyCommandOutput | GetLabelsCommandOutput | GetModelVersionCommandOutput | GetModelsCommandOutput | GetOutcomesCommandOutput | GetRulesCommandOutput | GetVariablesCommandOutput | ListTagsForResourceCommandOutput | PutDetectorCommandOutput | PutEntityTypeCommandOutput | PutEventTypeCommandOutput | PutExternalModelCommandOutput | PutKMSEncryptionKeyCommandOutput | PutLabelCommandOutput | PutOutcomeCommandOutput | SendEventCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDetectorVersionCommandOutput | UpdateDetectorVersionMetadataCommandOutput | UpdateDetectorVersionStatusCommandOutput | UpdateEventLabelCommandOutput | UpdateModelCommandOutput | UpdateModelVersionCommandOutput | UpdateModelVersionStatusCommandOutput | UpdateRuleMetadataCommandOutput | UpdateRuleVersionCommandOutput | UpdateVariableCommandOutput;
|
|
77
|
+
export declare type ServiceInputTypes = BatchCreateVariableCommandInput | BatchGetVariableCommandInput | CancelBatchImportJobCommandInput | CancelBatchPredictionJobCommandInput | CreateBatchImportJobCommandInput | CreateBatchPredictionJobCommandInput | CreateDetectorVersionCommandInput | CreateModelCommandInput | CreateModelVersionCommandInput | CreateRuleCommandInput | CreateVariableCommandInput | DeleteBatchImportJobCommandInput | DeleteBatchPredictionJobCommandInput | DeleteDetectorCommandInput | DeleteDetectorVersionCommandInput | DeleteEntityTypeCommandInput | DeleteEventCommandInput | DeleteEventTypeCommandInput | DeleteEventsByEventTypeCommandInput | DeleteExternalModelCommandInput | DeleteLabelCommandInput | DeleteModelCommandInput | DeleteModelVersionCommandInput | DeleteOutcomeCommandInput | DeleteRuleCommandInput | DeleteVariableCommandInput | DescribeDetectorCommandInput | DescribeModelVersionsCommandInput | GetBatchImportJobsCommandInput | GetBatchPredictionJobsCommandInput | GetDeleteEventsByEventTypeStatusCommandInput | GetDetectorVersionCommandInput | GetDetectorsCommandInput | GetEntityTypesCommandInput | GetEventCommandInput | GetEventPredictionCommandInput | GetEventPredictionMetadataCommandInput | GetEventTypesCommandInput | GetExternalModelsCommandInput | GetKMSEncryptionKeyCommandInput | GetLabelsCommandInput | GetModelVersionCommandInput | GetModelsCommandInput | GetOutcomesCommandInput | GetRulesCommandInput | GetVariablesCommandInput | ListEventPredictionsCommandInput | ListTagsForResourceCommandInput | PutDetectorCommandInput | PutEntityTypeCommandInput | PutEventTypeCommandInput | PutExternalModelCommandInput | PutKMSEncryptionKeyCommandInput | PutLabelCommandInput | PutOutcomeCommandInput | SendEventCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDetectorVersionCommandInput | UpdateDetectorVersionMetadataCommandInput | UpdateDetectorVersionStatusCommandInput | UpdateEventLabelCommandInput | UpdateModelCommandInput | UpdateModelVersionCommandInput | UpdateModelVersionStatusCommandInput | UpdateRuleMetadataCommandInput | UpdateRuleVersionCommandInput | UpdateVariableCommandInput;
|
|
78
|
+
export declare type ServiceOutputTypes = BatchCreateVariableCommandOutput | BatchGetVariableCommandOutput | CancelBatchImportJobCommandOutput | CancelBatchPredictionJobCommandOutput | CreateBatchImportJobCommandOutput | CreateBatchPredictionJobCommandOutput | CreateDetectorVersionCommandOutput | CreateModelCommandOutput | CreateModelVersionCommandOutput | CreateRuleCommandOutput | CreateVariableCommandOutput | DeleteBatchImportJobCommandOutput | DeleteBatchPredictionJobCommandOutput | DeleteDetectorCommandOutput | DeleteDetectorVersionCommandOutput | DeleteEntityTypeCommandOutput | DeleteEventCommandOutput | DeleteEventTypeCommandOutput | DeleteEventsByEventTypeCommandOutput | DeleteExternalModelCommandOutput | DeleteLabelCommandOutput | DeleteModelCommandOutput | DeleteModelVersionCommandOutput | DeleteOutcomeCommandOutput | DeleteRuleCommandOutput | DeleteVariableCommandOutput | DescribeDetectorCommandOutput | DescribeModelVersionsCommandOutput | GetBatchImportJobsCommandOutput | GetBatchPredictionJobsCommandOutput | GetDeleteEventsByEventTypeStatusCommandOutput | GetDetectorVersionCommandOutput | GetDetectorsCommandOutput | GetEntityTypesCommandOutput | GetEventCommandOutput | GetEventPredictionCommandOutput | GetEventPredictionMetadataCommandOutput | GetEventTypesCommandOutput | GetExternalModelsCommandOutput | GetKMSEncryptionKeyCommandOutput | GetLabelsCommandOutput | GetModelVersionCommandOutput | GetModelsCommandOutput | GetOutcomesCommandOutput | GetRulesCommandOutput | GetVariablesCommandOutput | ListEventPredictionsCommandOutput | ListTagsForResourceCommandOutput | PutDetectorCommandOutput | PutEntityTypeCommandOutput | PutEventTypeCommandOutput | PutExternalModelCommandOutput | PutKMSEncryptionKeyCommandOutput | PutLabelCommandOutput | PutOutcomeCommandOutput | SendEventCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDetectorVersionCommandOutput | UpdateDetectorVersionMetadataCommandOutput | UpdateDetectorVersionStatusCommandOutput | UpdateEventLabelCommandOutput | UpdateModelCommandOutput | UpdateModelVersionCommandOutput | UpdateModelVersionStatusCommandOutput | UpdateRuleMetadataCommandOutput | UpdateRuleVersionCommandOutput | UpdateVariableCommandOutput;
|
|
77
79
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
78
80
|
|
|
79
81
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient";
|
|
4
|
+
import { GetEventPredictionMetadataRequest, GetEventPredictionMetadataResult } from "../models/models_0";
|
|
5
|
+
export interface GetEventPredictionMetadataCommandInput extends GetEventPredictionMetadataRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetEventPredictionMetadataCommandOutput extends GetEventPredictionMetadataResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetEventPredictionMetadataCommand extends $Command<GetEventPredictionMetadataCommandInput, GetEventPredictionMetadataCommandOutput, FraudDetectorClientResolvedConfig> {
|
|
11
|
+
readonly input: GetEventPredictionMetadataCommandInput;
|
|
12
|
+
constructor(input: GetEventPredictionMetadataCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FraudDetectorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEventPredictionMetadataCommandInput, GetEventPredictionMetadataCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient";
|
|
4
|
+
import { ListEventPredictionsRequest, ListEventPredictionsResult } from "../models/models_0";
|
|
5
|
+
export interface ListEventPredictionsCommandInput extends ListEventPredictionsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListEventPredictionsCommandOutput extends ListEventPredictionsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListEventPredictionsCommand extends $Command<ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput, FraudDetectorClientResolvedConfig> {
|
|
11
|
+
readonly input: ListEventPredictionsCommandInput;
|
|
12
|
+
constructor(input: ListEventPredictionsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FraudDetectorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -34,6 +34,7 @@ export * from "./GetDetectorsCommand";
|
|
|
34
34
|
export * from "./GetEntityTypesCommand";
|
|
35
35
|
export * from "./GetEventCommand";
|
|
36
36
|
export * from "./GetEventPredictionCommand";
|
|
37
|
+
export * from "./GetEventPredictionMetadataCommand";
|
|
37
38
|
export * from "./GetEventTypesCommand";
|
|
38
39
|
export * from "./GetExternalModelsCommand";
|
|
39
40
|
export * from "./GetKMSEncryptionKeyCommand";
|
|
@@ -43,6 +44,7 @@ export * from "./GetModelsCommand";
|
|
|
43
44
|
export * from "./GetOutcomesCommand";
|
|
44
45
|
export * from "./GetRulesCommand";
|
|
45
46
|
export * from "./GetVariablesCommand";
|
|
47
|
+
export * from "./ListEventPredictionsCommand";
|
|
46
48
|
export * from "./ListTagsForResourceCommand";
|
|
47
49
|
export * from "./PutDetectorCommand";
|
|
48
50
|
export * from "./PutEntityTypeCommand";
|
|
@@ -1335,6 +1335,161 @@ export interface ResourceUnavailableException extends __SmithyException, $Metada
|
|
|
1335
1335
|
$fault: "client";
|
|
1336
1336
|
message?: string;
|
|
1337
1337
|
}
|
|
1338
|
+
export interface GetEventPredictionMetadataRequest {
|
|
1339
|
+
|
|
1340
|
+
eventId: string | undefined;
|
|
1341
|
+
|
|
1342
|
+
eventTypeName: string | undefined;
|
|
1343
|
+
|
|
1344
|
+
detectorId: string | undefined;
|
|
1345
|
+
|
|
1346
|
+
detectorVersionId: string | undefined;
|
|
1347
|
+
|
|
1348
|
+
predictionTimestamp: string | undefined;
|
|
1349
|
+
}
|
|
1350
|
+
export declare namespace GetEventPredictionMetadataRequest {
|
|
1351
|
+
|
|
1352
|
+
const filterSensitiveLog: (obj: GetEventPredictionMetadataRequest) => any;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
export interface EvaluatedExternalModel {
|
|
1356
|
+
|
|
1357
|
+
modelEndpoint?: string;
|
|
1358
|
+
|
|
1359
|
+
useEventVariables?: boolean;
|
|
1360
|
+
|
|
1361
|
+
inputVariables?: {
|
|
1362
|
+
[key: string]: string;
|
|
1363
|
+
};
|
|
1364
|
+
|
|
1365
|
+
outputVariables?: {
|
|
1366
|
+
[key: string]: string;
|
|
1367
|
+
};
|
|
1368
|
+
}
|
|
1369
|
+
export declare namespace EvaluatedExternalModel {
|
|
1370
|
+
|
|
1371
|
+
const filterSensitiveLog: (obj: EvaluatedExternalModel) => any;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
export interface VariableImpactExplanation {
|
|
1375
|
+
|
|
1376
|
+
eventVariableName?: string;
|
|
1377
|
+
|
|
1378
|
+
relativeImpact?: string;
|
|
1379
|
+
|
|
1380
|
+
logOddsImpact?: number;
|
|
1381
|
+
}
|
|
1382
|
+
export declare namespace VariableImpactExplanation {
|
|
1383
|
+
|
|
1384
|
+
const filterSensitiveLog: (obj: VariableImpactExplanation) => any;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
export interface PredictionExplanations {
|
|
1388
|
+
|
|
1389
|
+
variableImpactExplanations?: VariableImpactExplanation[];
|
|
1390
|
+
}
|
|
1391
|
+
export declare namespace PredictionExplanations {
|
|
1392
|
+
|
|
1393
|
+
const filterSensitiveLog: (obj: PredictionExplanations) => any;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
export interface ModelVersionEvaluation {
|
|
1397
|
+
|
|
1398
|
+
outputVariableName?: string;
|
|
1399
|
+
|
|
1400
|
+
evaluationScore?: string;
|
|
1401
|
+
|
|
1402
|
+
predictionExplanations?: PredictionExplanations;
|
|
1403
|
+
}
|
|
1404
|
+
export declare namespace ModelVersionEvaluation {
|
|
1405
|
+
|
|
1406
|
+
const filterSensitiveLog: (obj: ModelVersionEvaluation) => any;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
export interface EvaluatedModelVersion {
|
|
1410
|
+
|
|
1411
|
+
modelId?: string;
|
|
1412
|
+
|
|
1413
|
+
modelVersion?: string;
|
|
1414
|
+
|
|
1415
|
+
modelType?: string;
|
|
1416
|
+
|
|
1417
|
+
evaluations?: ModelVersionEvaluation[];
|
|
1418
|
+
}
|
|
1419
|
+
export declare namespace EvaluatedModelVersion {
|
|
1420
|
+
|
|
1421
|
+
const filterSensitiveLog: (obj: EvaluatedModelVersion) => any;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
export interface EventVariableSummary {
|
|
1425
|
+
|
|
1426
|
+
name?: string;
|
|
1427
|
+
|
|
1428
|
+
value?: string;
|
|
1429
|
+
|
|
1430
|
+
source?: string;
|
|
1431
|
+
}
|
|
1432
|
+
export declare namespace EventVariableSummary {
|
|
1433
|
+
|
|
1434
|
+
const filterSensitiveLog: (obj: EventVariableSummary) => any;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
export interface EvaluatedRule {
|
|
1438
|
+
|
|
1439
|
+
ruleId?: string;
|
|
1440
|
+
|
|
1441
|
+
ruleVersion?: string;
|
|
1442
|
+
|
|
1443
|
+
expression?: string;
|
|
1444
|
+
|
|
1445
|
+
expressionWithValues?: string;
|
|
1446
|
+
|
|
1447
|
+
outcomes?: string[];
|
|
1448
|
+
|
|
1449
|
+
evaluated?: boolean;
|
|
1450
|
+
|
|
1451
|
+
matched?: boolean;
|
|
1452
|
+
}
|
|
1453
|
+
export declare namespace EvaluatedRule {
|
|
1454
|
+
|
|
1455
|
+
const filterSensitiveLog: (obj: EvaluatedRule) => any;
|
|
1456
|
+
}
|
|
1457
|
+
export interface GetEventPredictionMetadataResult {
|
|
1458
|
+
|
|
1459
|
+
eventId?: string;
|
|
1460
|
+
|
|
1461
|
+
eventTypeName?: string;
|
|
1462
|
+
|
|
1463
|
+
entityId?: string;
|
|
1464
|
+
|
|
1465
|
+
entityType?: string;
|
|
1466
|
+
|
|
1467
|
+
eventTimestamp?: string;
|
|
1468
|
+
|
|
1469
|
+
detectorId?: string;
|
|
1470
|
+
|
|
1471
|
+
detectorVersionId?: string;
|
|
1472
|
+
|
|
1473
|
+
detectorVersionStatus?: string;
|
|
1474
|
+
|
|
1475
|
+
eventVariables?: EventVariableSummary[];
|
|
1476
|
+
|
|
1477
|
+
rules?: EvaluatedRule[];
|
|
1478
|
+
|
|
1479
|
+
ruleExecutionMode?: RuleExecutionMode | string;
|
|
1480
|
+
|
|
1481
|
+
outcomes?: string[];
|
|
1482
|
+
|
|
1483
|
+
evaluatedModelVersions?: EvaluatedModelVersion[];
|
|
1484
|
+
|
|
1485
|
+
evaluatedExternalModels?: EvaluatedExternalModel[];
|
|
1486
|
+
|
|
1487
|
+
predictionTimestamp?: string;
|
|
1488
|
+
}
|
|
1489
|
+
export declare namespace GetEventPredictionMetadataResult {
|
|
1490
|
+
|
|
1491
|
+
const filterSensitiveLog: (obj: GetEventPredictionMetadataResult) => any;
|
|
1492
|
+
}
|
|
1338
1493
|
export interface GetEventTypesRequest {
|
|
1339
1494
|
|
|
1340
1495
|
name?: string;
|
|
@@ -1749,6 +1904,75 @@ export declare namespace GetVariablesResult {
|
|
|
1749
1904
|
|
|
1750
1905
|
const filterSensitiveLog: (obj: GetVariablesResult) => any;
|
|
1751
1906
|
}
|
|
1907
|
+
|
|
1908
|
+
export interface FilterCondition {
|
|
1909
|
+
|
|
1910
|
+
value?: string;
|
|
1911
|
+
}
|
|
1912
|
+
export declare namespace FilterCondition {
|
|
1913
|
+
|
|
1914
|
+
const filterSensitiveLog: (obj: FilterCondition) => any;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
export interface PredictionTimeRange {
|
|
1918
|
+
|
|
1919
|
+
startTime: string | undefined;
|
|
1920
|
+
|
|
1921
|
+
endTime: string | undefined;
|
|
1922
|
+
}
|
|
1923
|
+
export declare namespace PredictionTimeRange {
|
|
1924
|
+
|
|
1925
|
+
const filterSensitiveLog: (obj: PredictionTimeRange) => any;
|
|
1926
|
+
}
|
|
1927
|
+
export interface ListEventPredictionsRequest {
|
|
1928
|
+
|
|
1929
|
+
eventId?: FilterCondition;
|
|
1930
|
+
|
|
1931
|
+
eventType?: FilterCondition;
|
|
1932
|
+
|
|
1933
|
+
detectorId?: FilterCondition;
|
|
1934
|
+
|
|
1935
|
+
detectorVersionId?: FilterCondition;
|
|
1936
|
+
|
|
1937
|
+
predictionTimeRange?: PredictionTimeRange;
|
|
1938
|
+
|
|
1939
|
+
nextToken?: string;
|
|
1940
|
+
|
|
1941
|
+
maxResults?: number;
|
|
1942
|
+
}
|
|
1943
|
+
export declare namespace ListEventPredictionsRequest {
|
|
1944
|
+
|
|
1945
|
+
const filterSensitiveLog: (obj: ListEventPredictionsRequest) => any;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
export interface EventPredictionSummary {
|
|
1949
|
+
|
|
1950
|
+
eventId?: string;
|
|
1951
|
+
|
|
1952
|
+
eventTypeName?: string;
|
|
1953
|
+
|
|
1954
|
+
eventTimestamp?: string;
|
|
1955
|
+
|
|
1956
|
+
predictionTimestamp?: string;
|
|
1957
|
+
|
|
1958
|
+
detectorId?: string;
|
|
1959
|
+
|
|
1960
|
+
detectorVersionId?: string;
|
|
1961
|
+
}
|
|
1962
|
+
export declare namespace EventPredictionSummary {
|
|
1963
|
+
|
|
1964
|
+
const filterSensitiveLog: (obj: EventPredictionSummary) => any;
|
|
1965
|
+
}
|
|
1966
|
+
export interface ListEventPredictionsResult {
|
|
1967
|
+
|
|
1968
|
+
eventPredictionSummaries?: EventPredictionSummary[];
|
|
1969
|
+
|
|
1970
|
+
nextToken?: string;
|
|
1971
|
+
}
|
|
1972
|
+
export declare namespace ListEventPredictionsResult {
|
|
1973
|
+
|
|
1974
|
+
const filterSensitiveLog: (obj: ListEventPredictionsResult) => any;
|
|
1975
|
+
}
|
|
1752
1976
|
export interface ListTagsForResourceRequest {
|
|
1753
1977
|
|
|
1754
1978
|
resourceARN: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput } from "../commands/ListEventPredictionsCommand";
|
|
3
|
+
import { FraudDetectorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListEventPredictions(config: FraudDetectorPaginationConfiguration, input: ListEventPredictionsCommandInput, ...additionalArguments: any): Paginator<ListEventPredictionsCommandOutput>;
|
|
@@ -36,6 +36,7 @@ import { GetDetectorVersionCommandInput, GetDetectorVersionCommandOutput } from
|
|
|
36
36
|
import { GetEntityTypesCommandInput, GetEntityTypesCommandOutput } from "../commands/GetEntityTypesCommand";
|
|
37
37
|
import { GetEventCommandInput, GetEventCommandOutput } from "../commands/GetEventCommand";
|
|
38
38
|
import { GetEventPredictionCommandInput, GetEventPredictionCommandOutput } from "../commands/GetEventPredictionCommand";
|
|
39
|
+
import { GetEventPredictionMetadataCommandInput, GetEventPredictionMetadataCommandOutput } from "../commands/GetEventPredictionMetadataCommand";
|
|
39
40
|
import { GetEventTypesCommandInput, GetEventTypesCommandOutput } from "../commands/GetEventTypesCommand";
|
|
40
41
|
import { GetExternalModelsCommandInput, GetExternalModelsCommandOutput } from "../commands/GetExternalModelsCommand";
|
|
41
42
|
import { GetKMSEncryptionKeyCommandInput, GetKMSEncryptionKeyCommandOutput } from "../commands/GetKMSEncryptionKeyCommand";
|
|
@@ -45,6 +46,7 @@ import { GetModelVersionCommandInput, GetModelVersionCommandOutput } from "../co
|
|
|
45
46
|
import { GetOutcomesCommandInput, GetOutcomesCommandOutput } from "../commands/GetOutcomesCommand";
|
|
46
47
|
import { GetRulesCommandInput, GetRulesCommandOutput } from "../commands/GetRulesCommand";
|
|
47
48
|
import { GetVariablesCommandInput, GetVariablesCommandOutput } from "../commands/GetVariablesCommand";
|
|
49
|
+
import { ListEventPredictionsCommandInput, ListEventPredictionsCommandOutput } from "../commands/ListEventPredictionsCommand";
|
|
48
50
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
49
51
|
import { PutDetectorCommandInput, PutDetectorCommandOutput } from "../commands/PutDetectorCommand";
|
|
50
52
|
import { PutEntityTypeCommandInput, PutEntityTypeCommandOutput } from "../commands/PutEntityTypeCommand";
|
|
@@ -102,6 +104,7 @@ export declare const serializeAws_json1_1GetDetectorVersionCommand: (input: GetD
|
|
|
102
104
|
export declare const serializeAws_json1_1GetEntityTypesCommand: (input: GetEntityTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
105
|
export declare const serializeAws_json1_1GetEventCommand: (input: GetEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
106
|
export declare const serializeAws_json1_1GetEventPredictionCommand: (input: GetEventPredictionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
export declare const serializeAws_json1_1GetEventPredictionMetadataCommand: (input: GetEventPredictionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
108
|
export declare const serializeAws_json1_1GetEventTypesCommand: (input: GetEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
109
|
export declare const serializeAws_json1_1GetExternalModelsCommand: (input: GetExternalModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
110
|
export declare const serializeAws_json1_1GetKMSEncryptionKeyCommand: (input: GetKMSEncryptionKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -111,6 +114,7 @@ export declare const serializeAws_json1_1GetModelVersionCommand: (input: GetMode
|
|
|
111
114
|
export declare const serializeAws_json1_1GetOutcomesCommand: (input: GetOutcomesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
115
|
export declare const serializeAws_json1_1GetRulesCommand: (input: GetRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
116
|
export declare const serializeAws_json1_1GetVariablesCommand: (input: GetVariablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
export declare const serializeAws_json1_1ListEventPredictionsCommand: (input: ListEventPredictionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
118
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
119
|
export declare const serializeAws_json1_1PutDetectorCommand: (input: PutDetectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
120
|
export declare const serializeAws_json1_1PutEntityTypeCommand: (input: PutEntityTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -168,6 +172,7 @@ export declare const deserializeAws_json1_1GetDetectorVersionCommand: (output: _
|
|
|
168
172
|
export declare const deserializeAws_json1_1GetEntityTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntityTypesCommandOutput>;
|
|
169
173
|
export declare const deserializeAws_json1_1GetEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventCommandOutput>;
|
|
170
174
|
export declare const deserializeAws_json1_1GetEventPredictionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventPredictionCommandOutput>;
|
|
175
|
+
export declare const deserializeAws_json1_1GetEventPredictionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventPredictionMetadataCommandOutput>;
|
|
171
176
|
export declare const deserializeAws_json1_1GetEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventTypesCommandOutput>;
|
|
172
177
|
export declare const deserializeAws_json1_1GetExternalModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExternalModelsCommandOutput>;
|
|
173
178
|
export declare const deserializeAws_json1_1GetKMSEncryptionKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKMSEncryptionKeyCommandOutput>;
|
|
@@ -177,6 +182,7 @@ export declare const deserializeAws_json1_1GetModelVersionCommand: (output: __Ht
|
|
|
177
182
|
export declare const deserializeAws_json1_1GetOutcomesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutcomesCommandOutput>;
|
|
178
183
|
export declare const deserializeAws_json1_1GetRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRulesCommandOutput>;
|
|
179
184
|
export declare const deserializeAws_json1_1GetVariablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVariablesCommandOutput>;
|
|
185
|
+
export declare const deserializeAws_json1_1ListEventPredictionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventPredictionsCommandOutput>;
|
|
180
186
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
181
187
|
export declare const deserializeAws_json1_1PutDetectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutDetectorCommandOutput>;
|
|
182
188
|
export declare const deserializeAws_json1_1PutEntityTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutEntityTypeCommandOutput>;
|
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.49.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,41 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.49.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.49.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.49.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.49.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.49.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.49.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.49.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.49.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.49.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.49.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.49.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.49.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.49.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.49.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.49.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.49.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.49.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.49.0",
|
|
39
|
+
"@aws-sdk/types": "3.49.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.49.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.49.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.49.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.49.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.49.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|