aws-sdk-iotwireless 1.22.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotwireless/client.rb +584 -28
- data/lib/aws-sdk-iotwireless/client_api.rb +444 -0
- data/lib/aws-sdk-iotwireless/types.rb +1455 -88
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +2 -2
@@ -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
|
#
|
@@ -677,6 +851,8 @@ module Aws::IoTWireless
|
|
677
851
|
# name: "ServiceProfileName",
|
678
852
|
# lo_ra_wan: {
|
679
853
|
# add_gw_metadata: false,
|
854
|
+
# dr_min: 1,
|
855
|
+
# dr_max: 1,
|
680
856
|
# },
|
681
857
|
# tags: [
|
682
858
|
# {
|
@@ -766,6 +942,7 @@ module Aws::IoTWireless
|
|
766
942
|
# nwk_s_enc_key: "NwkSEncKey",
|
767
943
|
# app_s_key: "AppSKey",
|
768
944
|
# },
|
945
|
+
# f_cnt_start: 1,
|
769
946
|
# },
|
770
947
|
# abp_v1_0_x: {
|
771
948
|
# dev_addr: "DevAddr",
|
@@ -773,11 +950,17 @@ module Aws::IoTWireless
|
|
773
950
|
# nwk_s_key: "NwkSKey",
|
774
951
|
# app_s_key: "AppSKey",
|
775
952
|
# },
|
953
|
+
# f_cnt_start: 1,
|
776
954
|
# },
|
777
955
|
# f_ports: {
|
778
956
|
# fuota: 1,
|
779
957
|
# multicast: 1,
|
780
958
|
# clock_sync: 1,
|
959
|
+
# positioning: {
|
960
|
+
# clock_sync: 1,
|
961
|
+
# stream: 1,
|
962
|
+
# gnss: 1,
|
963
|
+
# },
|
781
964
|
# },
|
782
965
|
# },
|
783
966
|
# tags: [
|
@@ -1129,6 +1312,25 @@ module Aws::IoTWireless
|
|
1129
1312
|
|
1130
1313
|
class DeleteMulticastGroupResponse < Aws::EmptyStructure; end
|
1131
1314
|
|
1315
|
+
# @note When making an API call, you may pass DeleteNetworkAnalyzerConfigurationRequest
|
1316
|
+
# data as a hash:
|
1317
|
+
#
|
1318
|
+
# {
|
1319
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
1320
|
+
# }
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] configuration_name
|
1323
|
+
# Name of the network analyzer configuration.
|
1324
|
+
# @return [String]
|
1325
|
+
#
|
1326
|
+
class DeleteNetworkAnalyzerConfigurationRequest < Struct.new(
|
1327
|
+
:configuration_name)
|
1328
|
+
SENSITIVE = []
|
1329
|
+
include Aws::Structure
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
class DeleteNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
|
1333
|
+
|
1132
1334
|
# @note When making an API call, you may pass DeleteQueuedMessagesRequest
|
1133
1335
|
# data as a hash:
|
1134
1336
|
#
|
@@ -1139,17 +1341,18 @@ module Aws::IoTWireless
|
|
1139
1341
|
# }
|
1140
1342
|
#
|
1141
1343
|
# @!attribute [rw] id
|
1142
|
-
#
|
1344
|
+
# The ID of a given wireless device for which downlink messages will
|
1345
|
+
# be deleted.
|
1143
1346
|
# @return [String]
|
1144
1347
|
#
|
1145
1348
|
# @!attribute [rw] message_id
|
1146
|
-
#
|
1147
|
-
#
|
1148
|
-
# be deleted
|
1349
|
+
# If message ID is `"*"`, it cleares the entire downlink queue for a
|
1350
|
+
# given device, specified by the wireless device ID. Otherwise, the
|
1351
|
+
# downlink message with the specified message ID will be deleted.
|
1149
1352
|
# @return [String]
|
1150
1353
|
#
|
1151
1354
|
# @!attribute [rw] wireless_device_type
|
1152
|
-
# The wireless device type,
|
1355
|
+
# The wireless device type, which can be either Sidewalk or LoRaWAN.
|
1153
1356
|
# @return [String]
|
1154
1357
|
#
|
1155
1358
|
class DeleteQueuedMessagesRequest < Struct.new(
|
@@ -1326,6 +1529,7 @@ module Aws::IoTWireless
|
|
1326
1529
|
# sidewalk: {
|
1327
1530
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
1328
1531
|
# },
|
1532
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
1329
1533
|
# }
|
1330
1534
|
#
|
1331
1535
|
# @!attribute [rw] sidewalk
|
@@ -1333,7 +1537,36 @@ module Aws::IoTWireless
|
|
1333
1537
|
# disabling Sidewalk related event topics.
|
1334
1538
|
# @return [Types::SidewalkEventNotificationConfigurations]
|
1335
1539
|
#
|
1540
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
1541
|
+
# Enum to denote whether the wireless device id device registration
|
1542
|
+
# state event topic is enabled or disabled.
|
1543
|
+
# @return [String]
|
1544
|
+
#
|
1336
1545
|
class DeviceRegistrationStateEventConfiguration < Struct.new(
|
1546
|
+
:sidewalk,
|
1547
|
+
:wireless_device_id_event_topic)
|
1548
|
+
SENSITIVE = []
|
1549
|
+
include Aws::Structure
|
1550
|
+
end
|
1551
|
+
|
1552
|
+
# Device registration state resource type event configuration object for
|
1553
|
+
# enabling or disabling topic.
|
1554
|
+
#
|
1555
|
+
# @note When making an API call, you may pass DeviceRegistrationStateResourceTypeEventConfiguration
|
1556
|
+
# data as a hash:
|
1557
|
+
#
|
1558
|
+
# {
|
1559
|
+
# sidewalk: {
|
1560
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
1561
|
+
# },
|
1562
|
+
# }
|
1563
|
+
#
|
1564
|
+
# @!attribute [rw] sidewalk
|
1565
|
+
# Device registration resource type state event configuration object
|
1566
|
+
# for enabling or disabling Sidewalk related event topics.
|
1567
|
+
# @return [Types::SidewalkResourceTypeEventConfiguration]
|
1568
|
+
#
|
1569
|
+
class DeviceRegistrationStateResourceTypeEventConfiguration < Struct.new(
|
1337
1570
|
:sidewalk)
|
1338
1571
|
SENSITIVE = []
|
1339
1572
|
include Aws::Structure
|
@@ -1496,20 +1729,21 @@ module Aws::IoTWireless
|
|
1496
1729
|
|
1497
1730
|
class DisassociateWirelessGatewayFromThingResponse < Aws::EmptyStructure; end
|
1498
1731
|
|
1499
|
-
# The message in downlink queue.
|
1732
|
+
# The message in the downlink queue.
|
1500
1733
|
#
|
1501
1734
|
# @!attribute [rw] message_id
|
1502
|
-
# The
|
1735
|
+
# The message ID assigned by IoT Wireless to each downlink message,
|
1736
|
+
# which helps identify the message.
|
1503
1737
|
# @return [String]
|
1504
1738
|
#
|
1505
1739
|
# @!attribute [rw] transmit_mode
|
1506
|
-
# The transmit mode to use
|
1507
|
-
# be
|
1508
|
-
# mode).
|
1740
|
+
# The transmit mode to use for sending data to the wireless device.
|
1741
|
+
# This can be `0` for UM (unacknowledge mode) or `1` for AM
|
1742
|
+
# (acknowledge mode).
|
1509
1743
|
# @return [Integer]
|
1510
1744
|
#
|
1511
1745
|
# @!attribute [rw] received_at
|
1512
|
-
# The
|
1746
|
+
# The time at which Iot Wireless received the downlink message.
|
1513
1747
|
# @return [String]
|
1514
1748
|
#
|
1515
1749
|
# @!attribute [rw] lo_ra_wan
|
@@ -1525,6 +1759,71 @@ module Aws::IoTWireless
|
|
1525
1759
|
include Aws::Structure
|
1526
1760
|
end
|
1527
1761
|
|
1762
|
+
# Event configuration object for a single resource.
|
1763
|
+
#
|
1764
|
+
# @!attribute [rw] identifier
|
1765
|
+
# Resource identifier opted in for event messaging.
|
1766
|
+
# @return [String]
|
1767
|
+
#
|
1768
|
+
# @!attribute [rw] identifier_type
|
1769
|
+
# Identifier type of the particular resource identifier for event
|
1770
|
+
# configuration.
|
1771
|
+
# @return [String]
|
1772
|
+
#
|
1773
|
+
# @!attribute [rw] partner_type
|
1774
|
+
# Partner type of the resource if the identifier type is
|
1775
|
+
# PartnerAccountId.
|
1776
|
+
# @return [String]
|
1777
|
+
#
|
1778
|
+
# @!attribute [rw] events
|
1779
|
+
# Object of all event configurations and the status of the event
|
1780
|
+
# topics.
|
1781
|
+
# @return [Types::EventNotificationItemConfigurations]
|
1782
|
+
#
|
1783
|
+
class EventConfigurationItem < Struct.new(
|
1784
|
+
:identifier,
|
1785
|
+
:identifier_type,
|
1786
|
+
:partner_type,
|
1787
|
+
:events)
|
1788
|
+
SENSITIVE = []
|
1789
|
+
include Aws::Structure
|
1790
|
+
end
|
1791
|
+
|
1792
|
+
# Object of all event configurations and the status of the event topics.
|
1793
|
+
#
|
1794
|
+
# @!attribute [rw] device_registration_state
|
1795
|
+
# Device registration state event configuration for an event
|
1796
|
+
# configuration item.
|
1797
|
+
# @return [Types::DeviceRegistrationStateEventConfiguration]
|
1798
|
+
#
|
1799
|
+
# @!attribute [rw] proximity
|
1800
|
+
# Proximity event configuration for an event configuration item.
|
1801
|
+
# @return [Types::ProximityEventConfiguration]
|
1802
|
+
#
|
1803
|
+
# @!attribute [rw] join
|
1804
|
+
# Join event configuration for an event configuration item.
|
1805
|
+
# @return [Types::JoinEventConfiguration]
|
1806
|
+
#
|
1807
|
+
# @!attribute [rw] connection_status
|
1808
|
+
# Connection status event configuration for an event configuration
|
1809
|
+
# item.
|
1810
|
+
# @return [Types::ConnectionStatusEventConfiguration]
|
1811
|
+
#
|
1812
|
+
# @!attribute [rw] message_delivery_status
|
1813
|
+
# Message delivery status event configuration for an event
|
1814
|
+
# configuration item.
|
1815
|
+
# @return [Types::MessageDeliveryStatusEventConfiguration]
|
1816
|
+
#
|
1817
|
+
class EventNotificationItemConfigurations < Struct.new(
|
1818
|
+
:device_registration_state,
|
1819
|
+
:proximity,
|
1820
|
+
:join,
|
1821
|
+
:connection_status,
|
1822
|
+
:message_delivery_status)
|
1823
|
+
SENSITIVE = []
|
1824
|
+
include Aws::Structure
|
1825
|
+
end
|
1826
|
+
|
1528
1827
|
# List of FPort assigned for different LoRaWAN application packages to
|
1529
1828
|
# use
|
1530
1829
|
#
|
@@ -1535,6 +1834,11 @@ module Aws::IoTWireless
|
|
1535
1834
|
# fuota: 1,
|
1536
1835
|
# multicast: 1,
|
1537
1836
|
# clock_sync: 1,
|
1837
|
+
# positioning: {
|
1838
|
+
# clock_sync: 1,
|
1839
|
+
# stream: 1,
|
1840
|
+
# gnss: 1,
|
1841
|
+
# },
|
1538
1842
|
# }
|
1539
1843
|
#
|
1540
1844
|
# @!attribute [rw] fuota
|
@@ -1549,10 +1853,16 @@ module Aws::IoTWireless
|
|
1549
1853
|
# The Fport value.
|
1550
1854
|
# @return [Integer]
|
1551
1855
|
#
|
1856
|
+
# @!attribute [rw] positioning
|
1857
|
+
# FPort values for the GNSS, stream, and ClockSync functions of the
|
1858
|
+
# positioning information.
|
1859
|
+
# @return [Types::Positioning]
|
1860
|
+
#
|
1552
1861
|
class FPorts < Struct.new(
|
1553
1862
|
:fuota,
|
1554
1863
|
:multicast,
|
1555
|
-
:clock_sync
|
1864
|
+
:clock_sync,
|
1865
|
+
:positioning)
|
1556
1866
|
SENSITIVE = []
|
1557
1867
|
include Aws::Structure
|
1558
1868
|
end
|
@@ -1673,6 +1983,42 @@ module Aws::IoTWireless
|
|
1673
1983
|
include Aws::Structure
|
1674
1984
|
end
|
1675
1985
|
|
1986
|
+
# @api private
|
1987
|
+
#
|
1988
|
+
class GetEventConfigurationByResourceTypesRequest < Aws::EmptyStructure; end
|
1989
|
+
|
1990
|
+
# @!attribute [rw] device_registration_state
|
1991
|
+
# Resource type event configuration for the device registration state
|
1992
|
+
# event.
|
1993
|
+
# @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
|
1994
|
+
#
|
1995
|
+
# @!attribute [rw] proximity
|
1996
|
+
# Resource type event configuration for the proximity event.
|
1997
|
+
# @return [Types::ProximityResourceTypeEventConfiguration]
|
1998
|
+
#
|
1999
|
+
# @!attribute [rw] join
|
2000
|
+
# Resource type event configuration for the join event.
|
2001
|
+
# @return [Types::JoinResourceTypeEventConfiguration]
|
2002
|
+
#
|
2003
|
+
# @!attribute [rw] connection_status
|
2004
|
+
# Resource type event configuration for the connection status event.
|
2005
|
+
# @return [Types::ConnectionStatusResourceTypeEventConfiguration]
|
2006
|
+
#
|
2007
|
+
# @!attribute [rw] message_delivery_status
|
2008
|
+
# Resource type event configuration object for the message delivery
|
2009
|
+
# status event.
|
2010
|
+
# @return [Types::MessageDeliveryStatusResourceTypeEventConfiguration]
|
2011
|
+
#
|
2012
|
+
class GetEventConfigurationByResourceTypesResponse < Struct.new(
|
2013
|
+
:device_registration_state,
|
2014
|
+
:proximity,
|
2015
|
+
:join,
|
2016
|
+
:connection_status,
|
2017
|
+
:message_delivery_status)
|
2018
|
+
SENSITIVE = []
|
2019
|
+
include Aws::Structure
|
2020
|
+
end
|
2021
|
+
|
1676
2022
|
# @note When making an API call, you may pass GetFuotaTaskRequest
|
1677
2023
|
# data as a hash:
|
1678
2024
|
#
|
@@ -1746,7 +2092,9 @@ module Aws::IoTWireless
|
|
1746
2092
|
class GetLogLevelsByResourceTypesRequest < Aws::EmptyStructure; end
|
1747
2093
|
|
1748
2094
|
# @!attribute [rw] default_log_level
|
1749
|
-
# The log level for a log message.
|
2095
|
+
# The log level for a log message. The log levels can be disabled, or
|
2096
|
+
# set to `ERROR` to display less verbose logs containing only error
|
2097
|
+
# information, or to `INFO` for more detailed logs.
|
1750
2098
|
# @return [String]
|
1751
2099
|
#
|
1752
2100
|
# @!attribute [rw] wireless_gateway_log_options
|
@@ -1858,7 +2206,7 @@ module Aws::IoTWireless
|
|
1858
2206
|
# }
|
1859
2207
|
#
|
1860
2208
|
# @!attribute [rw] configuration_name
|
1861
|
-
#
|
2209
|
+
# Name of the network analyzer configuration.
|
1862
2210
|
# @return [String]
|
1863
2211
|
#
|
1864
2212
|
class GetNetworkAnalyzerConfigurationRequest < Struct.new(
|
@@ -1868,21 +2216,39 @@ module Aws::IoTWireless
|
|
1868
2216
|
end
|
1869
2217
|
|
1870
2218
|
# @!attribute [rw] trace_content
|
1871
|
-
# Trace
|
2219
|
+
# Trace content for your wireless gateway and wireless device
|
2220
|
+
# resources.
|
1872
2221
|
# @return [Types::TraceContent]
|
1873
2222
|
#
|
1874
2223
|
# @!attribute [rw] wireless_devices
|
1875
|
-
# List of
|
2224
|
+
# List of wireless gateway resources that have been added to the
|
2225
|
+
# network analyzer configuration.
|
1876
2226
|
# @return [Array<String>]
|
1877
2227
|
#
|
1878
2228
|
# @!attribute [rw] wireless_gateways
|
1879
|
-
# List of
|
2229
|
+
# List of wireless gateway resources that have been added to the
|
2230
|
+
# network analyzer configuration.
|
1880
2231
|
# @return [Array<String>]
|
1881
2232
|
#
|
2233
|
+
# @!attribute [rw] description
|
2234
|
+
# The description of the new resource.
|
2235
|
+
# @return [String]
|
2236
|
+
#
|
2237
|
+
# @!attribute [rw] arn
|
2238
|
+
# The Amazon Resource Name of the new resource.
|
2239
|
+
# @return [String]
|
2240
|
+
#
|
2241
|
+
# @!attribute [rw] name
|
2242
|
+
# Name of the network analyzer configuration.
|
2243
|
+
# @return [String]
|
2244
|
+
#
|
1882
2245
|
class GetNetworkAnalyzerConfigurationResponse < Struct.new(
|
1883
2246
|
:trace_content,
|
1884
2247
|
:wireless_devices,
|
1885
|
-
:wireless_gateways
|
2248
|
+
:wireless_gateways,
|
2249
|
+
:description,
|
2250
|
+
:arn,
|
2251
|
+
:name)
|
1886
2252
|
SENSITIVE = []
|
1887
2253
|
include Aws::Structure
|
1888
2254
|
end
|
@@ -1925,58 +2291,177 @@ module Aws::IoTWireless
|
|
1925
2291
|
include Aws::Structure
|
1926
2292
|
end
|
1927
2293
|
|
1928
|
-
# @note When making an API call, you may pass
|
2294
|
+
# @note When making an API call, you may pass GetPositionConfigurationRequest
|
1929
2295
|
# data as a hash:
|
1930
2296
|
#
|
1931
2297
|
# {
|
1932
|
-
#
|
1933
|
-
#
|
1934
|
-
# partner_type: "Sidewalk", # accepts Sidewalk
|
2298
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
2299
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
1935
2300
|
# }
|
1936
2301
|
#
|
1937
|
-
# @!attribute [rw]
|
1938
|
-
# Resource identifier
|
1939
|
-
# @return [String]
|
1940
|
-
#
|
1941
|
-
# @!attribute [rw] identifier_type
|
1942
|
-
# Identifier type of the particular resource identifier for event
|
1943
|
-
# configuration.
|
2302
|
+
# @!attribute [rw] resource_identifier
|
2303
|
+
# Resource identifier used in a position configuration.
|
1944
2304
|
# @return [String]
|
1945
2305
|
#
|
1946
|
-
# @!attribute [rw]
|
1947
|
-
#
|
1948
|
-
#
|
2306
|
+
# @!attribute [rw] resource_type
|
2307
|
+
# Resource type of the resource for which position configuration is
|
2308
|
+
# retrieved.
|
1949
2309
|
# @return [String]
|
1950
2310
|
#
|
1951
|
-
class
|
1952
|
-
:
|
1953
|
-
:
|
1954
|
-
:partner_type)
|
2311
|
+
class GetPositionConfigurationRequest < Struct.new(
|
2312
|
+
:resource_identifier,
|
2313
|
+
:resource_type)
|
1955
2314
|
SENSITIVE = []
|
1956
2315
|
include Aws::Structure
|
1957
2316
|
end
|
1958
2317
|
|
1959
|
-
# @!attribute [rw]
|
1960
|
-
#
|
1961
|
-
# @return [Types::
|
2318
|
+
# @!attribute [rw] solvers
|
2319
|
+
# The wrapper for the solver configuration details object.
|
2320
|
+
# @return [Types::PositionSolverDetails]
|
1962
2321
|
#
|
1963
|
-
# @!attribute [rw]
|
1964
|
-
#
|
1965
|
-
#
|
2322
|
+
# @!attribute [rw] destination
|
2323
|
+
# The position data destination that describes the AWS IoT rule that
|
2324
|
+
# processes the device's position data for use by AWS IoT Core for
|
2325
|
+
# LoRaWAN.
|
2326
|
+
# @return [String]
|
1966
2327
|
#
|
1967
|
-
class
|
1968
|
-
:
|
1969
|
-
:
|
2328
|
+
class GetPositionConfigurationResponse < Struct.new(
|
2329
|
+
:solvers,
|
2330
|
+
:destination)
|
1970
2331
|
SENSITIVE = []
|
1971
2332
|
include Aws::Structure
|
1972
2333
|
end
|
1973
2334
|
|
1974
|
-
# @note When making an API call, you may pass
|
2335
|
+
# @note When making an API call, you may pass GetPositionRequest
|
1975
2336
|
# data as a hash:
|
1976
2337
|
#
|
1977
2338
|
# {
|
1978
|
-
# resource_identifier: "
|
1979
|
-
# resource_type: "
|
2339
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
2340
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
2341
|
+
# }
|
2342
|
+
#
|
2343
|
+
# @!attribute [rw] resource_identifier
|
2344
|
+
# Resource identifier used to retrieve the position information.
|
2345
|
+
# @return [String]
|
2346
|
+
#
|
2347
|
+
# @!attribute [rw] resource_type
|
2348
|
+
# Resource type of the resource for which position information is
|
2349
|
+
# retrieved.
|
2350
|
+
# @return [String]
|
2351
|
+
#
|
2352
|
+
class GetPositionRequest < Struct.new(
|
2353
|
+
:resource_identifier,
|
2354
|
+
:resource_type)
|
2355
|
+
SENSITIVE = []
|
2356
|
+
include Aws::Structure
|
2357
|
+
end
|
2358
|
+
|
2359
|
+
# @!attribute [rw] position
|
2360
|
+
# The position information of the resource.
|
2361
|
+
# @return [Array<Float>]
|
2362
|
+
#
|
2363
|
+
# @!attribute [rw] accuracy
|
2364
|
+
# The accuracy of the estimated position in meters. An empty value
|
2365
|
+
# indicates that no position data is available. A value of ‘0.0’ value
|
2366
|
+
# indicates that position data is available. This data corresponds to
|
2367
|
+
# the position information that you specified instead of the position
|
2368
|
+
# computed by solver.
|
2369
|
+
# @return [Types::Accuracy]
|
2370
|
+
#
|
2371
|
+
# @!attribute [rw] solver_type
|
2372
|
+
# The type of solver used to identify the position of the resource.
|
2373
|
+
# @return [String]
|
2374
|
+
#
|
2375
|
+
# @!attribute [rw] solver_provider
|
2376
|
+
# The vendor of the positioning solver.
|
2377
|
+
# @return [String]
|
2378
|
+
#
|
2379
|
+
# @!attribute [rw] solver_version
|
2380
|
+
# The version of the positioning solver.
|
2381
|
+
# @return [String]
|
2382
|
+
#
|
2383
|
+
# @!attribute [rw] timestamp
|
2384
|
+
# The timestamp at which the device's position was determined.
|
2385
|
+
# @return [String]
|
2386
|
+
#
|
2387
|
+
class GetPositionResponse < Struct.new(
|
2388
|
+
:position,
|
2389
|
+
:accuracy,
|
2390
|
+
:solver_type,
|
2391
|
+
:solver_provider,
|
2392
|
+
:solver_version,
|
2393
|
+
:timestamp)
|
2394
|
+
SENSITIVE = []
|
2395
|
+
include Aws::Structure
|
2396
|
+
end
|
2397
|
+
|
2398
|
+
# @note When making an API call, you may pass GetResourceEventConfigurationRequest
|
2399
|
+
# data as a hash:
|
2400
|
+
#
|
2401
|
+
# {
|
2402
|
+
# identifier: "Identifier", # required
|
2403
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
2404
|
+
# partner_type: "Sidewalk", # accepts Sidewalk
|
2405
|
+
# }
|
2406
|
+
#
|
2407
|
+
# @!attribute [rw] identifier
|
2408
|
+
# Resource identifier to opt in for event messaging.
|
2409
|
+
# @return [String]
|
2410
|
+
#
|
2411
|
+
# @!attribute [rw] identifier_type
|
2412
|
+
# Identifier type of the particular resource identifier for event
|
2413
|
+
# configuration.
|
2414
|
+
# @return [String]
|
2415
|
+
#
|
2416
|
+
# @!attribute [rw] partner_type
|
2417
|
+
# Partner type of the resource if the identifier type is
|
2418
|
+
# `PartnerAccountId`.
|
2419
|
+
# @return [String]
|
2420
|
+
#
|
2421
|
+
class GetResourceEventConfigurationRequest < Struct.new(
|
2422
|
+
:identifier,
|
2423
|
+
:identifier_type,
|
2424
|
+
:partner_type)
|
2425
|
+
SENSITIVE = []
|
2426
|
+
include Aws::Structure
|
2427
|
+
end
|
2428
|
+
|
2429
|
+
# @!attribute [rw] device_registration_state
|
2430
|
+
# Event configuration for the device registration state event.
|
2431
|
+
# @return [Types::DeviceRegistrationStateEventConfiguration]
|
2432
|
+
#
|
2433
|
+
# @!attribute [rw] proximity
|
2434
|
+
# Event configuration for the proximity event.
|
2435
|
+
# @return [Types::ProximityEventConfiguration]
|
2436
|
+
#
|
2437
|
+
# @!attribute [rw] join
|
2438
|
+
# Event configuration for the join event.
|
2439
|
+
# @return [Types::JoinEventConfiguration]
|
2440
|
+
#
|
2441
|
+
# @!attribute [rw] connection_status
|
2442
|
+
# Event configuration for the connection status event.
|
2443
|
+
# @return [Types::ConnectionStatusEventConfiguration]
|
2444
|
+
#
|
2445
|
+
# @!attribute [rw] message_delivery_status
|
2446
|
+
# Event configuration for the message delivery status event.
|
2447
|
+
# @return [Types::MessageDeliveryStatusEventConfiguration]
|
2448
|
+
#
|
2449
|
+
class GetResourceEventConfigurationResponse < Struct.new(
|
2450
|
+
:device_registration_state,
|
2451
|
+
:proximity,
|
2452
|
+
:join,
|
2453
|
+
:connection_status,
|
2454
|
+
:message_delivery_status)
|
2455
|
+
SENSITIVE = []
|
2456
|
+
include Aws::Structure
|
2457
|
+
end
|
2458
|
+
|
2459
|
+
# @note When making an API call, you may pass GetResourceLogLevelRequest
|
2460
|
+
# data as a hash:
|
2461
|
+
#
|
2462
|
+
# {
|
2463
|
+
# resource_identifier: "ResourceIdentifier", # required
|
2464
|
+
# resource_type: "ResourceType", # required
|
1980
2465
|
# }
|
1981
2466
|
#
|
1982
2467
|
# @!attribute [rw] resource_identifier
|
@@ -1998,7 +2483,9 @@ module Aws::IoTWireless
|
|
1998
2483
|
end
|
1999
2484
|
|
2000
2485
|
# @!attribute [rw] log_level
|
2001
|
-
# The log level for a log message.
|
2486
|
+
# The log level for a log message. The log levels can be disabled, or
|
2487
|
+
# set to `ERROR` to display less verbose logs containing only error
|
2488
|
+
# information, or to `INFO` for more detailed logs.
|
2002
2489
|
# @return [String]
|
2003
2490
|
#
|
2004
2491
|
class GetResourceLogLevelResponse < Struct.new(
|
@@ -2017,7 +2504,8 @@ module Aws::IoTWireless
|
|
2017
2504
|
# @!attribute [rw] service_type
|
2018
2505
|
# The service type for which to get endpoint information about. Can be
|
2019
2506
|
# `CUPS` for the Configuration and Update Server endpoint, or `LNS`
|
2020
|
-
# for the LoRaWAN Network Server endpoint
|
2507
|
+
# for the LoRaWAN Network Server endpoint or `CLAIM` for the global
|
2508
|
+
# endpoint.
|
2021
2509
|
# @return [String]
|
2022
2510
|
#
|
2023
2511
|
class GetServiceEndpointRequest < Struct.new(
|
@@ -2472,6 +2960,58 @@ module Aws::IoTWireless
|
|
2472
2960
|
include Aws::Structure
|
2473
2961
|
end
|
2474
2962
|
|
2963
|
+
# Join event configuration object for enabling or disabling topic.
|
2964
|
+
#
|
2965
|
+
# @note When making an API call, you may pass JoinEventConfiguration
|
2966
|
+
# data as a hash:
|
2967
|
+
#
|
2968
|
+
# {
|
2969
|
+
# lo_ra_wan: {
|
2970
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
2971
|
+
# },
|
2972
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
2973
|
+
# }
|
2974
|
+
#
|
2975
|
+
# @!attribute [rw] lo_ra_wan
|
2976
|
+
# Join event configuration object for enabling or disabling LoRaWAN
|
2977
|
+
# related event topics.
|
2978
|
+
# @return [Types::LoRaWANJoinEventNotificationConfigurations]
|
2979
|
+
#
|
2980
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
2981
|
+
# Enum to denote whether the wireless device id join event topic is
|
2982
|
+
# enabled or disabled.
|
2983
|
+
# @return [String]
|
2984
|
+
#
|
2985
|
+
class JoinEventConfiguration < Struct.new(
|
2986
|
+
:lo_ra_wan,
|
2987
|
+
:wireless_device_id_event_topic)
|
2988
|
+
SENSITIVE = []
|
2989
|
+
include Aws::Structure
|
2990
|
+
end
|
2991
|
+
|
2992
|
+
# Join resource type event configuration object for enabling or
|
2993
|
+
# disabling topic.
|
2994
|
+
#
|
2995
|
+
# @note When making an API call, you may pass JoinResourceTypeEventConfiguration
|
2996
|
+
# data as a hash:
|
2997
|
+
#
|
2998
|
+
# {
|
2999
|
+
# lo_ra_wan: {
|
3000
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
3001
|
+
# },
|
3002
|
+
# }
|
3003
|
+
#
|
3004
|
+
# @!attribute [rw] lo_ra_wan
|
3005
|
+
# Join resource type event configuration object for enabling or
|
3006
|
+
# disabling LoRaWAN related event topics.
|
3007
|
+
# @return [Types::LoRaWANJoinResourceTypeEventConfiguration]
|
3008
|
+
#
|
3009
|
+
class JoinResourceTypeEventConfiguration < Struct.new(
|
3010
|
+
:lo_ra_wan)
|
3011
|
+
SENSITIVE = []
|
3012
|
+
include Aws::Structure
|
3013
|
+
end
|
3014
|
+
|
2475
3015
|
# @note When making an API call, you may pass ListDestinationsRequest
|
2476
3016
|
# data as a hash:
|
2477
3017
|
#
|
@@ -2554,6 +3094,54 @@ module Aws::IoTWireless
|
|
2554
3094
|
include Aws::Structure
|
2555
3095
|
end
|
2556
3096
|
|
3097
|
+
# @note When making an API call, you may pass ListEventConfigurationsRequest
|
3098
|
+
# data as a hash:
|
3099
|
+
#
|
3100
|
+
# {
|
3101
|
+
# resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
|
3102
|
+
# max_results: 1,
|
3103
|
+
# next_token: "NextToken",
|
3104
|
+
# }
|
3105
|
+
#
|
3106
|
+
# @!attribute [rw] resource_type
|
3107
|
+
# Resource type to filter event configurations.
|
3108
|
+
# @return [String]
|
3109
|
+
#
|
3110
|
+
# @!attribute [rw] max_results
|
3111
|
+
# The maximum number of results to return in this operation.
|
3112
|
+
# @return [Integer]
|
3113
|
+
#
|
3114
|
+
# @!attribute [rw] next_token
|
3115
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
3116
|
+
# previous response; otherwise **null** to receive the first set of
|
3117
|
+
# results.
|
3118
|
+
# @return [String]
|
3119
|
+
#
|
3120
|
+
class ListEventConfigurationsRequest < Struct.new(
|
3121
|
+
:resource_type,
|
3122
|
+
:max_results,
|
3123
|
+
:next_token)
|
3124
|
+
SENSITIVE = []
|
3125
|
+
include Aws::Structure
|
3126
|
+
end
|
3127
|
+
|
3128
|
+
# @!attribute [rw] next_token
|
3129
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
3130
|
+
# previous response; otherwise **null** to receive the first set of
|
3131
|
+
# results.
|
3132
|
+
# @return [String]
|
3133
|
+
#
|
3134
|
+
# @!attribute [rw] event_configurations_list
|
3135
|
+
# Event configurations of all events for a single resource.
|
3136
|
+
# @return [Array<Types::EventConfigurationItem>]
|
3137
|
+
#
|
3138
|
+
class ListEventConfigurationsResponse < Struct.new(
|
3139
|
+
:next_token,
|
3140
|
+
:event_configurations_list)
|
3141
|
+
SENSITIVE = []
|
3142
|
+
include Aws::Structure
|
3143
|
+
end
|
3144
|
+
|
2557
3145
|
# @note When making an API call, you may pass ListFuotaTasksRequest
|
2558
3146
|
# data as a hash:
|
2559
3147
|
#
|
@@ -2686,6 +3274,47 @@ module Aws::IoTWireless
|
|
2686
3274
|
include Aws::Structure
|
2687
3275
|
end
|
2688
3276
|
|
3277
|
+
# @note When making an API call, you may pass ListNetworkAnalyzerConfigurationsRequest
|
3278
|
+
# data as a hash:
|
3279
|
+
#
|
3280
|
+
# {
|
3281
|
+
# max_results: 1,
|
3282
|
+
# next_token: "NextToken",
|
3283
|
+
# }
|
3284
|
+
#
|
3285
|
+
# @!attribute [rw] max_results
|
3286
|
+
# The maximum number of results to return in this operation.
|
3287
|
+
# @return [Integer]
|
3288
|
+
#
|
3289
|
+
# @!attribute [rw] next_token
|
3290
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
3291
|
+
# previous response; otherwise **null** to receive the first set of
|
3292
|
+
# results.
|
3293
|
+
# @return [String]
|
3294
|
+
#
|
3295
|
+
class ListNetworkAnalyzerConfigurationsRequest < Struct.new(
|
3296
|
+
:max_results,
|
3297
|
+
:next_token)
|
3298
|
+
SENSITIVE = []
|
3299
|
+
include Aws::Structure
|
3300
|
+
end
|
3301
|
+
|
3302
|
+
# @!attribute [rw] next_token
|
3303
|
+
# The token to use to get the next set of results, or **null** if
|
3304
|
+
# there are no additional results.
|
3305
|
+
# @return [String]
|
3306
|
+
#
|
3307
|
+
# @!attribute [rw] network_analyzer_configuration_list
|
3308
|
+
# The list of network analyzer configurations.
|
3309
|
+
# @return [Array<Types::NetworkAnalyzerConfigurations>]
|
3310
|
+
#
|
3311
|
+
class ListNetworkAnalyzerConfigurationsResponse < Struct.new(
|
3312
|
+
:next_token,
|
3313
|
+
:network_analyzer_configuration_list)
|
3314
|
+
SENSITIVE = []
|
3315
|
+
include Aws::Structure
|
3316
|
+
end
|
3317
|
+
|
2689
3318
|
# @note When making an API call, you may pass ListPartnerAccountsRequest
|
2690
3319
|
# data as a hash:
|
2691
3320
|
#
|
@@ -2727,6 +3356,53 @@ module Aws::IoTWireless
|
|
2727
3356
|
include Aws::Structure
|
2728
3357
|
end
|
2729
3358
|
|
3359
|
+
# @note When making an API call, you may pass ListPositionConfigurationsRequest
|
3360
|
+
# data as a hash:
|
3361
|
+
#
|
3362
|
+
# {
|
3363
|
+
# resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
|
3364
|
+
# max_results: 1,
|
3365
|
+
# next_token: "NextToken",
|
3366
|
+
# }
|
3367
|
+
#
|
3368
|
+
# @!attribute [rw] resource_type
|
3369
|
+
# Resource type for which position configurations are listed.
|
3370
|
+
# @return [String]
|
3371
|
+
#
|
3372
|
+
# @!attribute [rw] max_results
|
3373
|
+
# The maximum number of results to return in this operation.
|
3374
|
+
# @return [Integer]
|
3375
|
+
#
|
3376
|
+
# @!attribute [rw] next_token
|
3377
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
3378
|
+
# previous response; otherwise **null** to receive the first set of
|
3379
|
+
# results.
|
3380
|
+
# @return [String]
|
3381
|
+
#
|
3382
|
+
class ListPositionConfigurationsRequest < Struct.new(
|
3383
|
+
:resource_type,
|
3384
|
+
:max_results,
|
3385
|
+
:next_token)
|
3386
|
+
SENSITIVE = []
|
3387
|
+
include Aws::Structure
|
3388
|
+
end
|
3389
|
+
|
3390
|
+
# @!attribute [rw] position_configuration_list
|
3391
|
+
# A list of position configurations.
|
3392
|
+
# @return [Array<Types::PositionConfigurationItem>]
|
3393
|
+
#
|
3394
|
+
# @!attribute [rw] next_token
|
3395
|
+
# The token to use to get the next set of results, or **null** if
|
3396
|
+
# there are no additional results.
|
3397
|
+
# @return [String]
|
3398
|
+
#
|
3399
|
+
class ListPositionConfigurationsResponse < Struct.new(
|
3400
|
+
:position_configuration_list,
|
3401
|
+
:next_token)
|
3402
|
+
SENSITIVE = []
|
3403
|
+
include Aws::Structure
|
3404
|
+
end
|
3405
|
+
|
2730
3406
|
# @note When making an API call, you may pass ListQueuedMessagesRequest
|
2731
3407
|
# data as a hash:
|
2732
3408
|
#
|
@@ -2738,8 +3414,8 @@ module Aws::IoTWireless
|
|
2738
3414
|
# }
|
2739
3415
|
#
|
2740
3416
|
# @!attribute [rw] id
|
2741
|
-
#
|
2742
|
-
#
|
3417
|
+
# The ID of a given wireless device which the downlink message packets
|
3418
|
+
# are being sent.
|
2743
3419
|
# @return [String]
|
2744
3420
|
#
|
2745
3421
|
# @!attribute [rw] next_token
|
@@ -2753,7 +3429,7 @@ module Aws::IoTWireless
|
|
2753
3429
|
# @return [Integer]
|
2754
3430
|
#
|
2755
3431
|
# @!attribute [rw] wireless_device_type
|
2756
|
-
# The wireless device type,
|
3432
|
+
# The wireless device type, whic can be either Sidewalk or LoRaWAN.
|
2757
3433
|
# @return [String]
|
2758
3434
|
#
|
2759
3435
|
class ListQueuedMessagesRequest < Struct.new(
|
@@ -2772,7 +3448,7 @@ module Aws::IoTWireless
|
|
2772
3448
|
# @return [String]
|
2773
3449
|
#
|
2774
3450
|
# @!attribute [rw] downlink_queue_messages_list
|
2775
|
-
# The messages in downlink queue.
|
3451
|
+
# The messages in the downlink queue.
|
2776
3452
|
# @return [Array<Types::DownlinkQueueMessage>]
|
2777
3453
|
#
|
2778
3454
|
class ListQueuedMessagesResponse < Struct.new(
|
@@ -3021,6 +3697,48 @@ module Aws::IoTWireless
|
|
3021
3697
|
include Aws::Structure
|
3022
3698
|
end
|
3023
3699
|
|
3700
|
+
# Object for LoRaWAN connection status resource type event
|
3701
|
+
# configuration.
|
3702
|
+
#
|
3703
|
+
# @note When making an API call, you may pass LoRaWANConnectionStatusEventNotificationConfigurations
|
3704
|
+
# data as a hash:
|
3705
|
+
#
|
3706
|
+
# {
|
3707
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
3708
|
+
# }
|
3709
|
+
#
|
3710
|
+
# @!attribute [rw] gateway_eui_event_topic
|
3711
|
+
# Enum to denote whether the gateway EUI connection status event topic
|
3712
|
+
# is enabled or disabled.
|
3713
|
+
# @return [String]
|
3714
|
+
#
|
3715
|
+
class LoRaWANConnectionStatusEventNotificationConfigurations < Struct.new(
|
3716
|
+
:gateway_eui_event_topic)
|
3717
|
+
SENSITIVE = []
|
3718
|
+
include Aws::Structure
|
3719
|
+
end
|
3720
|
+
|
3721
|
+
# Object for LoRaWAN connection status resource type event
|
3722
|
+
# configuration.
|
3723
|
+
#
|
3724
|
+
# @note When making an API call, you may pass LoRaWANConnectionStatusResourceTypeEventConfiguration
|
3725
|
+
# data as a hash:
|
3726
|
+
#
|
3727
|
+
# {
|
3728
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
3729
|
+
# }
|
3730
|
+
#
|
3731
|
+
# @!attribute [rw] wireless_gateway_event_topic
|
3732
|
+
# Enum to denote whether the wireless gateway connection status event
|
3733
|
+
# topic is enabled or disabled.
|
3734
|
+
# @return [String]
|
3735
|
+
#
|
3736
|
+
class LoRaWANConnectionStatusResourceTypeEventConfiguration < Struct.new(
|
3737
|
+
:wireless_gateway_event_topic)
|
3738
|
+
SENSITIVE = []
|
3739
|
+
include Aws::Structure
|
3740
|
+
end
|
3741
|
+
|
3024
3742
|
# LoRaWAN object for create functions.
|
3025
3743
|
#
|
3026
3744
|
# @note When making an API call, you may pass LoRaWANDevice
|
@@ -3048,6 +3766,7 @@ module Aws::IoTWireless
|
|
3048
3766
|
# nwk_s_enc_key: "NwkSEncKey",
|
3049
3767
|
# app_s_key: "AppSKey",
|
3050
3768
|
# },
|
3769
|
+
# f_cnt_start: 1,
|
3051
3770
|
# },
|
3052
3771
|
# abp_v1_0_x: {
|
3053
3772
|
# dev_addr: "DevAddr",
|
@@ -3055,11 +3774,17 @@ module Aws::IoTWireless
|
|
3055
3774
|
# nwk_s_key: "NwkSKey",
|
3056
3775
|
# app_s_key: "AppSKey",
|
3057
3776
|
# },
|
3777
|
+
# f_cnt_start: 1,
|
3058
3778
|
# },
|
3059
3779
|
# f_ports: {
|
3060
3780
|
# fuota: 1,
|
3061
3781
|
# multicast: 1,
|
3062
3782
|
# clock_sync: 1,
|
3783
|
+
# positioning: {
|
3784
|
+
# clock_sync: 1,
|
3785
|
+
# stream: 1,
|
3786
|
+
# gnss: 1,
|
3787
|
+
# },
|
3063
3788
|
# },
|
3064
3789
|
# }
|
3065
3790
|
#
|
@@ -3527,14 +4252,54 @@ module Aws::IoTWireless
|
|
3527
4252
|
include Aws::Structure
|
3528
4253
|
end
|
3529
4254
|
|
3530
|
-
# LoRaWAN
|
4255
|
+
# Object for LoRaWAN join resource type event configuration.
|
3531
4256
|
#
|
3532
|
-
#
|
3533
|
-
#
|
3534
|
-
# @return [String]
|
4257
|
+
# @note When making an API call, you may pass LoRaWANJoinEventNotificationConfigurations
|
4258
|
+
# data as a hash:
|
3535
4259
|
#
|
3536
|
-
|
3537
|
-
|
4260
|
+
# {
|
4261
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
4262
|
+
# }
|
4263
|
+
#
|
4264
|
+
# @!attribute [rw] dev_eui_event_topic
|
4265
|
+
# Enum to denote whether the Dev EUI join event topic is enabled or
|
4266
|
+
# disabled.
|
4267
|
+
# @return [String]
|
4268
|
+
#
|
4269
|
+
class LoRaWANJoinEventNotificationConfigurations < Struct.new(
|
4270
|
+
:dev_eui_event_topic)
|
4271
|
+
SENSITIVE = []
|
4272
|
+
include Aws::Structure
|
4273
|
+
end
|
4274
|
+
|
4275
|
+
# Object for LoRaWAN join resource type event configuration.
|
4276
|
+
#
|
4277
|
+
# @note When making an API call, you may pass LoRaWANJoinResourceTypeEventConfiguration
|
4278
|
+
# data as a hash:
|
4279
|
+
#
|
4280
|
+
# {
|
4281
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
4282
|
+
# }
|
4283
|
+
#
|
4284
|
+
# @!attribute [rw] wireless_device_event_topic
|
4285
|
+
# Enum to denote whether the wireless device join event topic is
|
4286
|
+
# enabled or disabled.
|
4287
|
+
# @return [String]
|
4288
|
+
#
|
4289
|
+
class LoRaWANJoinResourceTypeEventConfiguration < Struct.new(
|
4290
|
+
:wireless_device_event_topic)
|
4291
|
+
SENSITIVE = []
|
4292
|
+
include Aws::Structure
|
4293
|
+
end
|
4294
|
+
|
4295
|
+
# LoRaWAN object for list functions.
|
4296
|
+
#
|
4297
|
+
# @!attribute [rw] dev_eui
|
4298
|
+
# The DevEUI value.
|
4299
|
+
# @return [String]
|
4300
|
+
#
|
4301
|
+
class LoRaWANListDevice < Struct.new(
|
4302
|
+
:dev_eui)
|
3538
4303
|
SENSITIVE = []
|
3539
4304
|
include Aws::Structure
|
3540
4305
|
end
|
@@ -3675,14 +4440,26 @@ module Aws::IoTWireless
|
|
3675
4440
|
#
|
3676
4441
|
# {
|
3677
4442
|
# add_gw_metadata: false,
|
4443
|
+
# dr_min: 1,
|
4444
|
+
# dr_max: 1,
|
3678
4445
|
# }
|
3679
4446
|
#
|
3680
4447
|
# @!attribute [rw] add_gw_metadata
|
3681
4448
|
# The AddGWMetaData value.
|
3682
4449
|
# @return [Boolean]
|
3683
4450
|
#
|
4451
|
+
# @!attribute [rw] dr_min
|
4452
|
+
# The DrMin value.
|
4453
|
+
# @return [Integer]
|
4454
|
+
#
|
4455
|
+
# @!attribute [rw] dr_max
|
4456
|
+
# The DrMax value.
|
4457
|
+
# @return [Integer]
|
4458
|
+
#
|
3684
4459
|
class LoRaWANServiceProfile < Struct.new(
|
3685
|
-
:add_gw_metadata
|
4460
|
+
:add_gw_metadata,
|
4461
|
+
:dr_min,
|
4462
|
+
:dr_max)
|
3686
4463
|
SENSITIVE = []
|
3687
4464
|
include Aws::Structure
|
3688
4465
|
end
|
@@ -3714,6 +4491,19 @@ module Aws::IoTWireless
|
|
3714
4491
|
# {
|
3715
4492
|
# device_profile_id: "DeviceProfileId",
|
3716
4493
|
# service_profile_id: "ServiceProfileId",
|
4494
|
+
# abp_v1_1: {
|
4495
|
+
# f_cnt_start: 1,
|
4496
|
+
# },
|
4497
|
+
# abp_v1_0_x: {
|
4498
|
+
# f_cnt_start: 1,
|
4499
|
+
# },
|
4500
|
+
# f_ports: {
|
4501
|
+
# positioning: {
|
4502
|
+
# clock_sync: 1,
|
4503
|
+
# stream: 1,
|
4504
|
+
# gnss: 1,
|
4505
|
+
# },
|
4506
|
+
# },
|
3717
4507
|
# }
|
3718
4508
|
#
|
3719
4509
|
# @!attribute [rw] device_profile_id
|
@@ -3724,9 +4514,24 @@ module Aws::IoTWireless
|
|
3724
4514
|
# The ID of the service profile.
|
3725
4515
|
# @return [String]
|
3726
4516
|
#
|
4517
|
+
# @!attribute [rw] abp_v1_1
|
4518
|
+
# ABP device object for update APIs for v1.1
|
4519
|
+
# @return [Types::UpdateAbpV1_1]
|
4520
|
+
#
|
4521
|
+
# @!attribute [rw] abp_v1_0_x
|
4522
|
+
# ABP device object for update APIs for v1.0.x
|
4523
|
+
# @return [Types::UpdateAbpV1_0_x]
|
4524
|
+
#
|
4525
|
+
# @!attribute [rw] f_ports
|
4526
|
+
# FPorts object for the positioning information of the device.
|
4527
|
+
# @return [Types::UpdateFPorts]
|
4528
|
+
#
|
3727
4529
|
class LoRaWANUpdateDevice < Struct.new(
|
3728
4530
|
:device_profile_id,
|
3729
|
-
:service_profile_id
|
4531
|
+
:service_profile_id,
|
4532
|
+
:abp_v1_1,
|
4533
|
+
:abp_v1_0_x,
|
4534
|
+
:f_ports)
|
3730
4535
|
SENSITIVE = []
|
3731
4536
|
include Aws::Structure
|
3732
4537
|
end
|
@@ -3793,6 +4598,59 @@ module Aws::IoTWireless
|
|
3793
4598
|
include Aws::Structure
|
3794
4599
|
end
|
3795
4600
|
|
4601
|
+
# Message delivery status event configuration object for enabling and
|
4602
|
+
# disabling relevant topics.
|
4603
|
+
#
|
4604
|
+
# @note When making an API call, you may pass MessageDeliveryStatusEventConfiguration
|
4605
|
+
# data as a hash:
|
4606
|
+
#
|
4607
|
+
# {
|
4608
|
+
# sidewalk: {
|
4609
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4610
|
+
# },
|
4611
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4612
|
+
# }
|
4613
|
+
#
|
4614
|
+
# @!attribute [rw] sidewalk
|
4615
|
+
# `SidewalkEventNotificationConfigurations` object, which is the event
|
4616
|
+
# configuration object for Sidewalk-related event topics.
|
4617
|
+
# @return [Types::SidewalkEventNotificationConfigurations]
|
4618
|
+
#
|
4619
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
4620
|
+
# Enum to denote whether the wireless device id device registration
|
4621
|
+
# state event topic is enabled or disabled.
|
4622
|
+
# @return [String]
|
4623
|
+
#
|
4624
|
+
class MessageDeliveryStatusEventConfiguration < Struct.new(
|
4625
|
+
:sidewalk,
|
4626
|
+
:wireless_device_id_event_topic)
|
4627
|
+
SENSITIVE = []
|
4628
|
+
include Aws::Structure
|
4629
|
+
end
|
4630
|
+
|
4631
|
+
# Message delivery status resource type event configuration object for
|
4632
|
+
# enabling or disabling relevant topic.
|
4633
|
+
#
|
4634
|
+
# @note When making an API call, you may pass MessageDeliveryStatusResourceTypeEventConfiguration
|
4635
|
+
# data as a hash:
|
4636
|
+
#
|
4637
|
+
# {
|
4638
|
+
# sidewalk: {
|
4639
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
4640
|
+
# },
|
4641
|
+
# }
|
4642
|
+
#
|
4643
|
+
# @!attribute [rw] sidewalk
|
4644
|
+
# Sidewalk resource type event configuration object for enabling or
|
4645
|
+
# disabling topic.
|
4646
|
+
# @return [Types::SidewalkResourceTypeEventConfiguration]
|
4647
|
+
#
|
4648
|
+
class MessageDeliveryStatusResourceTypeEventConfiguration < Struct.new(
|
4649
|
+
:sidewalk)
|
4650
|
+
SENSITIVE = []
|
4651
|
+
include Aws::Structure
|
4652
|
+
end
|
4653
|
+
|
3796
4654
|
# A multicast group.
|
3797
4655
|
#
|
3798
4656
|
# @!attribute [rw] id
|
@@ -3848,6 +4706,23 @@ module Aws::IoTWireless
|
|
3848
4706
|
include Aws::Structure
|
3849
4707
|
end
|
3850
4708
|
|
4709
|
+
# Network analyzer configurations.
|
4710
|
+
#
|
4711
|
+
# @!attribute [rw] arn
|
4712
|
+
# The Amazon Resource Name of the new resource.
|
4713
|
+
# @return [String]
|
4714
|
+
#
|
4715
|
+
# @!attribute [rw] name
|
4716
|
+
# Name of the network analyzer configuration.
|
4717
|
+
# @return [String]
|
4718
|
+
#
|
4719
|
+
class NetworkAnalyzerConfigurations < Struct.new(
|
4720
|
+
:arn,
|
4721
|
+
:name)
|
4722
|
+
SENSITIVE = []
|
4723
|
+
include Aws::Structure
|
4724
|
+
end
|
4725
|
+
|
3851
4726
|
# OTAA device object for v1.0.x
|
3852
4727
|
#
|
3853
4728
|
# @note When making an API call, you may pass OtaaV1_0_x
|
@@ -3910,6 +4785,101 @@ module Aws::IoTWireless
|
|
3910
4785
|
include Aws::Structure
|
3911
4786
|
end
|
3912
4787
|
|
4788
|
+
# The wrapper for a position configuration.
|
4789
|
+
#
|
4790
|
+
# @!attribute [rw] resource_identifier
|
4791
|
+
# Resource identifier for the position configuration.
|
4792
|
+
# @return [String]
|
4793
|
+
#
|
4794
|
+
# @!attribute [rw] resource_type
|
4795
|
+
# Resource type of the resource for the position configuration.
|
4796
|
+
# @return [String]
|
4797
|
+
#
|
4798
|
+
# @!attribute [rw] solvers
|
4799
|
+
# The details of the positioning solver object used to compute the
|
4800
|
+
# location.
|
4801
|
+
# @return [Types::PositionSolverDetails]
|
4802
|
+
#
|
4803
|
+
# @!attribute [rw] destination
|
4804
|
+
# The position data destination that describes the AWS IoT rule that
|
4805
|
+
# processes the device's position data for use by AWS IoT Core for
|
4806
|
+
# LoRaWAN.
|
4807
|
+
# @return [String]
|
4808
|
+
#
|
4809
|
+
class PositionConfigurationItem < Struct.new(
|
4810
|
+
:resource_identifier,
|
4811
|
+
:resource_type,
|
4812
|
+
:solvers,
|
4813
|
+
:destination)
|
4814
|
+
SENSITIVE = []
|
4815
|
+
include Aws::Structure
|
4816
|
+
end
|
4817
|
+
|
4818
|
+
# The wrapper for position solver configurations.
|
4819
|
+
#
|
4820
|
+
# @note When making an API call, you may pass PositionSolverConfigurations
|
4821
|
+
# data as a hash:
|
4822
|
+
#
|
4823
|
+
# {
|
4824
|
+
# semtech_gnss: {
|
4825
|
+
# status: "Enabled", # required, accepts Enabled, Disabled
|
4826
|
+
# fec: "ROSE", # required, accepts ROSE, NONE
|
4827
|
+
# },
|
4828
|
+
# }
|
4829
|
+
#
|
4830
|
+
# @!attribute [rw] semtech_gnss
|
4831
|
+
# The Semtech GNSS solver configuration object.
|
4832
|
+
# @return [Types::SemtechGnssConfiguration]
|
4833
|
+
#
|
4834
|
+
class PositionSolverConfigurations < Struct.new(
|
4835
|
+
:semtech_gnss)
|
4836
|
+
SENSITIVE = []
|
4837
|
+
include Aws::Structure
|
4838
|
+
end
|
4839
|
+
|
4840
|
+
# The wrapper for position solver details.
|
4841
|
+
#
|
4842
|
+
# @!attribute [rw] semtech_gnss
|
4843
|
+
# The Semtech GNSS solver object details.
|
4844
|
+
# @return [Types::SemtechGnssDetail]
|
4845
|
+
#
|
4846
|
+
class PositionSolverDetails < Struct.new(
|
4847
|
+
:semtech_gnss)
|
4848
|
+
SENSITIVE = []
|
4849
|
+
include Aws::Structure
|
4850
|
+
end
|
4851
|
+
|
4852
|
+
# The FPorts for the position information.
|
4853
|
+
#
|
4854
|
+
# @note When making an API call, you may pass Positioning
|
4855
|
+
# data as a hash:
|
4856
|
+
#
|
4857
|
+
# {
|
4858
|
+
# clock_sync: 1,
|
4859
|
+
# stream: 1,
|
4860
|
+
# gnss: 1,
|
4861
|
+
# }
|
4862
|
+
#
|
4863
|
+
# @!attribute [rw] clock_sync
|
4864
|
+
# The Fport value.
|
4865
|
+
# @return [Integer]
|
4866
|
+
#
|
4867
|
+
# @!attribute [rw] stream
|
4868
|
+
# The Fport value.
|
4869
|
+
# @return [Integer]
|
4870
|
+
#
|
4871
|
+
# @!attribute [rw] gnss
|
4872
|
+
# The Fport value.
|
4873
|
+
# @return [Integer]
|
4874
|
+
#
|
4875
|
+
class Positioning < Struct.new(
|
4876
|
+
:clock_sync,
|
4877
|
+
:stream,
|
4878
|
+
:gnss)
|
4879
|
+
SENSITIVE = []
|
4880
|
+
include Aws::Structure
|
4881
|
+
end
|
4882
|
+
|
3913
4883
|
# Proximity event configuration object for enabling and disabling
|
3914
4884
|
# relevant topics.
|
3915
4885
|
#
|
@@ -3920,6 +4890,7 @@ module Aws::IoTWireless
|
|
3920
4890
|
# sidewalk: {
|
3921
4891
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3922
4892
|
# },
|
4893
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3923
4894
|
# }
|
3924
4895
|
#
|
3925
4896
|
# @!attribute [rw] sidewalk
|
@@ -3927,12 +4898,87 @@ module Aws::IoTWireless
|
|
3927
4898
|
# Sidewalk related event topics.
|
3928
4899
|
# @return [Types::SidewalkEventNotificationConfigurations]
|
3929
4900
|
#
|
4901
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
4902
|
+
# Enum to denote whether the wireless device id proximity event topic
|
4903
|
+
# is enabled or disabled.
|
4904
|
+
# @return [String]
|
4905
|
+
#
|
3930
4906
|
class ProximityEventConfiguration < Struct.new(
|
4907
|
+
:sidewalk,
|
4908
|
+
:wireless_device_id_event_topic)
|
4909
|
+
SENSITIVE = []
|
4910
|
+
include Aws::Structure
|
4911
|
+
end
|
4912
|
+
|
4913
|
+
# Proximity resource type event configuration object for enabling or
|
4914
|
+
# disabling topic.
|
4915
|
+
#
|
4916
|
+
# @note When making an API call, you may pass ProximityResourceTypeEventConfiguration
|
4917
|
+
# data as a hash:
|
4918
|
+
#
|
4919
|
+
# {
|
4920
|
+
# sidewalk: {
|
4921
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
4922
|
+
# },
|
4923
|
+
# }
|
4924
|
+
#
|
4925
|
+
# @!attribute [rw] sidewalk
|
4926
|
+
# Proximity resource type event configuration object for enabling and
|
4927
|
+
# disabling wireless device topic.
|
4928
|
+
# @return [Types::SidewalkResourceTypeEventConfiguration]
|
4929
|
+
#
|
4930
|
+
class ProximityResourceTypeEventConfiguration < Struct.new(
|
3931
4931
|
:sidewalk)
|
3932
4932
|
SENSITIVE = []
|
3933
4933
|
include Aws::Structure
|
3934
4934
|
end
|
3935
4935
|
|
4936
|
+
# @note When making an API call, you may pass PutPositionConfigurationRequest
|
4937
|
+
# data as a hash:
|
4938
|
+
#
|
4939
|
+
# {
|
4940
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
4941
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
4942
|
+
# solvers: {
|
4943
|
+
# semtech_gnss: {
|
4944
|
+
# status: "Enabled", # required, accepts Enabled, Disabled
|
4945
|
+
# fec: "ROSE", # required, accepts ROSE, NONE
|
4946
|
+
# },
|
4947
|
+
# },
|
4948
|
+
# destination: "DestinationName",
|
4949
|
+
# }
|
4950
|
+
#
|
4951
|
+
# @!attribute [rw] resource_identifier
|
4952
|
+
# Resource identifier used to update the position configuration.
|
4953
|
+
# @return [String]
|
4954
|
+
#
|
4955
|
+
# @!attribute [rw] resource_type
|
4956
|
+
# Resource type of the resource for which you want to update the
|
4957
|
+
# position configuration.
|
4958
|
+
# @return [String]
|
4959
|
+
#
|
4960
|
+
# @!attribute [rw] solvers
|
4961
|
+
# The positioning solvers used to update the position configuration of
|
4962
|
+
# the resource.
|
4963
|
+
# @return [Types::PositionSolverConfigurations]
|
4964
|
+
#
|
4965
|
+
# @!attribute [rw] destination
|
4966
|
+
# The position data destination that describes the AWS IoT rule that
|
4967
|
+
# processes the device's position data for use by AWS IoT Core for
|
4968
|
+
# LoRaWAN.
|
4969
|
+
# @return [String]
|
4970
|
+
#
|
4971
|
+
class PutPositionConfigurationRequest < Struct.new(
|
4972
|
+
:resource_identifier,
|
4973
|
+
:resource_type,
|
4974
|
+
:solvers,
|
4975
|
+
:destination)
|
4976
|
+
SENSITIVE = []
|
4977
|
+
include Aws::Structure
|
4978
|
+
end
|
4979
|
+
|
4980
|
+
class PutPositionConfigurationResponse < Aws::EmptyStructure; end
|
4981
|
+
|
3936
4982
|
# @note When making an API call, you may pass PutResourceLogLevelRequest
|
3937
4983
|
# data as a hash:
|
3938
4984
|
#
|
@@ -3954,7 +5000,9 @@ module Aws::IoTWireless
|
|
3954
5000
|
# @return [String]
|
3955
5001
|
#
|
3956
5002
|
# @!attribute [rw] log_level
|
3957
|
-
# The log level for a log message.
|
5003
|
+
# The log level for a log message. The log levels can be disabled, or
|
5004
|
+
# set to `ERROR` to display less verbose logs containing only error
|
5005
|
+
# information, or to `INFO` for more detailed logs.
|
3958
5006
|
# @return [String]
|
3959
5007
|
#
|
3960
5008
|
class PutResourceLogLevelRequest < Struct.new(
|
@@ -4022,6 +5070,58 @@ module Aws::IoTWireless
|
|
4022
5070
|
include Aws::Structure
|
4023
5071
|
end
|
4024
5072
|
|
5073
|
+
# Information about the Semtech GNSS solver configuration.
|
5074
|
+
#
|
5075
|
+
# @note When making an API call, you may pass SemtechGnssConfiguration
|
5076
|
+
# data as a hash:
|
5077
|
+
#
|
5078
|
+
# {
|
5079
|
+
# status: "Enabled", # required, accepts Enabled, Disabled
|
5080
|
+
# fec: "ROSE", # required, accepts ROSE, NONE
|
5081
|
+
# }
|
5082
|
+
#
|
5083
|
+
# @!attribute [rw] status
|
5084
|
+
# The status indicating whether the solver is enabled.
|
5085
|
+
# @return [String]
|
5086
|
+
#
|
5087
|
+
# @!attribute [rw] fec
|
5088
|
+
# Whether forward error correction is enabled.
|
5089
|
+
# @return [String]
|
5090
|
+
#
|
5091
|
+
class SemtechGnssConfiguration < Struct.new(
|
5092
|
+
:status,
|
5093
|
+
:fec)
|
5094
|
+
SENSITIVE = []
|
5095
|
+
include Aws::Structure
|
5096
|
+
end
|
5097
|
+
|
5098
|
+
# Details of the Semtech GNSS solver object.
|
5099
|
+
#
|
5100
|
+
# @!attribute [rw] provider
|
5101
|
+
# The vendor of the solver object.
|
5102
|
+
# @return [String]
|
5103
|
+
#
|
5104
|
+
# @!attribute [rw] type
|
5105
|
+
# The type of positioning solver used.
|
5106
|
+
# @return [String]
|
5107
|
+
#
|
5108
|
+
# @!attribute [rw] status
|
5109
|
+
# The status indicating whether the solver is enabled.
|
5110
|
+
# @return [String]
|
5111
|
+
#
|
5112
|
+
# @!attribute [rw] fec
|
5113
|
+
# Whether forward error correction is enabled.
|
5114
|
+
# @return [String]
|
5115
|
+
#
|
5116
|
+
class SemtechGnssDetail < Struct.new(
|
5117
|
+
:provider,
|
5118
|
+
:type,
|
5119
|
+
:status,
|
5120
|
+
:fec)
|
5121
|
+
SENSITIVE = []
|
5122
|
+
include Aws::Structure
|
5123
|
+
end
|
5124
|
+
|
4025
5125
|
# @note When making an API call, you may pass SendDataToMulticastGroupRequest
|
4026
5126
|
# data as a hash:
|
4027
5127
|
#
|
@@ -4079,6 +5179,7 @@ module Aws::IoTWireless
|
|
4079
5179
|
# sidewalk: {
|
4080
5180
|
# seq: 1,
|
4081
5181
|
# message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
|
5182
|
+
# ack_mode_retry_duration_secs: 1,
|
4082
5183
|
# },
|
4083
5184
|
# },
|
4084
5185
|
# }
|
@@ -4305,8 +5406,8 @@ module Aws::IoTWireless
|
|
4305
5406
|
include Aws::Structure
|
4306
5407
|
end
|
4307
5408
|
|
4308
|
-
# SidewalkEventNotificationConfigurations object
|
4309
|
-
# object for Sidewalk
|
5409
|
+
# `SidewalkEventNotificationConfigurations` object, which is the event
|
5410
|
+
# configuration object for Sidewalk-related event topics.
|
4310
5411
|
#
|
4311
5412
|
# @note When making an API call, you may pass SidewalkEventNotificationConfigurations
|
4312
5413
|
# data as a hash:
|
@@ -4352,6 +5453,27 @@ module Aws::IoTWireless
|
|
4352
5453
|
include Aws::Structure
|
4353
5454
|
end
|
4354
5455
|
|
5456
|
+
# Sidewalk resource type event configuration object for enabling or
|
5457
|
+
# disabling topic.
|
5458
|
+
#
|
5459
|
+
# @note When making an API call, you may pass SidewalkResourceTypeEventConfiguration
|
5460
|
+
# data as a hash:
|
5461
|
+
#
|
5462
|
+
# {
|
5463
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5464
|
+
# }
|
5465
|
+
#
|
5466
|
+
# @!attribute [rw] wireless_device_event_topic
|
5467
|
+
# Enum to denote whether the wireless device join event topic is
|
5468
|
+
# enabled or disabled.
|
5469
|
+
# @return [String]
|
5470
|
+
#
|
5471
|
+
class SidewalkResourceTypeEventConfiguration < Struct.new(
|
5472
|
+
:wireless_device_event_topic)
|
5473
|
+
SENSITIVE = []
|
5474
|
+
include Aws::Structure
|
5475
|
+
end
|
5476
|
+
|
4355
5477
|
# Information about a Sidewalk router.
|
4356
5478
|
#
|
4357
5479
|
# @note When making an API call, you may pass SidewalkSendDataToDevice
|
@@ -4360,6 +5482,7 @@ module Aws::IoTWireless
|
|
4360
5482
|
# {
|
4361
5483
|
# seq: 1,
|
4362
5484
|
# message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
|
5485
|
+
# ack_mode_retry_duration_secs: 1,
|
4363
5486
|
# }
|
4364
5487
|
#
|
4365
5488
|
# @!attribute [rw] seq
|
@@ -4371,9 +5494,15 @@ module Aws::IoTWireless
|
|
4371
5494
|
# `CUSTOM_COMMAND_ID_NOTIFY`.
|
4372
5495
|
# @return [String]
|
4373
5496
|
#
|
5497
|
+
# @!attribute [rw] ack_mode_retry_duration_secs
|
5498
|
+
# The duration of time in seconds for which you want to retry sending
|
5499
|
+
# the ACK.
|
5500
|
+
# @return [Integer]
|
5501
|
+
#
|
4374
5502
|
class SidewalkSendDataToDevice < Struct.new(
|
4375
5503
|
:seq,
|
4376
|
-
:message_type
|
5504
|
+
:message_type,
|
5505
|
+
:ack_mode_retry_duration_secs)
|
4377
5506
|
SENSITIVE = []
|
4378
5507
|
include Aws::Structure
|
4379
5508
|
end
|
@@ -4641,7 +5770,7 @@ module Aws::IoTWireless
|
|
4641
5770
|
include Aws::Structure
|
4642
5771
|
end
|
4643
5772
|
|
4644
|
-
# Trace
|
5773
|
+
# Trace content for your wireless gateway and wireless device resources.
|
4645
5774
|
#
|
4646
5775
|
# @note When making an API call, you may pass TraceContent
|
4647
5776
|
# data as a hash:
|
@@ -4652,11 +5781,15 @@ module Aws::IoTWireless
|
|
4652
5781
|
# }
|
4653
5782
|
#
|
4654
5783
|
# @!attribute [rw] wireless_device_frame_info
|
4655
|
-
#
|
5784
|
+
# `FrameInfo` of your wireless device resources for the trace content.
|
5785
|
+
# Use FrameInfo to debug the communication between your LoRaWAN end
|
5786
|
+
# devices and the network server.
|
4656
5787
|
# @return [String]
|
4657
5788
|
#
|
4658
5789
|
# @!attribute [rw] log_level
|
4659
|
-
# The log level for a log message.
|
5790
|
+
# The log level for a log message. The log levels can be disabled, or
|
5791
|
+
# set to `ERROR` to display less verbose logs containing only error
|
5792
|
+
# information, or to `INFO` for more detailed logs.
|
4660
5793
|
# @return [String]
|
4661
5794
|
#
|
4662
5795
|
class TraceContent < Struct.new(
|
@@ -4691,6 +5824,44 @@ module Aws::IoTWireless
|
|
4691
5824
|
|
4692
5825
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4693
5826
|
|
5827
|
+
# ABP device object for LoRaWAN specification v1.0.x
|
5828
|
+
#
|
5829
|
+
# @note When making an API call, you may pass UpdateAbpV1_0_x
|
5830
|
+
# data as a hash:
|
5831
|
+
#
|
5832
|
+
# {
|
5833
|
+
# f_cnt_start: 1,
|
5834
|
+
# }
|
5835
|
+
#
|
5836
|
+
# @!attribute [rw] f_cnt_start
|
5837
|
+
# The FCnt init value.
|
5838
|
+
# @return [Integer]
|
5839
|
+
#
|
5840
|
+
class UpdateAbpV1_0_x < Struct.new(
|
5841
|
+
:f_cnt_start)
|
5842
|
+
SENSITIVE = []
|
5843
|
+
include Aws::Structure
|
5844
|
+
end
|
5845
|
+
|
5846
|
+
# ABP device object for LoRaWAN specification v1.1
|
5847
|
+
#
|
5848
|
+
# @note When making an API call, you may pass UpdateAbpV1_1
|
5849
|
+
# data as a hash:
|
5850
|
+
#
|
5851
|
+
# {
|
5852
|
+
# f_cnt_start: 1,
|
5853
|
+
# }
|
5854
|
+
#
|
5855
|
+
# @!attribute [rw] f_cnt_start
|
5856
|
+
# The FCnt init value.
|
5857
|
+
# @return [Integer]
|
5858
|
+
#
|
5859
|
+
class UpdateAbpV1_1 < Struct.new(
|
5860
|
+
:f_cnt_start)
|
5861
|
+
SENSITIVE = []
|
5862
|
+
include Aws::Structure
|
5863
|
+
end
|
5864
|
+
|
4694
5865
|
# @note When making an API call, you may pass UpdateDestinationRequest
|
4695
5866
|
# data as a hash:
|
4696
5867
|
#
|
@@ -4734,6 +5905,97 @@ module Aws::IoTWireless
|
|
4734
5905
|
|
4735
5906
|
class UpdateDestinationResponse < Aws::EmptyStructure; end
|
4736
5907
|
|
5908
|
+
# @note When making an API call, you may pass UpdateEventConfigurationByResourceTypesRequest
|
5909
|
+
# data as a hash:
|
5910
|
+
#
|
5911
|
+
# {
|
5912
|
+
# device_registration_state: {
|
5913
|
+
# sidewalk: {
|
5914
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5915
|
+
# },
|
5916
|
+
# },
|
5917
|
+
# proximity: {
|
5918
|
+
# sidewalk: {
|
5919
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5920
|
+
# },
|
5921
|
+
# },
|
5922
|
+
# join: {
|
5923
|
+
# lo_ra_wan: {
|
5924
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5925
|
+
# },
|
5926
|
+
# },
|
5927
|
+
# connection_status: {
|
5928
|
+
# lo_ra_wan: {
|
5929
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
5930
|
+
# },
|
5931
|
+
# },
|
5932
|
+
# message_delivery_status: {
|
5933
|
+
# sidewalk: {
|
5934
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5935
|
+
# },
|
5936
|
+
# },
|
5937
|
+
# }
|
5938
|
+
#
|
5939
|
+
# @!attribute [rw] device_registration_state
|
5940
|
+
# Device registration state resource type event configuration object
|
5941
|
+
# for enabling and disabling wireless gateway topic.
|
5942
|
+
# @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
|
5943
|
+
#
|
5944
|
+
# @!attribute [rw] proximity
|
5945
|
+
# Proximity resource type event configuration object for enabling and
|
5946
|
+
# disabling wireless gateway topic.
|
5947
|
+
# @return [Types::ProximityResourceTypeEventConfiguration]
|
5948
|
+
#
|
5949
|
+
# @!attribute [rw] join
|
5950
|
+
# Join resource type event configuration object for enabling and
|
5951
|
+
# disabling wireless device topic.
|
5952
|
+
# @return [Types::JoinResourceTypeEventConfiguration]
|
5953
|
+
#
|
5954
|
+
# @!attribute [rw] connection_status
|
5955
|
+
# Connection status resource type event configuration object for
|
5956
|
+
# enabling and disabling wireless gateway topic.
|
5957
|
+
# @return [Types::ConnectionStatusResourceTypeEventConfiguration]
|
5958
|
+
#
|
5959
|
+
# @!attribute [rw] message_delivery_status
|
5960
|
+
# Message delivery status resource type event configuration object for
|
5961
|
+
# enabling and disabling wireless device topic.
|
5962
|
+
# @return [Types::MessageDeliveryStatusResourceTypeEventConfiguration]
|
5963
|
+
#
|
5964
|
+
class UpdateEventConfigurationByResourceTypesRequest < Struct.new(
|
5965
|
+
:device_registration_state,
|
5966
|
+
:proximity,
|
5967
|
+
:join,
|
5968
|
+
:connection_status,
|
5969
|
+
:message_delivery_status)
|
5970
|
+
SENSITIVE = []
|
5971
|
+
include Aws::Structure
|
5972
|
+
end
|
5973
|
+
|
5974
|
+
class UpdateEventConfigurationByResourceTypesResponse < Aws::EmptyStructure; end
|
5975
|
+
|
5976
|
+
# Object for updating the FPorts information.
|
5977
|
+
#
|
5978
|
+
# @note When making an API call, you may pass UpdateFPorts
|
5979
|
+
# data as a hash:
|
5980
|
+
#
|
5981
|
+
# {
|
5982
|
+
# positioning: {
|
5983
|
+
# clock_sync: 1,
|
5984
|
+
# stream: 1,
|
5985
|
+
# gnss: 1,
|
5986
|
+
# },
|
5987
|
+
# }
|
5988
|
+
#
|
5989
|
+
# @!attribute [rw] positioning
|
5990
|
+
# Positioning FPorts for the ClockSync, Stream, and GNSS functions.
|
5991
|
+
# @return [Types::Positioning]
|
5992
|
+
#
|
5993
|
+
class UpdateFPorts < Struct.new(
|
5994
|
+
:positioning)
|
5995
|
+
SENSITIVE = []
|
5996
|
+
include Aws::Structure
|
5997
|
+
end
|
5998
|
+
|
4737
5999
|
# @note When making an API call, you may pass UpdateFuotaTaskRequest
|
4738
6000
|
# data as a hash:
|
4739
6001
|
#
|
@@ -4818,7 +6080,9 @@ module Aws::IoTWireless
|
|
4818
6080
|
# }
|
4819
6081
|
#
|
4820
6082
|
# @!attribute [rw] default_log_level
|
4821
|
-
# The log level for a log message.
|
6083
|
+
# The log level for a log message. The log levels can be disabled, or
|
6084
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6085
|
+
# information, or to `INFO` for more detailed logs.
|
4822
6086
|
# @return [String]
|
4823
6087
|
#
|
4824
6088
|
# @!attribute [rw] wireless_device_log_options
|
@@ -4892,39 +6156,54 @@ module Aws::IoTWireless
|
|
4892
6156
|
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
4893
6157
|
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
4894
6158
|
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
6159
|
+
# description: "Description",
|
4895
6160
|
# }
|
4896
6161
|
#
|
4897
6162
|
# @!attribute [rw] configuration_name
|
4898
|
-
#
|
6163
|
+
# Name of the network analyzer configuration.
|
4899
6164
|
# @return [String]
|
4900
6165
|
#
|
4901
6166
|
# @!attribute [rw] trace_content
|
4902
|
-
# Trace
|
6167
|
+
# Trace content for your wireless gateway and wireless device
|
6168
|
+
# resources.
|
4903
6169
|
# @return [Types::TraceContent]
|
4904
6170
|
#
|
4905
6171
|
# @!attribute [rw] wireless_devices_to_add
|
4906
|
-
#
|
6172
|
+
# Wireless device resources to add to the network analyzer
|
6173
|
+
# configuration. Provide the `WirelessDeviceId` of the resource to add
|
6174
|
+
# in the input array.
|
4907
6175
|
# @return [Array<String>]
|
4908
6176
|
#
|
4909
6177
|
# @!attribute [rw] wireless_devices_to_remove
|
4910
|
-
#
|
6178
|
+
# Wireless device resources to remove from the network analyzer
|
6179
|
+
# configuration. Provide the `WirelessDeviceId` of the resources to
|
6180
|
+
# remove in the input array.
|
4911
6181
|
# @return [Array<String>]
|
4912
6182
|
#
|
4913
6183
|
# @!attribute [rw] wireless_gateways_to_add
|
4914
|
-
#
|
6184
|
+
# Wireless gateway resources to add to the network analyzer
|
6185
|
+
# configuration. Provide the `WirelessGatewayId` of the resource to
|
6186
|
+
# add in the input array.
|
4915
6187
|
# @return [Array<String>]
|
4916
6188
|
#
|
4917
6189
|
# @!attribute [rw] wireless_gateways_to_remove
|
4918
|
-
#
|
6190
|
+
# Wireless gateway resources to remove from the network analyzer
|
6191
|
+
# configuration. Provide the `WirelessGatewayId` of the resources to
|
6192
|
+
# remove in the input array.
|
4919
6193
|
# @return [Array<String>]
|
4920
6194
|
#
|
6195
|
+
# @!attribute [rw] description
|
6196
|
+
# The description of the new resource.
|
6197
|
+
# @return [String]
|
6198
|
+
#
|
4921
6199
|
class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
|
4922
6200
|
:configuration_name,
|
4923
6201
|
:trace_content,
|
4924
6202
|
:wireless_devices_to_add,
|
4925
6203
|
:wireless_devices_to_remove,
|
4926
6204
|
:wireless_gateways_to_add,
|
4927
|
-
:wireless_gateways_to_remove
|
6205
|
+
:wireless_gateways_to_remove,
|
6206
|
+
:description)
|
4928
6207
|
SENSITIVE = []
|
4929
6208
|
include Aws::Structure
|
4930
6209
|
end
|
@@ -4964,22 +6243,73 @@ module Aws::IoTWireless
|
|
4964
6243
|
|
4965
6244
|
class UpdatePartnerAccountResponse < Aws::EmptyStructure; end
|
4966
6245
|
|
6246
|
+
# @note When making an API call, you may pass UpdatePositionRequest
|
6247
|
+
# data as a hash:
|
6248
|
+
#
|
6249
|
+
# {
|
6250
|
+
# resource_identifier: "PositionResourceIdentifier", # required
|
6251
|
+
# resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
|
6252
|
+
# position: [1.0], # required
|
6253
|
+
# }
|
6254
|
+
#
|
6255
|
+
# @!attribute [rw] resource_identifier
|
6256
|
+
# Resource identifier of the resource for which position is updated.
|
6257
|
+
# @return [String]
|
6258
|
+
#
|
6259
|
+
# @!attribute [rw] resource_type
|
6260
|
+
# Resource type of the resource for which position is updated.
|
6261
|
+
# @return [String]
|
6262
|
+
#
|
6263
|
+
# @!attribute [rw] position
|
6264
|
+
# The position information of the resource.
|
6265
|
+
# @return [Array<Float>]
|
6266
|
+
#
|
6267
|
+
class UpdatePositionRequest < Struct.new(
|
6268
|
+
:resource_identifier,
|
6269
|
+
:resource_type,
|
6270
|
+
:position)
|
6271
|
+
SENSITIVE = []
|
6272
|
+
include Aws::Structure
|
6273
|
+
end
|
6274
|
+
|
6275
|
+
class UpdatePositionResponse < Aws::EmptyStructure; end
|
6276
|
+
|
4967
6277
|
# @note When making an API call, you may pass UpdateResourceEventConfigurationRequest
|
4968
6278
|
# data as a hash:
|
4969
6279
|
#
|
4970
6280
|
# {
|
4971
6281
|
# identifier: "Identifier", # required
|
4972
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
6282
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
4973
6283
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
4974
6284
|
# device_registration_state: {
|
4975
6285
|
# sidewalk: {
|
4976
6286
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4977
6287
|
# },
|
6288
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4978
6289
|
# },
|
4979
6290
|
# proximity: {
|
4980
6291
|
# sidewalk: {
|
4981
6292
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4982
6293
|
# },
|
6294
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
6295
|
+
# },
|
6296
|
+
# join: {
|
6297
|
+
# lo_ra_wan: {
|
6298
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
6299
|
+
# },
|
6300
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
6301
|
+
# },
|
6302
|
+
# connection_status: {
|
6303
|
+
# lo_ra_wan: {
|
6304
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
6305
|
+
# },
|
6306
|
+
# wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
6307
|
+
# },
|
6308
|
+
# message_delivery_status: {
|
6309
|
+
# sidewalk: {
|
6310
|
+
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
6311
|
+
# },
|
6312
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4983
6313
|
# },
|
4984
6314
|
# }
|
4985
6315
|
#
|
@@ -4994,23 +6324,38 @@ module Aws::IoTWireless
|
|
4994
6324
|
#
|
4995
6325
|
# @!attribute [rw] partner_type
|
4996
6326
|
# Partner type of the resource if the identifier type is
|
4997
|
-
# PartnerAccountId
|
6327
|
+
# `PartnerAccountId`
|
4998
6328
|
# @return [String]
|
4999
6329
|
#
|
5000
6330
|
# @!attribute [rw] device_registration_state
|
5001
|
-
# Event configuration for the device registration state event
|
6331
|
+
# Event configuration for the device registration state event.
|
5002
6332
|
# @return [Types::DeviceRegistrationStateEventConfiguration]
|
5003
6333
|
#
|
5004
6334
|
# @!attribute [rw] proximity
|
5005
|
-
# Event configuration for the
|
6335
|
+
# Event configuration for the proximity event.
|
5006
6336
|
# @return [Types::ProximityEventConfiguration]
|
5007
6337
|
#
|
6338
|
+
# @!attribute [rw] join
|
6339
|
+
# Event configuration for the join event.
|
6340
|
+
# @return [Types::JoinEventConfiguration]
|
6341
|
+
#
|
6342
|
+
# @!attribute [rw] connection_status
|
6343
|
+
# Event configuration for the connection status event.
|
6344
|
+
# @return [Types::ConnectionStatusEventConfiguration]
|
6345
|
+
#
|
6346
|
+
# @!attribute [rw] message_delivery_status
|
6347
|
+
# Event configuration for the message delivery status event.
|
6348
|
+
# @return [Types::MessageDeliveryStatusEventConfiguration]
|
6349
|
+
#
|
5008
6350
|
class UpdateResourceEventConfigurationRequest < Struct.new(
|
5009
6351
|
:identifier,
|
5010
6352
|
:identifier_type,
|
5011
6353
|
:partner_type,
|
5012
6354
|
:device_registration_state,
|
5013
|
-
:proximity
|
6355
|
+
:proximity,
|
6356
|
+
:join,
|
6357
|
+
:connection_status,
|
6358
|
+
:message_delivery_status)
|
5014
6359
|
SENSITIVE = []
|
5015
6360
|
include Aws::Structure
|
5016
6361
|
end
|
@@ -5028,6 +6373,19 @@ module Aws::IoTWireless
|
|
5028
6373
|
# lo_ra_wan: {
|
5029
6374
|
# device_profile_id: "DeviceProfileId",
|
5030
6375
|
# service_profile_id: "ServiceProfileId",
|
6376
|
+
# abp_v1_1: {
|
6377
|
+
# f_cnt_start: 1,
|
6378
|
+
# },
|
6379
|
+
# abp_v1_0_x: {
|
6380
|
+
# f_cnt_start: 1,
|
6381
|
+
# },
|
6382
|
+
# f_ports: {
|
6383
|
+
# positioning: {
|
6384
|
+
# clock_sync: 1,
|
6385
|
+
# stream: 1,
|
6386
|
+
# gnss: 1,
|
6387
|
+
# },
|
6388
|
+
# },
|
5031
6389
|
# },
|
5032
6390
|
# }
|
5033
6391
|
#
|
@@ -5208,7 +6566,9 @@ module Aws::IoTWireless
|
|
5208
6566
|
# @return [String]
|
5209
6567
|
#
|
5210
6568
|
# @!attribute [rw] log_level
|
5211
|
-
# The log level for a log message.
|
6569
|
+
# The log level for a log message. The log levels can be disabled, or
|
6570
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6571
|
+
# information, or to `INFO` for more detailed logs.
|
5212
6572
|
# @return [String]
|
5213
6573
|
#
|
5214
6574
|
class WirelessDeviceEventLogOption < Struct.new(
|
@@ -5240,7 +6600,9 @@ module Aws::IoTWireless
|
|
5240
6600
|
# @return [String]
|
5241
6601
|
#
|
5242
6602
|
# @!attribute [rw] log_level
|
5243
|
-
# The log level for a log message.
|
6603
|
+
# The log level for a log message. The log levels can be disabled, or
|
6604
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6605
|
+
# information, or to `INFO` for more detailed logs.
|
5244
6606
|
# @return [String]
|
5245
6607
|
#
|
5246
6608
|
# @!attribute [rw] events
|
@@ -5337,7 +6699,9 @@ module Aws::IoTWireless
|
|
5337
6699
|
# @return [String]
|
5338
6700
|
#
|
5339
6701
|
# @!attribute [rw] log_level
|
5340
|
-
# The log level for a log message.
|
6702
|
+
# The log level for a log message. The log levels can be disabled, or
|
6703
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6704
|
+
# information, or to `INFO` for more detailed logs.
|
5341
6705
|
# @return [String]
|
5342
6706
|
#
|
5343
6707
|
class WirelessGatewayEventLogOption < Struct.new(
|
@@ -5369,7 +6733,9 @@ module Aws::IoTWireless
|
|
5369
6733
|
# @return [String]
|
5370
6734
|
#
|
5371
6735
|
# @!attribute [rw] log_level
|
5372
|
-
# The log level for a log message.
|
6736
|
+
# The log level for a log message. The log levels can be disabled, or
|
6737
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6738
|
+
# information, or to `INFO` for more detailed logs.
|
5373
6739
|
# @return [String]
|
5374
6740
|
#
|
5375
6741
|
# @!attribute [rw] events
|
@@ -5433,6 +6799,7 @@ module Aws::IoTWireless
|
|
5433
6799
|
# sidewalk: {
|
5434
6800
|
# seq: 1,
|
5435
6801
|
# message_type: "CUSTOM_COMMAND_ID_NOTIFY", # accepts CUSTOM_COMMAND_ID_NOTIFY, CUSTOM_COMMAND_ID_GET, CUSTOM_COMMAND_ID_SET, CUSTOM_COMMAND_ID_RESP
|
6802
|
+
# ack_mode_retry_duration_secs: 1,
|
5436
6803
|
# },
|
5437
6804
|
# }
|
5438
6805
|
#
|