@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.
Files changed (32) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CognitoSync.d.ts +293 -90
  3. package/dist-types/ts3.4/CognitoSyncClient.d.ts +206 -90
  4. package/dist-types/ts3.4/commands/BulkPublishCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DescribeIdentityPoolUsageCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DescribeIdentityUsageCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/GetBulkPublishDetailsCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/GetCognitoEventsCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/GetIdentityPoolConfigurationCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/ListIdentityPoolUsageCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListRecordsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/RegisterDeviceCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/SetCognitoEventsCommand.d.ts +30 -17
  17. package/dist-types/ts3.4/commands/SetIdentityPoolConfigurationCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/SubscribeToDatasetCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/UnsubscribeFromDatasetCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/UpdateRecordsCommand.d.ts +35 -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 +7 -6
  25. package/dist-types/ts3.4/models/index.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +415 -535
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -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.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 { 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
+ 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
+ }