aws-sdk-iotwireless 1.27.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -98,11 +98,15 @@ module Aws::IoTWireless
98
98
  # computed by solver.
99
99
  #
100
100
  # @!attribute [rw] horizontal_accuracy
101
- # The horizontal accuracy of the estimated position in meters.
101
+ # The horizontal accuracy of the estimated position, which is the
102
+ # difference between the estimated location and the actual device
103
+ # location.
102
104
  # @return [Float]
103
105
  #
104
106
  # @!attribute [rw] vertical_accuracy
105
- # The vertical accuracy of the estimated position in meters.
107
+ # The vertical accuracy of the estimated position, which is the
108
+ # difference between the estimated altitude and actual device latitude
109
+ # in meters.
106
110
  # @return [Float]
107
111
  #
108
112
  class Accuracy < Struct.new(
@@ -112,6 +116,41 @@ module Aws::IoTWireless
112
116
  include Aws::Structure
113
117
  end
114
118
 
119
+ # LoRaWAN application configuration, which can be used to perform
120
+ # geolocation.
121
+ #
122
+ # @note When making an API call, you may pass ApplicationConfig
123
+ # data as a hash:
124
+ #
125
+ # {
126
+ # f_port: 1,
127
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
128
+ # destination_name: "DestinationName",
129
+ # }
130
+ #
131
+ # @!attribute [rw] f_port
132
+ # The Fport value.
133
+ # @return [Integer]
134
+ #
135
+ # @!attribute [rw] type
136
+ # Application type, which can be specified to obtain real-time
137
+ # position information of your LoRaWAN device.
138
+ # @return [String]
139
+ #
140
+ # @!attribute [rw] destination_name
141
+ # The name of the position data destination that describes the AWS IoT
142
+ # rule that processes the device's position data for use by AWS IoT
143
+ # Core for LoRaWAN.
144
+ # @return [String]
145
+ #
146
+ class ApplicationConfig < Struct.new(
147
+ :f_port,
148
+ :type,
149
+ :destination_name)
150
+ SENSITIVE = []
151
+ include Aws::Structure
152
+ end
153
+
115
154
  # @note When making an API call, you may pass AssociateAwsAccountWithPartnerAccountRequest
116
155
  # data as a hash:
117
156
  #
@@ -373,6 +412,308 @@ module Aws::IoTWireless
373
412
 
374
413
  class CancelMulticastGroupSessionResponse < Aws::EmptyStructure; end
375
414
 
415
+ # CDMA local ID information, which corresponds to the local
416
+ # identification parameters of a CDMA cell.
417
+ #
418
+ # @note When making an API call, you may pass CdmaLocalId
419
+ # data as a hash:
420
+ #
421
+ # {
422
+ # pn_offset: 1, # required
423
+ # cdma_channel: 1, # required
424
+ # }
425
+ #
426
+ # @!attribute [rw] pn_offset
427
+ # Pseudo-noise offset, which is a characteristic of the signal from a
428
+ # cell on a radio tower.
429
+ # @return [Integer]
430
+ #
431
+ # @!attribute [rw] cdma_channel
432
+ # CDMA channel information.
433
+ # @return [Integer]
434
+ #
435
+ class CdmaLocalId < Struct.new(
436
+ :pn_offset,
437
+ :cdma_channel)
438
+ SENSITIVE = []
439
+ include Aws::Structure
440
+ end
441
+
442
+ # CDMA object for network measurement reports.
443
+ #
444
+ # @note When making an API call, you may pass CdmaNmrObj
445
+ # data as a hash:
446
+ #
447
+ # {
448
+ # pn_offset: 1, # required
449
+ # cdma_channel: 1, # required
450
+ # pilot_power: 1,
451
+ # base_station_id: 1,
452
+ # }
453
+ #
454
+ # @!attribute [rw] pn_offset
455
+ # Pseudo-noise offset, which is a characteristic of the signal from a
456
+ # cell on a radio tower.
457
+ # @return [Integer]
458
+ #
459
+ # @!attribute [rw] cdma_channel
460
+ # CDMA channel information.
461
+ # @return [Integer]
462
+ #
463
+ # @!attribute [rw] pilot_power
464
+ # Transmit power level of the pilot signal, measured in dBm
465
+ # (decibel-milliwatts).
466
+ # @return [Integer]
467
+ #
468
+ # @!attribute [rw] base_station_id
469
+ # CDMA base station ID (BSID).
470
+ # @return [Integer]
471
+ #
472
+ class CdmaNmrObj < Struct.new(
473
+ :pn_offset,
474
+ :cdma_channel,
475
+ :pilot_power,
476
+ :base_station_id)
477
+ SENSITIVE = []
478
+ include Aws::Structure
479
+ end
480
+
481
+ # CDMA (Code-division multiple access) object.
482
+ #
483
+ # @note When making an API call, you may pass CdmaObj
484
+ # data as a hash:
485
+ #
486
+ # {
487
+ # system_id: 1, # required
488
+ # network_id: 1, # required
489
+ # base_station_id: 1, # required
490
+ # registration_zone: 1,
491
+ # cdma_local_id: {
492
+ # pn_offset: 1, # required
493
+ # cdma_channel: 1, # required
494
+ # },
495
+ # pilot_power: 1,
496
+ # base_lat: 1.0,
497
+ # base_lng: 1.0,
498
+ # cdma_nmr: [
499
+ # {
500
+ # pn_offset: 1, # required
501
+ # cdma_channel: 1, # required
502
+ # pilot_power: 1,
503
+ # base_station_id: 1,
504
+ # },
505
+ # ],
506
+ # }
507
+ #
508
+ # @!attribute [rw] system_id
509
+ # CDMA system ID (SID).
510
+ # @return [Integer]
511
+ #
512
+ # @!attribute [rw] network_id
513
+ # CDMA network ID (NID).
514
+ # @return [Integer]
515
+ #
516
+ # @!attribute [rw] base_station_id
517
+ # CDMA base station ID (BSID).
518
+ # @return [Integer]
519
+ #
520
+ # @!attribute [rw] registration_zone
521
+ # CDMA registration zone (RZ).
522
+ # @return [Integer]
523
+ #
524
+ # @!attribute [rw] cdma_local_id
525
+ # CDMA local identification (local ID) parameters.
526
+ # @return [Types::CdmaLocalId]
527
+ #
528
+ # @!attribute [rw] pilot_power
529
+ # Transmit power level of the pilot signal, measured in dBm
530
+ # (decibel-milliwatts).
531
+ # @return [Integer]
532
+ #
533
+ # @!attribute [rw] base_lat
534
+ # CDMA base station latitude in degrees.
535
+ # @return [Float]
536
+ #
537
+ # @!attribute [rw] base_lng
538
+ # CDMA base station longtitude in degrees.
539
+ # @return [Float]
540
+ #
541
+ # @!attribute [rw] cdma_nmr
542
+ # CDMA network measurement reports.
543
+ # @return [Array<Types::CdmaNmrObj>]
544
+ #
545
+ class CdmaObj < Struct.new(
546
+ :system_id,
547
+ :network_id,
548
+ :base_station_id,
549
+ :registration_zone,
550
+ :cdma_local_id,
551
+ :pilot_power,
552
+ :base_lat,
553
+ :base_lng,
554
+ :cdma_nmr)
555
+ SENSITIVE = []
556
+ include Aws::Structure
557
+ end
558
+
559
+ # The cell towers that were used to perform the measurements.
560
+ #
561
+ # @note When making an API call, you may pass CellTowers
562
+ # data as a hash:
563
+ #
564
+ # {
565
+ # gsm: [
566
+ # {
567
+ # mcc: 1, # required
568
+ # mnc: 1, # required
569
+ # lac: 1, # required
570
+ # geran_cid: 1, # required
571
+ # gsm_local_id: {
572
+ # bsic: 1, # required
573
+ # bcch: 1, # required
574
+ # },
575
+ # gsm_timing_advance: 1,
576
+ # rx_level: 1,
577
+ # gsm_nmr: [
578
+ # {
579
+ # bsic: 1, # required
580
+ # bcch: 1, # required
581
+ # rx_level: 1,
582
+ # global_identity: {
583
+ # lac: 1, # required
584
+ # geran_cid: 1, # required
585
+ # },
586
+ # },
587
+ # ],
588
+ # },
589
+ # ],
590
+ # wcdma: [
591
+ # {
592
+ # mcc: 1, # required
593
+ # mnc: 1, # required
594
+ # lac: 1,
595
+ # utran_cid: 1, # required
596
+ # wcdma_local_id: {
597
+ # uarfcndl: 1, # required
598
+ # psc: 1, # required
599
+ # },
600
+ # rscp: 1,
601
+ # path_loss: 1,
602
+ # wcdma_nmr: [
603
+ # {
604
+ # uarfcndl: 1, # required
605
+ # psc: 1, # required
606
+ # utran_cid: 1, # required
607
+ # rscp: 1,
608
+ # path_loss: 1,
609
+ # },
610
+ # ],
611
+ # },
612
+ # ],
613
+ # tdscdma: [
614
+ # {
615
+ # mcc: 1, # required
616
+ # mnc: 1, # required
617
+ # lac: 1,
618
+ # utran_cid: 1, # required
619
+ # tdscdma_local_id: {
620
+ # uarfcn: 1, # required
621
+ # cell_params: 1, # required
622
+ # },
623
+ # tdscdma_timing_advance: 1,
624
+ # rscp: 1,
625
+ # path_loss: 1,
626
+ # tdscdma_nmr: [
627
+ # {
628
+ # uarfcn: 1, # required
629
+ # cell_params: 1, # required
630
+ # utran_cid: 1,
631
+ # rscp: 1,
632
+ # path_loss: 1,
633
+ # },
634
+ # ],
635
+ # },
636
+ # ],
637
+ # lte: [
638
+ # {
639
+ # mcc: 1, # required
640
+ # mnc: 1, # required
641
+ # eutran_cid: 1, # required
642
+ # tac: 1,
643
+ # lte_local_id: {
644
+ # pci: 1, # required
645
+ # earfcn: 1, # required
646
+ # },
647
+ # lte_timing_advance: 1,
648
+ # rsrp: 1,
649
+ # rsrq: 1.0,
650
+ # nr_capable: false,
651
+ # lte_nmr: [
652
+ # {
653
+ # pci: 1, # required
654
+ # earfcn: 1, # required
655
+ # eutran_cid: 1, # required
656
+ # rsrp: 1,
657
+ # rsrq: 1.0,
658
+ # },
659
+ # ],
660
+ # },
661
+ # ],
662
+ # cdma: [
663
+ # {
664
+ # system_id: 1, # required
665
+ # network_id: 1, # required
666
+ # base_station_id: 1, # required
667
+ # registration_zone: 1,
668
+ # cdma_local_id: {
669
+ # pn_offset: 1, # required
670
+ # cdma_channel: 1, # required
671
+ # },
672
+ # pilot_power: 1,
673
+ # base_lat: 1.0,
674
+ # base_lng: 1.0,
675
+ # cdma_nmr: [
676
+ # {
677
+ # pn_offset: 1, # required
678
+ # cdma_channel: 1, # required
679
+ # pilot_power: 1,
680
+ # base_station_id: 1,
681
+ # },
682
+ # ],
683
+ # },
684
+ # ],
685
+ # }
686
+ #
687
+ # @!attribute [rw] gsm
688
+ # GSM object information.
689
+ # @return [Array<Types::GsmObj>]
690
+ #
691
+ # @!attribute [rw] wcdma
692
+ # WCDMA object information.
693
+ # @return [Array<Types::WcdmaObj>]
694
+ #
695
+ # @!attribute [rw] tdscdma
696
+ # TD-SCDMA object information.
697
+ # @return [Array<Types::TdscdmaObj>]
698
+ #
699
+ # @!attribute [rw] lte
700
+ # LTE object information.
701
+ # @return [Array<Types::LteObj>]
702
+ #
703
+ # @!attribute [rw] cdma
704
+ # CDMA object information.
705
+ # @return [Array<Types::CdmaObj>]
706
+ #
707
+ class CellTowers < Struct.new(
708
+ :gsm,
709
+ :wcdma,
710
+ :tdscdma,
711
+ :lte,
712
+ :cdma)
713
+ SENSITIVE = []
714
+ include Aws::Structure
715
+ end
716
+
376
717
  # List of sidewalk certificates.
377
718
  #
378
719
  # @!attribute [rw] signing_alg
@@ -986,6 +1327,13 @@ module Aws::IoTWireless
986
1327
  # stream: 1,
987
1328
  # gnss: 1,
988
1329
  # },
1330
+ # applications: [
1331
+ # {
1332
+ # f_port: 1,
1333
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
1334
+ # destination_name: "DestinationName",
1335
+ # },
1336
+ # ],
989
1337
  # },
990
1338
  # },
991
1339
  # tags: [
@@ -994,6 +1342,7 @@ module Aws::IoTWireless
994
1342
  # value: "TagValue", # required
995
1343
  # },
996
1344
  # ],
1345
+ # positioning: "Enabled", # accepts Enabled, Disabled
997
1346
  # }
998
1347
  #
999
1348
  # @!attribute [rw] type
@@ -1032,6 +1381,11 @@ module Aws::IoTWireless
1032
1381
  # that you can use to manage a resource.
1033
1382
  # @return [Array<Types::Tag>]
1034
1383
  #
1384
+ # @!attribute [rw] positioning
1385
+ # FPort values for the GNSS, stream, and ClockSync functions of the
1386
+ # positioning information.
1387
+ # @return [String]
1388
+ #
1035
1389
  class CreateWirelessDeviceRequest < Struct.new(
1036
1390
  :type,
1037
1391
  :name,
@@ -1039,7 +1393,8 @@ module Aws::IoTWireless
1039
1393
  :destination_name,
1040
1394
  :client_request_token,
1041
1395
  :lo_ra_wan,
1042
- :tags)
1396
+ :tags,
1397
+ :positioning)
1043
1398
  SENSITIVE = []
