aws-sdk-iotwireless 1.21.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,7 @@ module Aws::IoTWireless
21
21
  # nwk_s_key: "NwkSKey",
22
22
  # app_s_key: "AppSKey",
23
23
  # },
24
+ # f_cnt_start: 1,
24
25
  # }
25
26
  #
26
27
  # @!attribute [rw] dev_addr
@@ -31,9 +32,14 @@ module Aws::IoTWireless
31
32
  # Session keys for ABP v1.0.x
32
33
  # @return [Types::SessionKeysAbpV1_0_x]
33
34
  #
35
+ # @!attribute [rw] f_cnt_start
36
+ # The FCnt init value.
37
+ # @return [Integer]
38
+ #
34
39
  class AbpV1_0_x < Struct.new(
35
40
  :dev_addr,
36
- :session_keys)
41
+ :session_keys,
42
+ :f_cnt_start)
37
43
  SENSITIVE = []
38
44
  include Aws::Structure
39
45
  end
@@ -51,6 +57,7 @@ module Aws::IoTWireless
51
57
  # nwk_s_enc_key: "NwkSEncKey",
52
58
  # app_s_key: "AppSKey",
53
59
  # },
60
+ # f_cnt_start: 1,
54
61
  # }
55
62
  #
56
63
  # @!attribute [rw] dev_addr
@@ -61,9 +68,14 @@ module Aws::IoTWireless
61
68
  # Session keys for ABP v1.1
62
69
  # @return [Types::SessionKeysAbpV1_1]
63
70
  #
71
+ # @!attribute [rw] f_cnt_start
72
+ # The FCnt init value.
73
+ # @return [Integer]
74
+ #
64
75
  class AbpV1_1 < Struct.new(
65
76
  :dev_addr,
66
- :session_keys)
77
+ :session_keys,
78
+ :f_cnt_start)
67
79
  SENSITIVE = []
68
80
  include Aws::Structure
69
81
  end
@@ -79,6 +91,27 @@ module Aws::IoTWireless
79
91
  include Aws::Structure
80
92
  end
81
93
 
94
+ # The accuracy of the estimated position in meters. An empty value
95
+ # indicates that no position data is available. A value of ‘0.0’ value
96
+ # indicates that position data is available. This data corresponds to
97
+ # the position information that you specified instead of the position
98
+ # computed by solver.
99
+ #
100
+ # @!attribute [rw] horizontal_accuracy
101
+ # The horizontal accuracy of the estimated position in meters.
102
+ # @return [Float]
103
+ #
104
+ # @!attribute [rw] vertical_accuracy
105
+ # The vertical accuracy of the estimated position in meters.
106
+ # @return [Float]
107
+ #
108
+ class Accuracy < Struct.new(
109
+ :horizontal_accuracy,
110
+ :vertical_accuracy)
111
+ SENSITIVE = []
112
+ include Aws::Structure
113
+ end
114
+
82
115
  # @note When making an API call, you may pass AssociateAwsAccountWithPartnerAccountRequest
83
116
  # data as a hash:
84
117
  #
@@ -354,6 +387,59 @@ module Aws::IoTWireless
354
387
  include Aws::Structure
355
388
  end
356
389
 
390
+ # Connection status event configuration object for enabling or disabling
391
+ # topic.
392
+ #
393
+ # @note When making an API call, you may pass ConnectionStatusEventConfiguration
394
+ # data as a hash:
395
+ #
396
+ # {
397
+ # lo_ra_wan: {
398
+ # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
399
+ # },
400
+ # wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
401
+ # }
402
+ #
403
+ # @!attribute [rw] lo_ra_wan
404
+ # Connection status event configuration object for enabling or
405
+ # disabling LoRaWAN related event topics.
406
+ # @return [Types::LoRaWANConnectionStatusEventNotificationConfigurations]
407
+ #
408
+ # @!attribute [rw] wireless_gateway_id_event_topic
409
+ # Enum to denote whether the wireless gateway ID connection status
410
+ # event topic is enabled or disabled.
411
+ # @return [String]
412
+ #
413
+ class ConnectionStatusEventConfiguration < Struct.new(
414
+ :lo_ra_wan,
415
+ :wireless_gateway_id_event_topic)
416
+ SENSITIVE = []
417
+ include Aws::Structure
418
+ end
419
+
420
+ # Connection status resource type event configuration object for
421
+ # enabling or disabling topic.
422
+ #
423
+ # @note When making an API call, you may pass ConnectionStatusResourceTypeEventConfiguration
424
+ # data as a hash:
425
+ #
426
+ # {
427
+ # lo_ra_wan: {
428
+ # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
429
+ # },
430
+ # }
431
+ #
432
+ # @!attribute [rw] lo_ra_wan
433
+ # Connection status resource type event configuration object for
434
+ # enabling or disabling LoRaWAN related event topics.
435
+ # @return [Types::LoRaWANConnectionStatusResourceTypeEventConfiguration]
436
+ #
437
+ class ConnectionStatusResourceTypeEventConfiguration < Struct.new(
438
+ :lo_ra_wan)
439
+ SENSITIVE = []
440
+ include Aws::Structure
441
+ end
442
+
357
443
  # @note When making an API call, you may pass CreateDestinationRequest
358
444
  # data as a hash:
359
445
  #
@@ -670,6 +756,94 @@ module Aws::IoTWireless
670
756
  include Aws::Structure
671
757
  end
672
758
 
759
+ # @note When making an API call, you may pass CreateNetworkAnalyzerConfigurationRequest
760
+ # data as a hash:
761
+ #
762
+ # {
763
+ # name: "NetworkAnalyzerConfigurationName", # required
764
+ # trace_content: {
765
+ # wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
766
+ # log_level: "INFO", # accepts INFO, ERROR, DISABLED
767
+ # },
768
+ # wireless_devices: ["WirelessDeviceId"],
769
+ # wireless_gateways: ["WirelessGatewayId"],
770
+ # description: "Description",
771
+ # tags: [
772
+ # {
773
+ # key: "TagKey", # required
774
+ # value: "TagValue", # required
775
+ # },
776
+ # ],
777
+ # client_request_token: "ClientRequestToken",
778
+ # }
779
+ #
780
+ # @!attribute [rw] name
781
+ # Name of the network analyzer configuration.
782
+ # @return [String]
783
+ #
784
+ # @!attribute [rw] trace_content
785
+ # Trace content for your wireless gateway and wireless device
786
+ # resources.
787
+ # @return [Types::TraceContent]
788
+ #
789
+ # @!attribute [rw] wireless_devices
790
+ # Wireless device resources to add to the network analyzer
791
+ # configuration. Provide the `WirelessDeviceId` of the resource to add
792
+ # in the input array.
793
+ # @return [Array<String>]
794
+ #
795
+ # @!attribute [rw] wireless_gateways
796
+ # Wireless gateway resources to add to the network analyzer
797
+ # configuration. Provide the `WirelessGatewayId` of the resource to
798
+ # add in the input array.
799
+ # @return [Array<String>]
800
+ #
801
+ # @!attribute [rw] description
802
+ # The description of the new resource.
803
+ # @return [String]
804
+ #
805
+ # @!attribute [rw] tags
806
+ # The tag to attach to the specified resource. Tags are metadata that
807
+ # you can use to manage a resource.
808
+ # @return [Array<Types::Tag>]
809
+ #
810
+ # @!attribute [rw] client_request_token
811
+ # Each resource must have a unique client request token. If you try to
812
+ # create a new resource with the same token as a resource that already
813
+ # exists, an exception occurs. If you omit this value, AWS SDKs will
814
+ # automatically generate a unique client request.
815
+ #
816
+ # **A suitable default value is auto-generated.** You should normally
817
+ # not need to pass this option.
818
+ # @return [String]
819
+ #
820
+ class CreateNetworkAnalyzerConfigurationRequest < Struct.new(
821
+ :name,
822
+ :trace_content,
823
+ :wireless_devices,
824
+ :wireless_gateways,
825
+ :description,
826
+ :tags,
827
+ :client_request_token)
828
+ SENSITIVE = []
829
+ include Aws::Structure
830
+ end
831
+
832
+ # @!attribute [rw] arn
833
+ # The Amazon Resource Name of the new resource.
834
+ # @return [String]
835
+ #
836
+ # @!attribute [rw] name
837
+ # Name of the network analyzer configuration.
838
+ # @return [String]
839
+ #
840
+ class CreateNetworkAnalyzerConfigurationResponse < Struct.new(
841
+ :arn,
842
+ :name)
843
+ SENSITIVE = []
844
+ include Aws::Structure
845
+ end
846
+
673
847
  # @note When making an API call, you may pass CreateServiceProfileRequest
674
848
  # data as a hash:
675
849
  #
@@ -766,6 +940,7 @@ module Aws::IoTWireless
766
940
  # nwk_s_enc_key: "NwkSEncKey",
767
941
  # app_s_key: "AppSKey",
768
942
  # },
943
+ # f_cnt_start: 1,
769
944
  # },
770
945
  # abp_v1_0_x: {
771
946
  # dev_addr: "DevAddr",
@@ -773,11 +948,17 @@ module Aws::IoTWireless
773
948
  # nwk_s_key: "NwkSKey",
774
949
  # app_s_key: "AppSKey",
775
950
  # },
951
+ # f_cnt_start: 1,
776
952
  # },
777
953
  # f_ports: {
778
954
  # fuota: 1,
779
955
  # multicast: 1,
780
956
  # clock_sync: 1,
957
+ # positioning: {
958
+ # clock_sync: 1,
959
+ # stream: 1,
960
+ # gnss: 1,
961
+ # },
781
962
  # },
782
963
  # },
783
964
  # tags: [
@@ -1129,6 +1310,25 @@ module Aws::IoTWireless
1129
1310
 
