aws-sdk-iotwireless 1.27.0 → 1.29.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.
@@ -12,18 +12,6 @@ module Aws::IoTWireless
12
12
 
13
13
  # ABP device object for LoRaWAN specification v1.0.x
14
14
  #
15
- # @note When making an API call, you may pass AbpV1_0_x
16
- # data as a hash:
17
- #
18
- # {
19
- # dev_addr: "DevAddr",
20
- # session_keys: {
21
- # nwk_s_key: "NwkSKey",
22
- # app_s_key: "AppSKey",
23
- # },
24
- # f_cnt_start: 1,
25
- # }
26
- #
27
15
  # @!attribute [rw] dev_addr
28
16
  # The DevAddr value.
29
17
  # @return [String]
@@ -46,20 +34,6 @@ module Aws::IoTWireless
46
34
 
47
35
  # ABP device object for LoRaWAN specification v1.1
48
36
  #
49
- # @note When making an API call, you may pass AbpV1_1
50
- # data as a hash:
51
- #
52
- # {
53
- # dev_addr: "DevAddr",
54
- # session_keys: {
55
- # f_nwk_s_int_key: "FNwkSIntKey",
56
- # s_nwk_s_int_key: "SNwkSIntKey",
57
- # nwk_s_enc_key: "NwkSEncKey",
58
- # app_s_key: "AppSKey",
59
- # },
60
- # f_cnt_start: 1,
61
- # }
62
- #
63
37
  # @!attribute [rw] dev_addr
64
38
  # The DevAddr value.
65
39
  # @return [String]
@@ -98,11 +72,15 @@ module Aws::IoTWireless
98
72
  # computed by solver.
99
73
  #
100
74
  # @!attribute [rw] horizontal_accuracy
101
- # The horizontal accuracy of the estimated position in meters.
75
+ # The horizontal accuracy of the estimated position, which is the
76
+ # difference between the estimated location and the actual device
77
+ # location.
102
78
  # @return [Float]
103
79
  #
104
80
  # @!attribute [rw] vertical_accuracy
105
- # The vertical accuracy of the estimated position in meters.
81
+ # The vertical accuracy of the estimated position, which is the
82
+ # difference between the estimated altitude and actual device latitude
83
+ # in meters.
106
84
  # @return [Float]
107
85
  #
108
86
  class Accuracy < Struct.new(
@@ -112,23 +90,32 @@ module Aws::IoTWireless
112
90
  include Aws::Structure
113
91
  end
114
92
 
115
- # @note When making an API call, you may pass AssociateAwsAccountWithPartnerAccountRequest
116
- # data as a hash:
93
+ # LoRaWAN application configuration, which can be used to perform
94
+ # geolocation.
95
+ #
96
+ # @!attribute [rw] f_port
97
+ # The Fport value.
98
+ # @return [Integer]
117
99
  #
118
- # {
119
- # sidewalk: { # required
120
- # amazon_id: "AmazonId",
121
- # app_server_private_key: "AppServerPrivateKey",
122
- # },
123
- # client_request_token: "ClientRequestToken",
124
- # tags: [
125
- # {
126
- # key: "TagKey", # required
127
- # value: "TagValue", # required
128
- # },
129
- # ],
130
- # }
100
+ # @!attribute [rw] type
101
+ # Application type, which can be specified to obtain real-time
102
+ # position information of your LoRaWAN device.
103
+ # @return [String]
104
+ #
105
+ # @!attribute [rw] destination_name
106
+ # The name of the position data destination that describes the AWS IoT
107
+ # rule that processes the device's position data for use by AWS IoT
108
+ # Core for LoRaWAN.
109
+ # @return [String]
131
110
  #
111
+ class ApplicationConfig < Struct.new(
112
+ :f_port,
113
+ :type,
114
+ :destination_name)
115
+ SENSITIVE = []
116
+ include Aws::Structure
117
+ end
118
+
132
119
  # @!attribute [rw] sidewalk
133
120
  # The Sidewalk account credentials.
134
121
  # @return [Types::SidewalkAccountInfo]
@@ -171,14 +158,6 @@ module Aws::IoTWireless
171
158
  include Aws::Structure
172
159
  end
173
160
 
174
- # @note When making an API call, you may pass AssociateMulticastGroupWithFuotaTaskRequest
175
- # data as a hash:
176
- #
177
- # {
178
- # id: "FuotaTaskId", # required
179
- # multicast_group_id: "MulticastGroupId", # required
180
- # }
181
- #
182
161
  # @!attribute [rw] id
183
162
  # The ID of a FUOTA task.
184
163
  # @return [String]
@@ -196,14 +175,6 @@ module Aws::IoTWireless
196
175
 
197
176
  class AssociateMulticastGroupWithFuotaTaskResponse < Aws::EmptyStructure; end
198
177
 
199
- # @note When making an API call, you may pass AssociateWirelessDeviceWithFuotaTaskRequest
200
- # data as a hash:
201
- #
202
- # {
203
- # id: "FuotaTaskId", # required
204
- # wireless_device_id: "WirelessDeviceId", # required
205
- # }
206
- #
207
178
  # @!attribute [rw] id
208
179
  # The ID of a FUOTA task.
209
180
  # @return [String]
@@ -221,14 +192,6 @@ module Aws::IoTWireless
221
192
 
222
193
  class AssociateWirelessDeviceWithFuotaTaskResponse < Aws::EmptyStructure; end
223
194
 
224
- # @note When making an API call, you may pass AssociateWirelessDeviceWithMulticastGroupRequest
225
- # data as a hash:
226
- #
227
- # {
228
- # id: "MulticastGroupId", # required
229
- # wireless_device_id: "WirelessDeviceId", # required
230
- # }
231
- #
232
195
  # @!attribute [rw] id
233
196
  # The ID of the multicast group.
234
197
  # @return [String]
@@ -246,14 +209,6 @@ module Aws::IoTWireless
246
209
 
247
210
  class AssociateWirelessDeviceWithMulticastGroupResponse < Aws::EmptyStructure; end
248
211
 
249
- # @note When making an API call, you may pass AssociateWirelessDeviceWithThingRequest
250
- # data as a hash:
251
- #
252
- # {
253
- # id: "WirelessDeviceId", # required
254
- # thing_arn: "ThingArn", # required
255
- # }
256
- #
257
212
  # @!attribute [rw] id
258
213
  # The ID of the resource to update.
259
214
  # @return [String]
@@ -271,14 +226,6 @@ module Aws::IoTWireless
271
226
 
272
227
  class AssociateWirelessDeviceWithThingResponse < Aws::EmptyStructure; end
273
228
 
274
- # @note When making an API call, you may pass AssociateWirelessGatewayWithCertificateRequest
275
- # data as a hash:
276
- #
277
- # {
278
- # id: "WirelessGatewayId", # required
279
- # iot_certificate_id: "IotCertificateId", # required
280
- # }
281
- #
282
229
  # @!attribute [rw] id
283
230
  # The ID of the resource to update.
284
231
  # @return [String]
@@ -304,14 +251,6 @@ module Aws::IoTWireless
304
251
  include Aws::Structure
305
252
  end
306
253
 
307
- # @note When making an API call, you may pass AssociateWirelessGatewayWithThingRequest
308
- # data as a hash:
309
- #
310
- # {
311
- # id: "WirelessGatewayId", # required
312
- # thing_arn: "ThingArn", # required
313
- # }
314
- #
315
254
  # @!attribute [rw] id
316
255
  # The ID of the resource to update.
317
256
  # @return [String]
@@ -331,14 +270,6 @@ module Aws::IoTWireless
331
270
 
332
271
  # Beaconing parameters for configuring the wireless gateways.
333
272
  #
334
- # @note When making an API call, you may pass Beaconing
335
- # data as a hash:
336
- #
337
- # {
338
- # data_rate: 1,
339
- # frequencies: [1],
340
- # }
341
- #
342
273
  # @!attribute [rw] data_rate
343
274
  # The data rate for gateways that are sending the beacons.
344
275
  # @return [Integer]
@@ -354,13 +285,6 @@ module Aws::IoTWireless
354
285
  include Aws::Structure
355
286
  end
356
287
 
357
- # @note When making an API call, you may pass CancelMulticastGroupSessionRequest
358
- # data as a hash:
359
- #
360
- # {
361
- # id: "MulticastGroupId", # required
362
- # }
363
- #
364
288
  # @!attribute [rw] id
365
289
  # The ID of the multicast group.
366
290
  # @return [String]
@@ -373,6 +297,139 @@ module Aws::IoTWireless
373
297
 
374
298
  class CancelMulticastGroupSessionResponse < Aws::EmptyStructure; end
375
299
 
300
+ # CDMA local ID information, which corresponds to the local
301
+ # identification parameters of a CDMA cell.
302
+ #
303
+ # @!attribute [rw] pn_offset
304
+ # Pseudo-noise offset, which is a characteristic of the signal from a
305
+ # cell on a radio tower.
306
+ # @return [Integer]
307
+ #
308
+ # @!attribute [rw] cdma_channel
309
+ # CDMA channel information.
310
+ # @return [Integer]
311
+ #
312
+ class CdmaLocalId < Struct.new(
313
+ :pn_offset,
314
+ :cdma_channel)
315
+ SENSITIVE = []
316
+ include Aws::Structure
317
+ end
318
+
319
+ # CDMA object for network measurement reports.
320
+ #
321
+ # @!attribute [rw] pn_offset
322
+ # Pseudo-noise offset, which is a characteristic of the signal from a
323
+ # cell on a radio tower.
324
+ # @return [Integer]
325
+ #
326
+ # @!attribute [rw] cdma_channel
327
+ # CDMA channel information.
328
+ # @return [Integer]
329
+ #
330
+ # @!attribute [rw] pilot_power
331
+ # Transmit power level of the pilot signal, measured in dBm
332
+ # (decibel-milliwatts).
333
+ # @return [Integer]
334
+ #
335
+ # @!attribute [rw] base_station_id
336
+ # CDMA base station ID (BSID).
337
+ # @return [Integer]
338
+ #
339
+ class CdmaNmrObj < Struct.new(
340
+ :pn_offset,
341
+ :cdma_channel,
342
+ :pilot_power,
343
+ :base_station_id)
344
+ SENSITIVE = []
345
+ include Aws::Structure
346
+ end
347
+
348
+ # CDMA (Code-division multiple access) object.
349
+ #
350
+ # @!attribute [rw] system_id
351
+ # CDMA system ID (SID).
352
+ # @return [Integer]
353
+ #
354
+ # @!attribute [rw] network_id
355
+ # CDMA network ID (NID).
356
+ # @return [Integer]
357
+ #
358
+ # @!attribute [rw] base_station_id
359
+ # CDMA base station ID (BSID).
360
+ # @return [Integer]
361
+ #
362
+ # @!attribute [rw] registration_zone
363
+ # CDMA registration zone (RZ).
364
+ # @return [Integer]
365
+ #
366
+ # @!attribute [rw] cdma_local_id
367
+ # CDMA local identification (local ID) parameters.
368
+ # @return [Types::CdmaLocalId]
369
+ #
370
+ # @!attribute [rw] pilot_power
371
+ # Transmit power level of the pilot signal, measured in dBm
372
+ # (decibel-milliwatts).
373
+ # @return [Integer]
374
+ #
375
+ # @!attribute [rw] base_lat
376
+ # CDMA base station latitude in degrees.
377
+ # @return [Float]
378
+ #
379
+ # @!attribute [rw] base_lng
380
+ # CDMA base station longtitude in degrees.
381
+ # @return [Float]
382
+ #
383
+ # @!attribute [rw] cdma_nmr
384
+ # CDMA network measurement reports.
385
+ # @return [Array<Types::CdmaNmrObj>]
386
+ #
387
+ class CdmaObj < Struct.new(
388
+ :system_id,
389
+ :network_id,
390
+ :base_station_id,
391
+ :registration_zone,
392
+ :cdma_local_id,
393
+ :pilot_power,
394
+ :base_lat,
395
+ :base_lng,
396
+ :cdma_nmr)
397
+ SENSITIVE = []
398
+ include Aws::Structure
399
+ end
400
+
401
+ # The cell towers that were used to perform the measurements.
402
+ #
403
+ # @!attribute [rw] gsm
404
+ # GSM object information.
405
+ # @return [Array<Types::GsmObj>]
406
+ #
407
+ # @!attribute [rw] wcdma
408
+ # WCDMA object information.
409
+ # @return [Array<Types::WcdmaObj>]
410
+ #
411
+ # @!attribute [rw] tdscdma
412
+ # TD-SCDMA object information.
413
+ # @return [Array<Types::TdscdmaObj>]
414
+ #
415
+ # @!attribute [rw] lte
416
+ # LTE object information.
417
+ # @return [Array<Types::LteObj>]
418
+ #
419
+ # @!attribute [rw] cdma
420
+ # CDMA object information.
421
+ # @return [Array<Types::CdmaObj>]
422
+ #
423
+ class CellTowers < Struct.new(
424
+ :gsm,
425
+ :wcdma,
426
+ :tdscdma,
427
+ :lte,
428
+ :cdma)
429
+ SENSITIVE = []
430
+ include Aws::Structure
431
+ end
432
+
376
433
  # List of sidewalk certificates.
377
434
  #
378
435
  # @!attribute [rw] signing_alg
@@ -415,16 +472,6 @@ module Aws::IoTWireless
415
472
  # Connection status event configuration object for enabling or disabling
416
473
  # topic.
417
474
  #
418
- # @note When making an API call, you may pass ConnectionStatusEventConfiguration
419
- # data as a hash:
420
- #
421
- # {
422
- # lo_ra_wan: {
423
- # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
424
- # },
425
- # wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
426
- # }
427
- #
428
475
  # @!attribute [rw] lo_ra_wan
429
476
  # Connection status event configuration object for enabling or
430
477
  # disabling LoRaWAN related event topics.
@@ -445,15 +492,6 @@ module Aws::IoTWireless
445
492
  # Connection status resource type event configuration object for
446
493
  # enabling or disabling topic.
447
494
  #
448
- # @note When making an API call, you may pass ConnectionStatusResourceTypeEventConfiguration
449
- # data as a hash:
450
- #
451
- # {
452
- # lo_ra_wan: {
453
- # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
454
- # },
455
- # }
456
- #
457
495
  # @!attribute [rw] lo_ra_wan
458
496
  # Connection status resource type event configuration object for
459
497
  # enabling or disabling LoRaWAN related event topics.
@@ -465,24 +503,6 @@ module Aws::IoTWireless
465
503
  include Aws::Structure
466
504
  end
467
505
 
468
- # @note When making an API call, you may pass CreateDestinationRequest
469
- # data as a hash:
470
- #
471
- # {
472
- # name: "DestinationName", # required
473
- # expression_type: "RuleName", # required, accepts RuleName, MqttTopic
474
- # expression: "Expression", # required
475
- # description: "Description",
476
- # role_arn: "RoleArn", # required
477
- # tags: [
478
- # {
479
- # key: "TagKey", # required
480
- # value: "TagValue", # required
481
- # },
482
- # ],
483
- # client_request_token: "ClientRequestToken",
484
- # }
485
- #
486
506
  # @!attribute [rw] name
487
507
  # The name of the new resource.
488
508
  # @return [String]
@@ -545,41 +565,6 @@ module Aws::IoTWireless
545
565
  include Aws::Structure
546
566
  end
547
567
 
548
- # @note When making an API call, you may pass CreateDeviceProfileRequest
549
- # data as a hash:
550
- #
551
- # {
552
- # name: "DeviceProfileName",
553
- # lo_ra_wan: {
554
- # supports_class_b: false,
555
- # class_b_timeout: 1,
556
- # ping_slot_period: 1,
557
- # ping_slot_dr: 1,
558
- # ping_slot_freq: 1,
559
- # supports_class_c: false,
560
- # class_c_timeout: 1,
561
- # mac_version: "MacVersion",
562
- # reg_params_revision: "RegParamsRevision",
563
- # rx_delay_1: 1,
564
- # rx_dr_offset_1: 1,
565
- # rx_data_rate_2: 1,
566
- # rx_freq_2: 1,
567
- # factory_preset_freqs_list: [1],
568
- # max_eirp: 1,
569
- # max_duty_cycle: 1,
570
- # rf_region: "RfRegion",
571
- # supports_join: false,
572
- # supports_32_bit_f_cnt: false,
573
- # },
574
- # tags: [
575
- # {
576
- # key: "TagKey", # required
577
- # value: "TagValue", # required
578
- # },
579
- # ],
580
- # client_request_token: "ClientRequestToken",
581
- # }
582
- #
583
568
  # @!attribute [rw] name
584
569
  # The name of the new resource.
585
570
  # @return [String]
@@ -627,26 +612,6 @@ module Aws::IoTWireless
627
612
  include Aws::Structure
628
613
  end
629
614
 
630
- # @note When making an API call, you may pass CreateFuotaTaskRequest
631
- # data as a hash:
632
- #
633
- # {
634
- # name: "FuotaTaskName",
635
- # description: "Description",
636
- # client_request_token: "ClientRequestToken",
637
- # lo_ra_wan: {
638
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
639
- # },
640
- # firmware_update_image: "FirmwareUpdateImage", # required
641
- # firmware_update_role: "FirmwareUpdateRole", # required
642
- # tags: [
643
- # {
644
- # key: "TagKey", # required
645
- # value: "TagValue", # required
646
- # },
647
- # ],
648
- # }
649
- #
650
615
  # @!attribute [rw] name
651
616
  # The name of a FUOTA task.
652
617
  # @return [String]
@@ -710,25 +675,6 @@ module Aws::IoTWireless
710
675
  include Aws::Structure
711
676
  end
712
677
 
713
- # @note When making an API call, you may pass CreateMulticastGroupRequest
714
- # data as a hash:
715
- #
716
- # {
717
- # name: "MulticastGroupName",
718
- # description: "Description",
719
- # client_request_token: "ClientRequestToken",
720
- # lo_ra_wan: { # required
721
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
722
- # dl_class: "ClassB", # accepts ClassB, ClassC
723
- # },
724
- # tags: [
725
- # {
726
- # key: "TagKey", # required
727
- # value: "TagValue", # required
728
- # },
729
- # ],
730
- # }
731
- #
732
678
  # @!attribute [rw] name
733
679
  # The name of the multicast group.
734
680
  # @return [String]
@@ -781,27 +727,6 @@ module Aws::IoTWireless
781
727
  include Aws::Structure
782
728
  end
783
729
 
784
- # @note When making an API call, you may pass CreateNetworkAnalyzerConfigurationRequest
785
- # data as a hash:
786
- #
787
- # {
788
- # name: "NetworkAnalyzerConfigurationName", # required
789
- # trace_content: {
790
- # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
791
- # log_level: "INFO", # accepts INFO, ERROR, DISABLED
792
- # },
793
- # wireless_devices: ["WirelessDeviceId"],
794
- # wireless_gateways: ["WirelessGatewayId"],
795
- # description: "Description",
796
- # tags: [
797
- # {
798
- # key: "TagKey", # required
799
- # value: "TagValue", # required
800
- # },
801
- # ],
802
- # client_request_token: "ClientRequestToken",
803
- # }
804
- #
805
730
  # @!attribute [rw] name
806
731
  # Name of the network analyzer configuration.
807
732
  # @return [String]
@@ -869,25 +794,6 @@ module Aws::IoTWireless
869
794
  include Aws::Structure
870
795
  end
871
796
 
872
- # @note When making an API call, you may pass CreateServiceProfileRequest
873
- # data as a hash:
874
- #
875
- # {
876
- # name: "ServiceProfileName",
877
- # lo_ra_wan: {
878
- # add_gw_metadata: false,
879
- # dr_min: 1,
880
- # dr_max: 1,
881
- # },
882
- # tags: [
883
- # {
884
- # key: "TagKey", # required
885
- # value: "TagValue", # required
886
- # },
887
- # ],
888
- # client_request_token: "ClientRequestToken",
889
- # }
890
- #
891
797
  # @!attribute [rw] name
892
798
  # The name of the new resource.
893
799
  # @return [String]
@@ -936,66 +842,6 @@ module Aws::IoTWireless
936
842
  include Aws::Structure
937
843
  end
938
844
 
939
- # @note When making an API call, you may pass CreateWirelessDeviceRequest
940
- # data as a hash:
941
- #
942
- # {
943
- # type: "Sidewalk", # required, accepts Sidewalk, LoRaWAN
944
- # name: "WirelessDeviceName",
945
- # description: "Description",
946
- # destination_name: "DestinationName", # required
947
- # client_request_token: "ClientRequestToken",
948
- # lo_ra_wan: {
949
- # dev_eui: "DevEui",
950
- # device_profile_id: "DeviceProfileId",
951
- # service_profile_id: "ServiceProfileId",
952
- # otaa_v1_1: {
953
- # app_key: "AppKey",
954
- # nwk_key: "NwkKey",
955
- # join_eui: "JoinEui",
956
- # },
957
- # otaa_v1_0_x: {
958
- # app_key: "AppKey",
959
- # app_eui: "AppEui",
960
- # gen_app_key: "GenAppKey",
961
- # },
962
- # abp_v1_1: {
963
- # dev_addr: "DevAddr",
964
- # session_keys: {
965
- # f_nwk_s_int_key: "FNwkSIntKey",
966
- # s_nwk_s_int_key: "SNwkSIntKey",
967
- # nwk_s_enc_key: "NwkSEncKey",
968
- # app_s_key: "AppSKey",
969
- # },
970
- # f_cnt_start: 1,
971
- # },
972
- # abp_v1_0_x: {
973
- # dev_addr: "DevAddr",
974
- # session_keys: {
975
- # nwk_s_key: "NwkSKey",
976
- # app_s_key: "AppSKey",
977
- # },
978
- # f_cnt_start: 1,
979
- # },
980
- # f_ports: {
981
- # fuota: 1,
982
- # multicast: 1,
983
- # clock_sync: 1,
984
- # positioning: {
985
- # clock_sync: 1,
986
- # stream: 1,
987
- # gnss: 1,
988
- # },
989
- # },
990
- # },
991
- # tags: [
992
- # {
993
- # key: "TagKey", # required
994
- # value: "TagValue", # required
995
- # },
996
- # ],
997
- # }
998
- #
999
845
  # @!attribute [rw] type
1000
846
  # The wireless device type.
1001
847
  # @return [String]
@@ -1032,6 +878,11 @@ module Aws::IoTWireless
1032
878
  # that you can use to manage a resource.
1033
879
  # @return [Array<Types::Tag>]
1034
880
  #
881
+ # @!attribute [rw] positioning
882
+ # FPort values for the GNSS, stream, and ClockSync functions of the
883
+ # positioning information.
884
+ # @return [String]
885
+ #
1035
886
  class CreateWirelessDeviceRequest < Struct.new(
1036
887
  :type,
1037
888
  :name,
@@ -1039,7 +890,8 @@ module Aws::IoTWireless
1039
890
  :destination_name,
1040
891
  :client_request_token,
1041
892
  :lo_ra_wan,
1042
- :tags)
893
+ :tags,
894
+ :positioning)
1043
895
  SENSITIVE = []