1044
1399
  include Aws::Structure
1045
1400
  end
@@ -1868,6 +2223,13 @@ module Aws::IoTWireless
1868
2223
  # stream: 1,
1869
2224
  # gnss: 1,
1870
2225
  # },
2226
+ # applications: [
2227
+ # {
2228
+ # f_port: 1,
2229
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
2230
+ # destination_name: "DestinationName",
2231
+ # },
2232
+ # ],
1871
2233
  # }
1872
2234
  #
1873
2235
  # @!attribute [rw] fuota
@@ -1887,11 +2249,17 @@ module Aws::IoTWireless
1887
2249
  # positioning information.
1888
2250
  # @return [Types::Positioning]
1889
2251
  #
2252
+ # @!attribute [rw] applications
2253
+ # Optional LoRaWAN application information, which can be used for
2254
+ # geolocation.
2255
+ # @return [Array<Types::ApplicationConfig>]
2256
+ #
1890
2257
  class FPorts < Struct.new(
1891
2258
  :fuota,
1892
2259
  :multicast,
1893
2260
  :clock_sync,
1894
- :positioning)
2261
+ :positioning,
2262
+ :applications)
1895
2263
  SENSITIVE = []
1896
2264
  include Aws::Structure
1897
2265
  end
@@ -2389,6 +2757,209 @@ module Aws::IoTWireless
2389
2757
  include Aws::Structure