1130
1311
  class DeleteMulticastGroupResponse < Aws::EmptyStructure; end
1131
1312
 
1313
+ # @note When making an API call, you may pass DeleteNetworkAnalyzerConfigurationRequest
1314
+ # data as a hash:
1315
+ #
1316
+ # {
1317
+ # configuration_name: "NetworkAnalyzerConfigurationName", # required
1318
+ # }
1319
+ #
1320
+ # @!attribute [rw] configuration_name
1321
+ # Name of the network analyzer configuration.
1322
+ # @return [String]
1323
+ #
1324
+ class DeleteNetworkAnalyzerConfigurationRequest < Struct.new(
1325
+ :configuration_name)
1326
+ SENSITIVE = []
1327
+ include Aws::Structure
1328
+ end
1329
+
1330
+ class DeleteNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
1331
+
1132
1332
  # @note When making an API call, you may pass DeleteQueuedMessagesRequest
1133
1333
  # data as a hash:
1134
1334
  #
@@ -1139,17 +1339,18 @@ module Aws::IoTWireless
1139
1339
  # }
1140
1340
  #
1141
1341
  # @!attribute [rw] id
1142
- # Id of a given wireless device which messages will be deleted
1342
+ # The ID of a given wireless device for which downlink messages will
1343
+ # be deleted.
1143
1344
  # @return [String]
1144
1345
  #
1145
1346
  # @!attribute [rw] message_id
1146
- # if messageID=="*", the queue for a particular wireless deviceId
1147
- # will be purged, otherwise, the specific message with messageId will
1148
- # be deleted
1347
+ # If message ID is `"*"`, it cleares the entire downlink queue for a
1348
+ # given device, specified by the wireless device ID. Otherwise, the
1349
+ # downlink message with the specified message ID will be deleted.
1149
1350
  # @return [String]
1150
1351
  #
1151
1352
  # @!attribute [rw] wireless_device_type
1152
- # The wireless device type, it is either Sidewalk or LoRaWAN.
1353
+ # The wireless device type, which can be either Sidewalk or LoRaWAN.
1153
1354
  # @return [String]
1154
1355
  #
1155
1356
  class DeleteQueuedMessagesRequest < Struct.new(
@@ -1326,6 +1527,7 @@ module Aws::IoTWireless
1326
1527
  # sidewalk: {
1327
1528
  # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
1328
1529
  # },
1530
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
1329
1531
  # }
1330
1532
  #
1331
1533
  # @!attribute [rw] sidewalk
@@ -1333,7 +1535,36 @@ module Aws::IoTWireless
1333
1535
  # disabling Sidewalk related event topics.
1334
1536
  # @return [Types::SidewalkEventNotificationConfigurations]
1335
1537
  #
1538
+ # @!attribute [rw] wireless_device_id_event_topic
1539
+ # Enum to denote whether the wireless device id device registration
1540
+ # state event topic is enabled or disabled.
1541
+ # @return [String]
1542
+ #
1336
1543
  class DeviceRegistrationStateEventConfiguration < Struct.new(
1544
+ :sidewalk,
1545
+ :wireless_device_id_event_topic)
1546
+ SENSITIVE = []
1547
+ include Aws::Structure
1548
+ end
1549
+
1550
+ # Device registration state resource type event configuration object for
1551
+ # enabling or disabling topic.
1552
+ #
1553
+ # @note When making an API call, you may pass DeviceRegistrationStateResourceTypeEventConfiguration
1554
+ # data as a hash:
1555
+ #
1556
+ # {
1557
+ # sidewalk: {
1558
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
1559
+ # },
1560
+ # }
1561
+ #
1562
+ # @!attribute [rw] sidewalk
1563
+ # Device registration resource type state event configuration object
1564
+ # for enabling or disabling Sidewalk related event topics.
1565
+ # @return [Types::SidewalkResourceTypeEventConfiguration]
1566
+ #
1567
+ class DeviceRegistrationStateResourceTypeEventConfiguration < Struct.new(
1337
1568
  :sidewalk)
1338
1569
  SENSITIVE = []
1339
1570
  include Aws::Structure
@@ -1496,20 +1727,21 @@ module Aws::IoTWireless
1496
1727
 
1497
1728
  class DisassociateWirelessGatewayFromThingResponse < Aws::EmptyStructure; end
1498
1729
 
1499
- # The message in downlink queue.
1730
+ # The message in the downlink queue.
1500
1731
  #
1501
1732
  # @!attribute [rw] message_id
1502
- # The messageId allocated by IoT Wireless for tracing purpose
1733
+ # The message ID assigned by IoT Wireless to each downlink message,
1734
+ # which helps identify the message.
1503
1735
  # @return [String]
1504
1736
  #
1505
1737
  # @!attribute [rw] transmit_mode
1506
- # The transmit mode to use to send data to the wireless device. Can
1507
- # be: `0` for UM (unacknowledge mode) or `1` for AM (acknowledge
1508
- # mode).
1738
+ # The transmit mode to use for sending data to the wireless device.
1739
+ # This can be `0` for UM (unacknowledge mode) or `1` for AM
1740
+ # (acknowledge mode).
1509
1741
  # @return [Integer]
1510
1742
  #
1511
1743
  # @!attribute [rw] received_at
1512
- # The timestamp that Iot Wireless received the message.
1744
+ # The time at which Iot Wireless received the downlink message.
1513
1745
  # @return [String]
1514
1746
  #
1515
1747
  # @!attribute [rw] lo_ra_wan
@@ -1525,6 +1757,65 @@ module Aws::IoTWireless
1525
1757
  include Aws::Structure
1526
1758
  end
1527
1759
 
1760
+ # Event configuration object for a single resource.
1761
+ #
1762
+ # @!attribute [rw] identifier
1763
+ # Resource identifier opted in for event messaging.
1764
+ # @return [String]
1765
+ #
1766
+ # @!attribute [rw] identifier_type
1767
+ # Identifier type of the particular resource identifier for event
1768
+ # configuration.
1769
+ # @return [String]
1770
+ #
1771
+ # @!attribute [rw] partner_type
1772
+ # Partner type of the resource if the identifier type is
1773
+ # PartnerAccountId.
1774
+ # @return [String]
1775
+ #
1776
+ # @!attribute [rw] events
1777
+ # Object of all event configurations and the status of the event
1778
+ # topics.
1779
+ # @return [Types::EventNotificationItemConfigurations]
1780
+ #
1781
+ class EventConfigurationItem < Struct.new(
1782
+ :identifier,
1783
+ :identifier_type,
1784
+ :partner_type,
1785
+ :events)
1786
+ SENSITIVE = []
1787
+ include Aws::Structure
1788
+ end
1789
+
1790
+ # Object of all event configurations and the status of the event topics.
1791
+ #
1792
+ # @!attribute [rw] device_registration_state
1793
+ # Device registration state event configuration for an event
1794
+ # configuration item.
1795
+ # @return [Types::DeviceRegistrationStateEventConfiguration]
1796
+ #
1797
+ # @!attribute [rw] proximity
1798
+ # Proximity event configuration for an event configuration item.
1799
+ # @return [Types::ProximityEventConfiguration]
1800
+ #
1801
+ # @!attribute [rw] join
1802
+ # Join event configuration for an event configuration item.
1803
+ # @return [Types::JoinEventConfiguration]
1804
+ #
1805
+ # @!attribute [rw] connection_status
1806
+ # Connection status event configuration for an event configuration
1807
+ # item.
1808
+ # @return [Types::ConnectionStatusEventConfiguration]
1809
+ #
1810
+ class EventNotificationItemConfigurations < Struct.new(
1811
+ :device_registration_state,
1812
+ :proximity,
1813
+ :join,
1814
+ :connection_status)
1815
+ SENSITIVE = []
1816
+ include Aws::Structure
1817
+ end
1818
+
1528
1819
  # List of FPort assigned for different LoRaWAN application packages to
1529
1820
  # use
1530
1821
  #
@@ -1535,6 +1826,11 @@ module Aws::IoTWireless
1535
1826
  # fuota: 1,
1536
1827
  # multicast: 1,
1537
1828
  # clock_sync: 1,
1829
+ # positioning: {
1830
+ # clock_sync: 1,
1831
+ # stream: 1,
1832
+ # gnss: 1,
1833
+ # },
1538
1834
  # }
1539
1835
  #
1540
1836
  # @!attribute [rw] fuota
@@ -1549,10 +1845,16 @@ module Aws::IoTWireless
1549
1845
  # The Fport value.
1550
1846
  # @return [Integer]
1551
1847
  #
1848
+ # @!attribute [rw] positioning
1849
+ # FPort values for the GNSS, stream, and ClockSync functions of the
1850
+ # positioning information.
1851
+ # @return [Types::Positioning]
1852
+ #
1552
1853
  class FPorts < Struct.new(
1553
1854
  :fuota,
1554
1855
  :multicast,
1555
- :clock_sync)
1856
+ :clock_sync,
1857
+ :positioning)
1556
1858
  SENSITIVE = []
1557
1859
  include Aws::Structure
1558
1860
  end
@@ -1673,6 +1975,36 @@ module Aws::IoTWireless
1673
1975
  include Aws::Structure
1674
1976
  end
1675
1977
 
