@aws-sdk/client-iot-wireless 3.45.0 → 3.46.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 (39) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +11 -1
  3. package/dist-cjs/IoTWireless.js +30 -0
  4. package/dist-cjs/commands/DeleteQueuedMessagesCommand.js +36 -0
  5. package/dist-cjs/commands/ListQueuedMessagesCommand.js +36 -0
  6. package/dist-cjs/commands/index.js +2 -0
  7. package/dist-cjs/models/models_0.js +41 -11
  8. package/dist-cjs/pagination/ListQueuedMessagesPaginator.js +35 -0
  9. package/dist-cjs/pagination/index.js +1 -0
  10. package/dist-cjs/protocols/Aws_restJson1.js +252 -4
  11. package/dist-cjs/runtimeConfig.js +0 -2
  12. package/dist-es/IoTWireless.js +30 -0
  13. package/dist-es/commands/DeleteQueuedMessagesCommand.js +39 -0
  14. package/dist-es/commands/ListQueuedMessagesCommand.js +39 -0
  15. package/dist-es/commands/index.js +2 -0
  16. package/dist-es/models/models_0.js +24 -4
  17. package/dist-es/pagination/ListQueuedMessagesPaginator.js +74 -0
  18. package/dist-es/pagination/index.js +1 -0
  19. package/dist-es/protocols/Aws_restJson1.js +277 -0
  20. package/dist-es/runtimeConfig.js +0 -2
  21. package/dist-types/IoTWireless.d.ts +25 -1
  22. package/dist-types/IoTWirelessClient.d.ts +15 -3
  23. package/dist-types/commands/DeleteQueuedMessagesCommand.d.ts +35 -0
  24. package/dist-types/commands/ListQueuedMessagesCommand.d.ts +35 -0
  25. package/dist-types/commands/index.d.ts +2 -0
  26. package/dist-types/models/models_0.d.ts +110 -15
  27. package/dist-types/pagination/ListQueuedMessagesPaginator.d.ts +4 -0
  28. package/dist-types/pagination/index.d.ts +1 -0
  29. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  30. package/dist-types/ts3.4/IoTWireless.d.ts +10 -0
  31. package/dist-types/ts3.4/IoTWirelessClient.d.ts +4 -2
  32. package/dist-types/ts3.4/commands/DeleteQueuedMessagesCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +66 -9
  36. package/dist-types/ts3.4/pagination/ListQueuedMessagesPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  39. package/package.json +36 -43
@@ -1317,6 +1317,34 @@ export declare namespace DeleteMulticastGroupResponse {
1317
1317
  */
1318
1318
  const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
1319
1319
  }
1320
+ export interface DeleteQueuedMessagesRequest {
1321
+ /**
1322
+ * <p>Id of a given wireless device which messages will be deleted </p>
1323
+ */
1324
+ Id: string | undefined;
1325
+ /**
1326
+ * <p>if messageID=="*", the queue for a particular wireless deviceId will be purged, otherwise, the specific message with messageId will be deleted </p>
1327
+ */
1328
+ MessageId: string | undefined;
1329
+ /**
1330
+ * <p>The wireless device type, it is either Sidewalk or LoRaWAN. </p>
1331
+ */
1332
+ WirelessDeviceType?: WirelessDeviceType | string;
1333
+ }
1334
+ export declare namespace DeleteQueuedMessagesRequest {
1335
+ /**
1336
+ * @internal
1337
+ */
1338
+ const filterSensitiveLog: (obj: DeleteQueuedMessagesRequest) => any;
1339
+ }
1340
+ export interface DeleteQueuedMessagesResponse {
1341
+ }
1342
+ export declare namespace DeleteQueuedMessagesResponse {
1343
+ /**
1344
+ * @internal
1345
+ */
1346
+ const filterSensitiveLog: (obj: DeleteQueuedMessagesResponse) => any;
1347
+ }
1320
1348
  export interface DeleteServiceProfileRequest {
1321
1349
  /**
1322
1350
  * <p>The ID of the resource to delete.</p>
@@ -1676,6 +1704,48 @@ export declare namespace DisassociateWirelessGatewayFromThingResponse {
1676
1704
  */
1677
1705
  const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingResponse) => any;
1678
1706
  }