1044
896
  include Aws::Structure
1045
897
  end
@@ -1059,34 +911,6 @@ module Aws::IoTWireless
1059
911
  include Aws::Structure
1060
912
  end
1061
913
 
1062
- # @note When making an API call, you may pass CreateWirelessGatewayRequest
1063
- # data as a hash:
1064
- #
1065
- # {
1066
- # name: "WirelessGatewayName",
1067
- # description: "Description",
1068
- # lo_ra_wan: { # required
1069
- # gateway_eui: "GatewayEui",
1070
- # rf_region: "RfRegion",
1071
- # join_eui_filters: [
1072
- # ["JoinEui"],
1073
- # ],
1074
- # net_id_filters: ["NetId"],
1075
- # sub_bands: [1],
1076
- # beaconing: {
1077
- # data_rate: 1,
1078
- # frequencies: [1],
1079
- # },
1080
- # },
1081
- # tags: [
1082
- # {
1083
- # key: "TagKey", # required
1084
- # value: "TagValue", # required
1085
- # },
1086
- # ],
1087
- # client_request_token: "ClientRequestToken",
1088
- # }
1089
- #
1090
914
  # @!attribute [rw] name
1091
915
  # The name of the new resource.
1092
916
  # @return [String]
@@ -1140,39 +964,6 @@ module Aws::IoTWireless
1140
964
  include Aws::Structure
1141
965
  end
1142
966
 
1143
- # @note When making an API call, you may pass CreateWirelessGatewayTaskDefinitionRequest
1144
- # data as a hash:
1145
- #
1146
- # {
1147
- # auto_create_tasks: false, # required
1148
- # name: "WirelessGatewayTaskName",
1149
- # update: {
1150
- # update_data_source: "UpdateDataSource",
1151
- # update_data_role: "UpdateDataSource",
1152
- # lo_ra_wan: {
1153
- # update_signature: "UpdateSignature",
1154
- # sig_key_crc: 1,
1155
- # current_version: {
1156
- # package_version: "PackageVersion",
1157
- # model: "Model",
1158
- # station: "Station",
1159
- # },
1160
- # update_version: {
1161
- # package_version: "PackageVersion",
1162
- # model: "Model",
1163
- # station: "Station",
1164
- # },
1165
- # },
1166
- # },
1167
- # client_request_token: "ClientRequestToken",
1168
- # tags: [
1169
- # {
1170
- # key: "TagKey", # required
1171
- # value: "TagValue", # required
1172
- # },
1173
- # ],
1174
- # }
1175
- #
1176
967
  # @!attribute [rw] auto_create_tasks
1177
968
  # Whether to automatically create tasks using this task definition for
1178
969
  # all gateways with the specified current version. If `false`, the
@@ -1227,14 +1018,6 @@ module Aws::IoTWireless
1227
1018
  include Aws::Structure
1228
1019
  end
1229
1020
 
1230
- # @note When making an API call, you may pass CreateWirelessGatewayTaskRequest
1231
- # data as a hash:
1232
- #
1233
- # {
1234
- # id: "WirelessGatewayId", # required
1235
- # wireless_gateway_task_definition_id: "WirelessGatewayTaskDefinitionId", # required
1236
- # }
1237
- #
1238
1021
  # @!attribute [rw] id
1239
1022
  # The ID of the resource to update.
1240
1023
  # @return [String]
@@ -1265,13 +1048,6 @@ module Aws::IoTWireless
1265
1048
  include Aws::Structure
1266
1049
  end
1267
1050
 
1268
- # @note When making an API call, you may pass DeleteDestinationRequest
1269
- # data as a hash:
1270
- #
1271
- # {
1272
- # name: "DestinationName", # required
1273
- # }
1274
- #
1275
1051
  # @!attribute [rw] name
1276
1052
  # The name of the resource to delete.
1277
1053
  # @return [String]
@@ -1284,13 +1060,6 @@ module Aws::IoTWireless
1284
1060
 
1285
1061
  class DeleteDestinationResponse < Aws::EmptyStructure; end
1286
1062
 
1287
- # @note When making an API call, you may pass DeleteDeviceProfileRequest
1288
- # data as a hash:
1289
- #
1290
- # {
1291
- # id: "DeviceProfileId", # required
1292
- # }
1293
- #
1294
1063
  # @!attribute [rw] id
1295
1064
  # The ID of the resource to delete.
1296
1065
  # @return [String]
@@ -1303,13 +1072,6 @@ module Aws::IoTWireless
1303
1072
 
1304
1073
  class DeleteDeviceProfileResponse < Aws::EmptyStructure; end
1305
1074
 
1306
- # @note When making an API call, you may pass DeleteFuotaTaskRequest
1307
- # data as a hash:
1308
- #
1309
- # {
1310
- # id: "FuotaTaskId", # required
1311
- # }
1312
- #
1313
1075
  # @!attribute [rw] id
1314
1076
  # The ID of a FUOTA task.
1315
1077
  # @return [String]
@@ -1322,13 +1084,6 @@ module Aws::IoTWireless
1322
1084
 
1323
1085
  class DeleteFuotaTaskResponse < Aws::EmptyStructure; end
1324
1086
 
1325
- # @note When making an API call, you may pass DeleteMulticastGroupRequest
1326
- # data as a hash:
1327
- #
1328
- # {
1329
- # id: "MulticastGroupId", # required
1330
- # }
1331
- #
1332
1087
  # @!attribute [rw] id
1333
1088
  # The ID of the multicast group.
1334
1089
  # @return [String]
@@ -1341,13 +1096,6 @@ module Aws::IoTWireless
1341
1096
 
1342
1097
  class DeleteMulticastGroupResponse < Aws::EmptyStructure; end
1343
1098
 
1344
- # @note When making an API call, you may pass DeleteNetworkAnalyzerConfigurationRequest
1345
- # data as a hash:
1346
- #
1347
- # {
1348
- # configuration_name: "NetworkAnalyzerConfigurationName", # required
1349
- # }
1350
- #
1351
1099
  # @!attribute [rw] configuration_name
1352
1100
  # Name of the network analyzer configuration.
1353
1101
  # @return [String]
@@ -1360,15 +1108,6 @@ module Aws::IoTWireless
1360
1108
 
1361
1109
  class DeleteNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
1362
1110
 
1363
- # @note When making an API call, you may pass DeleteQueuedMessagesRequest
1364
- # data as a hash:
1365
- #
1366
- # {
1367
- # id: "WirelessDeviceId", # required
1368
- # message_id: "MessageId", # required
1369
- # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
1370
- # }
1371
- #
1372
1111
  # @!attribute [rw] id
1373
1112
  # The ID of a given wireless device for which downlink messages will
1374
1113
  # be deleted.
@@ -1394,13 +1133,6 @@ module Aws::IoTWireless
1394
1133
 
1395
1134
  class DeleteQueuedMessagesResponse < Aws::EmptyStructure; end
1396
1135
 
1397
- # @note When making an API call, you may pass DeleteServiceProfileRequest
1398
- # data as a hash:
1399
- #
1400
- # {
1401
- # id: "ServiceProfileId", # required
1402
- # }
1403
- #
1404
1136
  # @!attribute [rw] id
1405
1137
  # The ID of the resource to delete.
1406
1138
  # @return [String]
@@ -1413,13 +1145,6 @@ module Aws::IoTWireless
1413
1145
 
1414
1146
  class DeleteServiceProfileResponse < Aws::EmptyStructure; end
1415
1147
 
1416
- # @note When making an API call, you may pass DeleteWirelessDeviceRequest
1417
- # data as a hash:
1418
- #
1419
- # {
1420
- # id: "WirelessDeviceId", # required
1421
- # }
1422
- #
1423
1148
  # @!attribute [rw] id
1424
1149
  # The ID of the resource to delete.
1425
1150
  # @return [String]
@@ -1432,13 +1157,6 @@ module Aws::IoTWireless
1432
1157
 
1433
1158
  class DeleteWirelessDeviceResponse < Aws::EmptyStructure; end
1434
1159
 
1435
- # @note When making an API call, you may pass DeleteWirelessGatewayRequest
1436
- # data as a hash:
1437
- #
1438
- # {
1439
- # id: "WirelessGatewayId", # required
1440
- # }
1441
- #
1442
1160
  # @!attribute [rw] id
1443
1161
  # The ID of the resource to delete.
1444
1162
  # @return [String]
@@ -1451,13 +1169,6 @@ module Aws::IoTWireless
1451
1169
 
1452
1170
  class DeleteWirelessGatewayResponse < Aws::EmptyStructure; end
1453
1171
 
1454
- # @note When making an API call, you may pass DeleteWirelessGatewayTaskDefinitionRequest
1455
- # data as a hash:
1456
- #
1457
- # {
1458
- # id: "WirelessGatewayTaskDefinitionId", # required
1459
- # }
1460
- #
1461
1172
  # @!attribute [rw] id
1462
1173
  # The ID of the resource to delete.
1463
1174
  # @return [String]
@@ -1470,13 +1181,6 @@ module Aws::IoTWireless
1470
1181
 
1471
1182
  class DeleteWirelessGatewayTaskDefinitionResponse < Aws::EmptyStructure; end
1472
1183
 
1473
- # @note When making an API call, you may pass DeleteWirelessGatewayTaskRequest
1474
- # data as a hash:
1475
- #
1476
- # {
1477
- # id: "WirelessGatewayId", # required
1478
- # }
1479
- #
1480
1184
  # @!attribute [rw] id
1481
1185
  # The ID of the resource to delete.
1482
1186
  # @return [String]
@@ -1551,16 +1255,6 @@ module Aws::IoTWireless
1551
1255
  # Device registration state event configuration object for enabling and
1552
1256
  # disabling relevant topics.
1553
1257
  #
1554
- # @note When making an API call, you may pass DeviceRegistrationStateEventConfiguration
1555
- # data as a hash:
1556
- #
1557
- # {
1558
- # sidewalk: {
1559
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
1560
- # },
1561
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
1562
- # }
1563
- #
1564
1258
  # @!attribute [rw] sidewalk
1565
1259
  # Device registration state event configuration object for enabling or
1566
1260
  # disabling Sidewalk related event topics.
@@ -1581,15 +1275,6 @@ module Aws::IoTWireless
1581
1275
  # Device registration state resource type event configuration object for
1582
1276
  # enabling or disabling topic.
1583
1277
  #
1584
- # @note When making an API call, you may pass DeviceRegistrationStateResourceTypeEventConfiguration
1585
- # data as a hash:
1586
- #
1587
- # {
1588
- # sidewalk: {
1589
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
1590
- # },
1591
- # }
1592
- #
1593
1278
  # @!attribute [rw] sidewalk
1594
1279
  # Device registration resource type state event configuration object
1595
1280
  # for enabling or disabling Sidewalk related event topics.
@@ -1601,14 +1286,6 @@ module Aws::IoTWireless
1601
1286
  include Aws::Structure
1602
1287
  end
1603
1288
 
1604
- # @note When making an API call, you may pass DisassociateAwsAccountFromPartnerAccountRequest
1605
- # data as a hash:
1606
- #
1607
- # {
1608
- # partner_account_id: "PartnerAccountId", # required
1609
- # partner_type: "Sidewalk", # required, accepts Sidewalk
1610
- # }
1611
- #
1612
1289
  # @!attribute [rw] partner_account_id
1613
1290
  # The partner account ID to disassociate from the AWS account.
1614
1291
  # @return [String]
@@ -1626,14 +1303,6 @@ module Aws::IoTWireless
1626
1303
 
1627
1304
  class DisassociateAwsAccountFromPartnerAccountResponse < Aws::EmptyStructure; end
1628
1305
 
1629
- # @note When making an API call, you may pass DisassociateMulticastGroupFromFuotaTaskRequest
1630
- # data as a hash:
1631
- #
1632
- # {
1633
- # id: "FuotaTaskId", # required
1634
- # multicast_group_id: "MulticastGroupId", # required
1635
- # }
1636
- #
1637
1306
  # @!attribute [rw] id
1638
1307
  # The ID of a FUOTA task.
1639
1308
  # @return [String]
@@ -1651,14 +1320,6 @@ module Aws::IoTWireless
1651
1320
 
1652
1321
  class DisassociateMulticastGroupFromFuotaTaskResponse < Aws::EmptyStructure; end
1653
1322
 