1978
+ # @api private
1979
+ #
1980
+ class GetEventConfigurationByResourceTypesRequest < Aws::EmptyStructure; end
1981
+
1982
+ # @!attribute [rw] device_registration_state
1983
+ # Resource type event configuration for the device registration state
1984
+ # event.
1985
+ # @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
1986
+ #
1987
+ # @!attribute [rw] proximity
1988
+ # Resource type event configuration for the proximity event.
1989
+ # @return [Types::ProximityResourceTypeEventConfiguration]
1990
+ #
1991
+ # @!attribute [rw] join
1992
+ # Resource type event configuration for the join event.
1993
+ # @return [Types::JoinResourceTypeEventConfiguration]
1994
+ #
1995
+ # @!attribute [rw] connection_status
1996
+ # Resource type event configuration for the connection status event.
1997
+ # @return [Types::ConnectionStatusResourceTypeEventConfiguration]
1998
+ #
1999
+ class GetEventConfigurationByResourceTypesResponse < Struct.new(
2000
+ :device_registration_state,
2001
+ :proximity,
2002
+ :join,
2003
+ :connection_status)
2004
+ SENSITIVE = []
2005
+ include Aws::Structure
2006
+ end
2007
+
1676
2008
  # @note When making an API call, you may pass GetFuotaTaskRequest
1677
2009
  # data as a hash:
1678
2010
  #
@@ -1746,7 +2078,9 @@ module Aws::IoTWireless
1746
2078
  class GetLogLevelsByResourceTypesRequest < Aws::EmptyStructure; end
1747
2079
 
1748
2080
  # @!attribute [rw] default_log_level
1749
- # The log level for a log message.
2081
+ # The log level for a log message. The log levels can be disabled, or
2082
+ # set to `ERROR` to display less verbose logs containing only error
2083
+ # information, or to `INFO` for more detailed logs.
1750
2084
  # @return [String]
1751
2085
  #
1752
2086
  # @!attribute [rw] wireless_gateway_log_options
@@ -1858,7 +2192,7 @@ module Aws::IoTWireless
1858
2192
  # }
1859
2193
  #
1860
2194
  # @!attribute [rw] configuration_name
1861
- # NetworkAnalyzer configuration name.
2195
+ # Name of the network analyzer configuration.
1862
2196
  # @return [String]
1863
2197
  #
1864
2198
  class GetNetworkAnalyzerConfigurationRequest < Struct.new(
@@ -1868,21 +2202,39 @@ module Aws::IoTWireless
1868
2202
  end
1869
2203
 
1870
2204
  # @!attribute [rw] trace_content
1871
- # Trace Content for resources.
2205
+ # Trace content for your wireless gateway and wireless device
2206
+ # resources.
1872
2207
  # @return [Types::TraceContent]
1873
2208
  #
1874
2209
  # @!attribute [rw] wireless_devices
1875
- # List of WirelessDevices in the NetworkAnalyzerConfiguration.
2210
+ # List of wireless gateway resources that have been added to the
2211
+ # network analyzer configuration.
1876
2212
  # @return [Array<String>]
1877
2213
  #
1878
2214
  # @!attribute [rw] wireless_gateways
1879
- # List of WirelessGateways in the NetworkAnalyzerConfiguration.
2215
+ # List of wireless gateway resources that have been added to the
2216
+ # network analyzer configuration.
1880
2217
  # @return [Array<String>]
1881
2218
  #
2219
+ # @!attribute [rw] description
2220
+ # The description of the new resource.
2221
+ # @return [String]
2222
+ #
2223
+ # @!attribute [rw] arn
2224
+ # The Amazon Resource Name of the new resource.
2225
+ # @return [String]
2226
+ #
2227
+ # @!attribute [rw] name
2228
+ # Name of the network analyzer configuration.
2229
+ # @return [String]
2230
+ #
1882
2231
  class GetNetworkAnalyzerConfigurationResponse < Struct.new(
1883
2232
  :trace_content,
1884
2233
  :wireless_devices,
1885
- :wireless_gateways)
2234
+ :wireless_gateways,
2235
+ :description,
2236
+ :arn,
2237
+ :name)
1886
2238
  SENSITIVE = []
1887
2239
  include Aws::Structure
1888
2240
  end
@@ -1925,58 +2277,172 @@ module Aws::IoTWireless
1925
2277
  include Aws::Structure
1926
2278
  end
1927
2279
 
1928
- # @note When making an API call, you may pass GetResourceEventConfigurationRequest
2280
+ # @note When making an API call, you may pass GetPositionConfigurationRequest
1929
2281
  # data as a hash:
1930
2282
  #
1931
2283
  # {
1932
- # identifier: "Identifier", # required
1933
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
1934
- # partner_type: "Sidewalk", # accepts Sidewalk
2284
+ # resource_identifier: "PositionResourceIdentifier", # required
2285
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
1935
2286
  # }
1936
2287
  #
1937
- # @!attribute [rw] identifier
1938
- # Resource identifier to opt in for event messaging.
1939
- # @return [String]
1940
- #
1941
- # @!attribute [rw] identifier_type
1942
- # Identifier type of the particular resource identifier for event
1943
- # configuration.
2288
+ # @!attribute [rw] resource_identifier
2289
+ # Resource identifier used in a position configuration.
1944
2290
  # @return [String]
1945
2291
  #
1946
- # @!attribute [rw] partner_type
1947
- # Partner type of the resource if the identifier type is
1948
- # PartnerAccountId.
2292
+ # @!attribute [rw] resource_type
2293
+ # Resource type of the resource for which position configuration is
2294
+ # retrieved.
1949
2295
  # @return [String]
1950
2296
  #
1951
- class GetResourceEventConfigurationRequest < Struct.new(
1952
- :identifier,
1953
- :identifier_type,
1954
- :partner_type)
2297
+ class GetPositionConfigurationRequest < Struct.new(
2298
+ :resource_identifier,
2299
+ :resource_type)
1955
2300
  SENSITIVE = []
1956
2301
  include Aws::Structure
1957
2302
  end
1958
2303
 
1959
- # @!attribute [rw] device_registration_state
1960
- # Event configuration for the device registration state event
1961
- # @return [Types::DeviceRegistrationStateEventConfiguration]
2304
+ # @!attribute [rw] solvers
2305
+ # The wrapper for the solver configuration details object.
2306
+ # @return [Types::PositionSolverDetails]
1962
2307
  #
1963
- # @!attribute [rw] proximity
1964
- # Event configuration for the Proximity event
1965
- # @return [Types::ProximityEventConfiguration]
2308
+ # @!attribute [rw] destination
2309
+ # The position data destination that describes the AWS IoT rule that
2310
+ # processes the device's position data for use by AWS IoT Core for
2311
+ # LoRaWAN.
2312
+ # @return [String]
1966
2313
  #
1967
- class GetResourceEventConfigurationResponse < Struct.new(
1968
- :device_registration_state,
1969
- :proximity)
2314
+ class GetPositionConfigurationResponse < Struct.new(
2315
+ :solvers,
2316
+ :destination)
1970
2317
  SENSITIVE = []
1971
2318
  include Aws::Structure
1972
2319
  end
1973
2320
 
1974
- # @note When making an API call, you may pass GetResourceLogLevelRequest
2321
+ # @note When making an API call, you may pass GetPositionRequest
1975
2322
  # data as a hash:
1976
2323
  #
1977
2324
  # {
1978
- # resource_identifier: "ResourceIdentifier", # required
1979
- # resource_type: "ResourceType", # required
2325
+ # resource_identifier: "PositionResourceIdentifier", # required
2326
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
2327
+ # }
2328
+ #
2329
+ # @!attribute [rw] resource_identifier
2330
+ # Resource identifier used to retrieve the position information.
2331
+ # @return [String]
2332
+ #
2333
+ # @!attribute [rw] resource_type
2334
+ # Resource type of the resource for which position information is
2335
+ # retrieved.
2336
+ # @return [String]
2337
+ #
2338
+ class GetPositionRequest < Struct.new(
2339
+ :resource_identifier,
2340
+ :resource_type)
2341
+ SENSITIVE = []
2342
+ include Aws::Structure
2343
+ end
2344
+
2345
+ # @!attribute [rw] position
2346
+ # The position information of the resource.
2347
+ # @return [Array<Float>]
2348
+ #
2349
+ # @!attribute [rw] accuracy
2350
+ # The accuracy of the estimated position in meters. An empty value
2351
+ # indicates that no position data is available. A value of ‘0.0’ value
2352
+ # indicates that position data is available. This data corresponds to
2353
+ # the position information that you specified instead of the position
2354
+ # computed by solver.
2355
+ # @return [Types::Accuracy]
2356
+ #
2357
+ # @!attribute [rw] solver_type
2358
+ # The type of solver used to identify the position of the resource.
2359
+ # @return [String]
2360
+ #
2361
+ # @!attribute [rw] solver_provider
2362
+ # The vendor of the positioning solver.
2363
+ # @return [String]
2364
+ #
2365
+ # @!attribute [rw] solver_version
2366
+ # The version of the positioning solver.
2367
+ # @return [String]
2368
+ #
2369
+ # @!attribute [rw] timestamp
2370
+ # The timestamp at which the device's position was determined.
2371
+ # @return [String]
2372
+ #
2373
+ class GetPositionResponse < Struct.new(
2374
+ :position,
2375
+ :accuracy,
2376
+ :solver_type,
2377
+ :solver_provider,
2378
+ :solver_version,
2379
+ :timestamp)
2380
+ SENSITIVE = []
2381
+ include Aws::Structure
2382
+ end
2383
+
2384
+ # @note When making an API call, you may pass GetResourceEventConfigurationRequest
2385
+ # data as a hash:
2386
+ #
2387
+ # {
2388
+ # identifier: "Identifier", # required
2389
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
2390
+ # partner_type: "Sidewalk", # accepts Sidewalk
2391
+ # }
2392
+ #
2393
+ # @!attribute [rw] identifier
2394
+ # Resource identifier to opt in for event messaging.
2395
+ # @return [String]
2396
+ #
2397
+ # @!attribute [rw] identifier_type
2398
+ # Identifier type of the particular resource identifier for event
2399
+ # configuration.
2400
+ # @return [String]
2401
+ #
2402
+ # @!attribute [rw] partner_type
2403
+ # Partner type of the resource if the identifier type is
2404
+ # `PartnerAccountId`.
2405
+ # @return [String]
2406
+ #
2407
+ class GetResourceEventConfigurationRequest < Struct.new(
2408
+ :identifier,
2409
+ :identifier_type,
2410
+ :partner_type)
2411
+ SENSITIVE = []
2412
+ include Aws::Structure
2413
+ end
2414
+
2415
+ # @!attribute [rw] device_registration_state
2416
+ # Event configuration for the device registration state event.
2417
+ # @return [Types::DeviceRegistrationStateEventConfiguration]
2418
+ #
2419
+ # @!attribute [rw] proximity
2420
+ # Event configuration for the proximity event.
2421
+ # @return [Types::ProximityEventConfiguration]
2422
+ #
2423
+ # @!attribute [rw] join
2424
+ # Event configuration for the join event.
2425
+ # @return [Types::JoinEventConfiguration]
2426
+ #
2427
+ # @!attribute [rw] connection_status
2428
+ # Event configuration for the connection status event.
2429
+ # @return [Types::ConnectionStatusEventConfiguration]
2430
+ #
2431
+ class GetResourceEventConfigurationResponse < Struct.new(
2432
+ :device_registration_state,
2433
+ :proximity,
2434
+ :join,
2435
+ :connection_status)
2436
+ SENSITIVE = []
2437
+ include Aws::Structure
2438
+ end
2439
+
2440
+ # @note When making an API call, you may pass GetResourceLogLevelRequest
2441
+ # data as a hash:
2442
+ #
2443
+ # {
2444
+ # resource_identifier: "ResourceIdentifier", # required
2445
+ # resource_type: "ResourceType", # required
1980
2446
  # }
