@aws-sdk/client-frauddetector 3.267.0 → 3.272.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/FraudDetector.js +75 -0
- package/dist-cjs/commands/CreateListCommand.js +46 -0
- package/dist-cjs/commands/DeleteListCommand.js +46 -0
- package/dist-cjs/commands/GetListElementsCommand.js +46 -0
- package/dist-cjs/commands/GetListsMetadataCommand.js +46 -0
- package/dist-cjs/commands/UpdateListCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +58 -5
- package/dist-cjs/pagination/GetListElementsPaginator.js +36 -0
- package/dist-cjs/pagination/GetListsMetadataPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +3 -1
- package/dist-cjs/protocols/Aws_json1_1.js +380 -3
- package/dist-es/FraudDetector.js +75 -0
- package/dist-es/commands/CreateListCommand.js +42 -0
- package/dist-es/commands/DeleteListCommand.js +42 -0
- package/dist-es/commands/GetListElementsCommand.js +42 -0
- package/dist-es/commands/GetListsMetadataCommand.js +42 -0
- package/dist-es/commands/UpdateListCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +42 -0
- package/dist-es/pagination/GetListElementsPaginator.js +32 -0
- package/dist-es/pagination/GetListsMetadataPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -1
- package/dist-es/protocols/Aws_json1_1.js +367 -0
- package/dist-types/FraudDetector.d.ts +48 -0
- package/dist-types/FraudDetectorClient.d.ts +22 -17
- package/dist-types/commands/CreateListCommand.d.ts +41 -0
- package/dist-types/commands/DeleteListCommand.d.ts +40 -0
- package/dist-types/commands/GetListElementsCommand.d.ts +39 -0
- package/dist-types/commands/GetListsMetadataCommand.d.ts +39 -0
- package/dist-types/commands/UpdateListCommand.d.ts +39 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +254 -0
- package/dist-types/pagination/GetListElementsPaginator.d.ts +4 -0
- package/dist-types/pagination/GetListsMetadataPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +4 -4
- package/dist-types/ts3.4/FraudDetector.d.ts +85 -0
- package/dist-types/ts3.4/FraudDetectorClient.d.ts +34 -4
- package/dist-types/ts3.4/commands/CreateListCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteListCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetListElementsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetListsMetadataCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateListCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +84 -0
- package/dist-types/ts3.4/pagination/GetListElementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetListsMetadataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
- package/package.json +29 -29
|
@@ -72,6 +72,10 @@ import {
|
|
|
72
72
|
CreateDetectorVersionCommandInput,
|
|
73
73
|
CreateDetectorVersionCommandOutput,
|
|
74
74
|
} from "./commands/CreateDetectorVersionCommand";
|
|
75
|
+
import {
|
|
76
|
+
CreateListCommandInput,
|
|
77
|
+
CreateListCommandOutput,
|
|
78
|
+
} from "./commands/CreateListCommand";
|
|
75
79
|
import {
|
|
76
80
|
CreateModelCommandInput,
|
|
77
81
|
CreateModelCommandOutput,
|
|
@@ -128,6 +132,10 @@ import {
|
|
|
128
132
|
DeleteLabelCommandInput,
|
|
129
133
|
DeleteLabelCommandOutput,
|
|
130
134
|
} from "./commands/DeleteLabelCommand";
|
|
135
|
+
import {
|
|
136
|
+
DeleteListCommandInput,
|
|
137
|
+
DeleteListCommandOutput,
|
|
138
|
+
} from "./commands/DeleteListCommand";
|
|
131
139
|
import {
|
|
132
140
|
DeleteModelCommandInput,
|
|
133
141
|
DeleteModelCommandOutput,
|
|
@@ -208,6 +216,14 @@ import {
|
|
|
208
216
|
GetLabelsCommandInput,
|
|
209
217
|
GetLabelsCommandOutput,
|
|
210
218
|
} from "./commands/GetLabelsCommand";
|
|
219
|
+
import {
|
|
220
|
+
GetListElementsCommandInput,
|
|
221
|
+
GetListElementsCommandOutput,
|
|
222
|
+
} from "./commands/GetListElementsCommand";
|
|
223
|
+
import {
|
|
224
|
+
GetListsMetadataCommandInput,
|
|
225
|
+
GetListsMetadataCommandOutput,
|
|
226
|
+
} from "./commands/GetListsMetadataCommand";
|
|
211
227
|
import {
|
|
212
228
|
GetModelsCommandInput,
|
|
213
229
|
GetModelsCommandOutput,
|
|
@@ -292,6 +308,10 @@ import {
|
|
|
292
308
|
UpdateEventLabelCommandInput,
|
|
293
309
|
UpdateEventLabelCommandOutput,
|
|
294
310
|
} from "./commands/UpdateEventLabelCommand";
|
|
311
|
+
import {
|
|
312
|
+
UpdateListCommandInput,
|
|
313
|
+
UpdateListCommandOutput,
|
|
314
|
+
} from "./commands/UpdateListCommand";
|
|
295
315
|
import {
|
|
296
316
|
UpdateModelCommandInput,
|
|
297
317
|
UpdateModelCommandOutput,
|
|
@@ -329,6 +349,7 @@ export declare type ServiceInputTypes =
|
|
|
329
349
|
| CreateBatchImportJobCommandInput
|
|
330
350
|
| CreateBatchPredictionJobCommandInput
|
|
331
351
|
| CreateDetectorVersionCommandInput
|
|
352
|
+
| CreateListCommandInput
|
|
332
353
|
| CreateModelCommandInput
|
|
333
354
|
| CreateModelVersionCommandInput
|
|
334
355
|
| CreateRuleCommandInput
|
|
@@ -343,6 +364,7 @@ export declare type ServiceInputTypes =
|
|
|
343
364
|
| DeleteEventsByEventTypeCommandInput
|
|
344
365
|
| DeleteExternalModelCommandInput
|
|
345
366
|
| DeleteLabelCommandInput
|
|
367
|
+
| DeleteListCommandInput
|
|
346
368
|
| DeleteModelCommandInput
|
|
347
369
|
| DeleteModelVersionCommandInput
|
|
348
370
|
| DeleteOutcomeCommandInput
|
|
@@ -363,6 +385,8 @@ export declare type ServiceInputTypes =
|
|
|
363
385
|
| GetExternalModelsCommandInput
|
|
364
386
|
| GetKMSEncryptionKeyCommandInput
|
|
365
387
|
| GetLabelsCommandInput
|
|
388
|
+
| GetListElementsCommandInput
|
|
389
|
+
| GetListsMetadataCommandInput
|
|
366
390
|
| GetModelVersionCommandInput
|
|
367
391
|
| GetModelsCommandInput
|
|
368
392
|
| GetOutcomesCommandInput
|
|
@@ -384,6 +408,7 @@ export declare type ServiceInputTypes =
|
|
|
384
408
|
| UpdateDetectorVersionMetadataCommandInput
|
|
385
409
|
| UpdateDetectorVersionStatusCommandInput
|
|
386
410
|
| UpdateEventLabelCommandInput
|
|
411
|
+
| UpdateListCommandInput
|
|
387
412
|
| UpdateModelCommandInput
|
|
388
413
|
| UpdateModelVersionCommandInput
|
|
389
414
|
| UpdateModelVersionStatusCommandInput
|
|
@@ -398,6 +423,7 @@ export declare type ServiceOutputTypes =
|
|
|
398
423
|
| CreateBatchImportJobCommandOutput
|
|
399
424
|
| CreateBatchPredictionJobCommandOutput
|
|
400
425
|
| CreateDetectorVersionCommandOutput
|
|
426
|
+
| CreateListCommandOutput
|
|
401
427
|
| CreateModelCommandOutput
|
|
402
428
|
| CreateModelVersionCommandOutput
|
|
403
429
|
| CreateRuleCommandOutput
|
|
@@ -412,6 +438,7 @@ export declare type ServiceOutputTypes =
|
|
|
412
438
|
| DeleteEventsByEventTypeCommandOutput
|
|
413
439
|
| DeleteExternalModelCommandOutput
|
|
414
440
|
| DeleteLabelCommandOutput
|
|
441
|
+
| DeleteListCommandOutput
|
|
415
442
|
| DeleteModelCommandOutput
|
|
416
443
|
| DeleteModelVersionCommandOutput
|
|
417
444
|
| DeleteOutcomeCommandOutput
|
|
@@ -432,6 +459,8 @@ export declare type ServiceOutputTypes =
|
|
|
432
459
|
| GetExternalModelsCommandOutput
|
|
433
460
|
| GetKMSEncryptionKeyCommandOutput
|
|
434
461
|
| GetLabelsCommandOutput
|
|
462
|
+
| GetListElementsCommandOutput
|
|
463
|
+
| GetListsMetadataCommandOutput
|
|
435
464
|
| GetModelVersionCommandOutput
|
|
436
465
|
| GetModelsCommandOutput
|
|
437
466
|
| GetOutcomesCommandOutput
|
|
@@ -453,6 +482,7 @@ export declare type ServiceOutputTypes =
|
|
|
453
482
|
| UpdateDetectorVersionMetadataCommandOutput
|
|
454
483
|
| UpdateDetectorVersionStatusCommandOutput
|
|
455
484
|
| UpdateEventLabelCommandOutput
|
|
485
|
+
| UpdateListCommandOutput
|
|
456
486
|
| UpdateModelCommandOutput
|
|
457
487
|
| UpdateModelVersionCommandOutput
|
|
458
488
|
| UpdateModelVersionStatusCommandOutput
|
|
@@ -472,15 +502,15 @@ export interface ClientDefaults
|
|
|
472
502
|
utf8Encoder?: __Encoder;
|
|
473
503
|
runtime?: string;
|
|
474
504
|
disableHostPrefix?: boolean;
|
|
475
|
-
|
|
476
|
-
retryMode?: string | __Provider<string>;
|
|
477
|
-
logger?: __Logger;
|
|
505
|
+
serviceId?: string;
|
|
478
506
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
479
507
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
480
|
-
serviceId?: string;
|
|
481
508
|
region?: string | __Provider<string>;
|
|
482
509
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
483
510
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
511
|
+
maxAttempts?: number | __Provider<number>;
|
|
512
|
+
retryMode?: string | __Provider<string>;
|
|
513
|
+
logger?: __Logger;
|
|
484
514
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
485
515
|
}
|
|
486
516
|
declare type FraudDetectorClientConfigType = Partial<
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FraudDetectorClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FraudDetectorClient";
|
|
14
|
+
import { CreateListRequest, CreateListResult } from "../models/models_0";
|
|
15
|
+
export interface CreateListCommandInput extends CreateListRequest {}
|
|
16
|
+
export interface CreateListCommandOutput
|
|
17
|
+
extends CreateListResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateListCommand extends $Command<
|
|
20
|
+
CreateListCommandInput,
|
|
21
|
+
CreateListCommandOutput,
|
|
22
|
+
FraudDetectorClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateListCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateListCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FraudDetectorClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateListCommandInput, CreateListCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FraudDetectorClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FraudDetectorClient";
|
|
14
|
+
import { DeleteListRequest, DeleteListResult } from "../models/models_0";
|
|
15
|
+
export interface DeleteListCommandInput extends DeleteListRequest {}
|
|
16
|
+
export interface DeleteListCommandOutput
|
|
17
|
+
extends DeleteListResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteListCommand extends $Command<
|
|
20
|
+
DeleteListCommandInput,
|
|
21
|
+
DeleteListCommandOutput,
|
|
22
|
+
FraudDetectorClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteListCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteListCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FraudDetectorClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteListCommandInput, DeleteListCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FraudDetectorClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FraudDetectorClient";
|
|
14
|
+
import {
|
|
15
|
+
GetListElementsRequest,
|
|
16
|
+
GetListElementsResult,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetListElementsCommandInput extends GetListElementsRequest {}
|
|
19
|
+
export interface GetListElementsCommandOutput
|
|
20
|
+
extends GetListElementsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetListElementsCommand extends $Command<
|
|
23
|
+
GetListElementsCommandInput,
|
|
24
|
+
GetListElementsCommandOutput,
|
|
25
|
+
FraudDetectorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetListElementsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: GetListElementsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FraudDetectorClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetListElementsCommandInput, GetListElementsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FraudDetectorClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FraudDetectorClient";
|
|
14
|
+
import {
|
|
15
|
+
GetListsMetadataRequest,
|
|
16
|
+
GetListsMetadataResult,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetListsMetadataCommandInput extends GetListsMetadataRequest {}
|
|
19
|
+
export interface GetListsMetadataCommandOutput
|
|
20
|
+
extends GetListsMetadataResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetListsMetadataCommand extends $Command<
|
|
23
|
+
GetListsMetadataCommandInput,
|
|
24
|
+
GetListsMetadataCommandOutput,
|
|
25
|
+
FraudDetectorClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetListsMetadataCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: GetListsMetadataCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FraudDetectorClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetListsMetadataCommandInput, GetListsMetadataCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
FraudDetectorClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../FraudDetectorClient";
|
|
14
|
+
import { UpdateListRequest, UpdateListResult } from "../models/models_0";
|
|
15
|
+
export interface UpdateListCommandInput extends UpdateListRequest {}
|
|
16
|
+
export interface UpdateListCommandOutput
|
|
17
|
+
extends UpdateListResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UpdateListCommand extends $Command<
|
|
20
|
+
UpdateListCommandInput,
|
|
21
|
+
UpdateListCommandOutput,
|
|
22
|
+
FraudDetectorClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateListCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UpdateListCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FraudDetectorClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateListCommandInput, UpdateListCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CancelBatchPredictionJobCommand";
|
|
|
5
5
|
export * from "./CreateBatchImportJobCommand";
|
|
6
6
|
export * from "./CreateBatchPredictionJobCommand";
|
|
7
7
|
export * from "./CreateDetectorVersionCommand";
|
|
8
|
+
export * from "./CreateListCommand";
|
|
8
9
|
export * from "./CreateModelCommand";
|
|
9
10
|
export * from "./CreateModelVersionCommand";
|
|
10
11
|
export * from "./CreateRuleCommand";
|
|
@@ -19,6 +20,7 @@ export * from "./DeleteEventTypeCommand";
|
|
|
19
20
|
export * from "./DeleteEventsByEventTypeCommand";
|
|
20
21
|
export * from "./DeleteExternalModelCommand";
|
|
21
22
|
export * from "./DeleteLabelCommand";
|
|
23
|
+
export * from "./DeleteListCommand";
|
|
22
24
|
export * from "./DeleteModelCommand";
|
|
23
25
|
export * from "./DeleteModelVersionCommand";
|
|
24
26
|
export * from "./DeleteOutcomeCommand";
|
|
@@ -39,6 +41,8 @@ export * from "./GetEventTypesCommand";
|
|
|
39
41
|
export * from "./GetExternalModelsCommand";
|
|
40
42
|
export * from "./GetKMSEncryptionKeyCommand";
|
|
41
43
|
export * from "./GetLabelsCommand";
|
|
44
|
+
export * from "./GetListElementsCommand";
|
|
45
|
+
export * from "./GetListsMetadataCommand";
|
|
42
46
|
export * from "./GetModelVersionCommand";
|
|
43
47
|
export * from "./GetModelsCommand";
|
|
44
48
|
export * from "./GetOutcomesCommand";
|
|
@@ -60,6 +64,7 @@ export * from "./UpdateDetectorVersionCommand";
|
|
|
60
64
|
export * from "./UpdateDetectorVersionMetadataCommand";
|
|
61
65
|
export * from "./UpdateDetectorVersionStatusCommand";
|
|
62
66
|
export * from "./UpdateEventLabelCommand";
|
|
67
|
+
export * from "./UpdateListCommand";
|
|
63
68
|
export * from "./UpdateModelCommand";
|
|
64
69
|
export * from "./UpdateModelVersionCommand";
|
|
65
70
|
export * from "./UpdateModelVersionStatusCommand";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region?: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -19,6 +19,14 @@ export interface AggregatedVariablesImpactExplanation {
|
|
|
19
19
|
export interface AggregatedVariablesImportanceMetrics {
|
|
20
20
|
logOddsMetrics?: AggregatedLogOddsMetric[];
|
|
21
21
|
}
|
|
22
|
+
export interface AllowDenyList {
|
|
23
|
+
name: string | undefined;
|
|
24
|
+
description?: string;
|
|
25
|
+
variableType?: string;
|
|
26
|
+
createdTime?: string;
|
|
27
|
+
updatedTime?: string;
|
|
28
|
+
arn?: string;
|
|
29
|
+
}
|
|
22
30
|
export declare enum AsyncJobStatus {
|
|
23
31
|
CANCELED = "CANCELED",
|
|
24
32
|
CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
|
|
@@ -193,6 +201,14 @@ export interface CreateDetectorVersionResult {
|
|
|
193
201
|
detectorVersionId?: string;
|
|
194
202
|
status?: DetectorVersionStatus | string;
|
|
195
203
|
}
|
|
204
|
+
export interface CreateListRequest {
|
|
205
|
+
name: string | undefined;
|
|
206
|
+
elements?: string[];
|
|
207
|
+
variableType?: string;
|
|
208
|
+
description?: string;
|
|
209
|
+
tags?: Tag[];
|
|
210
|
+
}
|
|
211
|
+
export interface CreateListResult {}
|
|
196
212
|
export interface CreateModelRequest {
|
|
197
213
|
modelId: string | undefined;
|
|
198
214
|
modelType: ModelTypeEnum | string | undefined;
|
|
@@ -321,6 +337,10 @@ export interface DeleteLabelRequest {
|
|
|
321
337
|
name: string | undefined;
|
|
322
338
|
}
|
|
323
339
|
export interface DeleteLabelResult {}
|
|
340
|
+
export interface DeleteListRequest {
|
|
341
|
+
name: string | undefined;
|
|
342
|
+
}
|
|
343
|
+
export interface DeleteListResult {}
|
|
324
344
|
export interface DeleteModelRequest {
|
|
325
345
|
modelId: string | undefined;
|
|
326
346
|
modelType: ModelTypeEnum | string | undefined;
|
|
@@ -803,6 +823,24 @@ export interface GetLabelsResult {
|
|
|
803
823
|
labels?: Label[];
|
|
804
824
|
nextToken?: string;
|
|
805
825
|
}
|
|
826
|
+
export interface GetListElementsRequest {
|
|
827
|
+
name: string | undefined;
|
|
828
|
+
nextToken?: string;
|
|
829
|
+
maxResults?: number;
|
|
830
|
+
}
|
|
831
|
+
export interface GetListElementsResult {
|
|
832
|
+
elements?: string[];
|
|
833
|
+
nextToken?: string;
|
|
834
|
+
}
|
|
835
|
+
export interface GetListsMetadataRequest {
|
|
836
|
+
name?: string;
|
|
837
|
+
nextToken?: string;
|
|
838
|
+
maxResults?: number;
|
|
839
|
+
}
|
|
840
|
+
export interface GetListsMetadataResult {
|
|
841
|
+
lists?: AllowDenyList[];
|
|
842
|
+
nextToken?: string;
|
|
843
|
+
}
|
|
806
844
|
export interface GetModelsRequest {
|
|
807
845
|
modelId?: string;
|
|
808
846
|
modelType?: ModelTypeEnum | string;
|
|
@@ -1021,6 +1059,19 @@ export interface UpdateEventLabelRequest {
|
|
|
1021
1059
|
labelTimestamp: string | undefined;
|
|
1022
1060
|
}
|
|
1023
1061
|
export interface UpdateEventLabelResult {}
|
|
1062
|
+
export declare enum ListUpdateMode {
|
|
1063
|
+
APPEND = "APPEND",
|
|
1064
|
+
REMOVE = "REMOVE",
|
|
1065
|
+
REPLACE = "REPLACE",
|
|
1066
|
+
}
|
|
1067
|
+
export interface UpdateListRequest {
|
|
1068
|
+
name: string | undefined;
|
|
1069
|
+
elements?: string[];
|
|
1070
|
+
description?: string;
|
|
1071
|
+
updateMode?: ListUpdateMode | string;
|
|
1072
|
+
variableType?: string;
|
|
1073
|
+
}
|
|
1074
|
+
export interface UpdateListResult {}
|
|
1024
1075
|
export interface UpdateModelRequest {
|
|
1025
1076
|
modelId: string | undefined;
|
|
1026
1077
|
modelType: ModelTypeEnum | string | undefined;
|
|
@@ -1085,6 +1136,9 @@ export declare const AggregatedVariablesImpactExplanationFilterSensitiveLog: (
|
|
|
1085
1136
|
export declare const AggregatedVariablesImportanceMetricsFilterSensitiveLog: (
|
|
1086
1137
|
obj: AggregatedVariablesImportanceMetrics
|
|
1087
1138
|
) => any;
|
|
1139
|
+
export declare const AllowDenyListFilterSensitiveLog: (
|
|
1140
|
+
obj: AllowDenyList
|
|
1141
|
+
) => any;
|
|
1088
1142
|
export declare const ATIMetricDataPointFilterSensitiveLog: (
|
|
1089
1143
|
obj: ATIMetricDataPoint
|
|
1090
1144
|
) => any;
|
|
@@ -1149,6 +1203,12 @@ export declare const CreateDetectorVersionRequestFilterSensitiveLog: (
|
|
|
1149
1203
|
export declare const CreateDetectorVersionResultFilterSensitiveLog: (
|
|
1150
1204
|
obj: CreateDetectorVersionResult
|
|
1151
1205
|
) => any;
|
|
1206
|
+
export declare const CreateListRequestFilterSensitiveLog: (
|
|
1207
|
+
obj: CreateListRequest
|
|
1208
|
+
) => any;
|
|
1209
|
+
export declare const CreateListResultFilterSensitiveLog: (
|
|
1210
|
+
obj: CreateListResult
|
|
1211
|
+
) => any;
|
|
1152
1212
|
export declare const CreateModelRequestFilterSensitiveLog: (
|
|
1153
1213
|
obj: CreateModelRequest
|
|
1154
1214
|
) => any;
|
|
@@ -1246,6 +1306,12 @@ export declare const DeleteLabelRequestFilterSensitiveLog: (
|
|
|
1246
1306
|
export declare const DeleteLabelResultFilterSensitiveLog: (
|
|
1247
1307
|
obj: DeleteLabelResult
|
|
1248
1308
|
) => any;
|
|
1309
|
+
export declare const DeleteListRequestFilterSensitiveLog: (
|
|
1310
|
+
obj: DeleteListRequest
|
|
1311
|
+
) => any;
|
|
1312
|
+
export declare const DeleteListResultFilterSensitiveLog: (
|
|
1313
|
+
obj: DeleteListResult
|
|
1314
|
+
) => any;
|
|
1249
1315
|
export declare const DeleteModelRequestFilterSensitiveLog: (
|
|
1250
1316
|
obj: DeleteModelRequest
|
|
1251
1317
|
) => any;
|
|
@@ -1475,6 +1541,18 @@ export declare const LabelFilterSensitiveLog: (obj: Label) => any;
|
|
|
1475
1541
|
export declare const GetLabelsResultFilterSensitiveLog: (
|
|
1476
1542
|
obj: GetLabelsResult
|
|
1477
1543
|
) => any;
|
|
1544
|
+
export declare const GetListElementsRequestFilterSensitiveLog: (
|
|
1545
|
+
obj: GetListElementsRequest
|
|
1546
|
+
) => any;
|
|
1547
|
+
export declare const GetListElementsResultFilterSensitiveLog: (
|
|
1548
|
+
obj: GetListElementsResult
|
|
1549
|
+
) => any;
|
|
1550
|
+
export declare const GetListsMetadataRequestFilterSensitiveLog: (
|
|
1551
|
+
obj: GetListsMetadataRequest
|
|
1552
|
+
) => any;
|
|
1553
|
+
export declare const GetListsMetadataResultFilterSensitiveLog: (
|
|
1554
|
+
obj: GetListsMetadataResult
|
|
1555
|
+
) => any;
|
|
1478
1556
|
export declare const GetModelsRequestFilterSensitiveLog: (
|
|
1479
1557
|
obj: GetModelsRequest
|
|
1480
1558
|
) => any;
|
|
@@ -1613,6 +1691,12 @@ export declare const UpdateEventLabelRequestFilterSensitiveLog: (
|
|
|
1613
1691
|
export declare const UpdateEventLabelResultFilterSensitiveLog: (
|
|
1614
1692
|
obj: UpdateEventLabelResult
|
|
1615
1693
|
) => any;
|
|
1694
|
+
export declare const UpdateListRequestFilterSensitiveLog: (
|
|
1695
|
+
obj: UpdateListRequest
|
|
1696
|
+
) => any;
|
|
1697
|
+
export declare const UpdateListResultFilterSensitiveLog: (
|
|
1698
|
+
obj: UpdateListResult
|
|
1699
|
+
) => any;
|
|
1616
1700
|
export declare const UpdateModelRequestFilterSensitiveLog: (
|
|
1617
1701
|
obj: UpdateModelRequest
|
|
1618
1702
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetListElementsCommandInput,
|
|
4
|
+
GetListElementsCommandOutput,
|
|
5
|
+
} from "../commands/GetListElementsCommand";
|
|
6
|
+
import { FraudDetectorPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetListElements(
|
|
8
|
+
config: FraudDetectorPaginationConfiguration,
|
|
9
|
+
input: GetListElementsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetListElementsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetListsMetadataCommandInput,
|
|
4
|
+
GetListsMetadataCommandOutput,
|
|
5
|
+
} from "../commands/GetListsMetadataCommand";
|
|
6
|
+
import { FraudDetectorPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetListsMetadata(
|
|
8
|
+
config: FraudDetectorPaginationConfiguration,
|
|
9
|
+
input: GetListsMetadataCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetListsMetadataCommandOutput>;
|
|
@@ -6,9 +6,11 @@ export * from "./GetEntityTypesPaginator";
|
|
|
6
6
|
export * from "./GetEventTypesPaginator";
|
|
7
7
|
export * from "./GetExternalModelsPaginator";
|
|
8
8
|
export * from "./GetLabelsPaginator";
|
|
9
|
+
export * from "./GetListElementsPaginator";
|
|
10
|
+
export * from "./GetListsMetadataPaginator";
|
|
11
|
+
export * from "./Interfaces";
|
|
9
12
|
export * from "./GetModelsPaginator";
|
|
10
13
|
export * from "./GetOutcomesPaginator";
|
|
11
|
-
export * from "./Interfaces";
|
|
12
14
|
export * from "./GetRulesPaginator";
|
|
13
15
|
export * from "./GetVariablesPaginator";
|
|
14
16
|
export * from "./ListEventPredictionsPaginator";
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
CreateDetectorVersionCommandInput,
|
|
32
32
|
CreateDetectorVersionCommandOutput,
|
|
33
33
|
} from "../commands/CreateDetectorVersionCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateListCommandInput,
|
|
36
|
+
CreateListCommandOutput,
|
|
37
|
+
} from "../commands/CreateListCommand";
|
|
34
38
|
import {
|
|
35
39
|
CreateModelCommandInput,
|
|
36
40
|
CreateModelCommandOutput,
|
|
@@ -87,6 +91,10 @@ import {
|
|
|
87
91
|
DeleteLabelCommandInput,
|
|
88
92
|
DeleteLabelCommandOutput,
|
|
89
93
|
} from "../commands/DeleteLabelCommand";
|
|
94
|
+
import {
|
|
95
|
+
DeleteListCommandInput,
|
|
96
|
+
DeleteListCommandOutput,
|
|
97
|
+
} from "../commands/DeleteListCommand";
|
|
90
98
|
import {
|
|
91
99
|
DeleteModelCommandInput,
|
|
92
100
|
DeleteModelCommandOutput,
|
|
@@ -167,6 +175,14 @@ import {
|
|
|
167
175
|
GetLabelsCommandInput,
|
|
168
176
|
GetLabelsCommandOutput,
|
|
169
177
|
} from "../commands/GetLabelsCommand";
|
|
178
|
+
import {
|
|
179
|
+
GetListElementsCommandInput,
|
|
180
|
+
GetListElementsCommandOutput,
|
|
181
|
+
} from "../commands/GetListElementsCommand";
|
|
182
|
+
import {
|
|
183
|
+
GetListsMetadataCommandInput,
|
|
184
|
+
GetListsMetadataCommandOutput,
|
|
185
|
+
} from "../commands/GetListsMetadataCommand";
|
|
170
186
|
import {
|
|
171
187
|
GetModelsCommandInput,
|
|
172
188
|
GetModelsCommandOutput,
|
|
@@ -251,6 +267,10 @@ import {
|
|
|
251
267
|
UpdateEventLabelCommandInput,
|
|
252
268
|
UpdateEventLabelCommandOutput,
|
|
253
269
|
} from "../commands/UpdateEventLabelCommand";
|
|
270
|
+
import {
|
|
271
|
+
UpdateListCommandInput,
|
|
272
|
+
UpdateListCommandOutput,
|
|
273
|
+
} from "../commands/UpdateListCommand";
|
|
254
274
|
import {
|
|
255
275
|
UpdateModelCommandInput,
|
|
256
276
|
UpdateModelCommandOutput,
|
|
@@ -303,6 +323,10 @@ export declare const serializeAws_json1_1CreateDetectorVersionCommand: (
|
|
|
303
323
|
input: CreateDetectorVersionCommandInput,
|
|
304
324
|
context: __SerdeContext
|
|
305
325
|
) => Promise<__HttpRequest>;
|
|
326
|
+
export declare const serializeAws_json1_1CreateListCommand: (
|
|
327
|
+
input: CreateListCommandInput,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<__HttpRequest>;
|
|
306
330
|
export declare const serializeAws_json1_1CreateModelCommand: (
|
|
307
331
|
input: CreateModelCommandInput,
|
|
308
332
|
context: __SerdeContext
|
|
@@ -359,6 +383,10 @@ export declare const serializeAws_json1_1DeleteLabelCommand: (
|
|
|
359
383
|
input: DeleteLabelCommandInput,
|
|
360
384
|
context: __SerdeContext
|
|
361
385
|
) => Promise<__HttpRequest>;
|
|
386
|
+
export declare const serializeAws_json1_1DeleteListCommand: (
|
|
387
|
+
input: DeleteListCommandInput,
|
|
388
|
+
context: __SerdeContext
|
|
389
|
+
) => Promise<__HttpRequest>;
|
|
362
390
|
export declare const serializeAws_json1_1DeleteModelCommand: (
|
|
363
391
|
input: DeleteModelCommandInput,
|
|
364
392
|
context: __SerdeContext
|
|
@@ -439,6 +467,14 @@ export declare const serializeAws_json1_1GetLabelsCommand: (
|
|
|
439
467
|
input: GetLabelsCommandInput,
|
|
440
468
|
context: __SerdeContext
|
|
441
469
|
) => Promise<__HttpRequest>;
|
|
470
|
+
export declare const serializeAws_json1_1GetListElementsCommand: (
|
|
471
|
+
input: GetListElementsCommandInput,
|
|
472
|
+
context: __SerdeContext
|
|
473
|
+
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const serializeAws_json1_1GetListsMetadataCommand: (
|
|
475
|
+
input: GetListsMetadataCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
442
478
|
export declare const serializeAws_json1_1GetModelsCommand: (
|
|
443
479
|
input: GetModelsCommandInput,
|
|
444
480
|
context: __SerdeContext
|
|
@@ -523,6 +559,10 @@ export declare const serializeAws_json1_1UpdateEventLabelCommand: (
|
|
|
523
559
|
input: UpdateEventLabelCommandInput,
|
|
524
560
|
context: __SerdeContext
|
|
525
561
|
) => Promise<__HttpRequest>;
|
|
562
|
+
export declare const serializeAws_json1_1UpdateListCommand: (
|
|
563
|
+
input: UpdateListCommandInput,
|
|
564
|
+
context: __SerdeContext
|
|
565
|
+
) => Promise<__HttpRequest>;
|
|
526
566
|
export declare const serializeAws_json1_1UpdateModelCommand: (
|
|
527
567
|
input: UpdateModelCommandInput,
|
|
528
568
|
context: __SerdeContext
|
|
@@ -575,6 +615,10 @@ export declare const deserializeAws_json1_1CreateDetectorVersionCommand: (
|
|
|
575
615
|
output: __HttpResponse,
|
|
576
616
|
context: __SerdeContext
|
|
577
617
|
) => Promise<CreateDetectorVersionCommandOutput>;
|
|
618
|
+
export declare const deserializeAws_json1_1CreateListCommand: (
|
|
619
|
+
output: __HttpResponse,
|
|
620
|
+
context: __SerdeContext
|
|
621
|
+
) => Promise<CreateListCommandOutput>;
|
|
578
622
|
export declare const deserializeAws_json1_1CreateModelCommand: (
|
|
579
623
|
output: __HttpResponse,
|
|
580
624
|
context: __SerdeContext
|
|
@@ -631,6 +675,10 @@ export declare const deserializeAws_json1_1DeleteLabelCommand: (
|
|
|
631
675
|
output: __HttpResponse,
|
|
632
676
|
context: __SerdeContext
|
|
633
677
|
) => Promise<DeleteLabelCommandOutput>;
|
|
678
|
+
export declare const deserializeAws_json1_1DeleteListCommand: (
|
|
679
|
+
output: __HttpResponse,
|
|
680
|
+
context: __SerdeContext
|
|
681
|
+
) => Promise<DeleteListCommandOutput>;
|
|
634
682
|
export declare const deserializeAws_json1_1DeleteModelCommand: (
|
|
635
683
|
output: __HttpResponse,
|
|
636
684
|
context: __SerdeContext
|
|
@@ -711,6 +759,14 @@ export declare const deserializeAws_json1_1GetLabelsCommand: (
|
|
|
711
759
|
output: __HttpResponse,
|
|
712
760
|
context: __SerdeContext
|
|
713
761
|
) => Promise<GetLabelsCommandOutput>;
|
|
762
|
+
export declare const deserializeAws_json1_1GetListElementsCommand: (
|
|
763
|
+
output: __HttpResponse,
|
|
764
|
+
context: __SerdeContext
|
|
765
|
+
) => Promise<GetListElementsCommandOutput>;
|
|
766
|
+
export declare const deserializeAws_json1_1GetListsMetadataCommand: (
|
|
767
|
+
output: __HttpResponse,
|
|
768
|
+
context: __SerdeContext
|
|
769
|
+
) => Promise<GetListsMetadataCommandOutput>;
|
|
714
770
|
export declare const deserializeAws_json1_1GetModelsCommand: (
|
|
715
771
|
output: __HttpResponse,
|
|
716
772
|
context: __SerdeContext
|
|
@@ -795,6 +851,10 @@ export declare const deserializeAws_json1_1UpdateEventLabelCommand: (
|
|
|
795
851
|
output: __HttpResponse,
|
|
796
852
|
context: __SerdeContext
|
|
797
853
|
) => Promise<UpdateEventLabelCommandOutput>;
|
|
854
|
+
export declare const deserializeAws_json1_1UpdateListCommand: (
|
|
855
|
+
output: __HttpResponse,
|
|
856
|
+
context: __SerdeContext
|
|
857
|
+
) => Promise<UpdateListCommandOutput>;
|
|
798
858
|
export declare const deserializeAws_json1_1UpdateModelCommand: (
|
|
799
859
|
output: __HttpResponse,
|
|
800
860
|
context: __SerdeContext
|