2390
2758
  end
2391
2759
 
2760
+ # @note When making an API call, you may pass GetPositionEstimateRequest
2761
+ # data as a hash:
2762
+ #
2763
+ # {
2764
+ # wi_fi_access_points: [
2765
+ # {
2766
+ # mac_address: "MacAddress", # required
2767
+ # rss: 1, # required
2768
+ # },
2769
+ # ],
2770
+ # cell_towers: {
2771
+ # gsm: [
2772
+ # {
2773
+ # mcc: 1, # required
2774
+ # mnc: 1, # required
2775
+ # lac: 1, # required
2776
+ # geran_cid: 1, # required
2777
+ # gsm_local_id: {
2778
+ # bsic: 1, # required
2779
+ # bcch: 1, # required
2780
+ # },
2781
+ # gsm_timing_advance: 1,
2782
+ # rx_level: 1,
2783
+ # gsm_nmr: [
2784
+ # {
2785
+ # bsic: 1, # required
2786
+ # bcch: 1, # required
2787
+ # rx_level: 1,
2788
+ # global_identity: {
2789
+ # lac: 1, # required
2790
+ # geran_cid: 1, # required
2791
+ # },
2792
+ # },
2793
+ # ],
2794
+ # },
2795
+ # ],
2796
+ # wcdma: [
2797
+ # {
2798
+ # mcc: 1, # required
2799
+ # mnc: 1, # required
2800
+ # lac: 1,
2801
+ # utran_cid: 1, # required
2802
+ # wcdma_local_id: {
2803
+ # uarfcndl: 1, # required
2804
+ # psc: 1, # required
2805
+ # },
2806
+ # rscp: 1,
2807
+ # path_loss: 1,
2808
+ # wcdma_nmr: [
2809
+ # {
2810
+ # uarfcndl: 1, # required
2811
+ # psc: 1, # required
2812
+ # utran_cid: 1, # required
2813
+ # rscp: 1,
2814
+ # path_loss: 1,
2815
+ # },
2816
+ # ],
2817
+ # },
2818
+ # ],
2819
+ # tdscdma: [
2820
+ # {
2821
+ # mcc: 1, # required
2822
+ # mnc: 1, # required
2823
+ # lac: 1,
2824
+ # utran_cid: 1, # required
2825
+ # tdscdma_local_id: {
2826
+ # uarfcn: 1, # required
2827
+ # cell_params: 1, # required
2828
+ # },
2829
+ # tdscdma_timing_advance: 1,
2830
+ # rscp: 1,
2831
+ # path_loss: 1,
2832
+ # tdscdma_nmr: [
2833
+ # {
2834
+ # uarfcn: 1, # required
2835
+ # cell_params: 1, # required
2836
+ # utran_cid: 1,
2837
+ # rscp: 1,
2838
+ # path_loss: 1,
2839
+ # },
2840
+ # ],
2841
+ # },
2842
+ # ],
2843
+ # lte: [
2844
+ # {
2845
+ # mcc: 1, # required
2846
+ # mnc: 1, # required
2847
+ # eutran_cid: 1, # required
2848
+ # tac: 1,
2849
+ # lte_local_id: {
2850
+ # pci: 1, # required
2851
+ # earfcn: 1, # required
2852
+ # },
2853
+ # lte_timing_advance: 1,
2854
+ # rsrp: 1,
2855
+ # rsrq: 1.0,
2856
+ # nr_capable: false,
2857
+ # lte_nmr: [
2858
+ # {
2859
+ # pci: 1, # required
2860
+ # earfcn: 1, # required
2861
+ # eutran_cid: 1, # required
2862
+ # rsrp: 1,
2863
+ # rsrq: 1.0,
2864
+ # },
2865
+ # ],
2866
+ # },
2867
+ # ],
2868
+ # cdma: [
2869
+ # {
2870
+ # system_id: 1, # required
2871
+ # network_id: 1, # required
2872
+ # base_station_id: 1, # required
2873
+ # registration_zone: 1,
2874
+ # cdma_local_id: {
2875
+ # pn_offset: 1, # required
2876
+ # cdma_channel: 1, # required
2877
+ # },
2878
+ # pilot_power: 1,
2879
+ # base_lat: 1.0,
2880
+ # base_lng: 1.0,
2881
+ # cdma_nmr: [
2882
+ # {
2883
+ # pn_offset: 1, # required
2884
+ # cdma_channel: 1, # required
2885
+ # pilot_power: 1,
2886
+ # base_station_id: 1,
2887
+ # },
2888
+ # ],
2889
+ # },
2890
+ # ],
2891
+ # },
2892
+ # ip: {
2893
+ # ip_address: "IPAddress", # required
2894
+ # },
2895
+ # gnss: {
2896
+ # payload: "GnssNav", # required
2897
+ # capture_time: 1.0,
2898
+ # capture_time_accuracy: 1.0,
2899
+ # assist_position: [1.0],
2900
+ # assist_altitude: 1.0,
2901
+ # use_2_d_solver: false,
2902
+ # },
2903
+ # timestamp: Time.now,
2904
+ # }
2905
+ #
2906
+ # @!attribute [rw] wi_fi_access_points
2907
+ # Retrieves an estimated device position by resolving WLAN measurement
2908
+ # data. The position is resolved using HERE's Wi-Fi based solver.
2909
+ # @return [Array<Types::WiFiAccessPoint>]
2910
+ #
2911
+ # @!attribute [rw] cell_towers
2912
+ # Retrieves an estimated device position by resolving measurement data
2913
+ # from cellular radio towers. The position is resolved using HERE's
2914
+ # cellular-based solver.
2915
+ # @return [Types::CellTowers]
2916
+ #
2917
+ # @!attribute [rw] ip
2918
+ # Retrieves an estimated device position by resolving the IP address
2919
+ # information from the device. The position is resolved using
2920
+ # MaxMind's IP-based solver.
2921
+ # @return [Types::Ip]
2922
+ #
2923
+ # @!attribute [rw] gnss
2924
+ # Retrieves an estimated device position by resolving the global
2925
+ # navigation satellite system (GNSS) scan data. The position is
2926
+ # resolved using the GNSS solver powered by LoRa Cloud.
2927
+ # @return [Types::Gnss]
2928
+ #
2929
+ # @!attribute [rw] timestamp
2930
+ # Optional information that specifies the time when the position
2931
+ # information will be resolved. It uses the UNIX timestamp format. If
2932
+ # not specified, the time at which the request was received will be
2933
+ # used.
2934
+ # @return [Time]
2935
+ #
2936
+ class GetPositionEstimateRequest < Struct.new(
2937
+ :wi_fi_access_points,
2938
+ :cell_towers,
2939
+ :ip,
2940
+ :gnss,
2941
+ :timestamp)
2942
+ SENSITIVE = []
2943
+ include Aws::Structure
2944
+ end
2945
+
2946
+ # @!attribute [rw] geo_json_payload
2947
+ # The position information of the resource, displayed as a JSON
2948
+ # payload. The payload uses the GeoJSON format, which a format that's
2949
+ # used to encode geographic data structures. For more information, see
2950
+ # [GeoJSON][1].
2951
+ #
2952
+ #
2953
+ #
2954
+ # [1]: https://geojson.org/
2955
+ # @return [String]
2956
+ #
2957
+ class GetPositionEstimateResponse < Struct.new(
2958
+ :geo_json_payload)
2959
+ SENSITIVE = []
2960
+ include Aws::Structure
2961
+ end
2962
+
2392
2963
  # @note When making an API call, you may pass GetPositionRequest