1981
2447
  #
1982
2448
  # @!attribute [rw] resource_identifier
@@ -1998,7 +2464,9 @@ module Aws::IoTWireless
1998
2464
  end
1999
2465
 
2000
2466
  # @!attribute [rw] log_level
2001
- # The log level for a log message.
2467
+ # The log level for a log message. The log levels can be disabled, or
2468
+ # set to `ERROR` to display less verbose logs containing only error
2469
+ # information, or to `INFO` for more detailed logs.
2002
2470
  # @return [String]
2003
2471
  #
2004
2472
  class GetResourceLogLevelResponse < Struct.new(
@@ -2017,7 +2485,8 @@ module Aws::IoTWireless
2017
2485
  # @!attribute [rw] service_type
2018
2486
  # The service type for which to get endpoint information about. Can be
2019
2487
  # `CUPS` for the Configuration and Update Server endpoint, or `LNS`
2020
- # for the LoRaWAN Network Server endpoint.
2488
+ # for the LoRaWAN Network Server endpoint or `CLAIM` for the global
2489
+ # endpoint.
2021
2490
  # @return [String]
2022
2491
  #
2023
2492
  class GetServiceEndpointRequest < Struct.new(
@@ -2472,6 +2941,58 @@ module Aws::IoTWireless
2472
2941
  include Aws::Structure
2473
2942
  end
2474
2943
 
2944
+ # Join event configuration object for enabling or disabling topic.
2945
+ #
2946
+ # @note When making an API call, you may pass JoinEventConfiguration
2947
+ # data as a hash:
2948
+ #
2949
+ # {
2950
+ # lo_ra_wan: {
2951
+ # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
2952
+ # },
2953
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
2954
+ # }
2955
+ #
2956
+ # @!attribute [rw] lo_ra_wan
2957
+ # Join event configuration object for enabling or disabling LoRaWAN
2958
+ # related event topics.
2959
+ # @return [Types::LoRaWANJoinEventNotificationConfigurations]
2960
+ #
2961
+ # @!attribute [rw] wireless_device_id_event_topic
2962
+ # Enum to denote whether the wireless device id join event topic is
2963
+ # enabled or disabled.
2964
+ # @return [String]
2965
+ #
2966
+ class JoinEventConfiguration < Struct.new(
2967
+ :lo_ra_wan,
2968
+ :wireless_device_id_event_topic)
2969
+ SENSITIVE = []
2970
+ include Aws::Structure
2971
+ end
2972
+
2973
+ # Join resource type event configuration object for enabling or
2974
+ # disabling topic.
2975
+ #
2976
+ # @note When making an API call, you may pass JoinResourceTypeEventConfiguration
2977
+ # data as a hash:
2978
+ #
2979
+ # {
2980
+ # lo_ra_wan: {
2981
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
2982
+ # },
2983
+ # }
2984
+ #
2985
+ # @!attribute [rw] lo_ra_wan
2986
+ # Join resource type event configuration object for enabling or
2987
+ # disabling LoRaWAN related event topics.
2988
+ # @return [Types::LoRaWANJoinResourceTypeEventConfiguration]
2989
+ #
2990
+ class JoinResourceTypeEventConfiguration < Struct.new(
2991
+ :lo_ra_wan)
2992
+ SENSITIVE = []
2993
+ include Aws::Structure
2994
+ end
2995
+
2475
2996
  # @note When making an API call, you may pass ListDestinationsRequest
2476
2997
  # data as a hash:
2477
2998
  #
@@ -2554,6 +3075,54 @@ module Aws::IoTWireless
2554
3075
  include Aws::Structure
2555
3076
  end
2556
3077
 
3078
+ # @note When making an API call, you may pass ListEventConfigurationsRequest
3079
+ # data as a hash:
3080
+ #
3081
+ # {
3082
+ # resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
3083
+ # max_results: 1,
3084
+ # next_token: "NextToken",
3085
+ # }
3086
+ #
3087
+ # @!attribute [rw] resource_type
3088
+ # Resource type to filter event configurations.
3089
+ # @return [String]
3090
+ #
3091
+ # @!attribute [rw] max_results
3092
+ # The maximum number of results to return in this operation.
3093
+ # @return [Integer]
3094
+ #
3095
+ # @!attribute [rw] next_token
3096
+ # To retrieve the next set of results, the `nextToken` value from a
3097
+ # previous response; otherwise **null** to receive the first set of
3098
+ # results.
3099
+ # @return [String]
3100
+ #
3101
+ class ListEventConfigurationsRequest < Struct.new(
3102
+ :resource_type,
3103
+ :max_results,
3104
+ :next_token)
3105
+ SENSITIVE = []
3106
+ include Aws::Structure
3107
+ end
3108
+
3109
+ # @!attribute [rw] next_token
3110
+ # To retrieve the next set of results, the `nextToken` value from a
3111
+ # previous response; otherwise **null** to receive the first set of
3112
+ # results.
3113
+ # @return [String]
3114
+ #
3115
+ # @!attribute [rw] event_configurations_list
3116
+ # Event configurations of all events for a single resource.
3117
+ # @return [Array<Types::EventConfigurationItem>]
3118
+ #
3119
+ class ListEventConfigurationsResponse < Struct.new(
3120
+ :next_token,
3121
+ :event_configurations_list)
3122
+ SENSITIVE = []
3123
+ include Aws::Structure
3124
+ end
3125
+
2557
3126
  # @note When making an API call, you may pass ListFuotaTasksRequest
2558
3127
  # data as a hash:
2559
3128
  #
@@ -2686,6 +3255,47 @@ module Aws::IoTWireless
2686
3255
  include Aws::Structure
2687
3256
  end
2688
3257
 
3258
+ # @note When making an API call, you may pass ListNetworkAnalyzerConfigurationsRequest
3259
+ # data as a hash:
3260
+ #
3261
+ # {
3262
+ # max_results: 1,
3263
+ # next_token: "NextToken",
3264
+ # }
3265
+ #
3266
+ # @!attribute [rw] max_results
3267
+ # The maximum number of results to return in this operation.
3268
+ # @return [Integer]
3269
+ #
3270
+ # @!attribute [rw] next_token
3271
+ # To retrieve the next set of results, the `nextToken` value from a
3272
+ # previous response; otherwise **null** to receive the first set of
3273
+ # results.
3274
+ # @return [String]
3275
+ #
3276
+ class ListNetworkAnalyzerConfigurationsRequest < Struct.new(
3277
+ :max_results,
3278
+ :next_token)
3279
+ SENSITIVE = []
3280
+ include Aws::Structure
3281
+ end
3282
+
3283
+ # @!attribute [rw] next_token
3284
+ # The token to use to get the next set of results, or **null** if
3285
+ # there are no additional results.
3286
+ # @return [String]
3287
+ #
3288
+ # @!attribute [rw] network_analyzer_configuration_list
3289
+ # The list of network analyzer configurations.
3290
+ # @return [Array<Types::NetworkAnalyzerConfigurations>]
3291
+ #
3292
+ class ListNetworkAnalyzerConfigurationsResponse < Struct.new(
3293
+ :next_token,
3294
+ :network_analyzer_configuration_list)
3295
+ SENSITIVE = []
3296
+ include Aws::Structure
3297
+ end
3298
+
2689
3299
  # @note When making an API call, you may pass ListPartnerAccountsRequest
2690
3300
  # data as a hash:
2691
3301
  #
@@ -2727,6 +3337,53 @@ module Aws::IoTWireless
2727
3337
  include Aws::Structure
2728
3338
  end
2729
3339
 
3340
+ # @note When making an API call, you may pass ListPositionConfigurationsRequest
3341
+ # data as a hash:
3342
+ #
3343
+ # {
3344
+ # resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
3345
+ # max_results: 1,
3346
+ # next_token: "NextToken",
3347
+ # }
3348
+ #
3349
+ # @!attribute [rw] resource_type
3350
+ # Resource type for which position configurations are listed.
3351
+ # @return [String]
3352
+ #
3353
+ # @!attribute [rw] max_results
3354
+ # The maximum number of results to return in this operation.
3355
+ # @return [Integer]
3356
+ #
3357
+ # @!attribute [rw] next_token
3358
+ # To retrieve the next set of results, the `nextToken` value from a
3359
+ # previous response; otherwise **null** to receive the first set of
3360
+ # results.
3361
+ # @return [String]
3362
+ #
3363
+ class ListPositionConfigurationsRequest < Struct.new(
3364
+ :resource_type,
3365
+ :max_results,
3366
+ :next_token)
3367
+ SENSITIVE = []
3368
+ include Aws::Structure
3369
+ end
3370
+
3371
+ # @!attribute [rw] position_configuration_list
3372
+ # A list of position configurations.
3373
+ # @return [Array<Types::PositionConfigurationItem>]
3374
+ #
3375
+ # @!attribute [rw] next_token
3376
+ # The token to use to get the next set of results, or **null** if
3377
+ # there are no additional results.
3378
+ # @return [String]
3379
+ #
3380
+ class ListPositionConfigurationsResponse < Struct.new(
3381
+ :position_configuration_list,
3382
+ :next_token)
3383
+ SENSITIVE = []
3384
+ include Aws::Structure
3385
+ end
3386
+
2730
3387
  # @note When making an API call, you may pass ListQueuedMessagesRequest
2731
3388
  # data as a hash:
2732
3389
  #
@@ -2738,8 +3395,8 @@ module Aws::IoTWireless
2738
3395
  # }
2739
3396
  #
2740
3397
  # @!attribute [rw] id
2741
- # Id of a given wireless device which the downlink packets are
2742
- # targeted
3398
+ # The ID of a given wireless device which the downlink message packets
3399
+ # are being sent.
2743
3400
  # @return [String]
2744
3401
  #
2745
3402
  # @!attribute [rw] next_token
@@ -2753,7 +3410,7 @@ module Aws::IoTWireless
2753
3410
  # @return [Integer]
2754
3411
  #
2755
3412
  # @!attribute [rw] wireless_device_type
2756
- # The wireless device type, it is either Sidewalk or LoRaWAN.
3413
+ # The wireless device type, whic can be either Sidewalk or LoRaWAN.
2757
3414
  # @return [String]
2758
3415
  #
2759
3416
  class ListQueuedMessagesRequest < Struct.new(
@@ -2772,7 +3429,7 @@ module Aws::IoTWireless
2772
3429
  # @return [String]
2773
3430
  #
2774
3431
  # @!attribute [rw] downlink_queue_messages_list
2775
- # The messages in downlink queue.
3432
+ # The messages in the downlink queue.
2776
3433
  # @return [Array<Types::DownlinkQueueMessage>]
2777
3434
  #
2778
3435
  class ListQueuedMessagesResponse < Struct.new(
@@ -3021,6 +3678,48 @@ module Aws::IoTWireless
3021
3678
  include Aws::Structure
3022
3679
  end
3023
3680
 
3681
+ # Object for LoRaWAN connection status resource type event
3682
+ # configuration.
3683
+ #
3684
+ # @note When making an API call, you may pass LoRaWANConnectionStatusEventNotificationConfigurations
3685
+ # data as a hash:
3686
+ #
3687
+ # {
3688
+ # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
3689
+ # }
3690
+ #
3691
+ # @!attribute [rw] gateway_eui_event_topic
3692
+ # Enum to denote whether the gateway EUI connection status event topic
3693
+ # is enabled or disabled.
3694
+ # @return [String]
3695
+ #
3696
+ class LoRaWANConnectionStatusEventNotificationConfigurations < Struct.new(
3697
+ :gateway_eui_event_topic)
3698
+ SENSITIVE = []
3699
+ include Aws::Structure
3700
+ end
3701
+
3702
+ # Object for LoRaWAN connection status resource type event
3703
+ # configuration.
3704
+ #
3705
+ # @note When making an API call, you may pass LoRaWANConnectionStatusResourceTypeEventConfiguration
3706
+ # data as a hash:
3707
+ #
3708
+ # {
3709
+ # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
3710
+ # }
3711
+ #
3712
+ # @!attribute [rw] wireless_gateway_event_topic
3713
+ # Enum to denote whether the wireless gateway connection status event
3714
+ # topic is enabled or disabled.
3715
+ # @return [String]
3716
+ #
3717
+ class LoRaWANConnectionStatusResourceTypeEventConfiguration < Struct.new(
3718
+ :wireless_gateway_event_topic)
3719
+ SENSITIVE = []
3720
+ include Aws::Structure
3721
+ end
3722
+
3024
3723
  # LoRaWAN object for create functions.
3025
3724
  #
3026
3725
  # @note When making an API call, you may pass LoRaWANDevice
@@ -3048,6 +3747,7 @@ module Aws::IoTWireless
3048
3747
  # nwk_s_enc_key: "NwkSEncKey",
3049
3748
  # app_s_key: "AppSKey",
3050
3749
  # },
3750
+ # f_cnt_start: 1,
3051
3751
  # },
3052
3752
  # abp_v1_0_x: {
3053
3753
  # dev_addr: "DevAddr",
@@ -3055,11 +3755,17 @@ module Aws::IoTWireless
3055
3755
  # nwk_s_key: "NwkSKey",
3056
3756
  # app_s_key: "AppSKey",
3057
3757
  # },
3758
+ # f_cnt_start: 1,
3058
3759
  # },
3059
3760
  # f_ports: {
3060
3761
  # fuota: 1,
3061
3762
  # multicast: 1,
3062
3763
  # clock_sync: 1,
3764
+ # positioning: {
3765
+ # clock_sync: 1,
3766
+ # stream: 1,
3767
+ # gnss: 1,
3768
+ # },
3063
3769
  # },
3064
3770
  # }
3065
3771
  #
@@ -3527,14 +4233,54 @@ module Aws::IoTWireless
3527
4233
  include Aws::Structure
3528
4234
  end
3529
4235
 
3530
- # LoRaWAN object for list functions.
4236
+ # Object for LoRaWAN join resource type event configuration.
3531
4237
  #
3532
- # @!attribute [rw] dev_eui
3533
- # The DevEUI value.
3534
- # @return [String]
4238
+ # @note When making an API call, you may pass LoRaWANJoinEventNotificationConfigurations
4239
+ # data as a hash:
3535
4240
  #
3536
- class LoRaWANListDevice < Struct.new(
3537
- :dev_eui)
4241
+ # {
4242
+ # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
4243
+ # }
4244
+ #
4245
+ # @!attribute [rw] dev_eui_event_topic
4246
+ # Enum to denote whether the Dev EUI join event topic is enabled or
4247
+ # disabled.
4248
+ # @return [String]
4249
+ #
4250
+ class LoRaWANJoinEventNotificationConfigurations < Struct.new(
4251
+ :dev_eui_event_topic)
4252
+ SENSITIVE = []
4253
+ include Aws::Structure
4254
+ end
4255
+
4256
+ # Object for LoRaWAN join resource type event configuration.
4257
+ #
4258
+ # @note When making an API call, you may pass LoRaWANJoinResourceTypeEventConfiguration
4259
+ # data as a hash:
4260
+ #
4261
+ # {
4262
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
4263
+ # }
4264
+ #
4265
+ # @!attribute [rw] wireless_device_event_topic
4266
+ # Enum to denote whether the wireless device join event topic is
4267
+ # enabled or disabled.
4268
+ # @return [String]
4269
+ #
4270
+ class LoRaWANJoinResourceTypeEventConfiguration < Struct.new(
4271
+ :wireless_device_event_topic)
4272
+ SENSITIVE = []
4273
+ include Aws::Structure
4274
+ end
4275
+
4276
+ # LoRaWAN object for list functions.
4277
+ #
4278
+ # @!attribute [rw] dev_eui
4279
+ # The DevEUI value.
4280
+ # @return [String]
4281
+ #
4282
+ class LoRaWANListDevice < Struct.new(
4283
+ :dev_eui)
3538
4284
  SENSITIVE = []
3539
4285
  include Aws::Structure
3540
4286
  end
@@ -3714,6 +4460,19 @@ module Aws::IoTWireless
3714
4460
  # {
3715
4461
  # device_profile_id: "DeviceProfileId",
3716
4462
  # service_profile_id: "ServiceProfileId",
4463
+ # abp_v1_1: {
4464
+ # f_cnt_start: 1,
4465
+ # },
4466
+ # abp_v1_0_x: {
4467
+ # f_cnt_start: 1,
4468
+ # },
4469
+ # f_ports: {
4470
+ # positioning: {
4471
+ # clock_sync: 1,
4472
+ # stream: 1,
4473
+ # gnss: 1,
4474
+ # },
4475
+ # },
3717
4476
  # }
3718
4477
  #
3719
4478
  # @!attribute [rw] device_profile_id
@@ -3724,9 +4483,24 @@ module Aws::IoTWireless
3724
4483
  # The ID of the service profile.
3725
4484
  # @return [String]
3726
4485
  #
4486
+ # @!attribute [rw] abp_v1_1
4487
+ # ABP device object for update APIs for v1.1
4488
+ # @return [Types::UpdateAbpV1_1]
4489
+ #
4490
+ # @!attribute [rw] abp_v1_0_x
4491
+ # ABP device object for update APIs for v1.0.x
4492
+ # @return [Types::UpdateAbpV1_0_x]
4493
+ #
4494
+ # @!attribute [rw] f_ports
4495
+ # FPorts object for the positioning information of the device.
4496
+ # @return [Types::UpdateFPorts]
4497
+ #
3727
4498
  class LoRaWANUpdateDevice < Struct.new(
3728
4499
  :device_profile_id,
3729
- :service_profile_id)
4500
+ :service_profile_id,
4501
+ :abp_v1_1,
4502
+ :abp_v1_0_x,
4503
+ :f_ports)
3730
4504
  SENSITIVE = []
3731
4505
  include Aws::Structure
3732
4506
  end
@@ -3848,6 +4622,23 @@ module Aws::IoTWireless
3848
4622
  include Aws::Structure
3849
4623
  end
3850
4624
 
4625
+ # Network analyzer configurations.
4626
+ #
4627
+ # @!attribute [rw] arn
4628
+ # The Amazon Resource Name of the new resource.
4629
+ # @return [String]
4630
+ #
4631
+ # @!attribute [rw] name
4632
+ # Name of the network analyzer configuration.
4633
+ # @return [String]
4634
+ #
4635
+ class NetworkAnalyzerConfigurations < Struct.new(
4636
+ :arn,
4637
+ :name)
4638
+ SENSITIVE = []
4639
+ include Aws::Structure
4640
+ end
4641
+
3851
4642
  # OTAA device object for v1.0.x
3852
4643
  #
3853
4644
  # @note When making an API call, you may pass OtaaV1_0_x
@@ -3910,6 +4701,101 @@ module Aws::IoTWireless
3910
4701
  include Aws::Structure
3911
4702
  end
3912
4703
 
4704
+ # The wrapper for a position configuration.
4705
+ #
4706
+ # @!attribute [rw] resource_identifier
4707
+ # Resource identifier for the position configuration.
4708
+ # @return [String]
4709
+ #
4710
+ # @!attribute [rw] resource_type
4711
+ # Resource type of the resource for the position configuration.
4712
+ # @return [String]
4713
+ #
4714
+ # @!attribute [rw] solvers
4715
+ # The details of the positioning solver object used to compute the
4716
+ # location.
4717
+ # @return [Types::PositionSolverDetails]
4718
+ #
4719
+ # @!attribute [rw] destination
4720
+ # The position data destination that describes the AWS IoT rule that
4721
+ # processes the device's position data for use by AWS IoT Core for
4722
+ # LoRaWAN.
4723
+ # @return [String]
4724
+ #
4725
+ class PositionConfigurationItem < Struct.new(
4726
+ :resource_identifier,
4727
+ :resource_type,
4728
+ :solvers,
4729
+ :destination)
4730
+ SENSITIVE = []
4731
+ include Aws::Structure
4732
+ end
4733
+
4734
+ # The wrapper for position solver configurations.
4735
+ #
4736
+ # @note When making an API call, you may pass PositionSolverConfigurations
4737
+ # data as a hash:
4738
+ #
4739
+ # {
4740
+ # semtech_gnss: {
4741
+ # status: "Enabled", # required, accepts Enabled, Disabled
4742
+ # fec: "ROSE", # required, accepts ROSE, NONE
4743
+ # },
4744
+ # }
4745
+ #
4746
+ # @!attribute [rw] semtech_gnss
4747
+ # The Semtech GNSS solver configuration object.
4748
+ # @return [Types::SemtechGnssConfiguration]
4749
+ #
4750
+ class PositionSolverConfigurations < Struct.new(
4751
+ :semtech_gnss)
4752
+ SENSITIVE = []
4753
+ include Aws::Structure
4754
+ end
4755
+
4756
+ # The wrapper for position solver details.
4757
+ #
4758
+ # @!attribute [rw] semtech_gnss
4759
+ # The Semtech GNSS solver object details.
4760
+ # @return [Types::SemtechGnssDetail]
4761
+ #
4762
+ class PositionSolverDetails < Struct.new(
4763
+ :semtech_gnss)
4764
+ SENSITIVE = []
4765
+ include Aws::Structure
4766
+ end
4767
+
4768
+ # The FPorts for the position information.
4769
+ #
4770
+ # @note When making an API call, you may pass Positioning
4771
+ # data as a hash:
4772
+ #
4773
+ # {
4774
+ # clock_sync: 1,
4775
+ # stream: 1,
4776
+ # gnss: 1,
4777
+ # }
4778
+ #
4779
+ # @!attribute [rw] clock_sync
4780
+ # The Fport value.
4781
+ # @return [Integer]
4782
+ #
4783
+ # @!attribute [rw] stream
4784
+ # The Fport value.
4785
+ # @return [Integer]
4786
+ #
4787
+ # @!attribute [rw] gnss
4788
+ # The Fport value.
4789
+ # @return [Integer]
4790
+ #
4791
+ class Positioning < Struct.new(
4792
+ :clock_sync,
4793
+ :stream,
4794
+ :gnss)
4795
+ SENSITIVE = []
4796
+ include Aws::Structure
4797
+ end
4798
+
3913
4799
  # Proximity event configuration object for enabling and disabling
3914
4800
  # relevant topics.
3915
4801
  #
@@ -3920,6 +4806,7 @@ module Aws::IoTWireless
3920
4806
  # sidewalk: {
3921
4807
  # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
3922
4808
  # },
4809
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
3923
4810
  # }
3924
4811
  #
3925
4812
  # @!attribute [rw] sidewalk
@@ -3927,12 +4814,87 @@ module Aws::IoTWireless
3927
4814
  # Sidewalk related event topics.
3928
4815
  # @return [Types::SidewalkEventNotificationConfigurations]
3929
4816
  #
4817
+ # @!attribute [rw] wireless_device_id_event_topic
4818
+ # Enum to denote whether the wireless device id proximity event topic
4819
+ # is enabled or disabled.
4820
+ # @return [String]
4821
+ #
3930
4822
  class ProximityEventConfiguration < Struct.new(
4823
+ :sidewalk,
4824
+ :wireless_device_id_event_topic)
4825
+ SENSITIVE = []
4826
+ include Aws::Structure
4827
+ end
4828
+
4829
+ # Proximity resource type event configuration object for enabling or
4830
+ # disabling topic.
4831
+ #
4832
+ # @note When making an API call, you may pass ProximityResourceTypeEventConfiguration
4833
+ # data as a hash:
4834
+ #
4835
+ # {
4836
+ # sidewalk: {
4837
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
4838
+ # },
4839
+ # }
4840
+ #
4841
+ # @!attribute [rw] sidewalk
4842
+ # Proximity resource type event configuration object for enabling and
4843
+ # disabling wireless device topic.
4844
+ # @return [Types::SidewalkResourceTypeEventConfiguration]
4845
+ #
4846
+ class ProximityResourceTypeEventConfiguration < Struct.new(
3931
4847
  :sidewalk)
3932
4848
  SENSITIVE = []
3933
4849
  include Aws::Structure
3934
4850
  end
3935
4851
 
4852
+ # @note When making an API call, you may pass PutPositionConfigurationRequest
4853
+ # data as a hash:
4854
+ #
4855
+ # {
4856
+ # resource_identifier: "PositionResourceIdentifier", # required
4857
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
4858
+ # solvers: {
4859
+ # semtech_gnss: {
4860
+ # status: "Enabled", # required, accepts Enabled, Disabled
4861
+ # fec: "ROSE", # required, accepts ROSE, NONE
4862
+ # },
4863
+ # },
4864
+ # destination: "DestinationName",
4865
+ # }
4866
+ #
4867
+ # @!attribute [rw] resource_identifier
4868
+ # Resource identifier used to update the position configuration.
4869
+ # @return [String]
4870
+ #
4871
+ # @!attribute [rw] resource_type
4872
+ # Resource type of the resource for which you want to update the
4873
+ # position configuration.
4874
+ # @return [String]
4875
+ #
4876
+ # @!attribute [rw] solvers
4877
+ # The positioning solvers used to update the position configuration of
4878
+ # the resource.
4879
+ # @return [Types::PositionSolverConfigurations]
4880
+ #
4881
+ # @!attribute [rw] destination
4882
+ # The position data destination that describes the AWS IoT rule that
4883
+ # processes the device's position data for use by AWS IoT Core for
4884
+ # LoRaWAN.
4885
+ # @return [String]
4886
+ #
4887
+ class PutPositionConfigurationRequest < Struct.new(
4888
+ :resource_identifier,
4889
+ :resource_type,
4890
+ :solvers,
4891
+ :destination)
4892
+ SENSITIVE = []
4893
+ include Aws::Structure
4894
+ end
4895
+
4896
+ class PutPositionConfigurationResponse < Aws::EmptyStructure; end
4897
+
3936
4898
  # @note When making an API call, you may pass PutResourceLogLevelRequest
3937
4899
  # data as a hash:
3938
4900
  #
@@ -3954,7 +4916,9 @@ module Aws::IoTWireless
3954
4916
  # @return [String]
3955
4917
  #
3956
4918
  # @!attribute [rw] log_level
3957
- # The log level for a log message.
4919
+ # The log level for a log message. The log levels can be disabled, or
4920
+ # set to `ERROR` to display less verbose logs containing only error
4921
+ # information, or to `INFO` for more detailed logs.
3958
4922
  # @return [String]
3959
4923
  #
3960
4924
  class PutResourceLogLevelRequest < Struct.new(
@@ -4022,6 +4986,58 @@ module Aws::IoTWireless
4022
4986
  include Aws::Structure
4023
4987
  end
4024
4988
 
4989
+ # Information about the Semtech GNSS solver configuration.
4990
+ #
4991
+ # @note When making an API call, you may pass SemtechGnssConfiguration
4992
+ # data as a hash:
4993
+ #
4994
+ # {
4995
+ # status: "Enabled", # required, accepts Enabled, Disabled
4996
+ # fec: "ROSE", # required, accepts ROSE, NONE
4997
+ # }
4998
+ #
4999
+ # @!attribute [rw] status
5000
+ # The status indicating whether the solver is enabled.
5001
+ # @return [String]
5002
+ #
5003
+ # @!attribute [rw] fec
5004
+ # Whether forward error correction is enabled.
5005
+ # @return [String]
5006
+ #
5007
+ class SemtechGnssConfiguration < Struct.new(
5008
+ :status,
5009
+ :fec)
5010
+ SENSITIVE = []
5011
+ include Aws::Structure
5012
+ end
5013
+
5014
+ # Details of the Semtech GNSS solver object.
5015
+ #
5016
+ # @!attribute [rw] provider
5017
+ # The vendor of the solver object.
5018
+ # @return [String]
5019
+ #
5020
+ # @!attribute [rw] type
5021
+ # The type of positioning solver used.
5022
+ # @return [String]
5023
+ #
5024
+ # @!attribute [rw] status
5025
+ # The status indicating whether the solver is enabled.
5026
+ # @return [String]
5027
+ #
5028
+ # @!attribute [rw] fec
5029
+ # Whether forward error correction is enabled.
5030
+ # @return [String]
5031
+ #
5032
+ class SemtechGnssDetail < Struct.new(
5033
+ :provider,
5034
+ :type,
5035
+ :status,
5036
+ :fec)
5037
+ SENSITIVE = []
5038
+ include Aws::Structure
5039
+ end
5040
+
4025
5041
  # @note When making an API call, you may pass SendDataToMulticastGroupRequest
4026
5042
  # data as a hash:
4027
5043
  #
@@ -4305,8 +5321,8 @@ module Aws::IoTWireless
4305
5321
  include Aws::Structure
4306
5322
  end
4307
5323
 
4308
- # SidewalkEventNotificationConfigurations object Event configuration
4309
- # object for Sidewalk related event topics.
5324
+ # `SidewalkEventNotificationConfigurations` object, which is the event
5325
+ # configuration object for Sidewalk-related event topics.
4310
5326
  #
4311
5327
  # @note When making an API call, you may pass SidewalkEventNotificationConfigurations
4312
5328
  # data as a hash:
@@ -4352,6 +5368,27 @@ module Aws::IoTWireless
4352
5368
  include Aws::Structure
4353
5369
  end
4354
5370
 
5371
+ # Sidewalk resource type event configuration object for enabling or
5372
+ # disabling topic.
5373
+ #
5374
+ # @note When making an API call, you may pass SidewalkResourceTypeEventConfiguration
5375
+ # data as a hash:
5376
+ #
5377
+ # {
5378
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
5379
+ # }
5380
+ #
5381
+ # @!attribute [rw] wireless_device_event_topic
5382
+ # Enum to denote whether the wireless device join event topic is
5383
+ # enabled or disabled.
5384
+ # @return [String]
5385
+ #
5386
+ class SidewalkResourceTypeEventConfiguration < Struct.new(
5387
+ :wireless_device_event_topic)
5388
+ SENSITIVE = []
5389
+ include Aws::Structure
5390
+ end
5391
+
4355
5392
  # Information about a Sidewalk router.
4356
5393
  #
4357
5394
  # @note When making an API call, you may pass SidewalkSendDataToDevice
@@ -4641,7 +5678,7 @@ module Aws::IoTWireless
4641
5678
  include Aws::Structure
4642
5679
  end
4643
5680
 
4644
- # Trace Content for resources.
5681
+ # Trace content for your wireless gateway and wireless device resources.
4645
5682
  #
4646
5683
  # @note When making an API call, you may pass TraceContent
4647
5684
  # data as a hash:
@@ -4652,11 +5689,15 @@ module Aws::IoTWireless
4652
5689
  # }
4653
5690
  #
4654
5691
  # @!attribute [rw] wireless_device_frame_info
4655
- # WirelessDevice FrameInfo for trace content.
5692
+ # `FrameInfo` of your wireless device resources for the trace content.
5693
+ # Use FrameInfo to debug the communication between your LoRaWAN end
5694
+ # devices and the network server.
4656
5695
  # @return [String]
4657
5696
  #
4658
5697
  # @!attribute [rw] log_level
4659
- # The log level for a log message.
5698
+ # The log level for a log message. The log levels can be disabled, or
5699
+ # set to `ERROR` to display less verbose logs containing only error
5700
+ # information, or to `INFO` for more detailed logs.
4660
5701
  # @return [String]
4661
5702
  #
4662
5703
  class TraceContent < Struct.new(
@@ -4691,6 +5732,44 @@ module Aws::IoTWireless
4691
5732
 
4692
5733
  class UntagResourceResponse < Aws::EmptyStructure; end
4693
5734
 
5735
+ # ABP device object for LoRaWAN specification v1.0.x
5736
+ #
5737
+ # @note When making an API call, you may pass UpdateAbpV1_0_x
5738
+ # data as a hash:
5739
+ #
5740
+ # {
5741
+ # f_cnt_start: 1,
5742
+ # }
5743
+ #
5744
+ # @!attribute [rw] f_cnt_start
5745
+ # The FCnt init value.
5746
+ # @return [Integer]
5747
+ #
5748
+ class UpdateAbpV1_0_x < Struct.new(
5749
+ :f_cnt_start)
5750
+ SENSITIVE = []
5751
+ include Aws::Structure
5752
+ end
5753
+
5754
+ # ABP device object for LoRaWAN specification v1.1
5755
+ #
5756
+ # @note When making an API call, you may pass UpdateAbpV1_1
5757
+ # data as a hash:
5758
+ #
5759
+ # {
5760
+ # f_cnt_start: 1,
5761
+ # }
5762
+ #
5763
+ # @!attribute [rw] f_cnt_start
5764
+ # The FCnt init value.
5765
+ # @return [Integer]
5766
+ #
5767
+ class UpdateAbpV1_1 < Struct.new(
5768
+ :f_cnt_start)
5769
+ SENSITIVE = []
5770
+ include Aws::Structure
5771
+ end
5772
+
4694
5773
  # @note When making an API call, you may pass UpdateDestinationRequest
4695
5774
  # data as a hash:
4696
5775
  #
@@ -4734,6 +5813,86 @@ module Aws::IoTWireless
4734
5813
 
4735
5814
  class UpdateDestinationResponse < Aws::EmptyStructure; end
4736
5815
 
5816
+ # @note When making an API call, you may pass UpdateEventConfigurationByResourceTypesRequest
5817
+ # data as a hash:
5818
+ #
5819
+ # {
5820
+ # device_registration_state: {
5821
+ # sidewalk: {
5822
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
5823
+ # },
5824
+ # },
5825
+ # proximity: {
5826
+ # sidewalk: {
5827
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
5828
+ # },
5829
+ # },
5830
+ # join: {
5831
+ # lo_ra_wan: {
5832
+ # wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
5833
+ # },
5834
+ # },
5835
+ # connection_status: {
5836
+ # lo_ra_wan: {
5837
+ # wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
5838
+ # },
5839
+ # },
5840
+ # }
5841
+ #
5842
+ # @!attribute [rw] device_registration_state
5843
+ # Device registration state resource type event configuration object
5844
+ # for enabling and disabling wireless gateway topic.
5845
+ # @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
5846
+ #
5847
+ # @!attribute [rw] proximity
5848
+ # Proximity resource type event configuration object for enabling and
5849
+ # disabling wireless gateway topic.
5850
+ # @return [Types::ProximityResourceTypeEventConfiguration]
5851
+ #
5852
+ # @!attribute [rw] join
5853
+ # Join resource type event configuration object for enabling and
5854
+ # disabling wireless device topic.
5855
+ # @return [Types::JoinResourceTypeEventConfiguration]
5856
+ #
5857
+ # @!attribute [rw] connection_status
5858
+ # Connection status resource type event configuration object for
5859
+ # enabling and disabling wireless gateway topic.
5860
+ # @return [Types::ConnectionStatusResourceTypeEventConfiguration]
5861
+ #
5862
+ class UpdateEventConfigurationByResourceTypesRequest < Struct.new(
5863
+ :device_registration_state,
5864
+ :proximity,
5865
+ :join,
5866
+ :connection_status)
5867
+ SENSITIVE = []
5868
+ include Aws::Structure
5869
+ end
5870
+
5871
+ class UpdateEventConfigurationByResourceTypesResponse < Aws::EmptyStructure; end
5872
+
5873
+ # Object for updating the FPorts information.
5874
+ #
5875
+ # @note When making an API call, you may pass UpdateFPorts
5876
+ # data as a hash:
5877
+ #
5878
+ # {
5879
+ # positioning: {
5880
+ # clock_sync: 1,
5881
+ # stream: 1,
5882
+ # gnss: 1,
5883
+ # },
5884
+ # }
5885
+ #
5886
+ # @!attribute [rw] positioning
5887
+ # Positioning FPorts for the ClockSync, Stream, and GNSS functions.
5888
+ # @return [Types::Positioning]
5889
+ #
5890
+ class UpdateFPorts < Struct.new(
5891
+ :positioning)
5892
+ SENSITIVE = []
5893
+ include Aws::Structure
5894
+ end
5895
+
4737
5896
  # @note When making an API call, you may pass UpdateFuotaTaskRequest
4738
5897
  # data as a hash:
4739
5898
  #
@@ -4818,7 +5977,9 @@ module Aws::IoTWireless
4818
5977
  # }
4819
5978
  #
4820
5979
  # @!attribute [rw] default_log_level
4821
- # The log level for a log message.
5980
+ # The log level for a log message. The log levels can be disabled, or
5981
+ # set to `ERROR` to display less verbose logs containing only error
5982
+ # information, or to `INFO` for more detailed logs.
4822
5983
  # @return [String]
4823
5984
  #
4824
5985
  # @!attribute [rw] wireless_device_log_options
@@ -4892,39 +6053,54 @@ module Aws::IoTWireless
4892
6053
  # wireless_devices_to_remove: ["WirelessDeviceId"],
4893
6054
  # wireless_gateways_to_add: ["WirelessGatewayId"],
4894
6055
  # wireless_gateways_to_remove: ["WirelessGatewayId"],
6056
+ # description: "Description",
4895
6057
  # }
4896
6058
  #
4897
6059
  # @!attribute [rw] configuration_name
4898
- # NetworkAnalyzer configuration name.
6060
+ # Name of the network analyzer configuration.
4899
6061
  # @return [String]
4900
6062
  #
4901
6063
  # @!attribute [rw] trace_content
4902
- # Trace Content for resources.
6064
+ # Trace content for your wireless gateway and wireless device
6065
+ # resources.
4903
6066
  # @return [Types::TraceContent]
4904
6067
  #
4905
6068
  # @!attribute [rw] wireless_devices_to_add
4906
- # WirelessDevices to add into NetworkAnalyzerConfiguration.
6069
+ # Wireless device resources to add to the network analyzer
6070
+ # configuration. Provide the `WirelessDeviceId` of the resource to add
6071
+ # in the input array.
4907
6072
  # @return [Array<String>]
4908
6073
  #
4909
6074
  # @!attribute [rw] wireless_devices_to_remove
4910
- # WirelessDevices to remove from NetworkAnalyzerConfiguration.
6075
+ # Wireless device resources to remove from the network analyzer
6076
+ # configuration. Provide the `WirelessDeviceId` of the resources to
6077
+ # remove in the input array.
4911
6078
  # @return [Array<String>]
4912
6079
  #
4913
6080
  # @!attribute [rw] wireless_gateways_to_add
4914
- # WirelessGateways to add into NetworkAnalyzerConfiguration.
6081
+ # Wireless gateway resources to add to the network analyzer
6082
+ # configuration. Provide the `WirelessGatewayId` of the resource to
6083
+ # add in the input array.
4915
6084
  # @return [Array<String>]
4916
6085
  #
4917
6086
  # @!attribute [rw] wireless_gateways_to_remove
4918
- # WirelessGateways to remove from NetworkAnalyzerConfiguration.
6087
+ # Wireless gateway resources to remove from the network analyzer
6088
+ # configuration. Provide the `WirelessGatewayId` of the resources to
6089
+ # remove in the input array.
4919
6090
  # @return [Array<String>]
4920
6091
  #
6092
+ # @!attribute [rw] description
6093
+ # The description of the new resource.
6094
+ # @return [String]
6095
+ #
4921
6096
  class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
4922
6097
  :configuration_name,
4923
6098
  :trace_content,
4924
6099
  :wireless_devices_to_add,
4925
6100
  :wireless_devices_to_remove,
4926
6101
  :wireless_gateways_to_add,
4927
- :wireless_gateways_to_remove)
6102
+ :wireless_gateways_to_remove,
6103
+ :description)
4928
6104
  SENSITIVE = []
4929
6105
  include Aws::Structure
4930
6106
  end
@@ -4964,22 +6140,67 @@ module Aws::IoTWireless
4964
6140
 
4965
6141
  class UpdatePartnerAccountResponse < Aws::EmptyStructure; end
4966
6142
 
6143
+ # @note When making an API call, you may pass UpdatePositionRequest
6144
+ # data as a hash:
6145
+ #
6146
+ # {
6147
+ # resource_identifier: "PositionResourceIdentifier", # required
6148
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
6149
+ # position: [1.0], # required
6150
+ # }
6151
+ #
6152
+ # @!attribute [rw] resource_identifier
6153
+ # Resource identifier of the resource for which position is updated.
6154
+ # @return [String]
6155
+ #
6156
+ # @!attribute [rw] resource_type
6157
+ # Resource type of the resource for which position is updated.
6158
+ # @return [String]
6159
+ #
6160
+ # @!attribute [rw] position
6161
+ # The position information of the resource.
6162
+ # @return [Array<Float>]
6163
+ #
6164
+ class UpdatePositionRequest < Struct.new(
6165
+ :resource_identifier,
6166
+ :resource_type,
6167
+ :position)
6168
+ SENSITIVE = []
6169
+ include Aws::Structure
6170
+ end
6171
+
6172
+ class UpdatePositionResponse < Aws::EmptyStructure; end
6173
+
4967
6174
  # @note When making an API call, you may pass UpdateResourceEventConfigurationRequest
4968
6175
  # data as a hash:
4969
6176
  #
4970
6177
  # {
4971
6178
  # identifier: "Identifier", # required
4972
- # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
6179
+ # identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
4973
6180
  # partner_type: "Sidewalk", # accepts Sidewalk
4974
6181
  # device_registration_state: {
4975
6182
  # sidewalk: {
4976
6183
  # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
4977
6184
  # },
6185
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
4978
6186
  # },
4979
6187
  # proximity: {
4980
6188
  # sidewalk: {
4981
6189
  # amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
4982
6190
  # },
6191
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
6192
+ # },
6193
+ # join: {
6194
+ # lo_ra_wan: {
6195
+ # dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
6196
+ # },
6197
+ # wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
6198
+ # },
6199
+ # connection_status: {
6200
+ # lo_ra_wan: {
6201
+ # gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
6202
+ # },
6203
+ # wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
4983
6204
  # },
4984
6205
  # }
4985
6206
  #
@@ -4994,23 +6215,33 @@ module Aws::IoTWireless
4994
6215
  #
4995
6216
  # @!attribute [rw] partner_type
4996
6217
  # Partner type of the resource if the identifier type is
4997
- # PartnerAccountId
6218
+ # `PartnerAccountId`
4998
6219
  # @return [String]
4999
6220
  #
5000
6221
  # @!attribute [rw] device_registration_state
5001
- # Event configuration for the device registration state event
6222
+ # Event configuration for the device registration state event.
5002
6223
  # @return [Types::DeviceRegistrationStateEventConfiguration]
5003
6224
  #
5004
6225
  # @!attribute [rw] proximity
5005
- # Event configuration for the Proximity event
6226
+ # Event configuration for the proximity event.
5006
6227
  # @return [Types::ProximityEventConfiguration]
5007
6228
  #
6229
+ # @!attribute [rw] join
6230
+ # Event configuration for the join event.
6231
+ # @return [Types::JoinEventConfiguration]
6232
+ #
6233
+ # @!attribute [rw] connection_status
6234
+ # Event configuration for the connection status event.
6235
+ # @return [Types::ConnectionStatusEventConfiguration]
6236
+ #
5008
6237
  class UpdateResourceEventConfigurationRequest < Struct.new(
5009
6238
  :identifier,
5010
6239
  :identifier_type,
5011
6240
  :partner_type,
5012
6241
  :device_registration_state,
5013
- :proximity)
6242
+ :proximity,
6243
+ :join,
6244
+ :connection_status)
5014
6245
  SENSITIVE = []
5015
6246
  include Aws::Structure
5016
6247
  end
@@ -5028,6 +6259,19 @@ module Aws::IoTWireless
5028
6259
  # lo_ra_wan: {
5029
6260
  # device_profile_id: "DeviceProfileId",
5030
6261
  # service_profile_id: "ServiceProfileId",
6262
+ # abp_v1_1: {
6263
+ # f_cnt_start: 1,
6264
+ # },
6265
+ # abp_v1_0_x: {
6266
+ # f_cnt_start: 1,
6267
+ # },
6268
+ # f_ports: {
6269
+ # positioning: {
6270
+ # clock_sync: 1,
6271
+ # stream: 1,
6272
+ # gnss: 1,
6273
+ # },
6274
+ # },
5031
6275
  # },
5032
6276
  # }
5033
6277
  #
@@ -5208,7 +6452,9 @@ module Aws::IoTWireless
5208
6452
  # @return [String]
5209
6453
  #
5210
6454
  # @!attribute [rw] log_level
5211
- # The log level for a log message.
6455
+ # The log level for a log message. The log levels can be disabled, or
6456
+ # set to `ERROR` to display less verbose logs containing only error
6457
+ # information, or to `INFO` for more detailed logs.
5212
6458
  # @return [String]
5213
6459
  #
5214
6460
  class WirelessDeviceEventLogOption < Struct.new(
@@ -5240,7 +6486,9 @@ module Aws::IoTWireless
5240
6486
  # @return [String]
5241
6487
  #
5242
6488
  # @!attribute [rw] log_level
5243
- # The log level for a log message.
6489
+ # The log level for a log message. The log levels can be disabled, or
6490
+ # set to `ERROR` to display less verbose logs containing only error
6491
+ # information, or to `INFO` for more detailed logs.
5244
6492
  # @return [String]
5245
6493
  #
5246
6494
  # @!attribute [rw] events
@@ -5337,7 +6585,9 @@ module Aws::IoTWireless
5337
6585
  # @return [String]
5338
6586
  #
5339
6587
  # @!attribute [rw] log_level
5340
- # The log level for a log message.
6588
+ # The log level for a log message. The log levels can be disabled, or
6589
+ # set to `ERROR` to display less verbose logs containing only error
6590
+ # information, or to `INFO` for more detailed logs.
5341
6591
  # @return [String]
5342
6592
  #
5343
6593
  class WirelessGatewayEventLogOption < Struct.new(
@@ -5369,7 +6619,9 @@ module Aws::IoTWireless
5369
6619
  # @return [String]
5370
6620
  #
5371
6621
  # @!attribute [rw] log_level
5372
- # The log level for a log message.
6622
+ # The log level for a log message. The log levels can be disabled, or
6623
+ # set to `ERROR` to display less verbose logs containing only error
6624
+ # information, or to `INFO` for more detailed logs.
5373
6625
  # @return [String]
5374
6626
  #
5375
6627
  # @!attribute [rw] events