1654
- # @note When making an API call, you may pass DisassociateWirelessDeviceFromFuotaTaskRequest
1655
- # data as a hash:
1656
- #
1657
- # {
1658
- # id: "FuotaTaskId", # required
1659
- # wireless_device_id: "WirelessDeviceId", # required
1660
- # }
1661
- #
1662
1323
  # @!attribute [rw] id
1663
1324
  # The ID of a FUOTA task.
1664
1325
  # @return [String]
@@ -1676,14 +1337,6 @@ module Aws::IoTWireless
1676
1337
 
1677
1338
  class DisassociateWirelessDeviceFromFuotaTaskResponse < Aws::EmptyStructure; end
1678
1339
 
1679
- # @note When making an API call, you may pass DisassociateWirelessDeviceFromMulticastGroupRequest
1680
- # data as a hash:
1681
- #
1682
- # {
1683
- # id: "MulticastGroupId", # required
1684
- # wireless_device_id: "WirelessDeviceId", # required
1685
- # }
1686
- #
1687
1340
  # @!attribute [rw] id
1688
1341
  # The ID of the multicast group.
1689
1342
  # @return [String]
@@ -1701,13 +1354,6 @@ module Aws::IoTWireless
1701
1354
 
1702
1355
  class DisassociateWirelessDeviceFromMulticastGroupResponse < Aws::EmptyStructure; end
1703
1356
 
1704
- # @note When making an API call, you may pass DisassociateWirelessDeviceFromThingRequest
1705
- # data as a hash:
1706
- #
1707
- # {
1708
- # id: "WirelessDeviceId", # required
1709
- # }
1710
- #
1711
1357
  # @!attribute [rw] id
1712
1358
  # The ID of the resource to update.
1713
1359
  # @return [String]
@@ -1720,13 +1366,6 @@ module Aws::IoTWireless
1720
1366
 
1721
1367
  class DisassociateWirelessDeviceFromThingResponse < Aws::EmptyStructure; end
1722
1368
 
1723
- # @note When making an API call, you may pass DisassociateWirelessGatewayFromCertificateRequest
1724
- # data as a hash:
1725
- #
1726
- # {
1727
- # id: "WirelessGatewayId", # required
1728
- # }
1729
- #
1730
1369
  # @!attribute [rw] id
1731
1370
  # The ID of the resource to update.
1732
1371
  # @return [String]
@@ -1739,13 +1378,6 @@ module Aws::IoTWireless
1739
1378
 
1740
1379
  class DisassociateWirelessGatewayFromCertificateResponse < Aws::EmptyStructure; end
1741
1380
 
1742
- # @note When making an API call, you may pass DisassociateWirelessGatewayFromThingRequest
1743
- # data as a hash:
1744
- #
1745
- # {
1746
- # id: "WirelessGatewayId", # required
1747
- # }
1748
- #
1749
1381
  # @!attribute [rw] id
1750
1382
  # The ID of the resource to update.
1751
1383
  # @return [String]
@@ -1856,20 +1488,6 @@ module Aws::IoTWireless
1856
1488
  # List of FPort assigned for different LoRaWAN application packages to
1857
1489
  # use
1858
1490
  #
1859
- # @note When making an API call, you may pass FPorts
1860
- # data as a hash:
1861
- #
1862
- # {
1863
- # fuota: 1,
1864
- # multicast: 1,
1865
- # clock_sync: 1,
1866
- # positioning: {
1867
- # clock_sync: 1,
1868
- # stream: 1,
1869
- # gnss: 1,
1870
- # },
1871
- # }
1872
- #
1873
1491
  # @!attribute [rw] fuota
1874
1492
  # The Fport value.
1875
1493
  # @return [Integer]
@@ -1887,11 +1505,17 @@ module Aws::IoTWireless
1887
1505
  # positioning information.
1888
1506
  # @return [Types::Positioning]
1889
1507
  #
1508
+ # @!attribute [rw] applications
1509
+ # Optional LoRaWAN application information, which can be used for
1510
+ # geolocation.
1511
+ # @return [Array<Types::ApplicationConfig>]
1512
+ #
1890
1513
  class FPorts < Struct.new(
1891
1514
  :fuota,
1892
1515
  :multicast,
1893
1516
  :clock_sync,
1894
- :positioning)
1517
+ :positioning,
1518
+ :applications)
1895
1519
  SENSITIVE = []
1896
1520
  include Aws::Structure
1897
1521
  end
@@ -1921,14 +1545,6 @@ module Aws::IoTWireless
1921
1545
  # Gateway list item object that specifies the frequency and list of
1922
1546
  # gateways for which the downlink message should be sent.
1923
1547
  #
1924
- # @note When making an API call, you may pass GatewayListItem
1925
- # data as a hash:
1926
- #
1927
- # {
1928
- # gateway_id: "WirelessGatewayId", # required
1929
- # downlink_frequency: 1, # required
1930
- # }
1931
- #
1932
1548
  # @!attribute [rw] gateway_id
1933
1549
  # The ID of the wireless gateways that you want to add to the list of
1934
1550
  # gateways when sending downlink messages.
@@ -1946,13 +1562,6 @@ module Aws::IoTWireless
1946
1562
  include Aws::Structure
1947
1563
  end
1948
1564
 
1949
- # @note When making an API call, you may pass GetDestinationRequest
1950
- # data as a hash:
1951
- #
1952
- # {
1953
- # name: "DestinationName", # required
1954
- # }
1955
- #
1956
1565
  # @!attribute [rw] name
1957
1566
  # The name of the resource to get.
1958
1567
  # @return [String]
@@ -1998,13 +1607,6 @@ module Aws::IoTWireless
1998
1607
  include Aws::Structure
1999
1608
  end
2000
1609
 
2001
- # @note When making an API call, you may pass GetDeviceProfileRequest
2002
- # data as a hash:
2003
- #
2004
- # {
2005
- # id: "DeviceProfileId", # required
2006
- # }
2007
- #
2008
1610
  # @!attribute [rw] id
2009
1611
  # The ID of the resource to get.
2010
1612
  # @return [String]
@@ -2076,13 +1678,6 @@ module Aws::IoTWireless
2076
1678
  include Aws::Structure
2077
1679
  end
2078
1680
 
2079
- # @note When making an API call, you may pass GetFuotaTaskRequest
2080
- # data as a hash:
2081
- #
2082
- # {
2083
- # id: "FuotaTaskId", # required
2084
- # }
2085
- #
2086
1681
  # @!attribute [rw] id
2087
1682
  # The ID of a FUOTA task.
2088
1683
  # @return [String]
@@ -2170,13 +1765,6 @@ module Aws::IoTWireless
2170
1765
  include Aws::Structure
2171
1766
  end
2172
1767
 
2173
- # @note When making an API call, you may pass GetMulticastGroupRequest
2174
- # data as a hash:
2175
- #
2176
- # {
2177
- # id: "MulticastGroupId", # required
2178
- # }
2179
- #
2180
1768
  # @!attribute [rw] id
2181
1769
  # The ID of the multicast group.
2182
1770
  # @return [String]
@@ -2228,13 +1816,6 @@ module Aws::IoTWireless
2228
1816
  include Aws::Structure
2229
1817
  end
2230
1818
 
2231
- # @note When making an API call, you may pass GetMulticastGroupSessionRequest
2232
- # data as a hash:
2233
- #
2234
- # {
2235
- # id: "MulticastGroupId", # required
2236
- # }
2237
- #
2238
1819
  # @!attribute [rw] id
2239
1820
  # The ID of the multicast group.
2240
1821
  # @return [String]
@@ -2255,13 +1836,6 @@ module Aws::IoTWireless
2255
1836
  include Aws::Structure
2256
1837
  end
2257
1838
 
2258
- # @note When making an API call, you may pass GetNetworkAnalyzerConfigurationRequest
2259
- # data as a hash:
2260
- #
2261
- # {
2262
- # configuration_name: "NetworkAnalyzerConfigurationName", # required
2263
- # }
2264
- #
2265
1839
  # @!attribute [rw] configuration_name
2266
1840
  # Name of the network analyzer configuration.
2267
1841
  # @return [String]
@@ -2310,14 +1884,6 @@ module Aws::IoTWireless
2310
1884
  include Aws::Structure
2311
1885
  end
2312
1886
 
2313
- # @note When making an API call, you may pass GetPartnerAccountRequest
2314
- # data as a hash:
2315
- #
2316
- # {
2317
- # partner_account_id: "PartnerAccountId", # required
2318
- # partner_type: "Sidewalk", # required, accepts Sidewalk
2319
- # }
2320
- #
2321
1887
  # @!attribute [rw] partner_account_id
2322
1888
  # The partner account ID to disassociate from the AWS account.
2323
1889
  # @return [String]
@@ -2348,14 +1914,6 @@ module Aws::IoTWireless
2348
1914
  include Aws::Structure
2349
1915
  end
2350
1916
 
2351
- # @note When making an API call, you may pass GetPositionConfigurationRequest
2352
- # data as a hash:
2353
- #
2354
- # {
2355
- # resource_identifier: "PositionResourceIdentifier", # required
2356
- # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
2357
- # }
2358
- #
2359
1917
  # @!attribute [rw] resource_identifier
2360
1918
  # Resource identifier used in a position configuration.
2361
1919
  # @return [String]
@@ -2389,14 +1947,63 @@ module Aws::IoTWireless
2389
1947
  include Aws::Structure
2390
1948
  end
2391
1949
 
2392
- # @note When making an API call, you may pass GetPositionRequest
2393
- # data as a hash:
1950
+ # @!attribute [rw] wi_fi_access_points
1951
+ # Retrieves an estimated device position by resolving WLAN measurement
1952
+ # data. The position is resolved using HERE's Wi-Fi based solver.
1953
+ # @return [Array<Types::WiFiAccessPoint>]
1954
+ #
1955
+ # @!attribute [rw] cell_towers
1956
+ # Retrieves an estimated device position by resolving measurement data
1957
+ # from cellular radio towers. The position is resolved using HERE's
1958
+ # cellular-based solver.
1959
+ # @return [Types::CellTowers]
1960
+ #
1961
+ # @!attribute [rw] ip
1962
+ # Retrieves an estimated device position by resolving the IP address
1963
+ # information from the device. The position is resolved using
1964
+ # MaxMind's IP-based solver.
1965
+ # @return [Types::Ip]
1966
+ #
1967
+ # @!attribute [rw] gnss
1968
+ # Retrieves an estimated device position by resolving the global
1969
+ # navigation satellite system (GNSS) scan data. The position is
1970
+ # resolved using the GNSS solver powered by LoRa Cloud.
1971
+ # @return [Types::Gnss]
1972
+ #
1973
+ # @!attribute [rw] timestamp
1974
+ # Optional information that specifies the time when the position
1975
+ # information will be resolved. It uses the UNIX timestamp format. If
1976
+ # not specified, the time at which the request was received will be
1977
+ # used.
1978
+ # @return [Time]
1979
+ #
1980
+ class GetPositionEstimateRequest < Struct.new(
1981
+ :wi_fi_access_points,
1982
+ :cell_towers,
1983
+ :ip,
1984
+ :gnss,
1985
+ :timestamp)
1986
+ SENSITIVE = []
1987
+ include Aws::Structure
1988
+ end
1989
+
1990
+ # @!attribute [rw] geo_json_payload
1991
+ # The position information of the resource, displayed as a JSON
1992
+ # payload. The payload uses the GeoJSON format, which a format that's
1993
+ # used to encode geographic data structures. For more information, see
1994
+ # [GeoJSON][1].
1995
+ #
2394
1996
  #
2395
- # {
2396
- # resource_identifier: "PositionResourceIdentifier", # required
2397
- # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
2398
- # }
2399
1997
  #
1998
+ # [1]: https://geojson.org/
1999
+ # @return [String]
2000
+ #
2001
+ class GetPositionEstimateResponse < Struct.new(
2002
+ :geo_json_payload)
2003
+ SENSITIVE = []
2004
+ include Aws::Structure
2005
+ end
2006
+
2400
2007
  # @!attribute [rw] resource_identifier
2401
2008
  # Resource identifier used to retrieve the position information.
2402
2009
  # @return [String]
@@ -2452,15 +2059,6 @@ module Aws::IoTWireless
2452
2059
  include Aws::Structure
2453
2060
  end
2454
2061
 
2455
- # @note When making an API call, you may pass GetResourceEventConfigurationRequest
2456
- # data as a hash:
2457
- #
2458
- # {
2459
- # identifier: "Identifier", # required
2460
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
2461
- # partner_type: "Sidewalk", # accepts Sidewalk
2462
- # }
2463
- #
2464
2062
  # @!attribute [rw] identifier
2465
2063
  # Resource identifier to opt in for event messaging.
2466
2064
  # @return [String]
@@ -2513,14 +2111,6 @@ module Aws::IoTWireless
2513
2111
  include Aws::Structure
2514
2112
  end
2515
2113
 
2516
- # @note When making an API call, you may pass GetResourceLogLevelRequest
2517
- # data as a hash:
2518
- #
2519
- # {
2520
- # resource_identifier: "ResourceIdentifier", # required
2521
- # resource_type: "ResourceType", # required
2522
- # }
2523
- #
2524
2114
  # @!attribute [rw] resource_identifier
2525
2115
  # The identifier of the resource. For a Wireless Device, it is the
2526
2116
  # wireless device ID. For a wireless gateway, it is the wireless
@@ -2551,13 +2141,41 @@ module Aws::IoTWireless
2551
2141
  include Aws::Structure
2552
2142
  end
2553
2143
 
2554
- # @note When making an API call, you may pass GetServiceEndpointRequest
2555
- # data as a hash:
2144
+ # @!attribute [rw] resource_identifier
2145
+ # The identifier of the resource for which position information is
2146
+ # retrieved. It can be the wireless device ID or the wireless gateway
2147
+ # ID depending on the resource type.
2148
+ # @return [String]
2149
+ #
2150
+ # @!attribute [rw] resource_type
2151
+ # The type of resource for which position information is retrieved,
2152
+ # which can be a wireless device or a wireless gateway.
2153
+ # @return [String]
2154
+ #
2155
+ class GetResourcePositionRequest < Struct.new(
2156
+ :resource_identifier,
2157
+ :resource_type)
2158
+ SENSITIVE = []
2159
+ include Aws::Structure
2160
+ end
2161
+
2162
+ # @!attribute [rw] geo_json_payload
2163
+ # The position information of the resource, displayed as a JSON
2164
+ # payload. The payload uses the GeoJSON format, which a format that's
2165
+ # used to encode geographic data structures. For more information, see
2166
+ # [GeoJSON][1].
2167
+ #
2168
+ #
2556
2169
  #
2557
- # {
2558
- # service_type: "CUPS", # accepts CUPS, LNS
2559
- # }
2170
+ # [1]: https://geojson.org/
2171
+ # @return [String]
2560
2172
  #
2173
+ class GetResourcePositionResponse < Struct.new(
2174
+ :geo_json_payload)
2175
+ SENSITIVE = []
2176
+ include Aws::Structure
2177
+ end
2178
+
2561
2179
  # @!attribute [rw] service_type
2562
2180
  # The service type for which to get endpoint information about. Can be
2563
2181
  # `CUPS` for the Configuration and Update Server endpoint, or `LNS`
@@ -2591,13 +2209,6 @@ module Aws::IoTWireless
2591
2209
  include Aws::Structure
2592
2210
  end
2593
2211
 
2594
- # @note When making an API call, you may pass GetServiceProfileRequest
2595
- # data as a hash:
2596
- #
2597
- # {
2598
- # id: "ServiceProfileId", # required
2599
- # }
2600
- #
2601
2212
  # @!attribute [rw] id
2602
2213
  # The ID of the resource to get.
2603
2214
  # @return [String]
@@ -2633,14 +2244,6 @@ module Aws::IoTWireless
2633
2244
  include Aws::Structure
2634
2245
  end
2635
2246
 
2636
- # @note When making an API call, you may pass GetWirelessDeviceRequest
2637
- # data as a hash:
2638
- #
2639
- # {
2640
- # identifier: "Identifier", # required
2641
- # identifier_type: "WirelessDeviceId", # required, accepts WirelessDeviceId, DevEui, ThingName, SidewalkManufacturingSn
2642
- # }
2643
- #
2644
2247
  # @!attribute [rw] identifier
2645
2248
  # The identifier of the wireless device to get.
2646
2249
  # @return [String]
@@ -2697,6 +2300,11 @@ module Aws::IoTWireless
2697
2300
  # Sidewalk device object.
2698
2301
  # @return [Types::SidewalkDevice]
2699
2302
  #
2303
+ # @!attribute [rw] positioning
2304
+ # FPort values for the GNSS, stream, and ClockSync functions of the
2305
+ # positioning information.
2306
+ # @return [String]
2307
+ #
2700
2308
  class GetWirelessDeviceResponse < Struct.new(
2701
2309
  :type,
2702
2310
  :name,
@@ -2707,18 +2315,12 @@ module Aws::IoTWireless
2707
2315
  :thing_name,
2708
2316
  :thing_arn,
2709
2317
  :lo_ra_wan,
2710
- :sidewalk)
2318
+ :sidewalk,
2319
+ :positioning)
2711
2320
  SENSITIVE = []
2712
2321
  include Aws::Structure
2713
2322
  end
2714
2323
 
2715
- # @note When making an API call, you may pass GetWirelessDeviceStatisticsRequest
2716
- # data as a hash:
2717
- #
2718
- # {
2719
- # wireless_device_id: "WirelessDeviceId", # required
2720
- # }
2721
- #
2722
2324
  # @!attribute [rw] wireless_device_id
2723
2325
  # The ID of the wireless device for which to get the data.
2724
2326
  # @return [String]
@@ -2754,13 +2356,6 @@ module Aws::IoTWireless
2754
2356
  include Aws::Structure
2755
2357
  end
2756
2358
 