1707
+ /**
1708
+ * <p>LoRaWAN router info.</p>
1709
+ */
1710
+ export interface LoRaWANSendDataToDevice {
1711
+ /**
1712
+ * <p>The Fport value.</p>
1713
+ */
1714
+ FPort?: number;
1715
+ }
1716
+ export declare namespace LoRaWANSendDataToDevice {
1717
+ /**
1718
+ * @internal
1719
+ */
1720
+ const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
1721
+ }
1722
+ /**
1723
+ * <p>The message in downlink queue.</p>
1724
+ */
1725
+ export interface DownlinkQueueMessage {
1726
+ /**
1727
+ * <p> The messageId allocated by IoT Wireless for tracing purpose</p>
1728
+ */
1729
+ MessageId?: string;
1730
+ /**
1731
+ * <p>The transmit mode to use to send data to the wireless device. Can be: <code>0</code> for UM (unacknowledge mode) or <code>1</code> for AM (acknowledge mode).</p>
1732
+ */
1733
+ TransmitMode?: number;
1734
+ /**
1735
+ * <p>The timestamp that Iot Wireless received the message.</p>
1736
+ */
1737
+ ReceivedAt?: string;
1738
+ /**
1739
+ * <p>LoRaWAN router info.</p>
1740
+ */
1741
+ LoRaWAN?: LoRaWANSendDataToDevice;
1742
+ }
1743
+ export declare namespace DownlinkQueueMessage {
1744
+ /**
1745
+ * @internal
1746
+ */
1747
+ const filterSensitiveLog: (obj: DownlinkQueueMessage) => any;
1748
+ }
1679
1749
  export declare enum Event {
1680
1750
  ACK = "ack",
1681
1751
  DISCOVERED = "discovered",
@@ -3181,6 +3251,46 @@ export declare namespace ListPartnerAccountsResponse {
3181
3251
  */
3182
3252
  const filterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
3183
3253
  }
3254
+ export interface ListQueuedMessagesRequest {
3255
+ /**
3256
+ * <p>Id of a given wireless device which the downlink packets are targeted </p>
3257
+ */
3258
+ Id: string | undefined;
3259
+ /**
3260
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
3261
+ */
3262
+ NextToken?: string;
3263
+ /**
3264
+ * <p>The maximum number of results to return in this operation.</p>
3265
+ */
3266
+ MaxResults?: number;
3267
+ /**
3268
+ * <p>The wireless device type, it is either Sidewalk or LoRaWAN.</p>
3269
+ */
3270
+ WirelessDeviceType?: WirelessDeviceType | string;
3271
+ }
3272
+ export declare namespace ListQueuedMessagesRequest {
3273
+ /**
3274
+ * @internal
3275
+ */
3276
+ const filterSensitiveLog: (obj: ListQueuedMessagesRequest) => any;
3277
+ }
3278
+ export interface ListQueuedMessagesResponse {
3279
+ /**
3280
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
3281
+ */
3282
+ NextToken?: string;
3283
+ /**
3284
+ * <p>The messages in downlink queue.</p>
3285
+ */
3286
+ DownlinkQueueMessagesList?: DownlinkQueueMessage[];
3287
+ }
3288
+ export declare namespace ListQueuedMessagesResponse {
3289
+ /**
3290
+ * @internal
3291
+ */
3292
+ const filterSensitiveLog: (obj: ListQueuedMessagesResponse) => any;
3293
+ }
3184
3294
  export interface ListServiceProfilesRequest {
3185
3295
  /**
3186
3296
  * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous response; otherwise <b>null</b> to receive the first set of results.</p>
@@ -3693,21 +3803,6 @@ export declare namespace SendDataToMulticastGroupResponse {
3693
3803
  */
3694
3804
  const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
3695
3805
  }
3696
- /**
3697
- * <p>LoRaWAN router info.</p>
3698
- */
3699
- export interface LoRaWANSendDataToDevice {
3700
- /**
3701
- * <p>The Fport value.</p>
3702
- */
3703
- FPort?: number;
3704
- }
3705
- export declare namespace LoRaWANSendDataToDevice {
3706
- /**
3707
- * @internal
3708
- */
3709
- const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
3710
- }
3711
3806
  export declare enum MessageType {
3712
3807
  CUSTOM_COMMAND_ID_GET = "CUSTOM_COMMAND_ID_GET",
3713
3808
  CUSTOM_COMMAND_ID_NOTIFY = "CUSTOM_COMMAND_ID_NOTIFY",
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
3
+ import { IoTWirelessPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListQueuedMessages(config: IoTWirelessPaginationConfiguration, input: ListQueuedMessagesCommandInput, ...additionalArguments: any): Paginator<ListQueuedMessagesCommandOutput>;
@@ -4,6 +4,7 @@ export * from "./ListDeviceProfilesPaginator";
4
4
  export * from "./ListFuotaTasksPaginator";
5
5
  export * from "./ListMulticastGroupsByFuotaTaskPaginator";
6
6
  export * from "./ListMulticastGroupsPaginator";
7
+ export * from "./ListQueuedMessagesPaginator";
7
8
  export * from "./ListServiceProfilesPaginator";
8
9
  export * from "./ListWirelessDevicesPaginator";
9
10
  export * from "./ListWirelessGatewaysPaginator";
@@ -21,6 +21,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
21
21
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "../commands/DeleteDeviceProfileCommand";
22
22
  import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "../commands/DeleteFuotaTaskCommand";
23
23
  import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "../commands/DeleteMulticastGroupCommand";
24
+ import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "../commands/DeleteQueuedMessagesCommand";
24
25
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "../commands/DeleteServiceProfileCommand";
25
26
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "../commands/DeleteWirelessDeviceCommand";
26
27
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "../commands/DeleteWirelessGatewayCommand";
@@ -59,6 +60,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../comm
59
60
  import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
60
61
  import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
61
62
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "../commands/ListPartnerAccountsCommand";
63
+ import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
62
64
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "../commands/ListServiceProfilesCommand";
63
65
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
64
66
  import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "../commands/ListWirelessDevicesCommand";
@@ -106,6 +108,7 @@ export declare const serializeAws_restJson1DeleteDestinationCommand: (input: Del
106
108
  export declare const serializeAws_restJson1DeleteDeviceProfileCommand: (input: DeleteDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
109
  export declare const serializeAws_restJson1DeleteFuotaTaskCommand: (input: DeleteFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
110
  export declare const serializeAws_restJson1DeleteMulticastGroupCommand: (input: DeleteMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
+ export declare const serializeAws_restJson1DeleteQueuedMessagesCommand: (input: DeleteQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
112
  export declare const serializeAws_restJson1DeleteServiceProfileCommand: (input: DeleteServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
113
  export declare const serializeAws_restJson1DeleteWirelessDeviceCommand: (input: DeleteWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
114
  export declare const serializeAws_restJson1DeleteWirelessGatewayCommand: (input: DeleteWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -144,6 +147,7 @@ export declare const serializeAws_restJson1ListFuotaTasksCommand: (input: ListFu
144
147
  export declare const serializeAws_restJson1ListMulticastGroupsCommand: (input: ListMulticastGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
148
  export declare const serializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (input: ListMulticastGroupsByFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
149
  export declare const serializeAws_restJson1ListPartnerAccountsCommand: (input: ListPartnerAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1ListQueuedMessagesCommand: (input: ListQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
147
151
  export declare const serializeAws_restJson1ListServiceProfilesCommand: (input: ListServiceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
148
152
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
149
153
  export declare const serializeAws_restJson1ListWirelessDevicesCommand: (input: ListWirelessDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -191,6 +195,7 @@ export declare const deserializeAws_restJson1DeleteDestinationCommand: (output:
191
195
  export declare const deserializeAws_restJson1DeleteDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceProfileCommandOutput>;
192
196
  export declare const deserializeAws_restJson1DeleteFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFuotaTaskCommandOutput>;
193
197
  export declare const deserializeAws_restJson1DeleteMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMulticastGroupCommandOutput>;
198
+ export declare const deserializeAws_restJson1DeleteQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueuedMessagesCommandOutput>;
194
199
  export declare const deserializeAws_restJson1DeleteServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceProfileCommandOutput>;
195
200
  export declare const deserializeAws_restJson1DeleteWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessDeviceCommandOutput>;
196
201
  export declare const deserializeAws_restJson1DeleteWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayCommandOutput>;
@@ -229,6 +234,7 @@ export declare const deserializeAws_restJson1ListFuotaTasksCommand: (output: __H
229
234
  export declare const deserializeAws_restJson1ListMulticastGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsCommandOutput>;
230
235
  export declare const deserializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
231
236
  export declare const deserializeAws_restJson1ListPartnerAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPartnerAccountsCommandOutput>;
237
+ export declare const deserializeAws_restJson1ListQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuedMessagesCommandOutput>;
232
238
  export declare const deserializeAws_restJson1ListServiceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceProfilesCommandOutput>;
233
239
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
234
240
  export declare const deserializeAws_restJson1ListWirelessDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWirelessDevicesCommandOutput>;
@@ -20,6 +20,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
20
20
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
21
21
  import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
22
22
  import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
23
+ import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "./commands/DeleteQueuedMessagesCommand";
23
24
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
24
25
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
25
26
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
@@ -58,6 +59,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
58
59
  import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
59
60
  import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
60
61
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
62
+ import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
61
63
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
62
64
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
63
65
  import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
@@ -172,6 +174,10 @@ export declare class IoTWireless extends IoTWirelessClient {
172
174
  deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
173
175
  deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
174
176
 
177
+ deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueuedMessagesCommandOutput>;
178
+ deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
179
+ deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
180
+
175
181
  deleteServiceProfile(args: DeleteServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceProfileCommandOutput>;
176
182
  deleteServiceProfile(args: DeleteServiceProfileCommandInput, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
177
183
  deleteServiceProfile(args: DeleteServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
@@ -324,6 +330,10 @@ export declare class IoTWireless extends IoTWirelessClient {
324
330
  listPartnerAccounts(args: ListPartnerAccountsCommandInput, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
325
331
  listPartnerAccounts(args: ListPartnerAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
326
332
 
333
+ listQueuedMessages(args: ListQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuedMessagesCommandOutput>;
334
+ listQueuedMessages(args: ListQueuedMessagesCommandInput, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
335
+ listQueuedMessages(args: ListQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
336
+
327
337
  listServiceProfiles(args: ListServiceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceProfilesCommandOutput>;
328
338
  listServiceProfiles(args: ListServiceProfilesCommandInput, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
329
339
  listServiceProfiles(args: ListServiceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
@@ -27,6 +27,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
27
27
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
28
28
  import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
29
29
  import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
30
+ import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "./commands/DeleteQueuedMessagesCommand";
30
31
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
31
32
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
32
33
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
@@ -65,6 +66,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
65
66
  import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
66
67
  import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
67
68
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
69
+ import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
68
70
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
69
71
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
70
72
  import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
@@ -91,8 +93,8 @@ import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } f
91
93
  import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
92
94
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
93
95
  import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
94
- export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
95
- export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
96
+ export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteQueuedMessagesCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListQueuedMessagesCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
97
+ export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteQueuedMessagesCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListQueuedMessagesCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
96
98
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
97
99
 
98
100
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { DeleteQueuedMessagesRequest, DeleteQueuedMessagesResponse } from "../models/models_0";
5
+ export interface DeleteQueuedMessagesCommandInput extends DeleteQueuedMessagesRequest {
6
+ }
7
+ export interface DeleteQueuedMessagesCommandOutput extends DeleteQueuedMessagesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteQueuedMessagesCommand extends $Command<DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: DeleteQueuedMessagesCommandInput;
12
+ constructor(input: DeleteQueuedMessagesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
4
+ import { ListQueuedMessagesRequest, ListQueuedMessagesResponse } from "../models/models_0";
5
+ export interface ListQueuedMessagesCommandInput extends ListQueuedMessagesRequest {
6
+ }
7
+ export interface ListQueuedMessagesCommandOutput extends ListQueuedMessagesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListQueuedMessagesCommand extends $Command<ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput, IoTWirelessClientResolvedConfig> {
11
+ readonly input: ListQueuedMessagesCommandInput;
12
+ constructor(input: ListQueuedMessagesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -19,6 +19,7 @@ export * from "./DeleteDestinationCommand";
19
19
  export * from "./DeleteDeviceProfileCommand";
20
20
  export * from "./DeleteFuotaTaskCommand";
21
21
  export * from "./DeleteMulticastGroupCommand";
22
+ export * from "./DeleteQueuedMessagesCommand";
22
23
  export * from "./DeleteServiceProfileCommand";
23
24
  export * from "./DeleteWirelessDeviceCommand";
24
25
  export * from "./DeleteWirelessGatewayCommand";
@@ -57,6 +58,7 @@ export * from "./ListFuotaTasksCommand";
57
58
  export * from "./ListMulticastGroupsByFuotaTaskCommand";
58
59
  export * from "./ListMulticastGroupsCommand";
59
60
  export * from "./ListPartnerAccountsCommand";
61
+ export * from "./ListQueuedMessagesCommand";
60
62
  export * from "./ListServiceProfilesCommand";
61
63
  export * from "./ListTagsForResourceCommand";
62
64
  export * from "./ListWirelessDevicesCommand";
@@ -807,6 +807,24 @@ export declare namespace DeleteMulticastGroupResponse {
807
807
 
808
808
  const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
809
809
  }
810
+ export interface DeleteQueuedMessagesRequest {
811
+
812
+ Id: string | undefined;
813
+
814
+ MessageId: string | undefined;
815
+
816
+ WirelessDeviceType?: WirelessDeviceType | string;
817
+ }
818
+ export declare namespace DeleteQueuedMessagesRequest {
819
+
820
+ const filterSensitiveLog: (obj: DeleteQueuedMessagesRequest) => any;
821
+ }
822
+ export interface DeleteQueuedMessagesResponse {
823
+ }
824
+ export declare namespace DeleteQueuedMessagesResponse {
825
+
826
+ const filterSensitiveLog: (obj: DeleteQueuedMessagesResponse) => any;
827
+ }
810
828
  export interface DeleteServiceProfileRequest {
811
829
 
812
830
  Id: string | undefined;
@@ -1046,6 +1064,30 @@ export declare namespace DisassociateWirelessGatewayFromThingResponse {
1046
1064
 
1047
1065
  const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingResponse) => any;
1048
1066
  }
1067
+
1068
+ export interface LoRaWANSendDataToDevice {
1069
+
1070
+ FPort?: number;
1071
+ }
1072
+ export declare namespace LoRaWANSendDataToDevice {
1073
+
1074
+ const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
1075
+ }
1076
+
1077
+ export interface DownlinkQueueMessage {
1078
+
1079
+ MessageId?: string;
1080
+
1081
+ TransmitMode?: number;
1082
+
1083
+ ReceivedAt?: string;
1084
+
1085
+ LoRaWAN?: LoRaWANSendDataToDevice;
1086
+ }
1087
+ export declare namespace DownlinkQueueMessage {
1088
+
1089
+ const filterSensitiveLog: (obj: DownlinkQueueMessage) => any;
1090
+ }
1049
1091
  export declare enum Event {
1050
1092
  ACK = "ack",
1051
1093
  DISCOVERED = "discovered",
@@ -1964,6 +2006,30 @@ export declare namespace ListPartnerAccountsResponse {
1964
2006
 
1965
2007
  const filterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
1966
2008
  }
2009
+ export interface ListQueuedMessagesRequest {
2010
+
2011
+ Id: string | undefined;
2012
+
2013
+ NextToken?: string;
2014
+
2015
+ MaxResults?: number;
2016
+
2017
+ WirelessDeviceType?: WirelessDeviceType | string;
2018
+ }
2019
+ export declare namespace ListQueuedMessagesRequest {
2020
+
2021
+ const filterSensitiveLog: (obj: ListQueuedMessagesRequest) => any;
2022
+ }
2023
+ export interface ListQueuedMessagesResponse {
2024
+
2025
+ NextToken?: string;
2026
+
2027
+ DownlinkQueueMessagesList?: DownlinkQueueMessage[];
2028
+ }
2029
+ export declare namespace ListQueuedMessagesResponse {
2030
+
2031
+ const filterSensitiveLog: (obj: ListQueuedMessagesResponse) => any;
2032
+ }
1967
2033
  export interface ListServiceProfilesRequest {
1968
2034
 
1969
2035
  NextToken?: string;
@@ -2270,15 +2336,6 @@ export declare namespace SendDataToMulticastGroupResponse {
2270
2336
 
2271
2337
  const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
2272
2338
  }
2273
-
2274
- export interface LoRaWANSendDataToDevice {
2275
-
2276
- FPort?: number;
2277
- }
2278
- export declare namespace LoRaWANSendDataToDevice {
2279
-
2280
- const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
2281
- }
2282
2339
  export declare enum MessageType {
2283
2340
  CUSTOM_COMMAND_ID_GET = "CUSTOM_COMMAND_ID_GET",
2284
2341
  CUSTOM_COMMAND_ID_NOTIFY = "CUSTOM_COMMAND_ID_NOTIFY",
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
3
+ import { IoTWirelessPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListQueuedMessages(config: IoTWirelessPaginationConfiguration, input: ListQueuedMessagesCommandInput, ...additionalArguments: any): Paginator<ListQueuedMessagesCommandOutput>;
@@ -4,6 +4,7 @@ export * from "./ListDeviceProfilesPaginator";
4
4
  export * from "./ListFuotaTasksPaginator";
5
5
  export * from "./ListMulticastGroupsByFuotaTaskPaginator";
6
6
  export * from "./ListMulticastGroupsPaginator";
7
+ export * from "./ListQueuedMessagesPaginator";
7
8
  export * from "./ListServiceProfilesPaginator";
8
9
  export * from "./ListWirelessDevicesPaginator";
9
10
  export * from "./ListWirelessGatewaysPaginator";
@@ -21,6 +21,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
21
21
  import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "../commands/DeleteDeviceProfileCommand";
22
22
  import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "../commands/DeleteFuotaTaskCommand";
23
23
  import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "../commands/DeleteMulticastGroupCommand";
24
+ import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "../commands/DeleteQueuedMessagesCommand";
24
25
  import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "../commands/DeleteServiceProfileCommand";
25
26
  import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "../commands/DeleteWirelessDeviceCommand";
26
27
  import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "../commands/DeleteWirelessGatewayCommand";
@@ -59,6 +60,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../comm
59
60
  import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
60
61
  import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
61
62
  import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "../commands/ListPartnerAccountsCommand";
63
+ import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
62
64
  import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "../commands/ListServiceProfilesCommand";
63
65
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
64
66
  import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "../commands/ListWirelessDevicesCommand";
@@ -106,6 +108,7 @@ export declare const serializeAws_restJson1DeleteDestinationCommand: (input: Del
106
108
  export declare const serializeAws_restJson1DeleteDeviceProfileCommand: (input: DeleteDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
107
109
  export declare const serializeAws_restJson1DeleteFuotaTaskCommand: (input: DeleteFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
110
  export declare const serializeAws_restJson1DeleteMulticastGroupCommand: (input: DeleteMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
+ export declare const serializeAws_restJson1DeleteQueuedMessagesCommand: (input: DeleteQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
112
  export declare const serializeAws_restJson1DeleteServiceProfileCommand: (input: DeleteServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
113
  export declare const serializeAws_restJson1DeleteWirelessDeviceCommand: (input: DeleteWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
111
114
  export declare const serializeAws_restJson1DeleteWirelessGatewayCommand: (input: DeleteWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -144,6 +147,7 @@ export declare const serializeAws_restJson1ListFuotaTasksCommand: (input: ListFu
144
147
  export declare const serializeAws_restJson1ListMulticastGroupsCommand: (input: ListMulticastGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
148
  export declare const serializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (input: ListMulticastGroupsByFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
149
  export declare const serializeAws_restJson1ListPartnerAccountsCommand: (input: ListPartnerAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1ListQueuedMessagesCommand: (input: ListQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
147
151
  export declare const serializeAws_restJson1ListServiceProfilesCommand: (input: ListServiceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
148
152
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
149
153
  export declare const serializeAws_restJson1ListWirelessDevicesCommand: (input: ListWirelessDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -191,6 +195,7 @@ export declare const deserializeAws_restJson1DeleteDestinationCommand: (output:
191
195
  export declare const deserializeAws_restJson1DeleteDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceProfileCommandOutput>;
192
196
  export declare const deserializeAws_restJson1DeleteFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFuotaTaskCommandOutput>;
193
197
  export declare const deserializeAws_restJson1DeleteMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMulticastGroupCommandOutput>;
198
+ export declare const deserializeAws_restJson1DeleteQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueuedMessagesCommandOutput>;
194
199
  export declare const deserializeAws_restJson1DeleteServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceProfileCommandOutput>;
195
200
  export declare const deserializeAws_restJson1DeleteWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessDeviceCommandOutput>;
196
201
  export declare const deserializeAws_restJson1DeleteWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayCommandOutput>;
@@ -229,6 +234,7 @@ export declare const deserializeAws_restJson1ListFuotaTasksCommand: (output: __H
229
234
  export declare const deserializeAws_restJson1ListMulticastGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsCommandOutput>;
230
235
  export declare const deserializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
231
236
  export declare const deserializeAws_restJson1ListPartnerAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPartnerAccountsCommandOutput>;
237
+ export declare const deserializeAws_restJson1ListQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuedMessagesCommandOutput>;
232
238
  export declare const deserializeAws_restJson1ListServiceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceProfilesCommandOutput>;
233
239
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
234
240
  export declare const deserializeAws_restJson1ListWirelessDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWirelessDevicesCommandOutput>;