@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.
Files changed (61) hide show
  1. package/dist-cjs/FraudDetector.js +75 -0
  2. package/dist-cjs/commands/CreateListCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteListCommand.js +46 -0
  4. package/dist-cjs/commands/GetListElementsCommand.js +46 -0
  5. package/dist-cjs/commands/GetListsMetadataCommand.js +46 -0
  6. package/dist-cjs/commands/UpdateListCommand.js +46 -0
  7. package/dist-cjs/commands/index.js +5 -0
  8. package/dist-cjs/endpoint/ruleset.js +3 -3
  9. package/dist-cjs/models/models_0.js +58 -5
  10. package/dist-cjs/pagination/GetListElementsPaginator.js +36 -0
  11. package/dist-cjs/pagination/GetListsMetadataPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +3 -1
  13. package/dist-cjs/protocols/Aws_json1_1.js +380 -3
  14. package/dist-es/FraudDetector.js +75 -0
  15. package/dist-es/commands/CreateListCommand.js +42 -0
  16. package/dist-es/commands/DeleteListCommand.js +42 -0
  17. package/dist-es/commands/GetListElementsCommand.js +42 -0
  18. package/dist-es/commands/GetListsMetadataCommand.js +42 -0
  19. package/dist-es/commands/UpdateListCommand.js +42 -0
  20. package/dist-es/commands/index.js +5 -0
  21. package/dist-es/endpoint/ruleset.js +3 -3
  22. package/dist-es/models/models_0.js +42 -0
  23. package/dist-es/pagination/GetListElementsPaginator.js +32 -0
  24. package/dist-es/pagination/GetListsMetadataPaginator.js +32 -0
  25. package/dist-es/pagination/index.js +3 -1
  26. package/dist-es/protocols/Aws_json1_1.js +367 -0
  27. package/dist-types/FraudDetector.d.ts +48 -0
  28. package/dist-types/FraudDetectorClient.d.ts +22 -17
  29. package/dist-types/commands/CreateListCommand.d.ts +41 -0
  30. package/dist-types/commands/DeleteListCommand.d.ts +40 -0
  31. package/dist-types/commands/GetListElementsCommand.d.ts +39 -0
  32. package/dist-types/commands/GetListsMetadataCommand.d.ts +39 -0
  33. package/dist-types/commands/UpdateListCommand.d.ts +39 -0
  34. package/dist-types/commands/index.d.ts +5 -0
  35. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  36. package/dist-types/models/models_0.d.ts +254 -0
  37. package/dist-types/pagination/GetListElementsPaginator.d.ts +4 -0
  38. package/dist-types/pagination/GetListsMetadataPaginator.d.ts +4 -0
  39. package/dist-types/pagination/index.d.ts +3 -1
  40. package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
  41. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  42. package/dist-types/runtimeConfig.d.ts +1 -1
  43. package/dist-types/runtimeConfig.native.d.ts +4 -4
  44. package/dist-types/ts3.4/FraudDetector.d.ts +85 -0
  45. package/dist-types/ts3.4/FraudDetectorClient.d.ts +34 -4
  46. package/dist-types/ts3.4/commands/CreateListCommand.d.ts +34 -0
  47. package/dist-types/ts3.4/commands/DeleteListCommand.d.ts +34 -0
  48. package/dist-types/ts3.4/commands/GetListElementsCommand.d.ts +37 -0
  49. package/dist-types/ts3.4/commands/GetListsMetadataCommand.d.ts +37 -0
  50. package/dist-types/ts3.4/commands/UpdateListCommand.d.ts +34 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  52. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  53. package/dist-types/ts3.4/models/models_0.d.ts +84 -0
  54. package/dist-types/ts3.4/pagination/GetListElementsPaginator.d.ts +11 -0
  55. package/dist-types/ts3.4/pagination/GetListsMetadataPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +3 -1
  57. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  58. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  59. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  60. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -4
  61. package/package.json +29 -29
@@ -79,6 +79,49 @@ export interface AggregatedVariablesImportanceMetrics {
79
79
  */
80
80
  logOddsMetrics?: AggregatedLogOddsMetric[];
81
81
  }