2757
- # @note When making an API call, you may pass GetWirelessGatewayCertificateRequest
2758
- # data as a hash:
2759
- #
2760
- # {
2761
- # id: "WirelessGatewayId", # required
2762
- # }
2763
- #
2764
2359
  # @!attribute [rw] id
2765
2360
  # The ID of the resource to get.
2766
2361
  # @return [String]
@@ -2787,13 +2382,6 @@ module Aws::IoTWireless
2787
2382
  include Aws::Structure
2788
2383
  end
2789
2384
 
2790
- # @note When making an API call, you may pass GetWirelessGatewayFirmwareInformationRequest
2791
- # data as a hash:
2792
- #
2793
- # {
2794
- # id: "WirelessGatewayId", # required
2795
- # }
2796
- #
2797
2385
  # @!attribute [rw] id
2798
2386
  # The ID of the resource to get.
2799
2387
  # @return [String]
@@ -2814,14 +2402,6 @@ module Aws::IoTWireless
2814
2402
  include Aws::Structure
2815
2403
  end
2816
2404
 
2817
- # @note When making an API call, you may pass GetWirelessGatewayRequest
2818
- # data as a hash:
2819
- #
2820
- # {
2821
- # identifier: "Identifier", # required
2822
- # identifier_type: "GatewayEui", # required, accepts GatewayEui, WirelessGatewayId, ThingName
2823
- # }
2824
- #
2825
2405
  # @!attribute [rw] identifier
2826
2406
  # The identifier of the wireless gateway to get.
2827
2407
  # @return [String]
@@ -2878,13 +2458,6 @@ module Aws::IoTWireless
2878
2458
  include Aws::Structure
2879
2459
  end
2880
2460
 
2881
- # @note When making an API call, you may pass GetWirelessGatewayStatisticsRequest
2882
- # data as a hash:
2883
- #
2884
- # {
2885
- # wireless_gateway_id: "WirelessGatewayId", # required
2886
- # }
2887
- #
2888
2461
  # @!attribute [rw] wireless_gateway_id
2889
2462
  # The ID of the wireless gateway for which to get the data.
2890
2463
  # @return [String]
@@ -2915,13 +2488,6 @@ module Aws::IoTWireless
2915
2488
  include Aws::Structure
2916
2489
  end
2917
2490
 
2918
- # @note When making an API call, you may pass GetWirelessGatewayTaskDefinitionRequest
2919
- # data as a hash:
2920
- #
2921
- # {
2922
- # id: "WirelessGatewayTaskDefinitionId", # required
2923
- # }
2924
- #
2925
2491
  # @!attribute [rw] id
2926
2492
  # The ID of the resource to get.
2927
2493
  # @return [String]
@@ -2959,13 +2525,6 @@ module Aws::IoTWireless
2959
2525
  include Aws::Structure
2960
2526
  end
2961
2527
 
2962
- # @note When making an API call, you may pass GetWirelessGatewayTaskRequest
2963
- # data as a hash:
2964
- #
2965
- # {
2966
- # id: "WirelessGatewayId", # required
2967
- # }
2968
- #
2969
2528
  # @!attribute [rw] id
2970
2529
  # The ID of the resource to get.
2971
2530
  # @return [String]
@@ -3006,28 +2565,191 @@ module Aws::IoTWireless
3006
2565
  include Aws::Structure
3007
2566
  end
3008
2567
 
3009
- # An unexpected error occurred while processing a request.
2568
+ # Global identity information.
3010
2569
  #
3011
- # @!attribute [rw] message
3012
- # @return [String]
2570
+ # @!attribute [rw] lac
2571
+ # Location area code of the global identity.
2572
+ # @return [Integer]
3013
2573
  #
3014
- class InternalServerException < Struct.new(
3015
- :message)
2574
+ # @!attribute [rw] geran_cid
2575
+ # GERAN (GSM EDGE Radio Access Network) cell global identifier.
2576
+ # @return [Integer]
2577
+ #
2578
+ class GlobalIdentity < Struct.new(
2579
+ :lac,
2580
+ :geran_cid)
3016
2581
  SENSITIVE = []
3017
2582
  include Aws::Structure
3018
2583
  end
3019
2584
 
3020
- # Join event configuration object for enabling or disabling topic.
2585
+ # Global navigation satellite system (GNSS) object used for positioning.
3021
2586
  #
3022
- # @note When making an API call, you may pass JoinEventConfiguration
3023
- # data as a hash:
2587
+ # @!attribute [rw] payload
2588
+ # Payload that contains the GNSS scan result, or NAV message, in
2589
+ # hexadecimal notation.
2590
+ # @return [String]
2591
+ #
2592
+ # @!attribute [rw] capture_time
2593
+ # Optional parameter that gives an estimate of the time when the GNSS
2594
+ # scan information is taken, in seconds GPS time (GPST). If capture
2595
+ # time is not specified, the local server time is used.
2596
+ # @return [Float]
2597
+ #
2598
+ # @!attribute [rw] capture_time_accuracy
2599
+ # Optional value that gives the capture time estimate accuracy, in
2600
+ # seconds. If capture time accuracy is not specified, default value of
2601
+ # 300 is used.
2602
+ # @return [Float]
2603
+ #
2604
+ # @!attribute [rw] assist_position
2605
+ # Optional assistance position information, specified using latitude
2606
+ # and longitude values in degrees. The co-ordinates are inside the
2607
+ # WGS84 reference frame.
2608
+ # @return [Array<Float>]
2609
+ #
2610
+ # @!attribute [rw] assist_altitude
2611
+ # Optional assistance altitude, which is the altitude of the device at
2612
+ # capture time, specified in meters above the WGS84 reference
2613
+ # ellipsoid.
2614
+ # @return [Float]
2615
+ #
2616
+ # @!attribute [rw] use_2_d_solver
2617
+ # Optional parameter that forces 2D solve, which modifies the
2618
+ # positioning algorithm to a 2D solution problem. When this parameter
2619
+ # is specified, the assistance altitude should have an accuracy of at
2620
+ # least 10 meters.
2621
+ # @return [Boolean]
2622
+ #
2623
+ class Gnss < Struct.new(
2624
+ :payload,
2625
+ :capture_time,
2626
+ :capture_time_accuracy,
2627
+ :assist_position,
2628
+ :assist_altitude,
2629
+ :use_2_d_solver)
2630
+ SENSITIVE = []
2631
+ include Aws::Structure
2632
+ end
2633
+
2634
+ # GSM local ID information, which corresponds to the local
2635
+ # identification parameters of a GSM cell.
2636
+ #
2637
+ # @!attribute [rw] bsic
2638
+ # GSM base station identity code (BSIC).
2639
+ # @return [Integer]
2640
+ #
2641
+ # @!attribute [rw] bcch
2642
+ # GSM broadcast control channel.
2643
+ # @return [Integer]
2644
+ #
2645
+ class GsmLocalId < Struct.new(
2646
+ :bsic,
2647
+ :bcch)
2648
+ SENSITIVE = []
2649
+ include Aws::Structure
2650
+ end
2651
+
2652
+ # GSM object for network measurement reports.
2653
+ #
2654
+ # @!attribute [rw] bsic
2655
+ # GSM base station identity code (BSIC).
2656
+ # @return [Integer]
2657
+ #
2658
+ # @!attribute [rw] bcch
2659
+ # GSM broadcast control channel.
2660
+ # @return [Integer]
2661
+ #
2662
+ # @!attribute [rw] rx_level
2663
+ # Rx level, which is the received signal power, measured in dBm
2664
+ # (decibel-milliwatts).
2665
+ # @return [Integer]
2666
+ #
2667
+ # @!attribute [rw] global_identity
2668
+ # Global identity information of the GSM object.
2669
+ # @return [Types::GlobalIdentity]
2670
+ #
2671
+ class GsmNmrObj < Struct.new(
2672
+ :bsic,
2673
+ :bcch,
2674
+ :rx_level,
2675
+ :global_identity)
2676
+ SENSITIVE = []
2677
+ include Aws::Structure
2678
+ end
2679
+
2680
+ # GSM object.
2681
+ #
2682
+ # @!attribute [rw] mcc
2683
+ # Mobile Country Code.
2684
+ # @return [Integer]
2685
+ #
2686
+ # @!attribute [rw] mnc
2687
+ # Mobile Network Code.
2688
+ # @return [Integer]
2689
+ #
2690
+ # @!attribute [rw] lac
2691
+ # Location area code.
2692
+ # @return [Integer]
2693
+ #
2694
+ # @!attribute [rw] geran_cid
2695
+ # GERAN (GSM EDGE Radio Access Network) Cell Global Identifier.
2696
+ # @return [Integer]
2697
+ #
2698
+ # @!attribute [rw] gsm_local_id
2699
+ # GSM local identification (local ID) information.
2700
+ # @return [Types::GsmLocalId]
2701
+ #
2702
+ # @!attribute [rw] gsm_timing_advance
2703
+ # Timing advance value, which corresponds to the length of time a
2704
+ # signal takes to reach the base station from a mobile phone.
2705
+ # @return [Integer]
2706
+ #
2707
+ # @!attribute [rw] rx_level
2708
+ # Rx level, which is the received signal power, measured in dBm
2709
+ # (decibel-milliwatts).
2710
+ # @return [Integer]
3024
2711
  #
3025
- # {
3026
- # lo_ra_wan: {
3027
- # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
3028
- # },
3029
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
3030
- # }
2712
+ # @!attribute [rw] gsm_nmr
2713
+ # GSM object for network measurement reports.
2714
+ # @return [Array<Types::GsmNmrObj>]
2715
+ #
2716
+ class GsmObj < Struct.new(
2717
+ :mcc,
2718
+ :mnc,
2719
+ :lac,
2720
+ :geran_cid,
2721
+ :gsm_local_id,
2722
+ :gsm_timing_advance,
2723
+ :rx_level,
2724
+ :gsm_nmr)
2725
+ SENSITIVE = []
2726
+ include Aws::Structure
2727
+ end
2728
+
2729
+ # An unexpected error occurred while processing a request.
2730
+ #
2731
+ # @!attribute [rw] message
2732
+ # @return [String]
2733
+ #
2734
+ class InternalServerException < Struct.new(
2735
+ :message)
2736
+ SENSITIVE = []
2737
+ include Aws::Structure
2738
+ end
2739
+
2740
+ # IP address used for resolving device location.
2741
+ #
2742
+ # @!attribute [rw] ip_address
2743
+ # IP address information.
2744
+ # @return [String]
2745
+ #
2746
+ class Ip < Struct.new(
2747
+ :ip_address)
2748
+ SENSITIVE = []
2749
+ include Aws::Structure
2750
+ end
2751
+
2752
+ # Join event configuration object for enabling or disabling topic.
3031
2753
  #
3032
2754
  # @!attribute [rw] lo_ra_wan
3033
2755
  # Join event configuration object for enabling or disabling LoRaWAN
@@ -3049,15 +2771,6 @@ module Aws::IoTWireless
3049
2771
  # Join resource type event configuration object for enabling or
3050
2772
  # disabling topic.
3051
2773
  #
3052
- # @note When making an API call, you may pass JoinResourceTypeEventConfiguration
3053
- # data as a hash:
3054
- #
3055
- # {
3056
- # lo_ra_wan: {
3057
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
3058
- # },
3059
- # }
3060
- #
3061
2774
  # @!attribute [rw] lo_ra_wan
3062
2775
  # Join resource type event configuration object for enabling or
3063
2776
  # disabling LoRaWAN related event topics.
@@ -3069,14 +2782,6 @@ module Aws::IoTWireless
3069
2782
  include Aws::Structure
3070
2783
  end
3071
2784
 
3072
- # @note When making an API call, you may pass ListDestinationsRequest
3073
- # data as a hash:
3074
- #
3075
- # {
3076
- # max_results: 1,
3077
- # next_token: "NextToken",
3078
- # }
3079
- #
3080
2785
  # @!attribute [rw] max_results
3081
2786
  # The maximum number of results to return in this operation.
3082
2787
  # @return [Integer]
@@ -3110,14 +2815,6 @@ module Aws::IoTWireless
3110
2815
  include Aws::Structure
3111
2816
  end
3112
2817
 
3113
- # @note When making an API call, you may pass ListDeviceProfilesRequest
3114
- # data as a hash:
3115
- #
3116
- # {
3117
- # next_token: "NextToken",
3118
- # max_results: 1,
3119
- # }
3120
- #
3121
2818
  # @!attribute [rw] next_token
3122
2819
  # To retrieve the next set of results, the `nextToken` value from a
3123
2820
  # previous response; otherwise **null** to receive the first set of
@@ -3151,15 +2848,6 @@ module Aws::IoTWireless
3151
2848
  include Aws::Structure
3152
2849
  end
3153
2850
 
3154
- # @note When making an API call, you may pass ListEventConfigurationsRequest
3155
- # data as a hash:
3156
- #
3157
- # {
3158
- # resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
3159
- # max_results: 1,
3160
- # next_token: "NextToken",
3161
- # }
3162
- #
3163
2851
  # @!attribute [rw] resource_type
3164
2852
  # Resource type to filter event configurations.
3165
2853
  # @return [String]
@@ -3199,14 +2887,6 @@ module Aws::IoTWireless
3199
2887
  include Aws::Structure
3200
2888
  end
3201
2889
 
3202
- # @note When making an API call, you may pass ListFuotaTasksRequest
3203
- # data as a hash:
3204
- #
3205
- # {
3206
- # next_token: "NextToken",
3207
- # max_results: 1,
3208
- # }
3209
- #
3210
2890
  # @!attribute [rw] next_token
3211
2891
  # To retrieve the next set of results, the `nextToken` value from a
3212
2892
  # previous response; otherwise **null** to receive the first set of
@@ -3241,15 +2921,6 @@ module Aws::IoTWireless
3241
2921
  include Aws::Structure
3242
2922
  end
3243
2923
 
3244
- # @note When making an API call, you may pass ListMulticastGroupsByFuotaTaskRequest
3245
- # data as a hash:
3246
- #
3247
- # {
3248
- # id: "FuotaTaskId", # required
3249
- # next_token: "NextToken",
3250
- # max_results: 1,
3251
- # }
3252
- #
3253
2924
  # @!attribute [rw] id
3254
2925
  # The ID of a FUOTA task.
3255
2926
  # @return [String]
@@ -3289,14 +2960,6 @@ module Aws::IoTWireless
3289
2960
  include Aws::Structure
3290
2961
  end
3291
2962
 
3292
- # @note When making an API call, you may pass ListMulticastGroupsRequest
3293
- # data as a hash:
3294
- #
3295
- # {
3296
- # next_token: "NextToken",
3297
- # max_results: 1,
3298
- # }
3299
- #
3300
2963
  # @!attribute [rw] next_token
3301
2964
  # To retrieve the next set of results, the `nextToken` value from a
3302
2965
  # previous response; otherwise **null** to receive the first set of
@@ -3331,14 +2994,6 @@ module Aws::IoTWireless
3331
2994
  include Aws::Structure
3332
2995
  end
3333
2996
 
3334
- # @note When making an API call, you may pass ListNetworkAnalyzerConfigurationsRequest
3335
- # data as a hash:
3336
- #
3337
- # {
3338
- # max_results: 1,
3339
- # next_token: "NextToken",
3340
- # }
3341
- #
3342
2997
  # @!attribute [rw] max_results
3343
2998
  # The maximum number of results to return in this operation.
3344
2999
  # @return [Integer]
@@ -3372,14 +3027,6 @@ module Aws::IoTWireless
3372
3027
  include Aws::Structure
3373
3028
  end
3374
3029
 
3375
- # @note When making an API call, you may pass ListPartnerAccountsRequest
3376
- # data as a hash:
3377
- #
3378
- # {
3379
- # next_token: "NextToken",
3380
- # max_results: 1,
3381
- # }
3382
- #
3383
3030
  # @!attribute [rw] next_token
3384
3031
  # To retrieve the next set of results, the `nextToken` value from a
3385
3032
  # previous response; otherwise **null** to receive the first set of
@@ -3413,15 +3060,6 @@ module Aws::IoTWireless
3413
3060
  include Aws::Structure
3414
3061
  end
3415
3062
 
3416
- # @note When making an API call, you may pass ListPositionConfigurationsRequest
3417
- # data as a hash:
3418
- #
3419
- # {
3420
- # resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
3421
- # max_results: 1,
3422
- # next_token: "NextToken",
3423
- # }
3424
- #
3425
3063
  # @!attribute [rw] resource_type
3426
3064
  # Resource type for which position configurations are listed.
3427
3065
  # @return [String]
@@ -3460,16 +3098,6 @@ module Aws::IoTWireless
3460
3098
  include Aws::Structure
3461
3099
  end
3462
3100
 
3463
- # @note When making an API call, you may pass ListQueuedMessagesRequest
3464
- # data as a hash:
3465
- #
3466
- # {
3467
- # id: "WirelessDeviceId", # required
3468
- # next_token: "NextToken",
3469
- # max_results: 1,
3470
- # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
3471
- # }
3472
- #
3473
3101
  # @!attribute [rw] id
3474
3102
  # The ID of a given wireless device which the downlink message packets
3475
3103
  # are being sent.
@@ -3515,14 +3143,6 @@ module Aws::IoTWireless
3515
3143
  include Aws::Structure
3516
3144
  end
3517
3145
 
3518
- # @note When making an API call, you may pass ListServiceProfilesRequest
3519
- # data as a hash:
3520
- #
3521
- # {
3522
- # next_token: "NextToken",
3523
- # max_results: 1,
3524
- # }
3525
- #
3526
3146
  # @!attribute [rw] next_token
3527
3147
  # To retrieve the next set of results, the `nextToken` value from a
3528
3148
  # previous response; otherwise **null** to receive the first set of
@@ -3556,13 +3176,6 @@ module Aws::IoTWireless
3556
3176
  include Aws::Structure
