@aws-sdk/client-cognito-sync 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/CognitoSync.d.ts +293 -90
- package/dist-types/ts3.4/CognitoSyncClient.d.ts +206 -90
- package/dist-types/ts3.4/commands/BulkPublishCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeIdentityPoolUsageCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeIdentityUsageCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetBulkPublishDetailsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetCognitoEventsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetIdentityPoolConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListIdentityPoolUsageCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListRecordsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RegisterDeviceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SetCognitoEventsCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/SetIdentityPoolConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SubscribeToDatasetCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UnsubscribeFromDatasetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateRecordsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +17 -17
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/CognitoSyncServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +415 -535
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cognito-sync
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-cognito-sync
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-cognito-sync
|
|
@@ -1,90 +1,293 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CognitoSyncClient } from "./CognitoSyncClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CognitoSyncClient } from "./CognitoSyncClient";
|
|
3
|
+
import {
|
|
4
|
+
BulkPublishCommandInput,
|
|
5
|
+
BulkPublishCommandOutput,
|
|
6
|
+
} from "./commands/BulkPublishCommand";
|
|
7
|
+
import {
|
|
8
|
+
DeleteDatasetCommandInput,
|
|
9
|
+
DeleteDatasetCommandOutput,
|
|
10
|
+
} from "./commands/DeleteDatasetCommand";
|
|
11
|
+
import {
|
|
12
|
+
DescribeDatasetCommandInput,
|
|
13
|
+
DescribeDatasetCommandOutput,
|
|
14
|
+
} from "./commands/DescribeDatasetCommand";
|
|
15
|
+
import {
|
|
16
|
+
DescribeIdentityPoolUsageCommandInput,
|
|
17
|
+
DescribeIdentityPoolUsageCommandOutput,
|
|
18
|
+
} from "./commands/DescribeIdentityPoolUsageCommand";
|
|
19
|
+
import {
|
|
20
|
+
DescribeIdentityUsageCommandInput,
|
|
21
|
+
DescribeIdentityUsageCommandOutput,
|
|
22
|
+
} from "./commands/DescribeIdentityUsageCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetBulkPublishDetailsCommandInput,
|
|
25
|
+
GetBulkPublishDetailsCommandOutput,
|
|
26
|
+
} from "./commands/GetBulkPublishDetailsCommand";
|
|
27
|
+
import {
|
|
28
|
+
GetCognitoEventsCommandInput,
|
|
29
|
+
GetCognitoEventsCommandOutput,
|
|
30
|
+
} from "./commands/GetCognitoEventsCommand";
|
|
31
|
+
import {
|
|
32
|
+
GetIdentityPoolConfigurationCommandInput,
|
|
33
|
+
GetIdentityPoolConfigurationCommandOutput,
|
|
34
|
+
} from "./commands/GetIdentityPoolConfigurationCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListDatasetsCommandInput,
|
|
37
|
+
ListDatasetsCommandOutput,
|
|
38
|
+
} from "./commands/ListDatasetsCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListIdentityPoolUsageCommandInput,
|
|
41
|
+
ListIdentityPoolUsageCommandOutput,
|
|
42
|
+
} from "./commands/ListIdentityPoolUsageCommand";
|
|
43
|
+
import {
|
|
44
|
+
ListRecordsCommandInput,
|
|
45
|
+
ListRecordsCommandOutput,
|
|
46
|
+
} from "./commands/ListRecordsCommand";
|
|
47
|
+
import {
|
|
48
|
+
RegisterDeviceCommandInput,
|
|
49
|
+
RegisterDeviceCommandOutput,
|
|
50
|
+
} from "./commands/RegisterDeviceCommand";
|
|
51
|
+
import {
|
|
52
|
+
SetCognitoEventsCommandInput,
|
|
53
|
+
SetCognitoEventsCommandOutput,
|
|
54
|
+
} from "./commands/SetCognitoEventsCommand";
|
|
55
|
+
import {
|
|
56
|
+
SetIdentityPoolConfigurationCommandInput,
|
|
57
|
+
SetIdentityPoolConfigurationCommandOutput,
|
|
58
|
+
} from "./commands/SetIdentityPoolConfigurationCommand";
|
|
59
|
+
import {
|
|
60
|
+
SubscribeToDatasetCommandInput,
|
|
61
|
+
SubscribeToDatasetCommandOutput,
|
|
62
|
+
} from "./commands/SubscribeToDatasetCommand";
|
|
63
|
+
import {
|
|
64
|
+
UnsubscribeFromDatasetCommandInput,
|
|
65
|
+
UnsubscribeFromDatasetCommandOutput,
|
|
66
|
+
} from "./commands/UnsubscribeFromDatasetCommand";
|
|
67
|
+
import {
|
|
68
|
+
UpdateRecordsCommandInput,
|
|
69
|
+
UpdateRecordsCommandOutput,
|
|
70
|
+
} from "./commands/UpdateRecordsCommand";
|
|
71
|
+
export declare class CognitoSync extends CognitoSyncClient {
|
|
72
|
+
bulkPublish(
|
|
73
|
+
args: BulkPublishCommandInput,
|
|
74
|
+
options?: __HttpHandlerOptions
|
|
75
|
+
): Promise<BulkPublishCommandOutput>;
|
|
76
|
+
bulkPublish(
|
|
77
|
+
args: BulkPublishCommandInput,
|
|
78
|
+
cb: (err: any, data?: BulkPublishCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
bulkPublish(
|
|
81
|
+
args: BulkPublishCommandInput,
|
|
82
|
+
options: __HttpHandlerOptions,
|
|
83
|
+
cb: (err: any, data?: BulkPublishCommandOutput) => void
|
|
84
|
+
): void;
|
|
85
|
+
deleteDataset(
|
|
86
|
+
args: DeleteDatasetCommandInput,
|
|
87
|
+
options?: __HttpHandlerOptions
|
|
88
|
+
): Promise<DeleteDatasetCommandOutput>;
|
|
89
|
+
deleteDataset(
|
|
90
|
+
args: DeleteDatasetCommandInput,
|
|
91
|
+
cb: (err: any, data?: DeleteDatasetCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
deleteDataset(
|
|
94
|
+
args: DeleteDatasetCommandInput,
|
|
95
|
+
options: __HttpHandlerOptions,
|
|
96
|
+
cb: (err: any, data?: DeleteDatasetCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
describeDataset(
|
|
99
|
+
args: DescribeDatasetCommandInput,
|
|
100
|
+
options?: __HttpHandlerOptions
|
|
101
|
+
): Promise<DescribeDatasetCommandOutput>;
|
|
102
|
+
describeDataset(
|
|
103
|
+
args: DescribeDatasetCommandInput,
|
|
104
|
+
cb: (err: any, data?: DescribeDatasetCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
describeDataset(
|
|
107
|
+
args: DescribeDatasetCommandInput,
|
|
108
|
+
options: __HttpHandlerOptions,
|
|
109
|
+
cb: (err: any, data?: DescribeDatasetCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
describeIdentityPoolUsage(
|
|
112
|
+
args: DescribeIdentityPoolUsageCommandInput,
|
|
113
|
+
options?: __HttpHandlerOptions
|
|
114
|
+
): Promise<DescribeIdentityPoolUsageCommandOutput>;
|
|
115
|
+
describeIdentityPoolUsage(
|
|
116
|
+
args: DescribeIdentityPoolUsageCommandInput,
|
|
117
|
+
cb: (err: any, data?: DescribeIdentityPoolUsageCommandOutput) => void
|
|
118
|
+
): void;
|
|
119
|
+
describeIdentityPoolUsage(
|
|
120
|
+
args: DescribeIdentityPoolUsageCommandInput,
|
|
121
|
+
options: __HttpHandlerOptions,
|
|
122
|
+
cb: (err: any, data?: DescribeIdentityPoolUsageCommandOutput) => void
|
|
123
|
+
): void;
|
|
124
|
+
describeIdentityUsage(
|
|
125
|
+
args: DescribeIdentityUsageCommandInput,
|
|
126
|
+
options?: __HttpHandlerOptions
|
|
127
|
+
): Promise<DescribeIdentityUsageCommandOutput>;
|
|
128
|
+
describeIdentityUsage(
|
|
129
|
+
args: DescribeIdentityUsageCommandInput,
|
|
130
|
+
cb: (err: any, data?: DescribeIdentityUsageCommandOutput) => void
|
|
131
|
+
): void;
|
|
132
|
+
describeIdentityUsage(
|
|
133
|
+
args: DescribeIdentityUsageCommandInput,
|
|
134
|
+
options: __HttpHandlerOptions,
|
|
135
|
+
cb: (err: any, data?: DescribeIdentityUsageCommandOutput) => void
|
|
136
|
+
): void;
|
|
137
|
+
getBulkPublishDetails(
|
|
138
|
+
args: GetBulkPublishDetailsCommandInput,
|
|
139
|
+
options?: __HttpHandlerOptions
|
|
140
|
+
): Promise<GetBulkPublishDetailsCommandOutput>;
|
|
141
|
+
getBulkPublishDetails(
|
|
142
|
+
args: GetBulkPublishDetailsCommandInput,
|
|
143
|
+
cb: (err: any, data?: GetBulkPublishDetailsCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
getBulkPublishDetails(
|
|
146
|
+
args: GetBulkPublishDetailsCommandInput,
|
|
147
|
+
options: __HttpHandlerOptions,
|
|
148
|
+
cb: (err: any, data?: GetBulkPublishDetailsCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
getCognitoEvents(
|
|
151
|
+
args: GetCognitoEventsCommandInput,
|
|
152
|
+
options?: __HttpHandlerOptions
|
|
153
|
+
): Promise<GetCognitoEventsCommandOutput>;
|
|
154
|
+
getCognitoEvents(
|
|
155
|
+
args: GetCognitoEventsCommandInput,
|
|
156
|
+
cb: (err: any, data?: GetCognitoEventsCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
getCognitoEvents(
|
|
159
|
+
args: GetCognitoEventsCommandInput,
|
|
160
|
+
options: __HttpHandlerOptions,
|
|
161
|
+
cb: (err: any, data?: GetCognitoEventsCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
getIdentityPoolConfiguration(
|
|
164
|
+
args: GetIdentityPoolConfigurationCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<GetIdentityPoolConfigurationCommandOutput>;
|
|
167
|
+
getIdentityPoolConfiguration(
|
|
168
|
+
args: GetIdentityPoolConfigurationCommandInput,
|
|
169
|
+
cb: (err: any, data?: GetIdentityPoolConfigurationCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
getIdentityPoolConfiguration(
|
|
172
|
+
args: GetIdentityPoolConfigurationCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: GetIdentityPoolConfigurationCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
listDatasets(
|
|
177
|
+
args: ListDatasetsCommandInput,
|
|
178
|
+
options?: __HttpHandlerOptions
|
|
179
|
+
): Promise<ListDatasetsCommandOutput>;
|
|
180
|
+
listDatasets(
|
|
181
|
+
args: ListDatasetsCommandInput,
|
|
182
|
+
cb: (err: any, data?: ListDatasetsCommandOutput) => void
|
|
183
|
+
): void;
|
|
184
|
+
listDatasets(
|
|
185
|
+
args: ListDatasetsCommandInput,
|
|
186
|
+
options: __HttpHandlerOptions,
|
|
187
|
+
cb: (err: any, data?: ListDatasetsCommandOutput) => void
|
|
188
|
+
): void;
|
|
189
|
+
listIdentityPoolUsage(
|
|
190
|
+
args: ListIdentityPoolUsageCommandInput,
|
|
191
|
+
options?: __HttpHandlerOptions
|
|
192
|
+
): Promise<ListIdentityPoolUsageCommandOutput>;
|
|
193
|
+
listIdentityPoolUsage(
|
|
194
|
+
args: ListIdentityPoolUsageCommandInput,
|
|
195
|
+
cb: (err: any, data?: ListIdentityPoolUsageCommandOutput) => void
|
|
196
|
+
): void;
|
|
197
|
+
listIdentityPoolUsage(
|
|
198
|
+
args: ListIdentityPoolUsageCommandInput,
|
|
199
|
+
options: __HttpHandlerOptions,
|
|
200
|
+
cb: (err: any, data?: ListIdentityPoolUsageCommandOutput) => void
|
|
201
|
+
): void;
|
|
202
|
+
listRecords(
|
|
203
|
+
args: ListRecordsCommandInput,
|
|
204
|
+
options?: __HttpHandlerOptions
|
|
205
|
+
): Promise<ListRecordsCommandOutput>;
|
|
206
|
+
listRecords(
|
|
207
|
+
args: ListRecordsCommandInput,
|
|
208
|
+
cb: (err: any, data?: ListRecordsCommandOutput) => void
|
|
209
|
+
): void;
|
|
210
|
+
listRecords(
|
|
211
|
+
args: ListRecordsCommandInput,
|
|
212
|
+
options: __HttpHandlerOptions,
|
|
213
|
+
cb: (err: any, data?: ListRecordsCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
registerDevice(
|
|
216
|
+
args: RegisterDeviceCommandInput,
|
|
217
|
+
options?: __HttpHandlerOptions
|
|
218
|
+
): Promise<RegisterDeviceCommandOutput>;
|
|
219
|
+
registerDevice(
|
|
220
|
+
args: RegisterDeviceCommandInput,
|
|
221
|
+
cb: (err: any, data?: RegisterDeviceCommandOutput) => void
|
|
222
|
+
): void;
|
|
223
|
+
registerDevice(
|
|
224
|
+
args: RegisterDeviceCommandInput,
|
|
225
|
+
options: __HttpHandlerOptions,
|
|
226
|
+
cb: (err: any, data?: RegisterDeviceCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
setCognitoEvents(
|
|
229
|
+
args: SetCognitoEventsCommandInput,
|
|
230
|
+
options?: __HttpHandlerOptions
|
|
231
|
+
): Promise<SetCognitoEventsCommandOutput>;
|
|
232
|
+
setCognitoEvents(
|
|
233
|
+
args: SetCognitoEventsCommandInput,
|
|
234
|
+
cb: (err: any, data?: SetCognitoEventsCommandOutput) => void
|
|
235
|
+
): void;
|
|
236
|
+
setCognitoEvents(
|
|
237
|
+
args: SetCognitoEventsCommandInput,
|
|
238
|
+
options: __HttpHandlerOptions,
|
|
239
|
+
cb: (err: any, data?: SetCognitoEventsCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
setIdentityPoolConfiguration(
|
|
242
|
+
args: SetIdentityPoolConfigurationCommandInput,
|
|
243
|
+
options?: __HttpHandlerOptions
|
|
244
|
+
): Promise<SetIdentityPoolConfigurationCommandOutput>;
|
|
245
|
+
setIdentityPoolConfiguration(
|
|
246
|
+
args: SetIdentityPoolConfigurationCommandInput,
|
|
247
|
+
cb: (err: any, data?: SetIdentityPoolConfigurationCommandOutput) => void
|
|
248
|
+
): void;
|
|
249
|
+
setIdentityPoolConfiguration(
|
|
250
|
+
args: SetIdentityPoolConfigurationCommandInput,
|
|
251
|
+
options: __HttpHandlerOptions,
|
|
252
|
+
cb: (err: any, data?: SetIdentityPoolConfigurationCommandOutput) => void
|
|
253
|
+
): void;
|
|
254
|
+
subscribeToDataset(
|
|
255
|
+
args: SubscribeToDatasetCommandInput,
|
|
256
|
+
options?: __HttpHandlerOptions
|
|
257
|
+
): Promise<SubscribeToDatasetCommandOutput>;
|
|
258
|
+
subscribeToDataset(
|
|
259
|
+
args: SubscribeToDatasetCommandInput,
|
|
260
|
+
cb: (err: any, data?: SubscribeToDatasetCommandOutput) => void
|
|
261
|
+
): void;
|
|
262
|
+
subscribeToDataset(
|
|
263
|
+
args: SubscribeToDatasetCommandInput,
|
|
264
|
+
options: __HttpHandlerOptions,
|
|
265
|
+
cb: (err: any, data?: SubscribeToDatasetCommandOutput) => void
|
|
266
|
+
): void;
|
|
267
|
+
unsubscribeFromDataset(
|
|
268
|
+
args: UnsubscribeFromDatasetCommandInput,
|
|
269
|
+
options?: __HttpHandlerOptions
|
|
270
|
+
): Promise<UnsubscribeFromDatasetCommandOutput>;
|
|
271
|
+
unsubscribeFromDataset(
|
|
272
|
+
args: UnsubscribeFromDatasetCommandInput,
|
|
273
|
+
cb: (err: any, data?: UnsubscribeFromDatasetCommandOutput) => void
|
|
274
|
+
): void;
|
|
275
|
+
unsubscribeFromDataset(
|
|
276
|
+
args: UnsubscribeFromDatasetCommandInput,
|
|
277
|
+
options: __HttpHandlerOptions,
|
|
278
|
+
cb: (err: any, data?: UnsubscribeFromDatasetCommandOutput) => void
|
|
279
|
+
): void;
|
|
280
|
+
updateRecords(
|
|
281
|
+
args: UpdateRecordsCommandInput,
|
|
282
|
+
options?: __HttpHandlerOptions
|
|
283
|
+
): Promise<UpdateRecordsCommandOutput>;
|
|
284
|
+
updateRecords(
|
|
285
|
+
args: UpdateRecordsCommandInput,
|
|
286
|
+
cb: (err: any, data?: UpdateRecordsCommandOutput) => void
|
|
287
|
+
): void;
|
|
288
|
+
updateRecords(
|
|
289
|
+
args: UpdateRecordsCommandInput,
|
|
290
|
+
options: __HttpHandlerOptions,
|
|
291
|
+
cb: (err: any, data?: UpdateRecordsCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
}
|