2393
2964
  # data as a hash:
2394
2965
  #
@@ -2551,6 +3122,49 @@ module Aws::IoTWireless
2551
3122
  include Aws::Structure
2552
3123
  end
2553
3124
 
3125
+ # @note When making an API call, you may pass GetResourcePositionRequest
3126
+ # data as a hash:
3127
+ #
3128
+ # {
3129
+ # resource_identifier: "PositionResourceIdentifier", # required
3130
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
3131
+ # }
3132
+ #
3133
+ # @!attribute [rw] resource_identifier
3134
+ # The identifier of the resource for which position information is
3135
+ # retrieved. It can be the wireless device ID or the wireless gateway
3136
+ # ID depending on the resource type.
3137
+ # @return [String]
3138
+ #
3139
+ # @!attribute [rw] resource_type
3140
+ # The type of resource for which position information is retrieved,
3141
+ # which can be a wireless device or a wireless gateway.
3142
+ # @return [String]
3143
+ #
3144
+ class GetResourcePositionRequest < Struct.new(
3145
+ :resource_identifier,
3146
+ :resource_type)
3147
+ SENSITIVE = []
3148
+ include Aws::Structure
3149
+ end
3150
+
3151
+ # @!attribute [rw] geo_json_payload
3152
+ # The position information of the resource, displayed as a JSON
3153
+ # payload. The payload uses the GeoJSON format, which a format that's
3154
+ # used to encode geographic data structures. For more information, see
3155
+ # [GeoJSON][1].
3156
+ #
3157
+ #
3158
+ #
3159
+ # [1]: https://geojson.org/
3160
+ # @return [String]
3161
+ #
3162
+ class GetResourcePositionResponse < Struct.new(
3163
+ :geo_json_payload)
3164
+ SENSITIVE = []
3165
+ include Aws::Structure
3166
+ end
3167
+
2554
3168
  # @note When making an API call, you may pass GetServiceEndpointRequest
2555
3169
  # data as a hash:
2556
3170
  #
@@ -2697,6 +3311,11 @@ module Aws::IoTWireless
2697
3311
  # Sidewalk device object.
2698
3312
  # @return [Types::SidewalkDevice]
2699
3313
  #
3314
+ # @!attribute [rw] positioning
3315
+ # FPort values for the GNSS, stream, and ClockSync functions of the
3316
+ # positioning information.
3317
+ # @return [String]
3318
+ #
2700
3319
  class GetWirelessDeviceResponse < Struct.new(
2701
3320
  :type,
2702
3321
  :name,
@@ -2707,7 +3326,8 @@ module Aws::IoTWireless
2707
3326
  :thing_name,
2708
3327
  :thing_arn,
2709
3328
  :lo_ra_wan,
2710
- :sidewalk)
3329
+ :sidewalk,
3330
+ :positioning)
2711
3331
  SENSITIVE = []
2712
3332
  include Aws::Structure
2713
3333
  end
@@ -3006,6 +3626,235 @@ module Aws::IoTWireless
3006
3626
  include Aws::Structure
3007
3627
  end
3008
3628
 