3557
3177
  end
3558
3178
 
3559
- # @note When making an API call, you may pass ListTagsForResourceRequest
3560
- # data as a hash:
3561
- #
3562
- # {
3563
- # resource_arn: "AmazonResourceName", # required
3564
- # }
3565
- #
3566
3179
  # @!attribute [rw] resource_arn
3567
3180
  # The ARN of the resource for which you want to list tags.
3568
3181
  # @return [String]
@@ -3584,20 +3197,6 @@ module Aws::IoTWireless
3584
3197
  include Aws::Structure
3585
3198
  end
3586
3199
 
3587
- # @note When making an API call, you may pass ListWirelessDevicesRequest
3588
- # data as a hash:
3589
- #
3590
- # {
3591
- # max_results: 1,
3592
- # next_token: "NextToken",
3593
- # destination_name: "DestinationName",
3594
- # device_profile_id: "DeviceProfileId",
3595
- # service_profile_id: "ServiceProfileId",
3596
- # wireless_device_type: "Sidewalk", # accepts Sidewalk, LoRaWAN
3597
- # fuota_task_id: "FuotaTaskId",
3598
- # multicast_group_id: "MulticastGroupId",
3599
- # }
3600
- #
3601
3200
  # @!attribute [rw] max_results
3602
3201
  # The maximum number of results to return in this operation.
3603
3202
  # @return [Integer]
@@ -3665,15 +3264,6 @@ module Aws::IoTWireless
3665
3264
  include Aws::Structure
3666
3265
  end
3667
3266
 
3668
- # @note When making an API call, you may pass ListWirelessGatewayTaskDefinitionsRequest
3669
- # data as a hash:
3670
- #
3671
- # {
3672
- # max_results: 1,
3673
- # next_token: "NextToken",
3674
- # task_definition_type: "UPDATE", # accepts UPDATE
3675
- # }
3676
- #
3677
3267
  # @!attribute [rw] max_results
3678
3268
  # The maximum number of results to return in this operation.
3679
3269
  # @return [Integer]
@@ -3713,14 +3303,6 @@ module Aws::IoTWireless
3713
3303
  include Aws::Structure
3714
3304
  end
3715
3305
 
3716
- # @note When making an API call, you may pass ListWirelessGatewaysRequest
3717
- # data as a hash:
3718
- #
3719
- # {
3720
- # next_token: "NextToken",
3721
- # max_results: 1,
3722
- # }
3723
- #
3724
3306
  # @!attribute [rw] next_token
3725
3307
  # To retrieve the next set of results, the `nextToken` value from a
3726
3308
  # previous response; otherwise **null** to receive the first set of
@@ -3757,13 +3339,6 @@ module Aws::IoTWireless
3757
3339
  # Object for LoRaWAN connection status resource type event
3758
3340
  # configuration.
3759
3341
  #
3760
- # @note When making an API call, you may pass LoRaWANConnectionStatusEventNotificationConfigurations
3761
- # data as a hash:
3762
- #
3763
- # {
3764
- # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
3765
- # }
3766
- #
3767
3342
  # @!attribute [rw] gateway_eui_event_topic
3768
3343
  # Denotes whether the gateway EUI connection status event topic is
3769
3344
  # enabled or disabled.
@@ -3778,13 +3353,6 @@ module Aws::IoTWireless
3778
3353
  # Object for LoRaWAN connection status resource type event
3779
3354
  # configuration.
3780
3355
  #
3781
- # @note When making an API call, you may pass LoRaWANConnectionStatusResourceTypeEventConfiguration
3782
- # data as a hash:
3783
- #
3784
- # {
3785
- # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
3786
- # }
3787
- #
3788
3356
  # @!attribute [rw] wireless_gateway_event_topic
3789
3357
  # Denotes whether the wireless gateway connection status event topic
3790
3358
  # is enabled or disabled.
@@ -3798,53 +3366,6 @@ module Aws::IoTWireless
3798
3366
 
3799
3367
  # LoRaWAN object for create functions.
3800
3368
  #
3801
- # @note When making an API call, you may pass LoRaWANDevice
3802
- # data as a hash:
3803
- #
3804
- # {
3805
- # dev_eui: "DevEui",
3806
- # device_profile_id: "DeviceProfileId",
3807
- # service_profile_id: "ServiceProfileId",
3808
- # otaa_v1_1: {
3809
- # app_key: "AppKey",
3810
- # nwk_key: "NwkKey",
3811
- # join_eui: "JoinEui",
3812
- # },
3813
- # otaa_v1_0_x: {
3814
- # app_key: "AppKey",
3815
- # app_eui: "AppEui",
3816
- # gen_app_key: "GenAppKey",
3817
- # },
3818
- # abp_v1_1: {
3819
- # dev_addr: "DevAddr",
3820
- # session_keys: {
3821
- # f_nwk_s_int_key: "FNwkSIntKey",
3822
- # s_nwk_s_int_key: "SNwkSIntKey",
3823
- # nwk_s_enc_key: "NwkSEncKey",
3824
- # app_s_key: "AppSKey",
3825
- # },
3826
- # f_cnt_start: 1,
3827
- # },
3828
- # abp_v1_0_x: {
3829
- # dev_addr: "DevAddr",
3830
- # session_keys: {
3831
- # nwk_s_key: "NwkSKey",
3832
- # app_s_key: "AppSKey",
3833
- # },
3834
- # f_cnt_start: 1,
3835
- # },
3836
- # f_ports: {
3837
- # fuota: 1,
3838
- # multicast: 1,
3839
- # clock_sync: 1,
3840
- # positioning: {
3841
- # clock_sync: 1,
3842
- # stream: 1,
3843
- # gnss: 1,
3844
- # },
3845
- # },
3846
- # }
3847
- #
3848
3369
  # @!attribute [rw] dev_eui
3849
3370
  # The DevEUI value.
3850
3371
  # @return [String]
@@ -3930,31 +3451,6 @@ module Aws::IoTWireless
3930
3451
 
3931
3452
  # LoRaWANDeviceProfile object.
3932
3453
  #
3933
- # @note When making an API call, you may pass LoRaWANDeviceProfile
3934
- # data as a hash:
3935
- #
3936
- # {
3937
- # supports_class_b: false,
3938
- # class_b_timeout: 1,
3939
- # ping_slot_period: 1,
3940
- # ping_slot_dr: 1,
3941
- # ping_slot_freq: 1,
3942
- # supports_class_c: false,
3943
- # class_c_timeout: 1,
3944
- # mac_version: "MacVersion",
3945
- # reg_params_revision: "RegParamsRevision",
3946
- # rx_delay_1: 1,
3947
- # rx_dr_offset_1: 1,
3948
- # rx_data_rate_2: 1,
3949
- # rx_freq_2: 1,
3950
- # factory_preset_freqs_list: [1],
3951
- # max_eirp: 1,
3952
- # max_duty_cycle: 1,
3953
- # rf_region: "RfRegion",
3954
- # supports_join: false,
3955
- # supports_32_bit_f_cnt: false,
3956
- # }
3957
- #
3958
3454
  # @!attribute [rw] supports_class_b
3959
3455
  # The SupportsClassB value.
3960
3456
  # @return [Boolean]
@@ -4058,13 +3554,6 @@ module Aws::IoTWireless
4058
3554
 
4059
3555
  # The LoRaWAN information used with a FUOTA task.
4060
3556
  #
4061
- # @note When making an API call, you may pass LoRaWANFuotaTask
4062
- # data as a hash:
4063
- #
4064
- # {
4065
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
4066
- # }
4067
- #
4068
3557
  # @!attribute [rw] rf_region
4069
3558
  # Supported RfRegions
4070
3559
  # @return [String]
@@ -4094,23 +3583,6 @@ module Aws::IoTWireless
4094
3583
 
4095
3584
  # LoRaWANGateway object.
4096
3585
  #
4097
- # @note When making an API call, you may pass LoRaWANGateway
4098
- # data as a hash:
4099
- #
4100
- # {
4101
- # gateway_eui: "GatewayEui",
4102
- # rf_region: "RfRegion",
4103
- # join_eui_filters: [
4104
- # ["JoinEui"],
4105
- # ],
4106
- # net_id_filters: ["NetId"],
4107
- # sub_bands: [1],
4108
- # beaconing: {
4109
- # data_rate: 1,
4110
- # frequencies: [1],
4111
- # },
4112
- # }
4113
- #
4114
3586
  # @!attribute [rw] gateway_eui
4115
3587
  # The gateway's EUI value.
4116
3588
  # @return [String]
@@ -4185,15 +3657,6 @@ module Aws::IoTWireless
4185
3657
 
4186
3658
  # LoRaWANGatewayVersion object.
4187
3659
  #
4188
- # @note When making an API call, you may pass LoRaWANGatewayVersion
4189
- # data as a hash:
4190
- #
4191
- # {
4192
- # package_version: "PackageVersion",
4193
- # model: "Model",
4194
- # station: "Station",
4195
- # }
4196
- #
4197
3660
  # @!attribute [rw] package_version
4198
3661
  # The version of the wireless gateway firmware.
4199
3662
  # @return [String]
@@ -4321,13 +3784,6 @@ module Aws::IoTWireless
4321
3784
 
4322
3785
  # Object for LoRaWAN join resource type event configuration.
4323
3786
  #
4324
- # @note When making an API call, you may pass LoRaWANJoinEventNotificationConfigurations
4325
- # data as a hash:
4326
- #
4327
- # {
4328
- # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
4329
- # }
4330
- #
4331
3787
  # @!attribute [rw] dev_eui_event_topic
4332
3788
  # Denotes whether the Dev EUI join event topic is enabled or disabled.
4333
3789
  # @return [String]
@@ -4340,13 +3796,6 @@ module Aws::IoTWireless
4340
3796
 
4341
3797
  # Object for LoRaWAN join resource type event configuration.
4342
3798
  #
4343
- # @note When making an API call, you may pass LoRaWANJoinResourceTypeEventConfiguration
4344
- # data as a hash:
4345
- #
4346
- # {
4347
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
4348
- # }
4349
- #
4350
3799
  # @!attribute [rw] wireless_device_event_topic
4351
3800
  # Denotes whether the wireless device join event topic is enabled or
4352
3801
  # disabled.
@@ -4372,14 +3821,6 @@ module Aws::IoTWireless
4372
3821
 
4373
3822
  # The LoRaWAN information that is to be used with the multicast group.
4374
3823
  #
4375
- # @note When making an API call, you may pass LoRaWANMulticast
4376
- # data as a hash:
4377
- #
4378
- # {
4379
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
4380
- # dl_class: "ClassB", # accepts ClassB, ClassC
4381
- # }
4382
- #
4383
3824
  # @!attribute [rw] rf_region
4384
3825
  # Supported RfRegions
4385
3826
  # @return [String]
@@ -4426,13 +3867,6 @@ module Aws::IoTWireless
4426
3867
 
4427
3868
  # The metadata information of the LoRaWAN multicast group.
4428
3869
  #
4429
- # @note When making an API call, you may pass LoRaWANMulticastMetadata
4430
- # data as a hash:
4431
- #
4432
- # {
4433
- # f_port: 1,
4434
- # }
4435
- #
4436
3870
  # @!attribute [rw] f_port
4437
3871
  # The Fport value.
4438
3872
  # @return [Integer]
@@ -4445,16 +3879,6 @@ module Aws::IoTWireless
4445
3879
 
4446
3880
  # The LoRaWAN information used with the multicast session.
4447
3881
  #
4448
- # @note When making an API call, you may pass LoRaWANMulticastSession
4449
- # data as a hash:
4450
- #
4451
- # {
4452
- # dl_dr: 1,
4453
- # dl_freq: 1,
4454
- # session_start_time: Time.now,
4455
- # session_timeout: 1,
4456
- # }
4457
- #
4458
3882
  # @!attribute [rw] dl_dr
4459
3883
  # Downlink data rate.
4460
3884
  # @return [Integer]
@@ -4482,23 +3906,6 @@ module Aws::IoTWireless
4482
3906
 
4483
3907
  # LoRaWAN router info.
4484
3908
  #
4485
- # @note When making an API call, you may pass LoRaWANSendDataToDevice
4486
- # data as a hash:
4487
- #
4488
- # {
4489
- # f_port: 1,
4490
- # participating_gateways: {
4491
- # downlink_mode: "SEQUENTIAL", # required, accepts SEQUENTIAL, CONCURRENT, USING_UPLINK_GATEWAY
4492
- # gateway_list: [ # required
4493
- # {
4494
- # gateway_id: "WirelessGatewayId", # required
4495
- # downlink_frequency: 1, # required
4496
- # },
4497
- # ],
4498
- # transmission_interval: 1, # required
4499
- # },
4500
- # }
4501
- #
4502
3909
  # @!attribute [rw] f_port
4503
3910
  # The Fport value.
4504
3911
  # @return [Integer]
@@ -4518,15 +3925,6 @@ module Aws::IoTWireless
4518
3925
 
4519
3926
  # LoRaWANServiceProfile object.
4520
3927
  #
4521
- # @note When making an API call, you may pass LoRaWANServiceProfile
4522
- # data as a hash:
4523
- #
4524
- # {
4525
- # add_gw_metadata: false,
4526
- # dr_min: 1,
4527
- # dr_max: 1,
4528
- # }
4529
- #
4530
3928
  # @!attribute [rw] add_gw_metadata
4531
3929
  # The AddGWMetaData value.
4532
3930
  # @return [Boolean]
@@ -4549,13 +3947,6 @@ module Aws::IoTWireless
4549
3947
 
4550
3948
  # The LoRaWAN information used to start a FUOTA task.
4551
3949
  #
4552
- # @note When making an API call, you may pass LoRaWANStartFuotaTask
4553
- # data as a hash:
4554
- #
4555
- # {
4556
- # start_time: Time.now,
4557
- # }
4558
- #
4559
3950
  # @!attribute [rw] start_time
4560
3951
  # Start time of a FUOTA task.
4561
3952
  # @return [Time]
@@ -4568,27 +3959,6 @@ module Aws::IoTWireless
4568
3959
 
4569
3960
  # LoRaWAN object for update functions.
4570
3961
  #
4571
- # @note When making an API call, you may pass LoRaWANUpdateDevice
4572
- # data as a hash:
4573
- #
4574
- # {
4575
- # device_profile_id: "DeviceProfileId",
4576
- # service_profile_id: "ServiceProfileId",
4577
- # abp_v1_1: {
4578
- # f_cnt_start: 1,
4579
- # },
4580
- # abp_v1_0_x: {
4581
- # f_cnt_start: 1,
4582
- # },
4583
- # f_ports: {
4584
- # positioning: {
4585
- # clock_sync: 1,
4586
- # stream: 1,
4587
- # gnss: 1,
4588
- # },
4589
- # },
4590
- # }
4591
- #
4592
3962
  # @!attribute [rw] device_profile_id
4593
3963
  # The ID of the device profile for the wireless device.
4594
3964
  # @return [String]
@@ -4621,24 +3991,6 @@ module Aws::IoTWireless
4621
3991
 
4622
3992
  # LoRaWANUpdateGatewayTaskCreate object.
4623
3993
  #
4624
- # @note When making an API call, you may pass LoRaWANUpdateGatewayTaskCreate
4625
- # data as a hash:
4626
- #
4627
- # {
4628
- # update_signature: "UpdateSignature",
4629
- # sig_key_crc: 1,
4630
- # current_version: {
4631
- # package_version: "PackageVersion",
4632
- # model: "Model",
4633
- # station: "Station",
4634
- # },
4635
- # update_version: {
4636
- # package_version: "PackageVersion",
4637
- # model: "Model",
4638
- # station: "Station",
4639
- # },
4640
- # }
4641
- #
4642
3994
  # @!attribute [rw] update_signature
4643
3995
  # The signature used to verify the update firmware.
4644
3996
  # @return [String]
@@ -4681,18 +4033,123 @@ module Aws::IoTWireless
4681
4033
  include Aws::Structure
4682
4034
  end
4683
4035
 
4684
- # Message delivery status event configuration object for enabling and
4685
- # disabling relevant topics.
4036
+ # LTE local identification (local ID) information.
4037
+ #
4038
+ # @!attribute [rw] pci
4039
+ # Physical cell ID.
4040
+ # @return [Integer]
4041
+ #
4042
+ # @!attribute [rw] earfcn
4043
+ # Evolved universal terrestrial radio access (E-UTRA) absolute radio
4044
+ # frequency channel number (FCN).
4045
+ # @return [Integer]
4046
+ #
4047
+ class LteLocalId < Struct.new(
4048
+ :pci,
4049
+ :earfcn)
4050
+ SENSITIVE = []
4051
+ include Aws::Structure
4052
+ end
4053
+
4054
+ # LTE object for network measurement reports.
4055
+ #
4056
+ # @!attribute [rw] pci
4057
+ # Physical cell ID.
4058
+ # @return [Integer]
4059
+ #
4060
+ # @!attribute [rw] earfcn
4061
+ # E-UTRA (Evolved universal terrestrial Radio Access) absolute radio
4062
+ # frequency channel Number (EARFCN).
4063
+ # @return [Integer]
4064
+ #
4065
+ # @!attribute [rw] eutran_cid
4066
+ # E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell
4067
+ # global identifier (EUTRANCID).
4068
+ # @return [Integer]
4069
+ #
4070
+ # @!attribute [rw] rsrp
4071
+ # Signal power of the reference signal received, measured in dBm
4072
+ # (decibel-milliwatts).
4073
+ # @return [Integer]
4074
+ #
4075
+ # @!attribute [rw] rsrq
4076
+ # Signal quality of the reference Signal received, measured in
4077
+ # decibels (dB).
4078
+ # @return [Float]
4079
+ #
4080
+ class LteNmrObj < Struct.new(
4081
+ :pci,
4082
+ :earfcn,
4083
+ :eutran_cid,
4084
+ :rsrp,
4085
+ :rsrq)
4086
+ SENSITIVE = []
4087
+ include Aws::Structure
4088
+ end
4089
+
4090
+ # LTE object.
4091
+ #
4092
+ # @!attribute [rw] mcc
4093
+ # Mobile Country Code.
4094
+ # @return [Integer]
4095
+ #
4096
+ # @!attribute [rw] mnc
4097
+ # Mobile Network Code.
4098
+ # @return [Integer]
4099
+ #
4100
+ # @!attribute [rw] eutran_cid
4101
+ # E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell
4102
+ # Global Identifier.
4103
+ # @return [Integer]
4104
+ #
4105
+ # @!attribute [rw] tac
4106
+ # LTE tracking area code.
4107
+ # @return [Integer]
4108
+ #
4109
+ # @!attribute [rw] lte_local_id
4110
+ # LTE local identification (local ID) information.
4111
+ # @return [Types::LteLocalId]
4112
+ #
4113
+ # @!attribute [rw] lte_timing_advance
4114
+ # LTE timing advance.
4115
+ # @return [Integer]
4116
+ #
4117
+ # @!attribute [rw] rsrp
4118
+ # Signal power of the reference signal received, measured in dBm
4119
+ # (decibel-milliwatts).
4120
+ # @return [Integer]
4121
+ #
4122
+ # @!attribute [rw] rsrq
4123
+ # Signal quality of the reference Signal received, measured in
4124
+ # decibels (dB).
4125
+ # @return [Float]
4686
4126
  #