82
+ /**
83
+ * <p>
84
+ * The metadata of a list.
85
+ * </p>
86
+ */
87
+ export interface AllowDenyList {
88
+ /**
89
+ * <p>
90
+ * The name of the list.
91
+ * </p>
92
+ */
93
+ name: string | undefined;
94
+ /**
95
+ * <p>
96
+ * The description of the list.
97
+ * </p>
98
+ */
99
+ description?: string;
100
+ /**
101
+ * <p>
102
+ * The variable type of the list.
103
+ * </p>
104
+ */
105
+ variableType?: string;
106
+ /**
107
+ * <p>
108
+ * The time the list was created.
109
+ * </p>
110
+ */
111
+ createdTime?: string;
112
+ /**
113
+ * <p>
114
+ * The time the list was last updated.
115
+ * </p>
116
+ */
117
+ updatedTime?: string;
118
+ /**
119
+ * <p>
120
+ * The ARN of the list.
121
+ * </p>
122
+ */
123
+ arn?: string;
124
+ }
82
125
  export declare enum AsyncJobStatus {
83
126
  CANCELED = "CANCELED",
84
127
  CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
@@ -552,6 +595,41 @@ export interface CreateDetectorVersionResult {
552
595
  */
553
596
  status?: DetectorVersionStatus | string;
554
597
  }
598
+ export interface CreateListRequest {
599
+ /**
600
+ * <p>
601
+ * The name of the list.
602
+ * </p>
603
+ */
604
+ name: string | undefined;
605
+ /**
606
+ * <p>
607
+ * The names of the elements, if providing. You can also create an empty list and add elements later using the <a href="https://docs.aws.amazon.com/frauddetector/latest/api/API_Updatelist.html">UpdateList</a> API.
608
+ * </p>
609
+ */
610
+ elements?: string[];
611
+ /**
612
+ * <p>
613
+ * The variable type of the list. You can only assign the variable type with String data type. For more information, see
614
+ * <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/create-a-variable.html#variable-types">Variable types</a>.
615
+ * </p>
616
+ */
617
+ variableType?: string;
618
+ /**
619
+ * <p>
620
+ * The description of the list.
621
+ * </p>
622
+ */
623
+ description?: string;
624
+ /**
625
+ * <p>
626
+ * A collection of the key and value pairs.
627
+ * </p>
628
+ */
629
+ tags?: Tag[];
630
+ }
631
+ export interface CreateListResult {
632
+ }
555
633
  export interface CreateModelRequest {
556
634
  /**
557
635
  * <p>The model ID.</p>
@@ -896,6 +974,16 @@ export interface DeleteLabelRequest {
896
974
  }
897
975
  export interface DeleteLabelResult {
898
976
  }
977
+ export interface DeleteListRequest {
978
+ /**
979
+ * <p>
980
+ * The name of the list to delete.
981
+ * </p>
982
+ */
983
+ name: string | undefined;
984
+ }
985
+ export interface DeleteListResult {
986
+ }
899
987
  export interface DeleteModelRequest {
900
988
  /**
901
989
  * <p>The model ID of the model to delete.</p>
@@ -2615,6 +2703,74 @@ export interface GetLabelsResult {
2615
2703
  */
2616
2704
  nextToken?: string;
2617
2705
  }
2706
+ export interface GetListElementsRequest {
2707
+ /**
2708
+ * <p>
2709
+ * The name of the list.
2710
+ * </p>
2711
+ */
2712
+ name: string | undefined;
2713
+ /**
2714
+ * <p>
2715
+ * The next token for the subsequent request.
2716
+ * </p>
2717
+ */
2718
+ nextToken?: string;
2719
+ /**
2720
+ * <p>
2721
+ * The maximum number of objects to return for the request.
2722
+ * </p>
2723
+ */
2724
+ maxResults?: number;
2725
+ }
2726
+ export interface GetListElementsResult {
2727
+ /**
2728
+ * <p>
2729
+ * The list elements.
2730
+ * </p>
2731
+ */
2732
+ elements?: string[];
2733
+ /**
2734
+ * <p>
2735
+ * The next page token.
2736
+ * </p>
2737
+ */
2738
+ nextToken?: string;
2739
+ }
2740
+ export interface GetListsMetadataRequest {
2741
+ /**
2742
+ * <p>
2743
+ * The name of the list.
2744
+ * </p>
2745
+ */
2746
+ name?: string;
2747
+ /**
2748
+ * <p>
2749
+ * The next token for the subsequent request.
2750
+ * </p>
2751
+ */
2752
+ nextToken?: string;
2753
+ /**
2754
+ * <p>
2755
+ * The maximum number of objects to return for the request.
2756
+ * </p>
2757
+ */
2758
+ maxResults?: number;
2759
+ }
2760
+ export interface GetListsMetadataResult {
2761
+ /**
2762
+ * <p>
2763
+ * The metadata of the specified list or all lists under the account.
2764
+ * </p>
2765
+ */
2766
+ lists?: AllowDenyList[];
2767
+ /**
2768
+ * <p>
2769
+ * The next page token.
2770
+ * </p>
2771
+ */
2772
+ nextToken?: string;
2773
+ }
2618
2774
  export interface GetModelsRequest {
2619
2775
  /**
2620
2776
  * <p>The model ID.</p>
@@ -3372,6 +3528,60 @@ export interface UpdateEventLabelRequest {
3372
3528
  }
3373
3529
  export interface UpdateEventLabelResult {
3374
3530
  }
3531
+ export declare enum ListUpdateMode {
3532
+ APPEND = "APPEND",
3533
+ REMOVE = "REMOVE",
3534
+ REPLACE = "REPLACE"
3535
+ }
3536
+ export interface UpdateListRequest {
3537
+ /**
3538
+ * <p>
3539
+ * The name of the list to update.
3540
+ * </p>
3541
+ */
3542
+ name: string | undefined;
3543
+ /**
3544
+ * <p>
3545
+ * One or more list elements to add or replace. If you are providing the elements, make sure to specify the <code>updateMode</code> to use.
3546
+ * </p>
3547
+ * <p>If you are deleting all elements from the list, use <code>REPLACE</code> for the <code>updateMode</code> and provide an empty list (0 elements).</p>
3548
+ */
3549
+ elements?: string[];
3550
+ /**
3551
+ * <p>
3552
+ * The new description.
3553
+ * </p>
3554
+ */
3555
+ description?: string;
3556
+ /**
3557
+ * <p>
3558
+ * The update mode (type).
3559
+ * </p>
3560
+ * <ul>
3561
+ * <li>
3562
+ * <p>Use <code>APPEND</code> if you are adding elements to the list.</p>
3563
+ * </li>
3564
+ * <li>
3565
+ * <p>Use <code>REPLACE</code> if you replacing existing elements in the list.</p>
3566
+ * </li>
3567
+ * <li>
3568
+ * <p>Use <code>REMOVE</code> if you are removing elements from the list.</p>
3569
+ * </li>
3570
+ * </ul>
3571
+ */
3572
+ updateMode?: ListUpdateMode | string;
3573
+ /**
3574
+ * <p>
3575
+ * The variable type you want to assign to the list.
3576
+ * </p>
3577
+ * <note>
3578
+ * <p>You cannot update a variable type of a list that already has a variable type assigned to it. You can assign a variable type to a list only if the list does not already have a variable type.</p>
3579
+ * </note>
3580
+ */
3581
+ variableType?: string;
3582
+ }
3583
+ export interface UpdateListResult {
3584
+ }
3375
3585
  export interface UpdateModelRequest {
3376
3586
  /**
3377
3587
  * <p>The model ID.</p>
@@ -3533,6 +3743,10 @@ export declare const AggregatedVariablesImpactExplanationFilterSensitiveLog: (ob
3533
3743
  * @internal
3534
3744
  */
3535
3745
  export declare const AggregatedVariablesImportanceMetricsFilterSensitiveLog: (obj: AggregatedVariablesImportanceMetrics) => any;
3746
+ /**
3747
+ * @internal
3748
+ */
3749
+ export declare const AllowDenyListFilterSensitiveLog: (obj: AllowDenyList) => any;
3536
3750
  /**
3537
3751
  * @internal
3538
3752
  */
@@ -3629,6 +3843,14 @@ export declare const CreateDetectorVersionRequestFilterSensitiveLog: (obj: Creat
3629
3843
  * @internal
3630
3844
  */
3631
3845
  export declare const CreateDetectorVersionResultFilterSensitiveLog: (obj: CreateDetectorVersionResult) => any;
3846
+ /**
3847
+ * @internal
3848
+ */
3849
+ export declare const CreateListRequestFilterSensitiveLog: (obj: CreateListRequest) => any;
3850
+ /**
3851
+ * @internal
3852
+ */
3853
+ export declare const CreateListResultFilterSensitiveLog: (obj: CreateListResult) => any;
3632
3854
  /**
3633
3855
  * @internal
3634
3856
  */
@@ -3761,6 +3983,14 @@ export declare const DeleteLabelRequestFilterSensitiveLog: (obj: DeleteLabelRequ
3761
3983
  * @internal
3762
3984
  */
3763
3985
  export declare const DeleteLabelResultFilterSensitiveLog: (obj: DeleteLabelResult) => any;
3986
+ /**
3987
+ * @internal
3988
+ */
3989
+ export declare const DeleteListRequestFilterSensitiveLog: (obj: DeleteListRequest) => any;
3990
+ /**
3991
+ * @internal
3992
+ */
3993
+ export declare const DeleteListResultFilterSensitiveLog: (obj: DeleteListResult) => any;
3764
3994
  /**
3765
3995
  * @internal
3766
3996
  */
@@ -4093,6 +4323,22 @@ export declare const LabelFilterSensitiveLog: (obj: Label) => any;
4093
4323
  * @internal
4094
4324
  */
4095
4325
  export declare const GetLabelsResultFilterSensitiveLog: (obj: GetLabelsResult) => any;
4326
+ /**
4327
+ * @internal
4328
+ */
4329
+ export declare const GetListElementsRequestFilterSensitiveLog: (obj: GetListElementsRequest) => any;
4330
+ /**
4331
+ * @internal
4332
+ */
4333
+ export declare const GetListElementsResultFilterSensitiveLog: (obj: GetListElementsResult) => any;
4334
+ /**
4335
+ * @internal
4336
+ */
4337
+ export declare const GetListsMetadataRequestFilterSensitiveLog: (obj: GetListsMetadataRequest) => any;
4338
+ /**
4339
+ * @internal
4340
+ */
4341
+ export declare const GetListsMetadataResultFilterSensitiveLog: (obj: GetListsMetadataResult) => any;
4096
4342
  /**
4097
4343
  * @internal
4098
4344
  */
@@ -4285,6 +4531,14 @@ export declare const UpdateEventLabelRequestFilterSensitiveLog: (obj: UpdateEven
4285
4531
  * @internal
4286
4532
  */
4287
4533
  export declare const UpdateEventLabelResultFilterSensitiveLog: (obj: UpdateEventLabelResult) => any;
4534
+ /**
4535
+ * @internal
4536
+ */
4537
+ export declare const UpdateListRequestFilterSensitiveLog: (obj: UpdateListRequest) => any;
4538
+ /**
4539
+ * @internal
4540
+ */
4541
+ export declare const UpdateListResultFilterSensitiveLog: (obj: UpdateListResult) => any;
4288
4542
  /**
4289
4543
  * @internal
4290
4544
  */
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetListElementsCommandInput, GetListElementsCommandOutput } from "../commands/GetListElementsCommand";
3
+ import { FraudDetectorPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetListElements(config: FraudDetectorPaginationConfiguration, input: GetListElementsCommandInput, ...additionalArguments: any): Paginator<GetListElementsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetListsMetadataCommandInput, GetListsMetadataCommandOutput } from "../commands/GetListsMetadataCommand";
3
+ import { FraudDetectorPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetListsMetadata(config: FraudDetectorPaginationConfiguration, input: GetListsMetadataCommandInput, ...additionalArguments: any): 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";
@@ -7,6 +7,7 @@ import { CancelBatchPredictionJobCommandInput, CancelBatchPredictionJobCommandOu
7
7
  import { CreateBatchImportJobCommandInput, CreateBatchImportJobCommandOutput } from "../commands/CreateBatchImportJobCommand";
8
8
  import { CreateBatchPredictionJobCommandInput, CreateBatchPredictionJobCommandOutput } from "../commands/CreateBatchPredictionJobCommand";
9
9
  import { CreateDetectorVersionCommandInput, CreateDetectorVersionCommandOutput } from "../commands/CreateDetectorVersionCommand";
10
+ import { CreateListCommandInput, CreateListCommandOutput } from "../commands/CreateListCommand";
10
11
  import { CreateModelCommandInput, CreateModelCommandOutput } from "../commands/CreateModelCommand";
11
12
  import { CreateModelVersionCommandInput, CreateModelVersionCommandOutput } from "../commands/CreateModelVersionCommand";
12
13
  import { CreateRuleCommandInput, CreateRuleCommandOutput } from "../commands/CreateRuleCommand";
@@ -21,6 +22,7 @@ import { DeleteEventsByEventTypeCommandInput, DeleteEventsByEventTypeCommandOutp
21
22
  import { DeleteEventTypeCommandInput, DeleteEventTypeCommandOutput } from "../commands/DeleteEventTypeCommand";
22
23
  import { DeleteExternalModelCommandInput, DeleteExternalModelCommandOutput } from "../commands/DeleteExternalModelCommand";
23
24
  import { DeleteLabelCommandInput, DeleteLabelCommandOutput } from "../commands/DeleteLabelCommand";
25
+ import { DeleteListCommandInput, DeleteListCommandOutput } from "../commands/DeleteListCommand";
24
26
  import { DeleteModelCommandInput, DeleteModelCommandOutput } from "../commands/DeleteModelCommand";
25
27
  import { DeleteModelVersionCommandInput, DeleteModelVersionCommandOutput } from "../commands/DeleteModelVersionCommand";
26
28
  import { DeleteOutcomeCommandInput, DeleteOutcomeCommandOutput } from "../commands/DeleteOutcomeCommand";
@@ -41,6 +43,8 @@ import { GetEventTypesCommandInput, GetEventTypesCommandOutput } from "../comman
41
43
  import { GetExternalModelsCommandInput, GetExternalModelsCommandOutput } from "../commands/GetExternalModelsCommand";
42
44
  import { GetKMSEncryptionKeyCommandInput, GetKMSEncryptionKeyCommandOutput } from "../commands/GetKMSEncryptionKeyCommand";
43
45
  import { GetLabelsCommandInput, GetLabelsCommandOutput } from "../commands/GetLabelsCommand";
46
+ import { GetListElementsCommandInput, GetListElementsCommandOutput } from "../commands/GetListElementsCommand";
47
+ import { GetListsMetadataCommandInput, GetListsMetadataCommandOutput } from "../commands/GetListsMetadataCommand";
44
48
  import { GetModelsCommandInput, GetModelsCommandOutput } from "../commands/GetModelsCommand";
45
49
  import { GetModelVersionCommandInput, GetModelVersionCommandOutput } from "../commands/GetModelVersionCommand";
46
50
  import { GetOutcomesCommandInput, GetOutcomesCommandOutput } from "../commands/GetOutcomesCommand";
@@ -62,6 +66,7 @@ import { UpdateDetectorVersionCommandInput, UpdateDetectorVersionCommandOutput }
62
66
  import { UpdateDetectorVersionMetadataCommandInput, UpdateDetectorVersionMetadataCommandOutput } from "../commands/UpdateDetectorVersionMetadataCommand";
63
67
  import { UpdateDetectorVersionStatusCommandInput, UpdateDetectorVersionStatusCommandOutput } from "../commands/UpdateDetectorVersionStatusCommand";
64
68
  import { UpdateEventLabelCommandInput, UpdateEventLabelCommandOutput } from "../commands/UpdateEventLabelCommand";
69
+ import { UpdateListCommandInput, UpdateListCommandOutput } from "../commands/UpdateListCommand";
65
70
  import { UpdateModelCommandInput, UpdateModelCommandOutput } from "../commands/UpdateModelCommand";
66
71
  import { UpdateModelVersionCommandInput, UpdateModelVersionCommandOutput } from "../commands/UpdateModelVersionCommand";
67
72
  import { UpdateModelVersionStatusCommandInput, UpdateModelVersionStatusCommandOutput } from "../commands/UpdateModelVersionStatusCommand";
@@ -75,6 +80,7 @@ export declare const serializeAws_json1_1CancelBatchPredictionJobCommand: (input
75
80
  export declare const serializeAws_json1_1CreateBatchImportJobCommand: (input: CreateBatchImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
81
  export declare const serializeAws_json1_1CreateBatchPredictionJobCommand: (input: CreateBatchPredictionJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
82
  export declare const serializeAws_json1_1CreateDetectorVersionCommand: (input: CreateDetectorVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ export declare const serializeAws_json1_1CreateListCommand: (input: CreateListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
84
  export declare const serializeAws_json1_1CreateModelCommand: (input: CreateModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
85
  export declare const serializeAws_json1_1CreateModelVersionCommand: (input: CreateModelVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
86
  export declare const serializeAws_json1_1CreateRuleCommand: (input: CreateRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -89,6 +95,7 @@ export declare const serializeAws_json1_1DeleteEventsByEventTypeCommand: (input:
89
95
  export declare const serializeAws_json1_1DeleteEventTypeCommand: (input: DeleteEventTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
96
  export declare const serializeAws_json1_1DeleteExternalModelCommand: (input: DeleteExternalModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
97
  export declare const serializeAws_json1_1DeleteLabelCommand: (input: DeleteLabelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_json1_1DeleteListCommand: (input: DeleteListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
99
  export declare const serializeAws_json1_1DeleteModelCommand: (input: DeleteModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
100
  export declare const serializeAws_json1_1DeleteModelVersionCommand: (input: DeleteModelVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
101
  export declare const serializeAws_json1_1DeleteOutcomeCommand: (input: DeleteOutcomeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -109,6 +116,8 @@ export declare const serializeAws_json1_1GetEventTypesCommand: (input: GetEventT
109
116
  export declare const serializeAws_json1_1GetExternalModelsCommand: (input: GetExternalModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
117
  export declare const serializeAws_json1_1GetKMSEncryptionKeyCommand: (input: GetKMSEncryptionKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
118
  export declare const serializeAws_json1_1GetLabelsCommand: (input: GetLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
+ export declare const serializeAws_json1_1GetListElementsCommand: (input: GetListElementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
+ export declare const serializeAws_json1_1GetListsMetadataCommand: (input: GetListsMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
112
121
  export declare const serializeAws_json1_1GetModelsCommand: (input: GetModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
122
  export declare const serializeAws_json1_1GetModelVersionCommand: (input: GetModelVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
123
  export declare const serializeAws_json1_1GetOutcomesCommand: (input: GetOutcomesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -130,6 +139,7 @@ export declare const serializeAws_json1_1UpdateDetectorVersionCommand: (input: U
130
139
  export declare const serializeAws_json1_1UpdateDetectorVersionMetadataCommand: (input: UpdateDetectorVersionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
131
140
  export declare const serializeAws_json1_1UpdateDetectorVersionStatusCommand: (input: UpdateDetectorVersionStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
141
  export declare const serializeAws_json1_1UpdateEventLabelCommand: (input: UpdateEventLabelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_json1_1UpdateListCommand: (input: UpdateListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
143
  export declare const serializeAws_json1_1UpdateModelCommand: (input: UpdateModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
144
  export declare const serializeAws_json1_1UpdateModelVersionCommand: (input: UpdateModelVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
135
145
  export declare const serializeAws_json1_1UpdateModelVersionStatusCommand: (input: UpdateModelVersionStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -143,6 +153,7 @@ export declare const deserializeAws_json1_1CancelBatchPredictionJobCommand: (out
143
153
  export declare const deserializeAws_json1_1CreateBatchImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchImportJobCommandOutput>;
144
154
  export declare const deserializeAws_json1_1CreateBatchPredictionJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBatchPredictionJobCommandOutput>;
145
155
  export declare const deserializeAws_json1_1CreateDetectorVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDetectorVersionCommandOutput>;
156
+ export declare const deserializeAws_json1_1CreateListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateListCommandOutput>;
146
157
  export declare const deserializeAws_json1_1CreateModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateModelCommandOutput>;
147
158
  export declare const deserializeAws_json1_1CreateModelVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateModelVersionCommandOutput>;
148
159
  export declare const deserializeAws_json1_1CreateRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRuleCommandOutput>;
@@ -157,6 +168,7 @@ export declare const deserializeAws_json1_1DeleteEventsByEventTypeCommand: (outp
157
168
  export declare const deserializeAws_json1_1DeleteEventTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventTypeCommandOutput>;
158
169
  export declare const deserializeAws_json1_1DeleteExternalModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExternalModelCommandOutput>;
159
170
  export declare const deserializeAws_json1_1DeleteLabelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLabelCommandOutput>;
171
+ export declare const deserializeAws_json1_1DeleteListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteListCommandOutput>;
160
172
  export declare const deserializeAws_json1_1DeleteModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteModelCommandOutput>;
161
173
  export declare const deserializeAws_json1_1DeleteModelVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteModelVersionCommandOutput>;
162
174
  export declare const deserializeAws_json1_1DeleteOutcomeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOutcomeCommandOutput>;
@@ -177,6 +189,8 @@ export declare const deserializeAws_json1_1GetEventTypesCommand: (output: __Http
177
189
  export declare const deserializeAws_json1_1GetExternalModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExternalModelsCommandOutput>;
178
190
  export declare const deserializeAws_json1_1GetKMSEncryptionKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKMSEncryptionKeyCommandOutput>;
179
191
  export declare const deserializeAws_json1_1GetLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLabelsCommandOutput>;
192
+ export declare const deserializeAws_json1_1GetListElementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetListElementsCommandOutput>;
193
+ export declare const deserializeAws_json1_1GetListsMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetListsMetadataCommandOutput>;
180
194
  export declare const deserializeAws_json1_1GetModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetModelsCommandOutput>;
181
195
  export declare const deserializeAws_json1_1GetModelVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetModelVersionCommandOutput>;
182
196
  export declare const deserializeAws_json1_1GetOutcomesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutcomesCommandOutput>;
@@ -198,6 +212,7 @@ export declare const deserializeAws_json1_1UpdateDetectorVersionCommand: (output
198
212
  export declare const deserializeAws_json1_1UpdateDetectorVersionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDetectorVersionMetadataCommandOutput>;
199
213
  export declare const deserializeAws_json1_1UpdateDetectorVersionStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDetectorVersionStatusCommandOutput>;
200
214
  export declare const deserializeAws_json1_1UpdateEventLabelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventLabelCommandOutput>;
215
+ export declare const deserializeAws_json1_1UpdateListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateListCommandOutput>;
201
216
  export declare const deserializeAws_json1_1UpdateModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateModelCommandOutput>;
202
217
  export declare const deserializeAws_json1_1UpdateModelVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateModelVersionCommandOutput>;
203
218
  export declare const deserializeAws_json1_1UpdateModelVersionStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateModelVersionStatusCommandOutput>;
@@ -24,8 +24,8 @@ export declare const getRuntimeConfig: (config: FraudDetectorClientConfig) => {
24
24
  utf8Decoder: import("@aws-sdk/types").Decoder;
25
25
  utf8Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
- logger: import("@aws-sdk/types").Logger;
28
27
  serviceId: string;
28
+ logger: import("@aws-sdk/types").Logger;
29
29
  endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
30
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
@@ -24,8 +24,8 @@ export declare const getRuntimeConfig: (config: FraudDetectorClientConfig) => {
24
24
  utf8Decoder: import("@aws-sdk/types").Decoder;
25
25
  utf8Encoder: import("@aws-sdk/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
- logger: import("@aws-sdk/types").Logger;
28
27
  serviceId: string;
28
+ logger: import("@aws-sdk/types").Logger;
29
29
  endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
30
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
@@ -15,15 +15,15 @@ export declare const getRuntimeConfig: (config: FraudDetectorClientConfig) => {
15
15
  utf8Decoder: import("@aws-sdk/types").Decoder;
16
16
  utf8Encoder: import("@aws-sdk/types").Encoder;
17
17
  disableHostPrefix: boolean;
18
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
- retryMode: string | import("@aws-sdk/types").Provider<string>;
20
- logger: import("@aws-sdk/types").Logger;
18
+ serviceId: string;
21
19
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
20
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
- serviceId: string;
24
21
  region: string | import("@aws-sdk/types").Provider<any>;
25
22
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
23
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
24
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ logger: import("@aws-sdk/types").Logger;
27
27
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
28
  endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
29
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -27,6 +27,10 @@ import {
27
27
  CreateDetectorVersionCommandInput,
28
28
  CreateDetectorVersionCommandOutput,
29
29
  } from "./commands/CreateDetectorVersionCommand";
30
+ import {
31
+ CreateListCommandInput,
32
+ CreateListCommandOutput,
33
+ } from "./commands/CreateListCommand";
30
34
  import {
31
35
  CreateModelCommandInput,
32
36
  CreateModelCommandOutput,
@@ -83,6 +87,10 @@ import {
83
87
  DeleteLabelCommandInput,
84
88
  DeleteLabelCommandOutput,
85
89
  } from "./commands/DeleteLabelCommand";
90
+ import {
91
+ DeleteListCommandInput,
92
+ DeleteListCommandOutput,
93
+ } from "./commands/DeleteListCommand";
86
94
  import {
87
95
  DeleteModelCommandInput,
88
96
  DeleteModelCommandOutput,
@@ -163,6 +171,14 @@ import {
163
171
  GetLabelsCommandInput,
164
172
  GetLabelsCommandOutput,
165
173
  } from "./commands/GetLabelsCommand";
174
+ import {
175
+ GetListElementsCommandInput,
176
+ GetListElementsCommandOutput,
177
+ } from "./commands/GetListElementsCommand";
178
+ import {
179
+ GetListsMetadataCommandInput,
180
+ GetListsMetadataCommandOutput,
181
+ } from "./commands/GetListsMetadataCommand";
166
182
  import {
167
183
  GetModelsCommandInput,
168
184
  GetModelsCommandOutput,
@@ -247,6 +263,10 @@ import {
247
263
  UpdateEventLabelCommandInput,
248
264
  UpdateEventLabelCommandOutput,
249
265
  } from "./commands/UpdateEventLabelCommand";
266
+ import {
267
+ UpdateListCommandInput,
268
+ UpdateListCommandOutput,
269
+ } from "./commands/UpdateListCommand";
250
270
  import {
251
271
  UpdateModelCommandInput,
252
272
  UpdateModelCommandOutput,
@@ -364,6 +384,19 @@ export declare class FraudDetector extends FraudDetectorClient {
364
384
  options: __HttpHandlerOptions,
365
385
  cb: (err: any, data?: CreateDetectorVersionCommandOutput) => void
366
386
  ): void;
387
+ createList(
388
+ args: CreateListCommandInput,
389
+ options?: __HttpHandlerOptions
390
+ ): Promise<CreateListCommandOutput>;
391
+ createList(
392
+ args: CreateListCommandInput,
393
+ cb: (err: any, data?: CreateListCommandOutput) => void
394
+ ): void;
395
+ createList(
396
+ args: CreateListCommandInput,
397
+ options: __HttpHandlerOptions,
398
+ cb: (err: any, data?: CreateListCommandOutput) => void
399
+ ): void;
367
400
  createModel(
368
401
  args: CreateModelCommandInput,
369
402
  options?: __HttpHandlerOptions
@@ -546,6 +579,19 @@ export declare class FraudDetector extends FraudDetectorClient {
546
579
  options: __HttpHandlerOptions,
547
580
  cb: (err: any, data?: DeleteLabelCommandOutput) => void
548
581
  ): void;
582
+ deleteList(
583
+ args: DeleteListCommandInput,
584
+ options?: __HttpHandlerOptions
585
+ ): Promise<DeleteListCommandOutput>;
586
+ deleteList(
587
+ args: DeleteListCommandInput,
588
+ cb: (err: any, data?: DeleteListCommandOutput) => void
589
+ ): void;
590
+ deleteList(
591
+ args: DeleteListCommandInput,
592
+ options: __HttpHandlerOptions,
593
+ cb: (err: any, data?: DeleteListCommandOutput) => void
594
+ ): void;
549
595
  deleteModel(
550
596
  args: DeleteModelCommandInput,
551
597
  options?: __HttpHandlerOptions
@@ -806,6 +852,32 @@ export declare class FraudDetector extends FraudDetectorClient {
806
852
  options: __HttpHandlerOptions,
807
853
  cb: (err: any, data?: GetLabelsCommandOutput) => void
808
854
  ): void;
855
+ getListElements(
856
+ args: GetListElementsCommandInput,
857
+ options?: __HttpHandlerOptions
858
+ ): Promise<GetListElementsCommandOutput>;
859
+ getListElements(
860
+ args: GetListElementsCommandInput,
861
+ cb: (err: any, data?: GetListElementsCommandOutput) => void
862
+ ): void;
863
+ getListElements(
864
+ args: GetListElementsCommandInput,
865
+ options: __HttpHandlerOptions,
866
+ cb: (err: any, data?: GetListElementsCommandOutput) => void
867
+ ): void;
868
+ getListsMetadata(
869
+ args: GetListsMetadataCommandInput,
870
+ options?: __HttpHandlerOptions
871
+ ): Promise<GetListsMetadataCommandOutput>;
872
+ getListsMetadata(
873
+ args: GetListsMetadataCommandInput,
874
+ cb: (err: any, data?: GetListsMetadataCommandOutput) => void
875
+ ): void;
876
+ getListsMetadata(
877
+ args: GetListsMetadataCommandInput,
878
+ options: __HttpHandlerOptions,
879
+ cb: (err: any, data?: GetListsMetadataCommandOutput) => void
880
+ ): void;
809
881
  getModels(
810
882
  args: GetModelsCommandInput,
811
883
  options?: __HttpHandlerOptions
@@ -1079,6 +1151,19 @@ export declare class FraudDetector extends FraudDetectorClient {
1079
1151
  options: __HttpHandlerOptions,
1080
1152
  cb: (err: any, data?: UpdateEventLabelCommandOutput) => void
1081
1153
  ): void;
1154
+ updateList(
1155
+ args: UpdateListCommandInput,
1156
+ options?: __HttpHandlerOptions
1157
+ ): Promise<UpdateListCommandOutput>;
1158
+ updateList(
1159
+ args: UpdateListCommandInput,
1160
+ cb: (err: any, data?: UpdateListCommandOutput) => void
1161
+ ): void;
1162
+ updateList(
1163
+ args: UpdateListCommandInput,
1164
+ options: __HttpHandlerOptions,
1165
+ cb: (err: any, data?: UpdateListCommandOutput) => void
1166
+ ): void;
1082
1167
  updateModel(
1083
1168
  args: UpdateModelCommandInput,
1084
1169
  options?: __HttpHandlerOptions