3629
+ # Global identity information.
3630
+ #
3631
+ # @note When making an API call, you may pass GlobalIdentity
3632
+ # data as a hash:
3633
+ #
3634
+ # {
3635
+ # lac: 1, # required
3636
+ # geran_cid: 1, # required
3637
+ # }
3638
+ #
3639
+ # @!attribute [rw] lac
3640
+ # Location area code of the global identity.
3641
+ # @return [Integer]
3642
+ #
3643
+ # @!attribute [rw] geran_cid
3644
+ # GERAN (GSM EDGE Radio Access Network) cell global identifier.
3645
+ # @return [Integer]
3646
+ #
3647
+ class GlobalIdentity < Struct.new(
3648
+ :lac,
3649
+ :geran_cid)
3650
+ SENSITIVE = []
3651
+ include Aws::Structure
3652
+ end
3653
+
3654
+ # Global navigation satellite system (GNSS) object used for positioning.
3655
+ #
3656
+ # @note When making an API call, you may pass Gnss
3657
+ # data as a hash:
3658
+ #
3659
+ # {
3660
+ # payload: "GnssNav", # required
3661
+ # capture_time: 1.0,
3662
+ # capture_time_accuracy: 1.0,
3663
+ # assist_position: [1.0],
3664
+ # assist_altitude: 1.0,
3665
+ # use_2_d_solver: false,
3666
+ # }
3667
+ #
3668
+ # @!attribute [rw] payload
3669
+ # Payload that contains the GNSS scan result, or NAV message, in
3670
+ # hexadecimal notation.
3671
+ # @return [String]
3672
+ #
3673
+ # @!attribute [rw] capture_time
3674
+ # Optional parameter that gives an estimate of the time when the GNSS
3675
+ # scan information is taken, in seconds GPS time (GPST). If capture
3676
+ # time is not specified, the local server time is used.
3677
+ # @return [Float]
3678
+ #
3679
+ # @!attribute [rw] capture_time_accuracy
3680
+ # Optional value that gives the capture time estimate accuracy, in
3681
+ # seconds. If capture time accuracy is not specified, default value of
3682
+ # 300 is used.
3683
+ # @return [Float]
3684
+ #
3685
+ # @!attribute [rw] assist_position
3686
+ # Optional assistance position information, specified using latitude
3687
+ # and longitude values in degrees. The co-ordinates are inside the
3688
+ # WGS84 reference frame.
3689
+ # @return [Array<Float>]
3690
+ #
3691
+ # @!attribute [rw] assist_altitude
3692
+ # Optional assistance altitude, which is the altitude of the device at
3693
+ # capture time, specified in meters above the WGS84 reference
3694
+ # ellipsoid.
3695
+ # @return [Float]
3696
+ #
3697
+ # @!attribute [rw] use_2_d_solver
3698
+ # Optional parameter that forces 2D solve, which modifies the
3699
+ # positioning algorithm to a 2D solution problem. When this parameter
3700
+ # is specified, the assistance altitude should have an accuracy of at
3701
+ # least 10 meters.
3702
+ # @return [Boolean]
3703
+ #
3704
+ class Gnss < Struct.new(
3705
+ :payload,
3706
+ :capture_time,
3707
+ :capture_time_accuracy,
3708
+ :assist_position,
3709
+ :assist_altitude,
3710
+ :use_2_d_solver)
3711
+ SENSITIVE = []
3712
+ include Aws::Structure
3713
+ end
3714
+
3715
+ # GSM local ID information, which corresponds to the local
3716
+ # identification parameters of a GSM cell.
3717
+ #
3718
+ # @note When making an API call, you may pass GsmLocalId
3719
+ # data as a hash:
3720
+ #
3721
+ # {
3722
+ # bsic: 1, # required
3723
+ # bcch: 1, # required
3724
+ # }
3725
+ #
3726
+ # @!attribute [rw] bsic
3727
+ # GSM base station identity code (BSIC).
3728
+ # @return [Integer]
3729
+ #
3730
+ # @!attribute [rw] bcch
3731
+ # GSM broadcast control channel.
3732
+ # @return [Integer]
3733
+ #
3734
+ class GsmLocalId < Struct.new(
3735
+ :bsic,
3736
+ :bcch)
3737
+ SENSITIVE = []
3738
+ include Aws::Structure
3739
+ end
3740
+
3741
+ # GSM object for network measurement reports.
3742
+ #
3743
+ # @note When making an API call, you may pass GsmNmrObj
3744
+ # data as a hash:
3745
+ #
3746
+ # {
3747
+ # bsic: 1, # required
3748
+ # bcch: 1, # required
3749
+ # rx_level: 1,
3750
+ # global_identity: {
3751
+ # lac: 1, # required
3752
+ # geran_cid: 1, # required
3753
+ # },
3754
+ # }
3755
+ #
3756
+ # @!attribute [rw] bsic
3757
+ # GSM base station identity code (BSIC).
3758
+ # @return [Integer]
3759
+ #
3760
+ # @!attribute [rw] bcch
3761
+ # GSM broadcast control channel.
3762
+ # @return [Integer]
3763
+ #
3764
+ # @!attribute [rw] rx_level
3765
+ # Rx level, which is the received signal power, measured in dBm
3766
+ # (decibel-milliwatts).
3767
+ # @return [Integer]
3768
+ #
3769
+ # @!attribute [rw] global_identity
3770
+ # Global identity information of the GSM object.
3771
+ # @return [Types::GlobalIdentity]
3772
+ #
3773
+ class GsmNmrObj < Struct.new(
3774
+ :bsic,
3775
+ :bcch,
3776
+ :rx_level,
3777
+ :global_identity)
3778
+ SENSITIVE = []
3779
+ include Aws::Structure
3780
+ end
3781
+
3782
+ # GSM object.
3783
+ #
3784
+ # @note When making an API call, you may pass GsmObj
3785
+ # data as a hash:
3786
+ #
3787
+ # {
3788
+ # mcc: 1, # required
3789
+ # mnc: 1, # required
3790
+ # lac: 1, # required
3791
+ # geran_cid: 1, # required
3792
+ # gsm_local_id: {
3793
+ # bsic: 1, # required
3794
+ # bcch: 1, # required
3795
+ # },
3796
+ # gsm_timing_advance: 1,
3797
+ # rx_level: 1,
3798
+ # gsm_nmr: [
3799
+ # {
3800
+ # bsic: 1, # required
3801
+ # bcch: 1, # required
3802
+ # rx_level: 1,
3803
+ # global_identity: {
3804
+ # lac: 1, # required
3805
+ # geran_cid: 1, # required
3806
+ # },
3807
+ # },
3808
+ # ],
3809
+ # }
3810
+ #
3811
+ # @!attribute [rw] mcc
3812
+ # Mobile Country Code.
3813
+ # @return [Integer]
3814
+ #
3815
+ # @!attribute [rw] mnc
3816
+ # Mobile Network Code.
3817
+ # @return [Integer]
3818
+ #
3819
+ # @!attribute [rw] lac
3820
+ # Location area code.
3821
+ # @return [Integer]
3822
+ #
3823
+ # @!attribute [rw] geran_cid
3824
+ # GERAN (GSM EDGE Radio Access Network) Cell Global Identifier.
3825
+ # @return [Integer]
3826
+ #
3827
+ # @!attribute [rw] gsm_local_id
3828
+ # GSM local identification (local ID) information.
3829
+ # @return [Types::GsmLocalId]
3830
+ #
3831
+ # @!attribute [rw] gsm_timing_advance
3832
+ # Timing advance value, which corresponds to the length of time a
3833
+ # signal takes to reach the base station from a mobile phone.
3834
+ # @return [Integer]
3835
+ #
3836
+ # @!attribute [rw] rx_level
3837
+ # Rx level, which is the received signal power, measured in dBm
3838
+ # (decibel-milliwatts).
3839
+ # @return [Integer]
3840
+ #
3841
+ # @!attribute [rw] gsm_nmr
3842
+ # GSM object for network measurement reports.
3843
+ # @return [Array<Types::GsmNmrObj>]
3844
+ #
3845
+ class GsmObj < Struct.new(
3846
+ :mcc,
3847
+ :mnc,
3848
+ :lac,
3849
+ :geran_cid,
3850
+ :gsm_local_id,
3851
+ :gsm_timing_advance,
3852
+ :rx_level,
3853
+ :gsm_nmr)
3854
+ SENSITIVE = []
3855
+ include Aws::Structure
3856
+ end
3857
+
3009
3858
  # An unexpected error occurred while processing a request.
3010
3859
  #
3011
3860
  # @!attribute [rw] message
@@ -3017,6 +3866,25 @@ module Aws::IoTWireless
3017
3866
  include Aws::Structure
3018
3867
  end
3019
3868
 
3869
+ # IP address used for resolving device location.
3870
+ #
3871
+ # @note When making an API call, you may pass Ip
3872
+ # data as a hash:
3873
+ #
3874
+ # {
3875
+ # ip_address: "IPAddress", # required
3876
+ # }
3877
+ #
3878
+ # @!attribute [rw] ip_address
3879
+ # IP address information.
3880
+ # @return [String]
3881
+ #
3882
+ class Ip < Struct.new(
3883
+ :ip_address)
3884
+ SENSITIVE = []
3885
+ include Aws::Structure
3886
+ end
3887
+
3020
3888
  # Join event configuration object for enabling or disabling topic.
3021
3889
  #
3022
3890
  # @note When making an API call, you may pass JoinEventConfiguration
@@ -3842,6 +4710,13 @@ module Aws::IoTWireless
3842
4710
  # stream: 1,
3843
4711
  # gnss: 1,
3844
4712
  # },
4713
+ # applications: [
4714
+ # {
4715
+ # f_port: 1,
4716
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
4717
+ # destination_name: "DestinationName",
4718
+ # },
4719
+ # ],
3845
4720
  # },
3846
4721
  # }
3847
4722
  #
@@ -4586,6 +5461,13 @@ module Aws::IoTWireless
4586
5461
  # stream: 1,
4587
5462
  # gnss: 1,
4588
5463
  # },
5464
+ # applications: [
5465
+ # {
5466
+ # f_port: 1,
5467
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
5468
+ # destination_name: "DestinationName",
5469
+ # },
5470
+ # ],
4589
5471
  # },
4590
5472
  # }
4591
5473
  #
@@ -4681,6 +5563,167 @@ module Aws::IoTWireless
4681
5563
  include Aws::Structure
4682
5564
  end
4683
5565
 