4687
- # @note When making an API call, you may pass MessageDeliveryStatusEventConfiguration
4688
- # data as a hash:
4127
+ # @!attribute [rw] nr_capable
4128
+ # Parameter that determines whether the LTE object is capable of
4129
+ # supporting NR (new radio).
4130
+ # @return [Boolean]
4689
4131
  #
4690
- # {
4691
- # sidewalk: {
4692
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
4693
- # },
4694
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
4695
- # }
4132
+ # @!attribute [rw] lte_nmr
4133
+ # LTE object for network measurement reports.
4134
+ # @return [Array<Types::LteNmrObj>]
4135
+ #
4136
+ class LteObj < Struct.new(
4137
+ :mcc,
4138
+ :mnc,
4139
+ :eutran_cid,
4140
+ :tac,
4141
+ :lte_local_id,
4142
+ :lte_timing_advance,
4143
+ :rsrp,
4144
+ :rsrq,
4145
+ :nr_capable,
4146
+ :lte_nmr)
4147
+ SENSITIVE = []
4148
+ include Aws::Structure
4149
+ end
4150
+
4151
+ # Message delivery status event configuration object for enabling and
4152
+ # disabling relevant topics.
4696
4153
  #
4697
4154
  # @!attribute [rw] sidewalk
4698
4155
  # `SidewalkEventNotificationConfigurations` object, which is the event
@@ -4700,8 +4157,8 @@ module Aws::IoTWireless
4700
4157
  # @return [Types::SidewalkEventNotificationConfigurations]
4701
4158
  #
4702
4159
  # @!attribute [rw] wireless_device_id_event_topic
4703
- # Denotes whether the wireless device ID device registration state
4704
- # event topic is enabled or disabled.
4160
+ # Denotes whether the wireless device ID message delivery status event
4161
+ # topic is enabled or disabled.
4705
4162
  # @return [String]
4706
4163
  #
