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