5566
+ # LTE local identification (local ID) information.
5567
+ #
5568
+ # @note When making an API call, you may pass LteLocalId
5569
+ # data as a hash:
5570
+ #
5571
+ # {
5572
+ # pci: 1, # required
5573
+ # earfcn: 1, # required
5574
+ # }
5575
+ #
5576
+ # @!attribute [rw] pci
5577
+ # Physical cell ID.
5578
+ # @return [Integer]
5579
+ #
5580
+ # @!attribute [rw] earfcn
5581
+ # Evolved universal terrestrial radio access (E-UTRA) absolute radio
5582
+ # frequency channel number (FCN).
5583
+ # @return [Integer]
5584
+ #
5585
+ class LteLocalId < Struct.new(
5586
+ :pci,
5587
+ :earfcn)
5588
+ SENSITIVE = []
5589
+ include Aws::Structure
5590
+ end
5591
+
5592
+ # LTE object for network measurement reports.
5593
+ #
5594
+ # @note When making an API call, you may pass LteNmrObj
5595
+ # data as a hash:
5596
+ #
5597
+ # {
5598
+ # pci: 1, # required
5599
+ # earfcn: 1, # required
5600
+ # eutran_cid: 1, # required
5601
+ # rsrp: 1,
5602
+ # rsrq: 1.0,
5603
+ # }
5604
+ #
5605
+ # @!attribute [rw] pci
5606
+ # Physical cell ID.
5607
+ # @return [Integer]
5608
+ #
5609
+ # @!attribute [rw] earfcn
5610
+ # E-UTRA (Evolved universal terrestrial Radio Access) absolute radio
5611
+ # frequency channel Number (EARFCN).
5612
+ # @return [Integer]
5613
+ #
5614
+ # @!attribute [rw] eutran_cid
5615
+ # E-UTRAN (Evolved Universal Terrestrial Radio Access Network) cell
5616
+ # global identifier (EUTRANCID).
5617
+ # @return [Integer]
5618
+ #
5619
+ # @!attribute [rw] rsrp
5620
+ # Signal power of the reference signal received, measured in dBm
5621
+ # (decibel-milliwatts).
5622
+ # @return [Integer]
5623
+ #
5624
+ # @!attribute [rw] rsrq
5625
+ # Signal quality of the reference Signal received, measured in
5626
+ # decibels (dB).
5627
+ # @return [Float]
5628
+ #
5629
+ class LteNmrObj < Struct.new(
5630
+ :pci,
5631
+ :earfcn,
5632
+ :eutran_cid,
5633
+ :rsrp,
5634
+ :rsrq)
5635
+ SENSITIVE = []
5636
+ include Aws::Structure
5637
+ end
5638
+
5639
+ # LTE object.
5640
+ #
5641
+ # @note When making an API call, you may pass LteObj
5642
+ # data as a hash:
5643
+ #
5644
+ # {
5645
+ # mcc: 1, # required
5646
+ # mnc: 1, # required
5647
+ # eutran_cid: 1, # required
5648
+ # tac: 1,
5649
+ # lte_local_id: {
5650
+ # pci: 1, # required
5651
+ # earfcn: 1, # required
5652
+ # },
5653
+ # lte_timing_advance: 1,
5654
+ # rsrp: 1,
5655
+ # rsrq: 1.0,
5656
+ # nr_capable: false,
5657
+ # lte_nmr: [
5658
+ # {
5659
+ # pci: 1, # required
5660
+ # earfcn: 1, # required
5661
+ # eutran_cid: 1, # required
5662
+ # rsrp: 1,
5663
+ # rsrq: 1.0,
5664
+ # },
5665
+ # ],
5666
+ # }
5667
+ #
5668
+ # @!attribute [rw] mcc
5669
+ # Mobile Country Code.
5670
+ # @return [Integer]
5671
+ #
5672
+ # @!attribute [rw] mnc
5673
+ # Mobile Network Code.
5674
+ # @return [Integer]
5675
+ #
5676
+ # @!attribute [rw] eutran_cid
5677
+ # E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell
5678
+ # Global Identifier.
5679
+ # @return [Integer]
5680
+ #
5681
+ # @!attribute [rw] tac
5682
+ # LTE tracking area code.
5683
+ # @return [Integer]
5684
+ #
5685
+ # @!attribute [rw] lte_local_id
5686
+ # LTE local identification (local ID) information.
5687
+ # @return [Types::LteLocalId]
5688
+ #
5689
+ # @!attribute [rw] lte_timing_advance
5690
+ # LTE timing advance.
5691
+ # @return [Integer]
5692
+ #
5693
+ # @!attribute [rw] rsrp
5694
+ # Signal power of the reference signal received, measured in dBm
5695
+ # (decibel-milliwatts).
5696
+ # @return [Integer]
5697
+ #
5698
+ # @!attribute [rw] rsrq
5699
+ # Signal quality of the reference Signal received, measured in
5700
+ # decibels (dB).
5701
+ # @return [Float]
5702
+ #
5703
+ # @!attribute [rw] nr_capable
5704
+ # Parameter that determines whether the LTE object is capable of
5705
+ # supporting NR (new radio).
5706
+ # @return [Boolean]
5707
+ #
5708
+ # @!attribute [rw] lte_nmr
5709
+ # LTE object for network measurement reports.
5710
+ # @return [Array<Types::LteNmrObj>]
5711
+ #
5712
+ class LteObj < Struct.new(
5713
+ :mcc,
5714
+ :mnc,
5715
+ :eutran_cid,
5716
+ :tac,
5717
+ :lte_local_id,
5718
+ :lte_timing_advance,
5719
+ :rsrp,
5720
+ :rsrq,
5721
+ :nr_capable,
5722
+ :lte_nmr)
5723
+ SENSITIVE = []
5724
+ include Aws::Structure
5725
+ end
5726
+
4684
5727
  # Message delivery status event configuration object for enabling and
4685
5728
  # disabling relevant topics.
4686
5729
  #
@@ -4700,8 +5743,8 @@ module Aws::IoTWireless
4700
5743
  # @return [Types::SidewalkEventNotificationConfigurations]
4701
5744
  #
4702
5745
  # @!attribute [rw] wireless_device_id_event_topic
4703
- # Denotes whether the wireless device ID device registration state
4704
- # event topic is enabled or disabled.
5746
+ # Denotes whether the wireless device ID message delivery status event
5747
+ # topic is enabled or disabled.
4705
5748
  # @return [String]
4706
5749
  #