4707
4164
  class MessageDeliveryStatusEventConfiguration < Struct.new(
@@ -4714,15 +4171,6 @@ module Aws::IoTWireless
4714
4171
  # Message delivery status resource type event configuration object for
4715
4172
  # enabling or disabling relevant topic.
4716
4173
  #
4717
- # @note When making an API call, you may pass MessageDeliveryStatusResourceTypeEventConfiguration
4718
- # data as a hash:
4719
- #
4720
- # {
4721
- # sidewalk: {
4722
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
4723
- # },
4724
- # }
4725
- #
4726
4174
  # @!attribute [rw] sidewalk
4727
4175
  # Sidewalk resource type event configuration object for enabling or
4728
4176
  # disabling topic.
@@ -4770,15 +4218,6 @@ module Aws::IoTWireless
4770
4218
 
4771
4219
  # Wireless metadata that is to be sent to multicast group.
4772
4220
  #
4773
- # @note When making an API call, you may pass MulticastWirelessMetadata
4774
- # data as a hash:
4775
- #
4776
- # {
4777
- # lo_ra_wan: {
4778
- # f_port: 1,
4779
- # },
4780
- # }
4781
- #
4782
4221
  # @!attribute [rw] lo_ra_wan
4783
4222
  # The metadata information of the LoRaWAN multicast group.
4784
4223
  # @return [Types::LoRaWANMulticastMetadata]
@@ -4808,15 +4247,6 @@ module Aws::IoTWireless
4808
4247
 
4809
4248
  # OTAA device object for v1.0.x
4810
4249
  #
4811
- # @note When making an API call, you may pass OtaaV1_0_x
4812
- # data as a hash:
4813
- #
4814
- # {
4815
- # app_key: "AppKey",
4816
- # app_eui: "AppEui",
4817
- # gen_app_key: "GenAppKey",
4818
- # }
4819
- #
4820
4250
  # @!attribute [rw] app_key
4821
4251
  # The AppKey value.
4822
4252
  # @return [String]
@@ -4839,15 +4269,6 @@ module Aws::IoTWireless
4839
4269
 
4840
4270
  # OTAA device object for v1.1
4841
4271
  #
4842
- # @note When making an API call, you may pass OtaaV1_1
4843
- # data as a hash:
4844
- #
4845
- # {
4846
- # app_key: "AppKey",
4847
- # nwk_key: "NwkKey",
4848
- # join_eui: "JoinEui",
4849
- # }
4850
- #
4851
4272
  # @!attribute [rw] app_key
4852
4273
  # The AppKey value.
4853
4274
  # @return [String]
@@ -4872,20 +4293,6 @@ module Aws::IoTWireless
4872
4293
  # traffic when the wireless device is running in class B or class C
4873
4294
  # mode.
4874
4295
  #
4875
- # @note When making an API call, you may pass ParticipatingGateways
4876
- # data as a hash:
4877
- #
4878
- # {
4879
- # downlink_mode: "SEQUENTIAL", # required, accepts SEQUENTIAL, CONCURRENT, USING_UPLINK_GATEWAY
4880
- # gateway_list: [ # required
4881
- # {
4882
- # gateway_id: "WirelessGatewayId", # required
4883
- # downlink_frequency: 1, # required
4884
- # },
4885
- # ],
4886
- # transmission_interval: 1, # required
4887
- # }
4888
- #
4889
4296
  # @!attribute [rw] downlink_mode
4890
4297
  # Indicates whether to send the downlink message in sequential mode or
4891
4298
  # concurrent mode, or to use only the chosen gateways from the
@@ -4942,16 +4349,6 @@ module Aws::IoTWireless
4942
4349
 
4943
4350
  # The wrapper for position solver configurations.
4944
4351
  #
4945
- # @note When making an API call, you may pass PositionSolverConfigurations
4946
- # data as a hash:
4947
- #
4948
- # {
4949
- # semtech_gnss: {
4950
- # status: "Enabled", # required, accepts Enabled, Disabled
4951
- # fec: "ROSE", # required, accepts ROSE, NONE
4952
- # },
4953
- # }
4954
- #
4955
4352
  # @!attribute [rw] semtech_gnss
4956
4353
  # The Semtech GNSS solver configuration object.
4957
4354
  # @return [Types::SemtechGnssConfiguration]
@@ -4976,15 +4373,6 @@ module Aws::IoTWireless
4976
4373
 
4977
4374
  # The FPorts for the position information.
4978
4375
  #
4979
- # @note When making an API call, you may pass Positioning
4980
- # data as a hash:
4981
- #
4982
- # {
4983
- # clock_sync: 1,
4984
- # stream: 1,
4985
- # gnss: 1,
4986
- # }
4987
- #
4988
4376
  # @!attribute [rw] clock_sync
4989
4377
  # The Fport value.
4990
4378
  # @return [Integer]
@@ -5008,16 +4396,6 @@ module Aws::IoTWireless
5008
4396
  # Proximity event configuration object for enabling and disabling
5009
4397
  # relevant topics.
5010
4398
  #
5011
- # @note When making an API call, you may pass ProximityEventConfiguration
5012
- # data as a hash:
5013
- #
5014
- # {
5015
- # sidewalk: {
5016
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
5017
- # },
5018
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
5019
- # }
5020
- #
5021
4399
  # @!attribute [rw] sidewalk
5022
4400
  # Proximity event configuration object for enabling or disabling
5023
4401
  # Sidewalk related event topics.
@@ -5038,15 +4416,6 @@ module Aws::IoTWireless
5038
4416
  # Proximity resource type event configuration object for enabling or
5039
4417
  # disabling topic.
5040
4418
  #
5041
- # @note When making an API call, you may pass ProximityResourceTypeEventConfiguration
5042
- # data as a hash:
5043
- #
5044
- # {
5045
- # sidewalk: {
5046
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
5047
- # },
5048
- # }
5049
- #
5050
4419
  # @!attribute [rw] sidewalk
5051
4420
  # Proximity resource type event configuration object for enabling and
5052
4421
  # disabling wireless device topic.
@@ -5058,21 +4427,6 @@ module Aws::IoTWireless
5058
4427
  include Aws::Structure
5059
4428
  end
5060
4429
 
5061
- # @note When making an API call, you may pass PutPositionConfigurationRequest
5062
- # data as a hash:
5063
- #
5064
- # {
5065
- # resource_identifier: "PositionResourceIdentifier", # required
5066
- # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
5067
- # solvers: {
5068
- # semtech_gnss: {
5069
- # status: "Enabled", # required, accepts Enabled, Disabled
5070
- # fec: "ROSE", # required, accepts ROSE, NONE
5071
- # },
5072
- # },
5073
- # destination: "DestinationName",
5074
- # }
5075
- #
5076
4430
  # @!attribute [rw] resource_identifier
5077
4431
  # Resource identifier used to update the position configuration.
5078
4432
  # @return [String]
@@ -5104,15 +4458,6 @@ module Aws::IoTWireless
5104
4458
 
5105
4459
  class PutPositionConfigurationResponse < Aws::EmptyStructure; end
5106
4460
 
5107
- # @note When making an API call, you may pass PutResourceLogLevelRequest
5108
- # data as a hash:
5109
- #
5110
- # {
5111
- # resource_identifier: "ResourceIdentifier", # required
5112
- # resource_type: "ResourceType", # required
5113
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
5114
- # }
5115
- #
5116
4461
  # @!attribute [rw] resource_identifier
5117
4462
  # The identifier of the resource. For a Wireless Device, it is the
5118
4463
  # wireless device ID. For a wireless gateway, it is the wireless
@@ -5146,14 +4491,6 @@ module Aws::IoTWireless
5146
4491
 
5147
4492
  class ResetAllResourceLogLevelsResponse < Aws::EmptyStructure; end
5148
4493
 
5149
- # @note When making an API call, you may pass ResetResourceLogLevelRequest
5150
- # data as a hash:
5151
- #
5152
- # {
5153
- # resource_identifier: "ResourceIdentifier", # required
5154
- # resource_type: "ResourceType", # required
5155
- # }
5156
- #
5157
4494
  # @!attribute [rw] resource_identifier
5158
4495
  # The identifier of the resource. For a Wireless Device, it is the
5159
4496
  # wireless device ID. For a wireless gateway, it is the wireless
@@ -5197,14 +4534,6 @@ module Aws::IoTWireless
5197
4534
 
5198
4535
  # Information about the Semtech GNSS solver configuration.
5199
4536
  #
5200
- # @note When making an API call, you may pass SemtechGnssConfiguration
5201
- # data as a hash:
5202
- #
5203
- # {
5204
- # status: "Enabled", # required, accepts Enabled, Disabled
5205
- # fec: "ROSE", # required, accepts ROSE, NONE
5206
- # }
5207
- #
5208
4537
  # @!attribute [rw] status
5209
4538
  # The status indicating whether the solver is enabled.
5210
4539
  # @return [String]
@@ -5247,19 +4576,6 @@ module Aws::IoTWireless
5247
4576
  include Aws::Structure
5248
4577
  end
5249
4578
 
5250
- # @note When making an API call, you may pass SendDataToMulticastGroupRequest
5251
- # data as a hash:
5252
- #
5253
- # {
5254
- # id: "MulticastGroupId", # required
5255
- # payload_data: "PayloadData", # required
5256
- # wireless_metadata: { # required
5257
- # lo_ra_wan: {
5258
- # f_port: 1,
5259
- # },
5260
- # },
5261
- # }
5262
- #
5263
4579
  # @!attribute [rw] id
5264
4580
  # The ID of the multicast group.
5265
4581
  # @return [String]
@@ -5290,35 +4606,6 @@ module Aws::IoTWireless
5290
4606
  include Aws::Structure
5291
4607
  end
5292
4608
 
5293
- # @note When making an API call, you may pass SendDataToWirelessDeviceRequest
5294
- # data as a hash:
5295
- #
5296
- # {
5297
- # id: "WirelessDeviceId", # required
5298
- # transmit_mode: 1, # required
5299
- # payload_data: "PayloadData", # required
5300
- # wireless_metadata: {
5301
- # lo_ra_wan: {
5302
- # f_port: 1,
5303
- # participating_gateways: {
5304
- # downlink_mode: "SEQUENTIAL", # required, accepts SEQUENTIAL, CONCURRENT, USING_UPLINK_GATEWAY
5305
- # gateway_list: [ # required
5306
- # {
5307
- # gateway_id: "WirelessGatewayId", # required
5308
- # downlink_frequency: 1, # required
5309
- # },
5310
- # ],
5311
- # transmission_interval: 1, # required
5312
- # },
5313
- # },
5314
- # sidewalk: {
5315
- # seq: 1,
5316
- # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
5317
- # ack_mode_retry_duration_secs: 1,
5318
- # },
5319
- # },
5320
- # }
5321
- #
5322
4609
  # @!attribute [rw] id
5323
4610
  # The ID of the wireless device to receive the data.
5324
4611
  # @return [String]
@@ -5380,14 +4667,6 @@ module Aws::IoTWireless
5380
4667
 
5381
4668
  # Session keys for ABP v1.1
5382
4669
  #
5383
- # @note When making an API call, you may pass SessionKeysAbpV1_0_x
5384
- # data as a hash:
5385
- #
5386
- # {
5387
- # nwk_s_key: "NwkSKey",
5388
- # app_s_key: "AppSKey",
5389
- # }
5390
- #
5391
4670
  # @!attribute [rw] nwk_s_key
5392
4671
  # The NwkSKey value.
5393
4672
  # @return [String]
@@ -5405,16 +4684,6 @@ module Aws::IoTWireless
5405
4684
 
5406
4685
  # Session keys for ABP v1.1
5407
4686
  #
5408
- # @note When making an API call, you may pass SessionKeysAbpV1_1
5409
- # data as a hash:
5410
- #
5411
- # {
5412
- # f_nwk_s_int_key: "FNwkSIntKey",
5413
- # s_nwk_s_int_key: "SNwkSIntKey",
5414
- # nwk_s_enc_key: "NwkSEncKey",
5415
- # app_s_key: "AppSKey",
5416
- # }
5417
- #
5418
4687
  # @!attribute [rw] f_nwk_s_int_key
5419
4688
  # The FNwkSIntKey value.
5420
4689
  # @return [String]
@@ -5442,14 +4711,6 @@ module Aws::IoTWireless
5442
4711
 
5443
4712
  # Information about a Sidewalk account.
5444
4713
  #
5445
- # @note When making an API call, you may pass SidewalkAccountInfo
5446
- # data as a hash:
5447
- #
5448
- # {
5449
- # amazon_id: "AmazonId",
5450
- # app_server_private_key: "AppServerPrivateKey",
5451
- # }
5452
- #
5453
4714
  # @!attribute [rw] amazon_id
5454
4715
  # The Sidewalk Amazon ID.
5455
4716
  # @return [String]
@@ -5544,13 +4805,6 @@ module Aws::IoTWireless
5544
4805
  # `SidewalkEventNotificationConfigurations` object, which is the event
5545
4806
  # configuration object for Sidewalk-related event topics.
5546
4807
  #
5547
- # @note When making an API call, you may pass SidewalkEventNotificationConfigurations
5548
- # data as a hash:
5549
- #
5550
- # {
5551
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
5552
- # }
5553
- #
5554
4808
  # @!attribute [rw] amazon_id_event_topic
5555
4809
  # Denotes whether the Amazon ID event topic is enabled or disabled.
5556
4810
  # @return [String]
@@ -5591,13 +4845,6 @@ module Aws::IoTWireless
5591
4845
  # Sidewalk resource type event configuration object for enabling or
5592
4846
  # disabling topic.
5593
4847
  #
5594
- # @note When making an API call, you may pass SidewalkResourceTypeEventConfiguration
5595
- # data as a hash:
5596
- #
5597
- # {
5598
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
5599
- # }
5600
- #
5601
4848
  # @!attribute [rw] wireless_device_event_topic
5602
4849
  # Denotes whether the wireless device join event topic is enabled or
5603
4850
  # disabled.
@@ -5611,15 +4858,6 @@ module Aws::IoTWireless
5611
4858
 
5612
4859
  # Information about a Sidewalk router.
5613
4860
  #
5614
- # @note When making an API call, you may pass SidewalkSendDataToDevice
5615
- # data as a hash:
5616
- #
5617
- # {
5618
- # seq: 1,
5619
- # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
5620
- # ack_mode_retry_duration_secs: 1,
5621
- # }
5622
- #
5623
4861
  # @!attribute [rw] seq
5624
4862
  # The sequence number.
5625
4863
  # @return [Integer]
@@ -5630,8 +4868,7 @@ module Aws::IoTWireless
5630
4868
  # @return [String]
5631
4869
  #
5632
4870
  # @!attribute [rw] ack_mode_retry_duration_secs
5633
- # The duration of time in seconds for which you want to retry sending
5634
- # the ACK.
4871
+ # The duration of time in seconds to retry sending the ACK.
5635
4872
  # @return [Integer]
5636
4873
  #
5637
4874
  class SidewalkSendDataToDevice < Struct.new(
@@ -5644,13 +4881,6 @@ module Aws::IoTWireless
5644
4881
 
5645
4882
  # Sidewalk update.
5646
4883
  #
5647
- # @note When making an API call, you may pass SidewalkUpdateAccount
5648
- # data as a hash:
5649
- #
5650
- # {
5651
- # app_server_private_key: "AppServerPrivateKey",
5652
- # }
5653
- #
5654
4884
  # @!attribute [rw] app_server_private_key
5655
4885
  # The new Sidewalk application server private key.
5656
4886
  # @return [String]
@@ -5661,20 +4891,6 @@ module Aws::IoTWireless
5661
4891
  include Aws::Structure
5662
4892
  end
5663
4893
 
5664
- # @note When making an API call, you may pass StartBulkAssociateWirelessDeviceWithMulticastGroupRequest
5665
- # data as a hash:
5666
- #
5667
- # {
5668
- # id: "MulticastGroupId", # required
5669
- # query_string: "QueryString",
5670
- # tags: [
5671
- # {
5672
- # key: "TagKey", # required
5673
- # value: "TagValue", # required
5674
- # },
5675
- # ],
5676
- # }
5677
- #
5678
4894
  # @!attribute [rw] id
5679
4895
  # The ID of the multicast group.
5680
4896
  # @return [String]
@@ -5699,20 +4915,6 @@ module Aws::IoTWireless
5699
4915
 
5700
4916
  class StartBulkAssociateWirelessDeviceWithMulticastGroupResponse < Aws::EmptyStructure; end
5701
4917
 
5702
- # @note When making an API call, you may pass StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest
5703
- # data as a hash:
5704
- #
5705
- # {
5706
- # id: "MulticastGroupId", # required
5707
- # query_string: "QueryString",
5708
- # tags: [
5709
- # {
5710
- # key: "TagKey", # required
5711
- # value: "TagValue", # required
5712
- # },
5713
- # ],
5714
- # }
5715
- #
5716
4918
  # @!attribute [rw] id
5717
4919
  # The ID of the multicast group.
5718
4920
  # @return [String]
@@ -5737,16 +4939,6 @@ module Aws::IoTWireless
5737
4939
 
5738
4940
  class StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse < Aws::EmptyStructure; end
5739
4941
 
5740
- # @note When making an API call, you may pass StartFuotaTaskRequest
5741
- # data as a hash:
5742
- #
5743
- # {
5744
- # id: "FuotaTaskId", # required
5745
- # lo_ra_wan: {
5746
- # start_time: Time.now,
5747
- # },
5748
- # }
5749
- #
5750
4942
  # @!attribute [rw] id
5751
4943
  # The ID of a FUOTA task.
5752
4944
  # @return [String]
@@ -5764,19 +4956,6 @@ module Aws::IoTWireless
5764
4956
 
5765
4957
  class StartFuotaTaskResponse < Aws::EmptyStructure; end
5766
4958
 
5767
- # @note When making an API call, you may pass StartMulticastGroupSessionRequest
5768
- # data as a hash:
5769
- #
5770
- # {
5771
- # id: "MulticastGroupId", # required
5772
- # lo_ra_wan: { # required
5773
- # dl_dr: 1,
5774
- # dl_freq: 1,
5775
- # session_start_time: Time.now,
5776
- # session_timeout: 1,
5777
- # },
5778
- # }
5779
- #
5780
4959
  # @!attribute [rw] id
5781
4960
  # The ID of the multicast group.
5782
4961
  # @return [String]
@@ -5796,14 +4975,6 @@ module Aws::IoTWireless
5796
4975
 
5797
4976
  # A simple label consisting of a customer-defined key-value pair
5798
4977
  #
5799
- # @note When making an API call, you may pass Tag
5800
- # data as a hash:
5801
- #
5802
- # {
5803
- # key: "TagKey", # required
5804
- # value: "TagValue", # required
5805
- # }
5806
- #
5807
4978
  # @!attribute [rw] key
5808
4979
  # The tag's key value.
5809
4980
  # @return [String]
@@ -5819,19 +4990,6 @@ module Aws::IoTWireless
5819
4990
  include Aws::Structure
5820
4991
  end
5821
4992
 
5822
- # @note When making an API call, you may pass TagResourceRequest
5823
- # data as a hash:
5824
- #
5825
- # {
5826
- # resource_arn: "AmazonResourceName", # required
5827
- # tags: [ # required
5828
- # {
5829
- # key: "TagKey", # required
5830
- # value: "TagValue", # required
5831
- # },
5832
- # ],
5833
- # }
5834
- #
5835
4993
  # @!attribute [rw] resource_arn
5836
4994
  # The ARN of the resource to add tags to.
5837
4995
  # @return [String]
@@ -5850,13 +5008,115 @@ module Aws::IoTWireless
5850
5008
 
5851
5009
  class TagResourceResponse < Aws::EmptyStructure; end
5852
5010
 
5853
- # @note When making an API call, you may pass TestWirelessDeviceRequest
5854
- # data as a hash:
5011
+ # TD-SCDMA local identification (local Id) information.
5012
+ #
5013
+ # @!attribute [rw] uarfcn
5014
+ # TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute
5015
+ # RF channel number (UARFCN).
5016
+ # @return [Integer]
5017
+ #
5018
+ # @!attribute [rw] cell_params
5019
+ # Cell parameters for TD-SCDMA.
5020
+ # @return [Integer]
5021
+ #
5022
+ class TdscdmaLocalId < Struct.new(
5023
+ :uarfcn,
5024
+ :cell_params)
5025
+ SENSITIVE = []
5026
+ include Aws::Structure
5027
+ end
5028
+
5029
+ # TD-SCDMA object for network measurement reports.
5855
5030
  #
5856
- # {
5857
- # id: "WirelessDeviceId", # required
5858
- # }
5031
+ # @!attribute [rw] uarfcn
5032
+ # TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute
5033
+ # RF channel number.
5034
+ # @return [Integer]
5035
+ #
5036
+ # @!attribute [rw] cell_params
5037
+ # Cell parameters for TD-SCDMA network measurement reports object.
5038
+ # @return [Integer]
5039
+ #
5040
+ # @!attribute [rw] utran_cid
5041
+ # UTRAN (UMTS Terrestrial Radio Access Network) cell global
5042
+ # identifier.
5043
+ # @return [Integer]
5044
+ #
5045
+ # @!attribute [rw] rscp
5046
+ # Code power of the received signal, measured in decibel-milliwatts
5047
+ # (dBm).
5048
+ # @return [Integer]
5049
+ #
5050
+ # @!attribute [rw] path_loss
5051
+ # Path loss, or path attenuation, is the reduction in power density of
5052
+ # an electromagnetic wave as it propagates through space.
5053
+ # @return [Integer]
5054
+ #
5055
+ class TdscdmaNmrObj < Struct.new(
5056
+ :uarfcn,
5057
+ :cell_params,
5058
+ :utran_cid,
5059
+ :rscp,
5060
+ :path_loss)
5061
+ SENSITIVE = []
5062
+ include Aws::Structure
5063
+ end
5064
+
5065
+ # TD-SCDMA object.
5066
+ #
5067
+ # @!attribute [rw] mcc
5068
+ # Mobile Country Code.
5069
+ # @return [Integer]
5070
+ #
5071
+ # @!attribute [rw] mnc
5072
+ # Mobile Network Code.
5073
+ # @return [Integer]
5074
+ #
5075
+ # @!attribute [rw] lac
5076
+ # Location Area Code.
5077
+ # @return [Integer]
5078
+ #
5079
+ # @!attribute [rw] utran_cid
5080
+ # UTRAN (UMTS Terrestrial Radio Access Network) Cell Global
5081
+ # Identifier.
5082
+ # @return [Integer]
5083
+ #
5084
+ # @!attribute [rw] tdscdma_local_id
5085
+ # TD-SCDMA local identification (local ID) information.
5086
+ # @return [Types::TdscdmaLocalId]
5087
+ #
5088
+ # @!attribute [rw] tdscdma_timing_advance
5089
+ # TD-SCDMA Timing advance.
5090
+ # @return [Integer]
5859
5091
  #
5092
+ # @!attribute [rw] rscp
5093
+ # Signal power of the received signal (Received Signal Code Power),
5094
+ # measured in decibel-milliwatts (dBm).
5095
+ # @return [Integer]
5096
+ #
5097
+ # @!attribute [rw] path_loss
5098
+ # Path loss, or path attenuation, is the reduction in power density of
5099
+ # an electromagnetic wave as it propagates through space.
5100
+ # @return [Integer]
5101
+ #
5102
+ # @!attribute [rw] tdscdma_nmr
5103
+ # TD-SCDMA object for network measurement reports.
5104
+ # @return [Array<Types::TdscdmaNmrObj>]
5105
+ #
5106
+ class TdscdmaObj < Struct.new(
5107
+ :mcc,
5108
+ :mnc,
5109
+ :lac,
5110
+ :utran_cid,
5111
+ :tdscdma_local_id,
5112
+ :tdscdma_timing_advance,
5113
+ :rscp,
5114
+ :path_loss,
5115
+ :tdscdma_nmr)
5116
+ SENSITIVE = []
5117
+ include Aws::Structure
5118
+ end
5119
+
5860
5120
  # @!attribute [rw] id
5861
5121
  # The ID of the wireless device to test.
5862
5122
  # @return [String]
@@ -5907,14 +5167,6 @@ module Aws::IoTWireless
5907
5167
 
5908
5168
  # Trace content for your wireless gateway and wireless device resources.
5909
5169
  #
5910
- # @note When making an API call, you may pass TraceContent
5911
- # data as a hash:
5912
- #
5913
- # {
5914
- # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
5915
- # log_level: "INFO", # accepts INFO, ERROR, DISABLED
5916
- # }
5917
- #
5918
5170
  # @!attribute [rw] wireless_device_frame_info
5919
5171
  # `FrameInfo` of your wireless device resources for the trace content.
5920
5172
  # Use FrameInfo to debug the communication between your LoRaWAN end
@@ -5934,14 +5186,6 @@ module Aws::IoTWireless
5934
5186
  include Aws::Structure
5935
5187
  end
5936
5188
 
5937
- # @note When making an API call, you may pass UntagResourceRequest
5938
- # data as a hash:
5939
- #
5940
- # {
5941
- # resource_arn: "AmazonResourceName", # required
5942
- # tag_keys: ["TagKey"], # required
5943
- # }
5944
- #
5945
5189
  # @!attribute [rw] resource_arn
5946
5190
  # The ARN of the resource to remove tags from.
5947
5191
  # @return [String]
@@ -5961,13 +5205,6 @@ module Aws::IoTWireless
5961
5205
 
5962
5206
  # ABP device object for LoRaWAN specification v1.0.x
5963
5207
  #
5964
- # @note When making an API call, you may pass UpdateAbpV1_0_x
5965
- # data as a hash:
5966
- #
5967
- # {
5968
- # f_cnt_start: 1,
5969
- # }
5970
- #
5971
5208
  # @!attribute [rw] f_cnt_start
5972
5209
  # The FCnt init value.
5973
5210
  # @return [Integer]
@@ -5980,13 +5217,6 @@ module Aws::IoTWireless
5980
5217
 
5981
5218
  # ABP device object for LoRaWAN specification v1.1
5982
5219
  #
5983
- # @note When making an API call, you may pass UpdateAbpV1_1
5984
- # data as a hash:
5985
- #
5986
- # {
5987
- # f_cnt_start: 1,
5988
- # }
5989
- #
5990
5220
  # @!attribute [rw] f_cnt_start
5991
5221
  # The FCnt init value.
5992
5222
  # @return [Integer]
@@ -5997,17 +5227,6 @@ module Aws::IoTWireless
5997
5227
  include Aws::Structure
5998
5228
  end
5999
5229
 
6000
- # @note When making an API call, you may pass UpdateDestinationRequest
6001
- # data as a hash:
6002
- #
6003
- # {
6004
- # name: "DestinationName", # required
6005
- # expression_type: "RuleName", # accepts RuleName, MqttTopic
6006
- # expression: "Expression",
6007
- # description: "Description",
6008
- # role_arn: "RoleArn",
6009
- # }
6010
- #
6011
5230
  # @!attribute [rw] name
6012
5231
  # The new name of the resource.
6013
5232
  # @return [String]
@@ -6040,37 +5259,6 @@ module Aws::IoTWireless
6040
5259
 
6041
5260
  class UpdateDestinationResponse < Aws::EmptyStructure; end
6042
5261
 
6043
- # @note When making an API call, you may pass UpdateEventConfigurationByResourceTypesRequest
6044
- # data as a hash:
6045
- #
6046
- # {
6047
- # device_registration_state: {
6048
- # sidewalk: {
6049
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
6050
- # },
6051
- # },
6052
- # proximity: {
6053
- # sidewalk: {
6054
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
6055
- # },
6056
- # },
6057
- # join: {
6058
- # lo_ra_wan: {
6059
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
6060
- # },
6061
- # },
6062
- # connection_status: {
6063
- # lo_ra_wan: {
6064
- # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
6065
- # },
6066
- # },
6067
- # message_delivery_status: {
6068
- # sidewalk: {
6069
- # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
6070
- # },
6071
- # },
6072
- # }
6073
- #
6074
5262
  # @!attribute [rw] device_registration_state
6075
5263
  # Device registration state resource type event configuration object
6076
5264
  # for enabling and disabling wireless gateway topic.
@@ -6110,41 +5298,22 @@ module Aws::IoTWireless
6110
5298
 
6111
5299
  # Object for updating the FPorts information.
6112
5300
  #
6113
- # @note When making an API call, you may pass UpdateFPorts
6114
- # data as a hash:
6115
- #
6116
- # {
6117
- # positioning: {
6118
- # clock_sync: 1,
6119
- # stream: 1,
6120
- # gnss: 1,
6121
- # },
6122
- # }
6123
- #
6124
5301
  # @!attribute [rw] positioning
6125
5302
  # Positioning FPorts for the ClockSync, Stream, and GNSS functions.
6126
5303
  # @return [Types::Positioning]
6127
5304
  #
5305
+ # @!attribute [rw] applications
5306
+ # LoRaWAN application, which can be used for geolocation by activating
5307
+ # positioning.
5308
+ # @return [Array<Types::ApplicationConfig>]
5309
+ #
6128
5310
  class UpdateFPorts < Struct.new(
6129
- :positioning)
5311
+ :positioning,
5312
+ :applications)
6130
5313
  SENSITIVE = []
6131
5314
  include Aws::Structure
6132
5315
  end
6133
5316
 
6134
- # @note When making an API call, you may pass UpdateFuotaTaskRequest
6135
- # data as a hash:
6136
- #
6137
- # {
6138
- # id: "FuotaTaskId", # required
6139
- # name: "FuotaTaskName",
6140
- # description: "Description",
6141
- # lo_ra_wan: {
6142
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
6143
- # },
6144
- # firmware_update_image: "FirmwareUpdateImage",
6145
- # firmware_update_role: "FirmwareUpdateRole",
6146
- # }
6147
- #
6148
5317
  # @!attribute [rw] id
6149
5318
  # The ID of a FUOTA task.
6150
5319
  # @return [String]
@@ -6183,37 +5352,6 @@ module Aws::IoTWireless
6183
5352
 
6184
5353
  class UpdateFuotaTaskResponse < Aws::EmptyStructure; end
6185
5354
 
6186
- # @note When making an API call, you may pass UpdateLogLevelsByResourceTypesRequest
6187
- # data as a hash:
6188
- #
6189
- # {
6190
- # default_log_level: "INFO", # accepts INFO, ERROR, DISABLED
6191
- # wireless_device_log_options: [
6192
- # {
6193
- # type: "Sidewalk", # required, accepts Sidewalk, LoRaWAN
6194
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6195
- # events: [
6196
- # {
6197
- # event: "Join", # required, accepts Join, Rejoin, Uplink_Data, Downlink_Data, Registration
6198
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6199
- # },
6200
- # ],
6201
- # },
6202
- # ],
6203
- # wireless_gateway_log_options: [
6204
- # {
6205
- # type: "LoRaWAN", # required, accepts LoRaWAN
6206
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6207
- # events: [
6208
- # {
6209
- # event: "CUPS_Request", # required, accepts CUPS_Request, Certificate
6210
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6211
- # },
6212
- # ],
6213
- # },
6214
- # ],
6215
- # }
6216
- #
6217
5355
  # @!attribute [rw] default_log_level
6218
5356
  # The log level for a log message. The log levels can be disabled, or
6219
5357
  # set to `ERROR` to display less verbose logs containing only error
@@ -6238,19 +5376,6 @@ module Aws::IoTWireless
6238
5376
 
6239
5377
  class UpdateLogLevelsByResourceTypesResponse < Aws::EmptyStructure; end
6240
5378
 
6241
- # @note When making an API call, you may pass UpdateMulticastGroupRequest
6242
- # data as a hash:
6243
- #
6244
- # {
6245
- # id: "MulticastGroupId", # required
6246
- # name: "MulticastGroupName",
6247
- # description: "Description",
6248
- # lo_ra_wan: {
6249
- # rf_region: "EU868", # accepts EU868, US915, AU915, AS923-1
6250
- # dl_class: "ClassB", # accepts ClassB, ClassC
6251
- # },
6252
- # }
6253
- #
6254
5379
  # @!attribute [rw] id
6255
5380
  # The ID of the multicast group.
6256
5381
  # @return [String]
@@ -6278,22 +5403,6 @@ module Aws::IoTWireless
6278
5403
 
6279
5404
  class UpdateMulticastGroupResponse < Aws::EmptyStructure; end
6280
5405
 
6281
- # @note When making an API call, you may pass UpdateNetworkAnalyzerConfigurationRequest
6282
- # data as a hash:
6283
- #
6284
- # {
6285
- # configuration_name: "NetworkAnalyzerConfigurationName", # required
6286
- # trace_content: {
6287
- # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
6288
- # log_level: "INFO", # accepts INFO, ERROR, DISABLED
6289
- # },
6290
- # wireless_devices_to_add: ["WirelessDeviceId"],
6291
- # wireless_devices_to_remove: ["WirelessDeviceId"],
6292
- # wireless_gateways_to_add: ["WirelessGatewayId"],
6293
- # wireless_gateways_to_remove: ["WirelessGatewayId"],
6294
- # description: "Description",
6295
- # }
6296
- #
6297
5406
  # @!attribute [rw] configuration_name
6298
5407
  # Name of the network analyzer configuration.
6299
5408
  # @return [String]
@@ -6345,17 +5454,6 @@ module Aws::IoTWireless
6345
5454
 
6346
5455
  class UpdateNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
6347
5456
 
6348
- # @note When making an API call, you may pass UpdatePartnerAccountRequest
6349
- # data as a hash:
6350
- #
6351
- # {
6352
- # sidewalk: { # required
6353
- # app_server_private_key: "AppServerPrivateKey",
6354
- # },
6355
- # partner_account_id: "PartnerAccountId", # required
6356
- # partner_type: "Sidewalk", # required, accepts Sidewalk
6357
- # }
6358
- #
6359
5457
  # @!attribute [rw] sidewalk
6360
5458
  # The Sidewalk account credentials.
6361
5459
  # @return [Types::SidewalkUpdateAccount]
@@ -6378,15 +5476,6 @@ module Aws::IoTWireless
6378
5476
 
6379
5477
  class UpdatePartnerAccountResponse < Aws::EmptyStructure; end
6380
5478
 
6381
- # @note When making an API call, you may pass UpdatePositionRequest
6382
- # data as a hash:
6383
- #
6384
- # {
6385
- # resource_identifier: "PositionResourceIdentifier", # required
6386
- # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
6387
- # position: [1.0], # required
6388
- # }
6389
- #
6390
5479
  # @!attribute [rw] resource_identifier
6391
5480
  # Resource identifier of the resource for which position is updated.
6392
5481
  # @return [String]
@@ -6409,45 +5498,6 @@ module Aws::IoTWireless
6409
5498
 
6410
5499
  class UpdatePositionResponse < Aws::EmptyStructure; end
6411
5500
 
6412
- # @note When making an API call, you may pass UpdateResourceEventConfigurationRequest
6413
- # data as a hash:
6414
- #
6415
- # {
6416
- # identifier: "Identifier", # required
6417
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
6418
- # partner_type: "Sidewalk", # accepts Sidewalk
6419
- # device_registration_state: {
6420
- # sidewalk: {
6421
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
6422
- # },
6423
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
6424
- # },
6425
- # proximity: {
6426
- # sidewalk: {
6427
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
6428
- # },
6429
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
6430
- # },
6431
- # join: {
6432
- # lo_ra_wan: {
6433
- # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
6434
- # },
6435
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
6436
- # },
6437
- # connection_status: {
6438
- # lo_ra_wan: {
6439
- # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
6440
- # },
6441
- # wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
6442
- # },
6443
- # message_delivery_status: {
6444
- # sidewalk: {
6445
- # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
6446
- # },
6447
- # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
6448
- # },
6449
- # }
6450
- #
6451
5501
  # @!attribute [rw] identifier
6452
5502
  # Resource identifier to opt in for event messaging.
6453
5503
  # @return [String]
@@ -6497,33 +5547,38 @@ module Aws::IoTWireless
6497
5547
 
6498
5548
  class UpdateResourceEventConfigurationResponse < Aws::EmptyStructure; end
6499
5549
 
6500
- # @note When making an API call, you may pass UpdateWirelessDeviceRequest
6501
- # data as a hash:
6502
- #
6503
- # {
6504
- # id: "WirelessDeviceId", # required
6505
- # destination_name: "DestinationName",
6506
- # name: "WirelessDeviceName",
6507
- # description: "Description",
6508
- # lo_ra_wan: {
6509
- # device_profile_id: "DeviceProfileId",
6510
- # service_profile_id: "ServiceProfileId",
6511
- # abp_v1_1: {
6512
- # f_cnt_start: 1,
6513
- # },
6514
- # abp_v1_0_x: {
6515
- # f_cnt_start: 1,
6516
- # },
6517
- # f_ports: {
6518
- # positioning: {
6519
- # clock_sync: 1,
6520
- # stream: 1,
6521
- # gnss: 1,
6522
- # },
6523
- # },
6524
- # },
6525
- # }
5550
+ # @!attribute [rw] resource_identifier
5551
+ # The identifier of the resource for which position information is
5552
+ # updated. It can be the wireless device ID or the wireless gateway ID
5553
+ # depending on the resource type.
5554
+ # @return [String]
6526
5555
  #
5556
+ # @!attribute [rw] resource_type
5557
+ # The type of resource for which position information is updated,
5558
+ # which can be a wireless device or a wireless gateway.
5559
+ # @return [String]
5560
+ #
5561
+ # @!attribute [rw] geo_json_payload
5562
+ # The position information of the resource, displayed as a JSON
5563
+ # payload. The payload uses the GeoJSON format, which a format that's
5564
+ # used to encode geographic data structures. For more information, see
5565
+ # [GeoJSON][1].
5566
+ #
5567
+ #
5568
+ #
5569
+ # [1]: https://geojson.org/
5570
+ # @return [String]
5571
+ #
5572
+ class UpdateResourcePositionRequest < Struct.new(
5573
+ :resource_identifier,
5574
+ :resource_type,
5575
+ :geo_json_payload)
5576
+ SENSITIVE = []
5577
+ include Aws::Structure
5578
+ end
5579
+
5580
+ class UpdateResourcePositionResponse < Aws::EmptyStructure; end
5581
+
6527
5582
  # @!attribute [rw] id
6528
5583
  # The ID of the resource to update.
6529
5584
  # @return [String]
@@ -6544,31 +5599,24 @@ module Aws::IoTWireless
6544
5599
  # The updated wireless device's configuration.
6545
5600
  # @return [Types::LoRaWANUpdateDevice]
6546
5601
  #
5602
+ # @!attribute [rw] positioning
5603
+ # FPort values for the GNSS, stream, and ClockSync functions of the
5604
+ # positioning information.
5605
+ # @return [String]
5606
+ #
6547
5607
  class UpdateWirelessDeviceRequest < Struct.new(
6548
5608
  :id,
6549
5609
  :destination_name,
6550
5610
  :name,
6551
5611
  :description,
6552
- :lo_ra_wan)
5612
+ :lo_ra_wan,
5613
+ :positioning)
6553
5614
  SENSITIVE = []
