@aws-sdk/client-frauddetector 3.271.0 → 3.276.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 +7 -2
- 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/ts3.4/FraudDetector.d.ts +85 -0
- package/dist-types/ts3.4/FraudDetectorClient.d.ts +30 -0
- 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/package.json +29 -29
|
@@ -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>;
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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;
|