4707
5750
  class MessageDeliveryStatusEventConfiguration < Struct.new(
@@ -5630,8 +6673,7 @@ module Aws::IoTWireless
5630
6673
  # @return [String]
5631
6674
  #
5632
6675
  # @!attribute [rw] ack_mode_retry_duration_secs
5633
- # The duration of time in seconds for which you want to retry sending
5634
- # the ACK.
6676
+ # The duration of time in seconds to retry sending the ACK.
5635
6677
  # @return [Integer]
5636
6678
  #
5637
6679
  class SidewalkSendDataToDevice < Struct.new(
@@ -5850,6 +6892,160 @@ module Aws::IoTWireless
5850
6892
 
5851
6893
  class TagResourceResponse < Aws::EmptyStructure; end
5852
6894
 
6895
+ # TD-SCDMA local identification (local Id) information.
6896
+ #
6897
+ # @note When making an API call, you may pass TdscdmaLocalId
6898
+ # data as a hash:
6899
+ #
6900
+ # {
6901
+ # uarfcn: 1, # required
6902
+ # cell_params: 1, # required
6903
+ # }
6904
+ #
6905
+ # @!attribute [rw] uarfcn
6906
+ # TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute
6907
+ # RF channel number (UARFCN).
6908
+ # @return [Integer]
6909
+ #
6910
+ # @!attribute [rw] cell_params
6911
+ # Cell parameters for TD-SCDMA.
6912
+ # @return [Integer]
6913
+ #
6914
+ class TdscdmaLocalId < Struct.new(
6915
+ :uarfcn,
6916
+ :cell_params)
6917
+ SENSITIVE = []
6918
+ include Aws::Structure
6919
+ end
6920
+
6921
+ # TD-SCDMA object for network measurement reports.
6922
+ #
6923
+ # @note When making an API call, you may pass TdscdmaNmrObj
6924
+ # data as a hash:
6925
+ #
6926
+ # {
6927
+ # uarfcn: 1, # required
6928
+ # cell_params: 1, # required
6929
+ # utran_cid: 1,
6930
+ # rscp: 1,
6931
+ # path_loss: 1,
6932
+ # }
6933
+ #
6934
+ # @!attribute [rw] uarfcn
6935
+ # TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute
6936
+ # RF channel number.
6937
+ # @return [Integer]
6938
+ #
6939
+ # @!attribute [rw] cell_params
6940
+ # Cell parameters for TD-SCDMA network measurement reports object.
6941
+ # @return [Integer]
6942
+ #
6943
+ # @!attribute [rw] utran_cid
6944
+ # UTRAN (UMTS Terrestrial Radio Access Network) cell global
6945
+ # identifier.
6946
+ # @return [Integer]
6947
+ #
6948
+ # @!attribute [rw] rscp
6949
+ # Code power of the received signal, measured in decibel-milliwatts
6950
+ # (dBm).
6951
+ # @return [Integer]
6952
+ #
6953
+ # @!attribute [rw] path_loss
6954
+ # Path loss, or path attenuation, is the reduction in power density of
6955
+ # an electromagnetic wave as it propagates through space.
6956
+ # @return [Integer]
6957
+ #
6958
+ class TdscdmaNmrObj < Struct.new(
6959
+ :uarfcn,
6960
+ :cell_params,
6961
+ :utran_cid,
6962
+ :rscp,
6963
+ :path_loss)
6964
+ SENSITIVE = []
6965
+ include Aws::Structure
6966
+ end
6967
+
6968
+ # TD-SCDMA object.
6969
+ #
6970
+ # @note When making an API call, you may pass TdscdmaObj
6971
+ # data as a hash:
6972
+ #
6973
+ # {
6974
+ # mcc: 1, # required
6975
+ # mnc: 1, # required
6976
+ # lac: 1,
6977
+ # utran_cid: 1, # required
6978
+ # tdscdma_local_id: {
6979
+ # uarfcn: 1, # required
6980
+ # cell_params: 1, # required
6981
+ # },
6982
+ # tdscdma_timing_advance: 1,
6983
+ # rscp: 1,
6984
+ # path_loss: 1,
6985
+ # tdscdma_nmr: [
6986
+ # {
6987
+ # uarfcn: 1, # required
6988
+ # cell_params: 1, # required
6989
+ # utran_cid: 1,
6990
+ # rscp: 1,
6991
+ # path_loss: 1,
6992
+ # },
6993
+ # ],
6994
+ # }
6995
+ #
6996
+ # @!attribute [rw] mcc
6997
+ # Mobile Country Code.
6998
+ # @return [Integer]
6999
+ #
7000
+ # @!attribute [rw] mnc
7001
+ # Mobile Network Code.
7002
+ # @return [Integer]
7003
+ #
7004
+ # @!attribute [rw] lac
7005
+ # Location Area Code.
7006
+ # @return [Integer]
7007
+ #
7008
+ # @!attribute [rw] utran_cid
7009
+ # UTRAN (UMTS Terrestrial Radio Access Network) Cell Global
7010
+ # Identifier.
7011
+ # @return [Integer]
7012
+ #
7013
+ # @!attribute [rw] tdscdma_local_id
7014
+ # TD-SCDMA local identification (local ID) information.
7015
+ # @return [Types::TdscdmaLocalId]
7016
+ #
7017
+ # @!attribute [rw] tdscdma_timing_advance
7018
+ # TD-SCDMA Timing advance.
7019
+ # @return [Integer]
7020
+ #
7021
+ # @!attribute [rw] rscp
7022
+ # Signal power of the received signal (Received Signal Code Power),
7023
+ # measured in decibel-milliwatts (dBm).
7024
+ # @return [Integer]
7025
+ #
7026
+ # @!attribute [rw] path_loss
7027
+ # Path loss, or path attenuation, is the reduction in power density of
7028
+ # an electromagnetic wave as it propagates through space.
7029
+ # @return [Integer]
7030
+ #
7031
+ # @!attribute [rw] tdscdma_nmr
7032
+ # TD-SCDMA object for network measurement reports.
7033
+ # @return [Array<Types::TdscdmaNmrObj>]
7034
+ #
7035
+ class TdscdmaObj < Struct.new(
7036
+ :mcc,
7037
+ :mnc,
7038
+ :lac,
7039
+ :utran_cid,
7040
+ :tdscdma_local_id,
7041
+ :tdscdma_timing_advance,
7042
+ :rscp,
7043
+ :path_loss,
7044
+ :tdscdma_nmr)
7045
+ SENSITIVE = []
7046
+ include Aws::Structure
7047
+ end
7048
+
5853
7049
  # @note When making an API call, you may pass TestWirelessDeviceRequest
5854
7050
  # data as a hash:
5855
7051
  #
@@ -6119,14 +7315,27 @@ module Aws::IoTWireless
6119
7315
  # stream: 1,
6120
7316
  # gnss: 1,
6121
7317
  # },
7318
+ # applications: [
7319
+ # {
7320
+ # f_port: 1,
7321
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
7322
+ # destination_name: "DestinationName",
7323
+ # },
7324
+ # ],
6122
7325
  # }
6123
7326
  #
6124
7327
  # @!attribute [rw] positioning
6125
7328
  # Positioning FPorts for the ClockSync, Stream, and GNSS functions.
6126
7329
  # @return [Types::Positioning]
6127
7330
  #
7331
+ # @!attribute [rw] applications
7332
+ # LoRaWAN application, which can be used for geolocation by activating
7333
+ # positioning.
7334
+ # @return [Array<Types::ApplicationConfig>]
7335
+ #
6128
7336
  class UpdateFPorts < Struct.new(
6129
- :positioning)
7337
+ :positioning,
7338
+ :applications)
6130
7339
  SENSITIVE = []
6131
7340
  include Aws::Structure
6132
7341
  end
@@ -6497,6 +7706,47 @@ module Aws::IoTWireless
6497
7706
 
6498
7707
  class UpdateResourceEventConfigurationResponse < Aws::EmptyStructure; end
6499
7708
 
7709
+ # @note When making an API call, you may pass UpdateResourcePositionRequest
7710
+ # data as a hash:
7711
+ #
7712
+ # {
7713
+ # resource_identifier: "PositionResourceIdentifier", # required
7714
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
7715
+ # geo_json_payload: "data",
7716
+ # }
7717
+ #
7718
+ # @!attribute [rw] resource_identifier
7719
+ # The identifier of the resource for which position information is
7720
+ # updated. It can be the wireless device ID or the wireless gateway ID
7721
+ # depending on the resource type.
7722
+ # @return [String]
7723
+ #
7724
+ # @!attribute [rw] resource_type
7725
+ # The type of resource for which position information is updated,
7726
+ # which can be a wireless device or a wireless gateway.
7727
+ # @return [String]
7728
+ #
7729
+ # @!attribute [rw] geo_json_payload
7730
+ # The position information of the resource, displayed as a JSON
7731
+ # payload. The payload uses the GeoJSON format, which a format that's
7732
+ # used to encode geographic data structures. For more information, see
7733
+ # [GeoJSON][1].
7734
+ #
7735
+ #
7736
+ #
7737
+ # [1]: https://geojson.org/
7738
+ # @return [String]
7739
+ #
7740
+ class UpdateResourcePositionRequest < Struct.new(
7741
+ :resource_identifier,
7742
+ :resource_type,
7743
+ :geo_json_payload)
7744
+ SENSITIVE = []
7745
+ include Aws::Structure
7746
+ end
7747
+
7748
+ class UpdateResourcePositionResponse < Aws::EmptyStructure; end
7749
+
6500
7750
  # @note When making an API call, you may pass UpdateWirelessDeviceRequest
6501
7751
  # data as a hash:
6502
7752
  #
@@ -6520,8 +7770,16 @@ module Aws::IoTWireless
6520
7770
  # stream: 1,
6521
7771
  # gnss: 1,
6522
7772
  # },
7773
+ # applications: [
7774
+ # {
7775
+ # f_port: 1,
7776
+ # type: "SemtechGeolocation", # accepts SemtechGeolocation
7777
+ # destination_name: "DestinationName",
7778
+ # },
7779
+ # ],
6523
7780
  # },
6524
7781
  # },
7782
+ # positioning: "Enabled", # accepts Enabled, Disabled
6525
7783
  # }
6526
7784
  #
6527
7785
  # @!attribute [rw] id
@@ -6544,12 +7802,18 @@ module Aws::IoTWireless
6544
7802
  # The updated wireless device's configuration.
6545
7803
  # @return [Types::LoRaWANUpdateDevice]
6546
7804
  #
7805
+ # @!attribute [rw] positioning
7806
+ # FPort values for the GNSS, stream, and ClockSync functions of the
7807
+ # positioning information.
7808
+ # @return [String]
7809
+ #
6547
7810
  class UpdateWirelessDeviceRequest < Struct.new(
6548
7811
  :id,
6549
7812
  :destination_name,
6550
7813
  :name,
6551
7814
  :description,
6552
- :lo_ra_wan)
7815
+ :lo_ra_wan,
7816
+ :positioning)
6553
7817
  SENSITIVE = []