6554
5615
  include Aws::Structure
6555
5616
  end
6556
5617
 
6557
5618
  class UpdateWirelessDeviceResponse < Aws::EmptyStructure; end
6558
5619
 
6559
- # @note When making an API call, you may pass UpdateWirelessGatewayRequest
6560
- # data as a hash:
6561
- #
6562
- # {
6563
- # id: "WirelessGatewayId", # required
6564
- # name: "WirelessGatewayName",
6565
- # description: "Description",
6566
- # join_eui_filters: [
6567
- # ["JoinEui"],
6568
- # ],
6569
- # net_id_filters: ["NetId"],
6570
- # }
6571
- #
6572
5620
  # @!attribute [rw] id
6573
5621
  # The ID of the resource to update.
6574
5622
  # @return [String]
@@ -6604,28 +5652,6 @@ module Aws::IoTWireless
6604
5652
 
6605
5653
  # UpdateWirelessGatewayTaskCreate object.
6606
5654
  #
6607
- # @note When making an API call, you may pass UpdateWirelessGatewayTaskCreate
6608
- # data as a hash:
6609
- #
6610
- # {
6611
- # update_data_source: "UpdateDataSource",
6612
- # update_data_role: "UpdateDataSource",
6613
- # lo_ra_wan: {
6614
- # update_signature: "UpdateSignature",
6615
- # sig_key_crc: 1,
6616
- # current_version: {
6617
- # package_version: "PackageVersion",
6618
- # model: "Model",
6619
- # station: "Station",
6620
- # },
6621
- # update_version: {
6622
- # package_version: "PackageVersion",
6623
- # model: "Model",
6624
- # station: "Station",
6625
- # },
6626
- # },
6627
- # }
6628
- #
6629
5655
  # @!attribute [rw] update_data_source
6630
5656
  # The link to the S3 bucket.
6631
5657
  # @return [String]
@@ -6679,6 +5705,123 @@ module Aws::IoTWireless
6679
5705
  include Aws::Structure
6680
5706
  end
6681
5707
 
5708
+ # WCDMA local identification (local ID) information.
5709
+ #
5710
+ # @!attribute [rw] uarfcndl
5711
+ # WCDMA UTRA Absolute RF Channel Number downlink.
5712
+ # @return [Integer]
5713
+ #
5714
+ # @!attribute [rw] psc
5715
+ # Primary Scrambling Code.
5716
+ # @return [Integer]
5717
+ #
5718
+ class WcdmaLocalId < Struct.new(
5719
+ :uarfcndl,
5720
+ :psc)
5721
+ SENSITIVE = []
5722
+ include Aws::Structure
5723
+ end
5724
+
5725
+ # Network Measurement Reports.
5726
+ #
5727
+ # @!attribute [rw] uarfcndl
5728
+ # WCDMA UTRA Absolute RF Channel Number downlink.
5729
+ # @return [Integer]
5730
+ #
5731
+ # @!attribute [rw] psc
5732
+ # Primary Scrambling Code.
5733
+ # @return [Integer]
5734
+ #
5735
+ # @!attribute [rw] utran_cid
5736
+ # UTRAN (UMTS Terrestrial Radio Access Network) Cell Global
5737
+ # Identifier.
5738
+ # @return [Integer]
5739
+ #
5740
+ # @!attribute [rw] rscp
5741
+ # Received Signal Code Power (signal power) (dBm)
5742
+ # @return [Integer]
5743
+ #
5744
+ # @!attribute [rw] path_loss
5745
+ # Path loss, or path attenuation, is the reduction in power density of
5746
+ # an electromagnetic wave as it propagates through space.
5747
+ # @return [Integer]
5748
+ #
5749
+ class WcdmaNmrObj < Struct.new(
5750
+ :uarfcndl,
5751
+ :psc,
5752
+ :utran_cid,
5753
+ :rscp,
5754
+ :path_loss)
5755
+ SENSITIVE = []
5756
+ include Aws::Structure
5757
+ end
5758
+
5759
+ # WCDMA.
5760
+ #
5761
+ # @!attribute [rw] mcc
5762
+ # Mobile Country Code.
5763
+ # @return [Integer]
5764
+ #
5765
+ # @!attribute [rw] mnc
5766
+ # Mobile Network Code.
5767
+ # @return [Integer]
5768
+ #
5769
+ # @!attribute [rw] lac
5770
+ # Location Area Code.
5771
+ # @return [Integer]
5772
+ #
5773
+ # @!attribute [rw] utran_cid
5774
+ # UTRAN (UMTS Terrestrial Radio Access Network) Cell Global
5775
+ # Identifier.
5776
+ # @return [Integer]
5777
+ #
5778
+ # @!attribute [rw] wcdma_local_id
5779
+ # WCDMA local ID information.
5780
+ # @return [Types::WcdmaLocalId]
5781
+ #
5782
+ # @!attribute [rw] rscp
5783
+ # Received Signal Code Power (signal power) (dBm).
5784
+ # @return [Integer]
5785
+ #
5786
+ # @!attribute [rw] path_loss
5787
+ # Path loss, or path attenuation, is the reduction in power density of
5788
+ # an electromagnetic wave as it propagates through space.
5789
+ # @return [Integer]
5790
+ #
5791
+ # @!attribute [rw] wcdma_nmr
5792
+ # WCDMA object for network measurement reports.
5793
+ # @return [Array<Types::WcdmaNmrObj>]
5794
+ #
5795
+ class WcdmaObj < Struct.new(
5796
+ :mcc,
5797
+ :mnc,
5798
+ :lac,
5799
+ :utran_cid,
5800
+ :wcdma_local_id,
5801
+ :rscp,
5802
+ :path_loss,
5803
+ :wcdma_nmr)
5804
+ SENSITIVE = []
5805
+ include Aws::Structure
5806
+ end
5807
+
5808
+ # Wi-Fi access point.
5809
+ #
5810
+ # @!attribute [rw] mac_address
5811
+ # Wi-Fi MAC Address.
5812
+ # @return [String]
5813
+ #
5814
+ # @!attribute [rw] rss
5815
+ # Recived signal strength of the WLAN measurement data.
5816
+ # @return [Integer]
5817
+ #
5818
+ class WiFiAccessPoint < Struct.new(
5819
+ :mac_address,
5820
+ :rss)
5821
+ SENSITIVE = []
5822
+ include Aws::Structure
5823
+ end
5824
+
6682
5825
  # The log options for a wireless device event and can be used to set log
6683
5826
  # levels for a specific wireless device event.
6684
5827
  #
@@ -6687,14 +5830,6 @@ module Aws::IoTWireless
6687
5830
  # possible events for a log message are `Registration`, `Downlink_Data`,
6688
5831
  # and `Uplink_Data`.
6689
5832
  #
6690
- # @note When making an API call, you may pass WirelessDeviceEventLogOption
6691
- # data as a hash:
6692
- #
6693
- # {
6694
- # event: "Join", # required, accepts Join, Rejoin, Uplink_Data, Downlink_Data, Registration
6695
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6696
- # }
6697
- #
6698
5833
  # @!attribute [rw] event
6699
5834
  # The event for a log message, if the log message is tied to a
6700
5835
  # wireless device.
@@ -6716,20 +5851,6 @@ module Aws::IoTWireless
6716
5851
  # The log options for wireless devices and can be used to set log levels
6717
5852
  # for a specific type of wireless device.
6718
5853
  #
6719
- # @note When making an API call, you may pass WirelessDeviceLogOption
6720
- # data as a hash:
6721
- #
6722
- # {
6723
- # type: "Sidewalk", # required, accepts Sidewalk, LoRaWAN
6724
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6725
- # events: [
6726
- # {
6727
- # event: "Join", # required, accepts Join, Rejoin, Uplink_Data, Downlink_Data, Registration
6728
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6729
- # },
6730
- # ],
6731
- # }
6732
- #
6733
5854
  # @!attribute [rw] type
6734
5855
  # The wireless device type.
6735
5856
  # @return [String]
@@ -6820,14 +5941,6 @@ module Aws::IoTWireless
6820
5941
  # For a LoRaWAN gateway, possible events for a log message are
6821
5942
  # `CUPS_Request` and `Certificate`.
6822
5943
  #
6823
- # @note When making an API call, you may pass WirelessGatewayEventLogOption
6824
- # data as a hash:
6825
- #
6826
- # {
6827
- # event: "CUPS_Request", # required, accepts CUPS_Request, Certificate
6828
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6829
- # }
6830
- #
6831
5944
  # @!attribute [rw] event
6832
5945
  # The event for a log message, if the log message is tied to a
6833
5946
  # wireless gateway.
@@ -6849,20 +5962,6 @@ module Aws::IoTWireless
6849
5962
  # The log options for wireless gateways and can be used to set log
6850
5963
  # levels for a specific type of wireless gateway.
6851
5964
  #
6852
- # @note When making an API call, you may pass WirelessGatewayLogOption
6853
- # data as a hash:
6854
- #
6855
- # {
6856
- # type: "LoRaWAN", # required, accepts LoRaWAN
6857
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6858
- # events: [
6859
- # {
6860
- # event: "CUPS_Request", # required, accepts CUPS_Request, Certificate
6861
- # log_level: "INFO", # required, accepts INFO, ERROR, DISABLED
6862
- # },
6863
- # ],
6864
- # }
6865
- #
6866
5965
  # @!attribute [rw] type
6867
5966
  # The wireless gateway type.
6868
5967
  # @return [String]
@@ -6924,30 +6023,6 @@ module Aws::IoTWireless
6924
6023
 
6925
6024
  # WirelessMetadata object.
6926
6025
  #
6927
- # @note When making an API call, you may pass WirelessMetadata
6928
- # data as a hash:
6929
- #
6930
- # {
6931
- # lo_ra_wan: {
6932
- # f_port: 1,
6933
- # participating_gateways: {
6934
- # downlink_mode: "SEQUENTIAL", # required, accepts SEQUENTIAL, CONCURRENT, USING_UPLINK_GATEWAY
6935
- # gateway_list: [ # required
6936
- # {
6937
- # gateway_id: "WirelessGatewayId", # required
6938
- # downlink_frequency: 1, # required
6939
- # },
6940
- # ],
6941
- # transmission_interval: 1, # required
6942
- # },
6943
- # },
6944
- # sidewalk: {
6945
- # seq: 1,
6946
- # message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
6947
- # ack_mode_retry_duration_secs: 1,
6948
- # },
6949
- # }
6950
- #
6951
6026
  # @!attribute [rw] lo_ra_wan
6952
6027
  # LoRaWAN device info.
6953
6028
  # @return [Types::LoRaWANSendDataToDevice]