6554
7818
  include Aws::Structure
6555
7819
  end
@@ -6679,6 +7943,175 @@ module Aws::IoTWireless
6679
7943
  include Aws::Structure
6680
7944
  end
6681
7945
 
7946
+ # WCDMA local identification (local ID) information.
7947
+ #
7948
+ # @note When making an API call, you may pass WcdmaLocalId
7949
+ # data as a hash:
7950
+ #
7951
+ # {
7952
+ # uarfcndl: 1, # required
7953
+ # psc: 1, # required
7954
+ # }
7955
+ #
7956
+ # @!attribute [rw] uarfcndl
7957
+ # WCDMA UTRA Absolute RF Channel Number downlink.
7958
+ # @return [Integer]
7959
+ #
7960
+ # @!attribute [rw] psc
7961
+ # Primary Scrambling Code.
7962
+ # @return [Integer]
7963
+ #
7964
+ class WcdmaLocalId < Struct.new(
7965
+ :uarfcndl,
7966
+ :psc)
7967
+ SENSITIVE = []
7968
+ include Aws::Structure
7969
+ end
7970
+
7971
+ # Network Measurement Reports.
7972
+ #
7973
+ # @note When making an API call, you may pass WcdmaNmrObj
7974
+ # data as a hash:
7975
+ #
7976
+ # {
7977
+ # uarfcndl: 1, # required
7978
+ # psc: 1, # required
7979
+ # utran_cid: 1, # required
7980
+ # rscp: 1,
7981
+ # path_loss: 1,
7982
+ # }
7983
+ #
7984
+ # @!attribute [rw] uarfcndl
7985
+ # WCDMA UTRA Absolute RF Channel Number downlink.
7986
+ # @return [Integer]
7987
+ #
7988
+ # @!attribute [rw] psc
7989
+ # Primary Scrambling Code.
7990
+ # @return [Integer]
7991
+ #
7992
+ # @!attribute [rw] utran_cid
7993
+ # UTRAN (UMTS Terrestrial Radio Access Network) Cell Global
7994
+ # Identifier.
7995
+ # @return [Integer]
7996
+ #
7997
+ # @!attribute [rw] rscp
7998
+ # Received Signal Code Power (signal power) (dBm)
7999
+ # @return [Integer]
8000
+ #
8001
+ # @!attribute [rw] path_loss
8002
+ # Path loss, or path attenuation, is the reduction in power density of
8003
+ # an electromagnetic wave as it propagates through space.
8004
+ # @return [Integer]
8005
+ #
8006
+ class WcdmaNmrObj < Struct.new(
8007
+ :uarfcndl,
8008
+ :psc,
8009
+ :utran_cid,
8010
+ :rscp,
8011
+ :path_loss)
8012
+ SENSITIVE = []
8013
+ include Aws::Structure
8014
+ end
8015
+
8016
+ # WCDMA.
8017
+ #
8018
+ # @note When making an API call, you may pass WcdmaObj
8019
+ # data as a hash:
8020
+ #
8021
+ # {
8022
+ # mcc: 1, # required
8023
+ # mnc: 1, # required
8024
+ # lac: 1,
8025
+ # utran_cid: 1, # required
8026
+ # wcdma_local_id: {
8027
+ # uarfcndl: 1, # required
8028
+ # psc: 1, # required
8029
+ # },
8030
+ # rscp: 1,
8031
+ # path_loss: 1,
8032
+ # wcdma_nmr: [
8033
+ # {
8034
+ # uarfcndl: 1, # required
8035
+ # psc: 1, # required
8036
+ # utran_cid: 1, # required
8037
+ # rscp: 1,
8038
+ # path_loss: 1,
8039
+ # },
8040
+ # ],
8041
+ # }
8042
+ #
8043
+ # @!attribute [rw] mcc
8044
+ # Mobile Country Code.
8045
+ # @return [Integer]
8046
+ #
8047
+ # @!attribute [rw] mnc
8048
+ # Mobile Network Code.
8049
+ # @return [Integer]
8050
+ #
8051
+ # @!attribute [rw] lac
8052
+ # Location Area Code.
8053
+ # @return [Integer]
8054
+ #
8055
+ # @!attribute [rw] utran_cid
8056
+ # UTRAN (UMTS Terrestrial Radio Access Network) Cell Global
8057
+ # Identifier.
8058
+ # @return [Integer]
8059
+ #
8060
+ # @!attribute [rw] wcdma_local_id
8061
+ # WCDMA local ID information.
8062
+ # @return [Types::WcdmaLocalId]
8063
+ #
8064
+ # @!attribute [rw] rscp
8065
+ # Received Signal Code Power (signal power) (dBm).
8066
+ # @return [Integer]
8067
+ #
8068
+ # @!attribute [rw] path_loss
8069
+ # Path loss, or path attenuation, is the reduction in power density of
8070
+ # an electromagnetic wave as it propagates through space.
8071
+ # @return [Integer]
8072
+ #
8073
+ # @!attribute [rw] wcdma_nmr
8074
+ # WCDMA object for network measurement reports.
8075
+ # @return [Array<Types::WcdmaNmrObj>]
8076
+ #
8077
+ class WcdmaObj < Struct.new(
8078
+ :mcc,
8079
+ :mnc,
8080
+ :lac,
8081
+ :utran_cid,
8082
+ :wcdma_local_id,
8083
+ :rscp,
8084
+ :path_loss,
8085
+ :wcdma_nmr)
8086
+ SENSITIVE = []
8087
+ include Aws::Structure
8088
+ end
8089
+
8090
+ # Wi-Fi access point.
8091
+ #
8092
+ # @note When making an API call, you may pass WiFiAccessPoint
8093
+ # data as a hash:
8094
+ #
8095
+ # {
8096
+ # mac_address: "MacAddress", # required
8097
+ # rss: 1, # required
8098
+ # }
8099
+ #
8100
+ # @!attribute [rw] mac_address
8101
+ # Wi-Fi MAC Address.
8102
+ # @return [String]
8103
+ #
8104
+ # @!attribute [rw] rss
8105
+ # Recived signal strength of the WLAN measurement data.
8106
+ # @return [Integer]
8107
+ #
8108
+ class WiFiAccessPoint < Struct.new(
8109
+ :mac_address,
8110
+ :rss)
8111
+ SENSITIVE = []
8112
+ include Aws::Structure
8113
+ end
8114
+
6682
8115
  # The log options for a wireless device event and can be used to set log
6683
8116
  # levels for a specific wireless device event.
6684
8117
  #