aws-sdk-iotwireless 1.20.0 → 1.23.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 +345 -24
- data/lib/aws-sdk-iotwireless/client_api.rb +240 -0
- data/lib/aws-sdk-iotwireless/types.rb +839 -46
- data/lib/aws-sdk-iotwireless.rb +1 -1
- metadata +4 -4
@@ -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
|
@@ -354,6 +366,59 @@ module Aws::IoTWireless
|
|
354
366
|
include Aws::Structure
|
355
367
|
end
|
356
368
|
|
369
|
+
# Connection status event configuration object for enabling or disabling
|
370
|
+
# topic.
|
371
|
+
#
|
372
|
+
# @note When making an API call, you may pass ConnectionStatusEventConfiguration
|
373
|
+
# data as a hash:
|
374
|
+
#
|
375
|
+
# {
|
376
|
+
# lo_ra_wan: {
|
377
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
378
|
+
# },
|
379
|
+
# wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
380
|
+
# }
|
381
|
+
#
|
382
|
+
# @!attribute [rw] lo_ra_wan
|
383
|
+
# Connection status event configuration object for enabling or
|
384
|
+
# disabling LoRaWAN related event topics.
|
385
|
+
# @return [Types::LoRaWANConnectionStatusEventNotificationConfigurations]
|
386
|
+
#
|
387
|
+
# @!attribute [rw] wireless_gateway_id_event_topic
|
388
|
+
# Enum to denote whether the wireless gateway id connection status
|
389
|
+
# event topic is enabled or disabled .
|
390
|
+
# @return [String]
|
391
|
+
#
|
392
|
+
class ConnectionStatusEventConfiguration < Struct.new(
|
393
|
+
:lo_ra_wan,
|
394
|
+
:wireless_gateway_id_event_topic)
|
395
|
+
SENSITIVE = []
|
396
|
+
include Aws::Structure
|
397
|
+
end
|
398
|
+
|
399
|
+
# Connection status resource type event configuration object for
|
400
|
+
# enabling or disabling topic.
|
401
|
+
#
|
402
|
+
# @note When making an API call, you may pass ConnectionStatusResourceTypeEventConfiguration
|
403
|
+
# data as a hash:
|
404
|
+
#
|
405
|
+
# {
|
406
|
+
# lo_ra_wan: {
|
407
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
408
|
+
# },
|
409
|
+
# }
|
410
|
+
#
|
411
|
+
# @!attribute [rw] lo_ra_wan
|
412
|
+
# Connection status resource type event configuration object for
|
413
|
+
# enabling or disabling LoRaWAN related event topics.
|
414
|
+
# @return [Types::LoRaWANConnectionStatusResourceTypeEventConfiguration]
|
415
|
+
#
|
416
|
+
class ConnectionStatusResourceTypeEventConfiguration < Struct.new(
|
417
|
+
:lo_ra_wan)
|
418
|
+
SENSITIVE = []
|
419
|
+
include Aws::Structure
|
420
|
+
end
|
421
|
+
|
357
422
|
# @note When making an API call, you may pass CreateDestinationRequest
|
358
423
|
# data as a hash:
|
359
424
|
#
|
@@ -670,6 +735,94 @@ module Aws::IoTWireless
|
|
670
735
|
include Aws::Structure
|
671
736
|
end
|
672
737
|
|
738
|
+
# @note When making an API call, you may pass CreateNetworkAnalyzerConfigurationRequest
|
739
|
+
# data as a hash:
|
740
|
+
#
|
741
|
+
# {
|
742
|
+
# name: "NetworkAnalyzerConfigurationName", # required
|
743
|
+
# trace_content: {
|
744
|
+
# wireless_device_frame_info: "ENABLED", # accepts ENABLED, DISABLED
|
745
|
+
# log_level: "INFO", # accepts INFO, ERROR, DISABLED
|
746
|
+
# },
|
747
|
+
# wireless_devices: ["WirelessDeviceId"],
|
748
|
+
# wireless_gateways: ["WirelessGatewayId"],
|
749
|
+
# description: "Description",
|
750
|
+
# tags: [
|
751
|
+
# {
|
752
|
+
# key: "TagKey", # required
|
753
|
+
# value: "TagValue", # required
|
754
|
+
# },
|
755
|
+
# ],
|
756
|
+
# client_request_token: "ClientRequestToken",
|
757
|
+
# }
|
758
|
+
#
|
759
|
+
# @!attribute [rw] name
|
760
|
+
# Name of the network analyzer configuration.
|
761
|
+
# @return [String]
|
762
|
+
#
|
763
|
+
# @!attribute [rw] trace_content
|
764
|
+
# Trace content for your wireless gateway and wireless device
|
765
|
+
# resources.
|
766
|
+
# @return [Types::TraceContent]
|
767
|
+
#
|
768
|
+
# @!attribute [rw] wireless_devices
|
769
|
+
# Wireless device resources to add to the network analyzer
|
770
|
+
# configuration. Provide the `WirelessDeviceId` of the resource to add
|
771
|
+
# in the input array.
|
772
|
+
# @return [Array<String>]
|
773
|
+
#
|
774
|
+
# @!attribute [rw] wireless_gateways
|
775
|
+
# Wireless gateway resources to add to the network analyzer
|
776
|
+
# configuration. Provide the `WirelessGatewayId` of the resource to
|
777
|
+
# add in the input array.
|
778
|
+
# @return [Array<String>]
|
779
|
+
#
|
780
|
+
# @!attribute [rw] description
|
781
|
+
# The description of the new resource.
|
782
|
+
# @return [String]
|
783
|
+
#
|
784
|
+
# @!attribute [rw] tags
|
785
|
+
# The tag to attach to the specified resource. Tags are metadata that
|
786
|
+
# you can use to manage a resource.
|
787
|
+
# @return [Array<Types::Tag>]
|
788
|
+
#
|
789
|
+
# @!attribute [rw] client_request_token
|
790
|
+
# Each resource must have a unique client request token. If you try to
|
791
|
+
# create a new resource with the same token as a resource that already
|
792
|
+
# exists, an exception occurs. If you omit this value, AWS SDKs will
|
793
|
+
# automatically generate a unique client request.
|
794
|
+
#
|
795
|
+
# **A suitable default value is auto-generated.** You should normally
|
796
|
+
# not need to pass this option.
|
797
|
+
# @return [String]
|
798
|
+
#
|
799
|
+
class CreateNetworkAnalyzerConfigurationRequest < Struct.new(
|
800
|
+
:name,
|
801
|
+
:trace_content,
|
802
|
+
:wireless_devices,
|
803
|
+
:wireless_gateways,
|
804
|
+
:description,
|
805
|
+
:tags,
|
806
|
+
:client_request_token)
|
807
|
+
SENSITIVE = []
|
808
|
+
include Aws::Structure
|
809
|
+
end
|
810
|
+
|
811
|
+
# @!attribute [rw] arn
|
812
|
+
# The Amazon Resource Name of the new resource.
|
813
|
+
# @return [String]
|
814
|
+
#
|
815
|
+
# @!attribute [rw] name
|
816
|
+
# Name of the network analyzer configuration.
|
817
|
+
# @return [String]
|
818
|
+
#
|
819
|
+
class CreateNetworkAnalyzerConfigurationResponse < Struct.new(
|
820
|
+
:arn,
|
821
|
+
:name)
|
822
|
+
SENSITIVE = []
|
823
|
+
include Aws::Structure
|
824
|
+
end
|
825
|
+
|
673
826
|
# @note When making an API call, you may pass CreateServiceProfileRequest
|
674
827
|
# data as a hash:
|
675
828
|
#
|
@@ -766,6 +919,7 @@ module Aws::IoTWireless
|
|
766
919
|
# nwk_s_enc_key: "NwkSEncKey",
|
767
920
|
# app_s_key: "AppSKey",
|
768
921
|
# },
|
922
|
+
# f_cnt_start: 1,
|
769
923
|
# },
|
770
924
|
# abp_v1_0_x: {
|
771
925
|
# dev_addr: "DevAddr",
|
@@ -773,6 +927,7 @@ module Aws::IoTWireless
|
|
773
927
|
# nwk_s_key: "NwkSKey",
|
774
928
|
# app_s_key: "AppSKey",
|
775
929
|
# },
|
930
|
+
# f_cnt_start: 1,
|
776
931
|
# },
|
777
932
|
# f_ports: {
|
778
933
|
# fuota: 1,
|
@@ -1129,6 +1284,25 @@ module Aws::IoTWireless
|
|
1129
1284
|
|
1130
1285
|
class DeleteMulticastGroupResponse < Aws::EmptyStructure; end
|
1131
1286
|
|
1287
|
+
# @note When making an API call, you may pass DeleteNetworkAnalyzerConfigurationRequest
|
1288
|
+
# data as a hash:
|
1289
|
+
#
|
1290
|
+
# {
|
1291
|
+
# configuration_name: "NetworkAnalyzerConfigurationName", # required
|
1292
|
+
# }
|
1293
|
+
#
|
1294
|
+
# @!attribute [rw] configuration_name
|
1295
|
+
# Name of the network analyzer configuration.
|
1296
|
+
# @return [String]
|
1297
|
+
#
|
1298
|
+
class DeleteNetworkAnalyzerConfigurationRequest < Struct.new(
|
1299
|
+
:configuration_name)
|
1300
|
+
SENSITIVE = []
|
1301
|
+
include Aws::Structure
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
class DeleteNetworkAnalyzerConfigurationResponse < Aws::EmptyStructure; end
|
1305
|
+
|
1132
1306
|
# @note When making an API call, you may pass DeleteQueuedMessagesRequest
|
1133
1307
|
# data as a hash:
|
1134
1308
|
#
|
@@ -1139,17 +1313,18 @@ module Aws::IoTWireless
|
|
1139
1313
|
# }
|
1140
1314
|
#
|
1141
1315
|
# @!attribute [rw] id
|
1142
|
-
#
|
1316
|
+
# The ID of a given wireless device for which downlink messages will
|
1317
|
+
# be deleted.
|
1143
1318
|
# @return [String]
|
1144
1319
|
#
|
1145
1320
|
# @!attribute [rw] message_id
|
1146
|
-
#
|
1147
|
-
#
|
1148
|
-
# be deleted
|
1321
|
+
# If message ID is `"*"`, it cleares the entire downlink queue for a
|
1322
|
+
# given device, specified by the wireless device ID. Otherwise, the
|
1323
|
+
# downlink message with the specified message ID will be deleted.
|
1149
1324
|
# @return [String]
|
1150
1325
|
#
|
1151
1326
|
# @!attribute [rw] wireless_device_type
|
1152
|
-
# The wireless device type,
|
1327
|
+
# The wireless device type, which can be either Sidewalk or LoRaWAN.
|
1153
1328
|
# @return [String]
|
1154
1329
|
#
|
1155
1330
|
class DeleteQueuedMessagesRequest < Struct.new(
|
@@ -1326,6 +1501,7 @@ module Aws::IoTWireless
|
|
1326
1501
|
# sidewalk: {
|
1327
1502
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
1328
1503
|
# },
|
1504
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
1329
1505
|
# }
|
1330
1506
|
#
|
1331
1507
|
# @!attribute [rw] sidewalk
|
@@ -1333,7 +1509,36 @@ module Aws::IoTWireless
|
|
1333
1509
|
# disabling Sidewalk related event topics.
|
1334
1510
|
# @return [Types::SidewalkEventNotificationConfigurations]
|
1335
1511
|
#
|
1512
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
1513
|
+
# Enum to denote whether the wireless device id device registration
|
1514
|
+
# state event topic is enabled or disabled.
|
1515
|
+
# @return [String]
|
1516
|
+
#
|
1336
1517
|
class DeviceRegistrationStateEventConfiguration < Struct.new(
|
1518
|
+
:sidewalk,
|
1519
|
+
:wireless_device_id_event_topic)
|
1520
|
+
SENSITIVE = []
|
1521
|
+
include Aws::Structure
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
# Device registration state resource type event configuration object for
|
1525
|
+
# enabling or disabling topic.
|
1526
|
+
#
|
1527
|
+
# @note When making an API call, you may pass DeviceRegistrationStateResourceTypeEventConfiguration
|
1528
|
+
# data as a hash:
|
1529
|
+
#
|
1530
|
+
# {
|
1531
|
+
# sidewalk: {
|
1532
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
1533
|
+
# },
|
1534
|
+
# }
|
1535
|
+
#
|
1536
|
+
# @!attribute [rw] sidewalk
|
1537
|
+
# Device registration resource type state event configuration object
|
1538
|
+
# for enabling or disabling Sidewalk related event topics.
|
1539
|
+
# @return [Types::SidewalkResourceTypeEventConfiguration]
|
1540
|
+
#
|
1541
|
+
class DeviceRegistrationStateResourceTypeEventConfiguration < Struct.new(
|
1337
1542
|
:sidewalk)
|
1338
1543
|
SENSITIVE = []
|
1339
1544
|
include Aws::Structure
|
@@ -1496,20 +1701,21 @@ module Aws::IoTWireless
|
|
1496
1701
|
|
1497
1702
|
class DisassociateWirelessGatewayFromThingResponse < Aws::EmptyStructure; end
|
1498
1703
|
|
1499
|
-
# The message in downlink queue.
|
1704
|
+
# The message in the downlink queue.
|
1500
1705
|
#
|
1501
1706
|
# @!attribute [rw] message_id
|
1502
|
-
# The
|
1707
|
+
# The message ID assigned by IoT Wireless to each downlink message,
|
1708
|
+
# which helps identify the message.
|
1503
1709
|
# @return [String]
|
1504
1710
|
#
|
1505
1711
|
# @!attribute [rw] transmit_mode
|
1506
|
-
# The transmit mode to use
|
1507
|
-
# be
|
1508
|
-
# mode).
|
1712
|
+
# The transmit mode to use for sending data to the wireless device.
|
1713
|
+
# This can be `0` for UM (unacknowledge mode) or `1` for AM
|
1714
|
+
# (acknowledge mode).
|
1509
1715
|
# @return [Integer]
|
1510
1716
|
#
|
1511
1717
|
# @!attribute [rw] received_at
|
1512
|
-
# The
|
1718
|
+
# The time at which Iot Wireless received the downlink message.
|
1513
1719
|
# @return [String]
|
1514
1720
|
#
|
1515
1721
|
# @!attribute [rw] lo_ra_wan
|
@@ -1525,6 +1731,65 @@ module Aws::IoTWireless
|
|
1525
1731
|
include Aws::Structure
|
1526
1732
|
end
|
1527
1733
|
|
1734
|
+
# Event configuration object for a single resource.
|
1735
|
+
#
|
1736
|
+
# @!attribute [rw] identifier
|
1737
|
+
# Resource identifier opted in for event messaging.
|
1738
|
+
# @return [String]
|
1739
|
+
#
|
1740
|
+
# @!attribute [rw] identifier_type
|
1741
|
+
# Identifier type of the particular resource identifier for event
|
1742
|
+
# configuration.
|
1743
|
+
# @return [String]
|
1744
|
+
#
|
1745
|
+
# @!attribute [rw] partner_type
|
1746
|
+
# Partner type of the resource if the identifier type is
|
1747
|
+
# PartnerAccountId.
|
1748
|
+
# @return [String]
|
1749
|
+
#
|
1750
|
+
# @!attribute [rw] events
|
1751
|
+
# Object of all event configurations and the status of the event
|
1752
|
+
# topics.
|
1753
|
+
# @return [Types::EventNotificationItemConfigurations]
|
1754
|
+
#
|
1755
|
+
class EventConfigurationItem < Struct.new(
|
1756
|
+
:identifier,
|
1757
|
+
:identifier_type,
|
1758
|
+
:partner_type,
|
1759
|
+
:events)
|
1760
|
+
SENSITIVE = []
|
1761
|
+
include Aws::Structure
|
1762
|
+
end
|
1763
|
+
|
1764
|
+
# Object of all event configurations and the status of the event topics.
|
1765
|
+
#
|
1766
|
+
# @!attribute [rw] device_registration_state
|
1767
|
+
# Device registration state event configuration for an event
|
1768
|
+
# configuration item.
|
1769
|
+
# @return [Types::DeviceRegistrationStateEventConfiguration]
|
1770
|
+
#
|
1771
|
+
# @!attribute [rw] proximity
|
1772
|
+
# Proximity event configuration for an event configuration item.
|
1773
|
+
# @return [Types::ProximityEventConfiguration]
|
1774
|
+
#
|
1775
|
+
# @!attribute [rw] join
|
1776
|
+
# Join event configuration for an event configuration item.
|
1777
|
+
# @return [Types::JoinEventConfiguration]
|
1778
|
+
#
|
1779
|
+
# @!attribute [rw] connection_status
|
1780
|
+
# Connection status event configuration for an event configuration
|
1781
|
+
# item.
|
1782
|
+
# @return [Types::ConnectionStatusEventConfiguration]
|
1783
|
+
#
|
1784
|
+
class EventNotificationItemConfigurations < Struct.new(
|
1785
|
+
:device_registration_state,
|
1786
|
+
:proximity,
|
1787
|
+
:join,
|
1788
|
+
:connection_status)
|
1789
|
+
SENSITIVE = []
|
1790
|
+
include Aws::Structure
|
1791
|
+
end
|
1792
|
+
|
1528
1793
|
# List of FPort assigned for different LoRaWAN application packages to
|
1529
1794
|
# use
|
1530
1795
|
#
|
@@ -1673,6 +1938,36 @@ module Aws::IoTWireless
|
|
1673
1938
|
include Aws::Structure
|
1674
1939
|
end
|
1675
1940
|
|
1941
|
+
# @api private
|
1942
|
+
#
|
1943
|
+
class GetEventConfigurationByResourceTypesRequest < Aws::EmptyStructure; end
|
1944
|
+
|
1945
|
+
# @!attribute [rw] device_registration_state
|
1946
|
+
# Resource type event configuration for the device registration state
|
1947
|
+
# event
|
1948
|
+
# @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
|
1949
|
+
#
|
1950
|
+
# @!attribute [rw] proximity
|
1951
|
+
# Resource type event configuration for the proximity event
|
1952
|
+
# @return [Types::ProximityResourceTypeEventConfiguration]
|
1953
|
+
#
|
1954
|
+
# @!attribute [rw] join
|
1955
|
+
# Resource type event configuration for the join event
|
1956
|
+
# @return [Types::JoinResourceTypeEventConfiguration]
|
1957
|
+
#
|
1958
|
+
# @!attribute [rw] connection_status
|
1959
|
+
# Resource type event configuration for the connection status event
|
1960
|
+
# @return [Types::ConnectionStatusResourceTypeEventConfiguration]
|
1961
|
+
#
|
1962
|
+
class GetEventConfigurationByResourceTypesResponse < Struct.new(
|
1963
|
+
:device_registration_state,
|
1964
|
+
:proximity,
|
1965
|
+
:join,
|
1966
|
+
:connection_status)
|
1967
|
+
SENSITIVE = []
|
1968
|
+
include Aws::Structure
|
1969
|
+
end
|
1970
|
+
|
1676
1971
|
# @note When making an API call, you may pass GetFuotaTaskRequest
|
1677
1972
|
# data as a hash:
|
1678
1973
|
#
|
@@ -1746,7 +2041,9 @@ module Aws::IoTWireless
|
|
1746
2041
|
class GetLogLevelsByResourceTypesRequest < Aws::EmptyStructure; end
|
1747
2042
|
|
1748
2043
|
# @!attribute [rw] default_log_level
|
1749
|
-
# The log level for a log message.
|
2044
|
+
# The log level for a log message. The log levels can be disabled, or
|
2045
|
+
# set to `ERROR` to display less verbose logs containing only error
|
2046
|
+
# information, or to `INFO` for more detailed logs.
|
1750
2047
|
# @return [String]
|
1751
2048
|
#
|
1752
2049
|
# @!attribute [rw] wireless_gateway_log_options
|
@@ -1858,7 +2155,7 @@ module Aws::IoTWireless
|
|
1858
2155
|
# }
|
1859
2156
|
#
|
1860
2157
|
# @!attribute [rw] configuration_name
|
1861
|
-
#
|
2158
|
+
# Name of the network analyzer configuration.
|
1862
2159
|
# @return [String]
|
1863
2160
|
#
|
1864
2161
|
class GetNetworkAnalyzerConfigurationRequest < Struct.new(
|
@@ -1868,21 +2165,39 @@ module Aws::IoTWireless
|
|
1868
2165
|
end
|
1869
2166
|
|
1870
2167
|
# @!attribute [rw] trace_content
|
1871
|
-
# Trace
|
2168
|
+
# Trace content for your wireless gateway and wireless device
|
2169
|
+
# resources.
|
1872
2170
|
# @return [Types::TraceContent]
|
1873
2171
|
#
|
1874
2172
|
# @!attribute [rw] wireless_devices
|
1875
|
-
# List of
|
2173
|
+
# List of wireless gateway resources that have been added to the
|
2174
|
+
# network analyzer configuration.
|
1876
2175
|
# @return [Array<String>]
|
1877
2176
|
#
|
1878
2177
|
# @!attribute [rw] wireless_gateways
|
1879
|
-
# List of
|
2178
|
+
# List of wireless gateway resources that have been added to the
|
2179
|
+
# network analyzer configuration.
|
1880
2180
|
# @return [Array<String>]
|
1881
2181
|
#
|
2182
|
+
# @!attribute [rw] description
|
2183
|
+
# The description of the new resource.
|
2184
|
+
# @return [String]
|
2185
|
+
#
|
2186
|
+
# @!attribute [rw] arn
|
2187
|
+
# The Amazon Resource Name of the new resource.
|
2188
|
+
# @return [String]
|
2189
|
+
#
|
2190
|
+
# @!attribute [rw] name
|
2191
|
+
# Name of the network analyzer configuration.
|
2192
|
+
# @return [String]
|
2193
|
+
#
|
1882
2194
|
class GetNetworkAnalyzerConfigurationResponse < Struct.new(
|
1883
2195
|
:trace_content,
|
1884
2196
|
:wireless_devices,
|
1885
|
-
:wireless_gateways
|
2197
|
+
:wireless_gateways,
|
2198
|
+
:description,
|
2199
|
+
:arn,
|
2200
|
+
:name)
|
1886
2201
|
SENSITIVE = []
|
1887
2202
|
include Aws::Structure
|
1888
2203
|
end
|
@@ -1930,7 +2245,7 @@ module Aws::IoTWireless
|
|
1930
2245
|
#
|
1931
2246
|
# {
|
1932
2247
|
# identifier: "Identifier", # required
|
1933
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
2248
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
1934
2249
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
1935
2250
|
# }
|
1936
2251
|
#
|
@@ -1964,9 +2279,19 @@ module Aws::IoTWireless
|
|
1964
2279
|
# Event configuration for the Proximity event
|
1965
2280
|
# @return [Types::ProximityEventConfiguration]
|
1966
2281
|
#
|
2282
|
+
# @!attribute [rw] join
|
2283
|
+
# Event configuration for the join event.
|
2284
|
+
# @return [Types::JoinEventConfiguration]
|
2285
|
+
#
|
2286
|
+
# @!attribute [rw] connection_status
|
2287
|
+
# Event configuration for the connection status event.
|
2288
|
+
# @return [Types::ConnectionStatusEventConfiguration]
|
2289
|
+
#
|
1967
2290
|
class GetResourceEventConfigurationResponse < Struct.new(
|
1968
2291
|
:device_registration_state,
|
1969
|
-
:proximity
|
2292
|
+
:proximity,
|
2293
|
+
:join,
|
2294
|
+
:connection_status)
|
1970
2295
|
SENSITIVE = []
|
1971
2296
|
include Aws::Structure
|
1972
2297
|
end
|
@@ -1998,7 +2323,9 @@ module Aws::IoTWireless
|
|
1998
2323
|
end
|
1999
2324
|
|
2000
2325
|
# @!attribute [rw] log_level
|
2001
|
-
# The log level for a log message.
|
2326
|
+
# The log level for a log message. The log levels can be disabled, or
|
2327
|
+
# set to `ERROR` to display less verbose logs containing only error
|
2328
|
+
# information, or to `INFO` for more detailed logs.
|
2002
2329
|
# @return [String]
|
2003
2330
|
#
|
2004
2331
|
class GetResourceLogLevelResponse < Struct.new(
|
@@ -2017,7 +2344,8 @@ module Aws::IoTWireless
|
|
2017
2344
|
# @!attribute [rw] service_type
|
2018
2345
|
# The service type for which to get endpoint information about. Can be
|
2019
2346
|
# `CUPS` for the Configuration and Update Server endpoint, or `LNS`
|
2020
|
-
# for the LoRaWAN Network Server endpoint
|
2347
|
+
# for the LoRaWAN Network Server endpoint or `CLAIM` for the global
|
2348
|
+
# endpoint.
|
2021
2349
|
# @return [String]
|
2022
2350
|
#
|
2023
2351
|
class GetServiceEndpointRequest < Struct.new(
|
@@ -2472,6 +2800,58 @@ module Aws::IoTWireless
|
|
2472
2800
|
include Aws::Structure
|
2473
2801
|
end
|
2474
2802
|
|
2803
|
+
# Join event configuration object for enabling or disabling topic.
|
2804
|
+
#
|
2805
|
+
# @note When making an API call, you may pass JoinEventConfiguration
|
2806
|
+
# data as a hash:
|
2807
|
+
#
|
2808
|
+
# {
|
2809
|
+
# lo_ra_wan: {
|
2810
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
2811
|
+
# },
|
2812
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
2813
|
+
# }
|
2814
|
+
#
|
2815
|
+
# @!attribute [rw] lo_ra_wan
|
2816
|
+
# Join event configuration object for enabling or disabling LoRaWAN
|
2817
|
+
# related event topics.
|
2818
|
+
# @return [Types::LoRaWANJoinEventNotificationConfigurations]
|
2819
|
+
#
|
2820
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
2821
|
+
# Enum to denote whether the wireless device id join event topic is
|
2822
|
+
# enabled or disabled.
|
2823
|
+
# @return [String]
|
2824
|
+
#
|
2825
|
+
class JoinEventConfiguration < Struct.new(
|
2826
|
+
:lo_ra_wan,
|
2827
|
+
:wireless_device_id_event_topic)
|
2828
|
+
SENSITIVE = []
|
2829
|
+
include Aws::Structure
|
2830
|
+
end
|
2831
|
+
|
2832
|
+
# Join resource type event configuration object for enabling or
|
2833
|
+
# disabling topic.
|
2834
|
+
#
|
2835
|
+
# @note When making an API call, you may pass JoinResourceTypeEventConfiguration
|
2836
|
+
# data as a hash:
|
2837
|
+
#
|
2838
|
+
# {
|
2839
|
+
# lo_ra_wan: {
|
2840
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
2841
|
+
# },
|
2842
|
+
# }
|
2843
|
+
#
|
2844
|
+
# @!attribute [rw] lo_ra_wan
|
2845
|
+
# Join resource type event configuration object for enabling or
|
2846
|
+
# disabling LoRaWAN related event topics.
|
2847
|
+
# @return [Types::LoRaWANJoinResourceTypeEventConfiguration]
|
2848
|
+
#
|
2849
|
+
class JoinResourceTypeEventConfiguration < Struct.new(
|
2850
|
+
:lo_ra_wan)
|
2851
|
+
SENSITIVE = []
|
2852
|
+
include Aws::Structure
|
2853
|
+
end
|
2854
|
+
|
2475
2855
|
# @note When making an API call, you may pass ListDestinationsRequest
|
2476
2856
|
# data as a hash:
|
2477
2857
|
#
|
@@ -2554,6 +2934,54 @@ module Aws::IoTWireless
|
|
2554
2934
|
include Aws::Structure
|
2555
2935
|
end
|
2556
2936
|
|
2937
|
+
# @note When making an API call, you may pass ListEventConfigurationsRequest
|
2938
|
+
# data as a hash:
|
2939
|
+
#
|
2940
|
+
# {
|
2941
|
+
# resource_type: "SidewalkAccount", # required, accepts SidewalkAccount, WirelessDevice, WirelessGateway
|
2942
|
+
# max_results: 1,
|
2943
|
+
# next_token: "NextToken",
|
2944
|
+
# }
|
2945
|
+
#
|
2946
|
+
# @!attribute [rw] resource_type
|
2947
|
+
# Resource type to filter event configurations.
|
2948
|
+
# @return [String]
|
2949
|
+
#
|
2950
|
+
# @!attribute [rw] max_results
|
2951
|
+
# The maximum number of results to return in this operation.
|
2952
|
+
# @return [Integer]
|
2953
|
+
#
|
2954
|
+
# @!attribute [rw] next_token
|
2955
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2956
|
+
# previous response; otherwise **null** to receive the first set of
|
2957
|
+
# results.
|
2958
|
+
# @return [String]
|
2959
|
+
#
|
2960
|
+
class ListEventConfigurationsRequest < Struct.new(
|
2961
|
+
:resource_type,
|
2962
|
+
:max_results,
|
2963
|
+
:next_token)
|
2964
|
+
SENSITIVE = []
|
2965
|
+
include Aws::Structure
|
2966
|
+
end
|
2967
|
+
|
2968
|
+
# @!attribute [rw] next_token
|
2969
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
2970
|
+
# previous response; otherwise **null** to receive the first set of
|
2971
|
+
# results.
|
2972
|
+
# @return [String]
|
2973
|
+
#
|
2974
|
+
# @!attribute [rw] event_configurations_list
|
2975
|
+
# Event configurations of all events for a single resource.
|
2976
|
+
# @return [Array<Types::EventConfigurationItem>]
|
2977
|
+
#
|
2978
|
+
class ListEventConfigurationsResponse < Struct.new(
|
2979
|
+
:next_token,
|
2980
|
+
:event_configurations_list)
|
2981
|
+
SENSITIVE = []
|
2982
|
+
include Aws::Structure
|
2983
|
+
end
|
2984
|
+
|
2557
2985
|
# @note When making an API call, you may pass ListFuotaTasksRequest
|
2558
2986
|
# data as a hash:
|
2559
2987
|
#
|
@@ -2686,6 +3114,47 @@ module Aws::IoTWireless
|
|
2686
3114
|
include Aws::Structure
|
2687
3115
|
end
|
2688
3116
|
|
3117
|
+
# @note When making an API call, you may pass ListNetworkAnalyzerConfigurationsRequest
|
3118
|
+
# data as a hash:
|
3119
|
+
#
|
3120
|
+
# {
|
3121
|
+
# max_results: 1,
|
3122
|
+
# next_token: "NextToken",
|
3123
|
+
# }
|
3124
|
+
#
|
3125
|
+
# @!attribute [rw] max_results
|
3126
|
+
# The maximum number of results to return in this operation.
|
3127
|
+
# @return [Integer]
|
3128
|
+
#
|
3129
|
+
# @!attribute [rw] next_token
|
3130
|
+
# To retrieve the next set of results, the `nextToken` value from a
|
3131
|
+
# previous response; otherwise **null** to receive the first set of
|
3132
|
+
# results.
|
3133
|
+
# @return [String]
|
3134
|
+
#
|
3135
|
+
class ListNetworkAnalyzerConfigurationsRequest < Struct.new(
|
3136
|
+
:max_results,
|
3137
|
+
:next_token)
|
3138
|
+
SENSITIVE = []
|
3139
|
+
include Aws::Structure
|
3140
|
+
end
|
3141
|
+
|
3142
|
+
# @!attribute [rw] next_token
|
3143
|
+
# The token to use to get the next set of results, or **null** if
|
3144
|
+
# there are no additional results.
|
3145
|
+
# @return [String]
|
3146
|
+
#
|
3147
|
+
# @!attribute [rw] network_analyzer_configuration_list
|
3148
|
+
# The list of network analyzer configurations.
|
3149
|
+
# @return [Array<Types::NetworkAnalyzerConfigurations>]
|
3150
|
+
#
|
3151
|
+
class ListNetworkAnalyzerConfigurationsResponse < Struct.new(
|
3152
|
+
:next_token,
|
3153
|
+
:network_analyzer_configuration_list)
|
3154
|
+
SENSITIVE = []
|
3155
|
+
include Aws::Structure
|
3156
|
+
end
|
3157
|
+
|
2689
3158
|
# @note When making an API call, you may pass ListPartnerAccountsRequest
|
2690
3159
|
# data as a hash:
|
2691
3160
|
#
|
@@ -2738,8 +3207,8 @@ module Aws::IoTWireless
|
|
2738
3207
|
# }
|
2739
3208
|
#
|
2740
3209
|
# @!attribute [rw] id
|
2741
|
-
#
|
2742
|
-
#
|
3210
|
+
# The ID of a given wireless device which the downlink message packets
|
3211
|
+
# are being sent.
|
2743
3212
|
# @return [String]
|
2744
3213
|
#
|
2745
3214
|
# @!attribute [rw] next_token
|
@@ -2753,7 +3222,7 @@ module Aws::IoTWireless
|
|
2753
3222
|
# @return [Integer]
|
2754
3223
|
#
|
2755
3224
|
# @!attribute [rw] wireless_device_type
|
2756
|
-
# The wireless device type,
|
3225
|
+
# The wireless device type, whic can be either Sidewalk or LoRaWAN.
|
2757
3226
|
# @return [String]
|
2758
3227
|
#
|
2759
3228
|
class ListQueuedMessagesRequest < Struct.new(
|
@@ -2772,7 +3241,7 @@ module Aws::IoTWireless
|
|
2772
3241
|
# @return [String]
|
2773
3242
|
#
|
2774
3243
|
# @!attribute [rw] downlink_queue_messages_list
|
2775
|
-
# The messages in downlink queue.
|
3244
|
+
# The messages in the downlink queue.
|
2776
3245
|
# @return [Array<Types::DownlinkQueueMessage>]
|
2777
3246
|
#
|
2778
3247
|
class ListQueuedMessagesResponse < Struct.new(
|
@@ -3021,6 +3490,48 @@ module Aws::IoTWireless
|
|
3021
3490
|
include Aws::Structure
|
3022
3491
|
end
|
3023
3492
|
|
3493
|
+
# Object for LoRaWAN connection status resource type event
|
3494
|
+
# configuration.
|
3495
|
+
#
|
3496
|
+
# @note When making an API call, you may pass LoRaWANConnectionStatusEventNotificationConfigurations
|
3497
|
+
# data as a hash:
|
3498
|
+
#
|
3499
|
+
# {
|
3500
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
3501
|
+
# }
|
3502
|
+
#
|
3503
|
+
# @!attribute [rw] gateway_eui_event_topic
|
3504
|
+
# Enum to denote whether the gateway eui connection status event topic
|
3505
|
+
# is enabled or disabled.
|
3506
|
+
# @return [String]
|
3507
|
+
#
|
3508
|
+
class LoRaWANConnectionStatusEventNotificationConfigurations < Struct.new(
|
3509
|
+
:gateway_eui_event_topic)
|
3510
|
+
SENSITIVE = []
|
3511
|
+
include Aws::Structure
|
3512
|
+
end
|
3513
|
+
|
3514
|
+
# Object for LoRaWAN connection status resource type event
|
3515
|
+
# configuration.
|
3516
|
+
#
|
3517
|
+
# @note When making an API call, you may pass LoRaWANConnectionStatusResourceTypeEventConfiguration
|
3518
|
+
# data as a hash:
|
3519
|
+
#
|
3520
|
+
# {
|
3521
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
3522
|
+
# }
|
3523
|
+
#
|
3524
|
+
# @!attribute [rw] wireless_gateway_event_topic
|
3525
|
+
# Enum to denote whether the wireless gateway connection status event
|
3526
|
+
# topic is enabled or disabled.
|
3527
|
+
# @return [String]
|
3528
|
+
#
|
3529
|
+
class LoRaWANConnectionStatusResourceTypeEventConfiguration < Struct.new(
|
3530
|
+
:wireless_gateway_event_topic)
|
3531
|
+
SENSITIVE = []
|
3532
|
+
include Aws::Structure
|
3533
|
+
end
|
3534
|
+
|
3024
3535
|
# LoRaWAN object for create functions.
|
3025
3536
|
#
|
3026
3537
|
# @note When making an API call, you may pass LoRaWANDevice
|
@@ -3048,6 +3559,7 @@ module Aws::IoTWireless
|
|
3048
3559
|
# nwk_s_enc_key: "NwkSEncKey",
|
3049
3560
|
# app_s_key: "AppSKey",
|
3050
3561
|
# },
|
3562
|
+
# f_cnt_start: 1,
|
3051
3563
|
# },
|
3052
3564
|
# abp_v1_0_x: {
|
3053
3565
|
# dev_addr: "DevAddr",
|
@@ -3055,6 +3567,7 @@ module Aws::IoTWireless
|
|
3055
3567
|
# nwk_s_key: "NwkSKey",
|
3056
3568
|
# app_s_key: "AppSKey",
|
3057
3569
|
# },
|
3570
|
+
# f_cnt_start: 1,
|
3058
3571
|
# },
|
3059
3572
|
# f_ports: {
|
3060
3573
|
# fuota: 1,
|
@@ -3527,6 +4040,46 @@ module Aws::IoTWireless
|
|
3527
4040
|
include Aws::Structure
|
3528
4041
|
end
|
3529
4042
|
|
4043
|
+
# Object for LoRaWAN join resource type event configuration.
|
4044
|
+
#
|
4045
|
+
# @note When making an API call, you may pass LoRaWANJoinEventNotificationConfigurations
|
4046
|
+
# data as a hash:
|
4047
|
+
#
|
4048
|
+
# {
|
4049
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
4050
|
+
# }
|
4051
|
+
#
|
4052
|
+
# @!attribute [rw] dev_eui_event_topic
|
4053
|
+
# Enum to denote whether the dev eui join event topic is enabled or
|
4054
|
+
# disabled.
|
4055
|
+
# @return [String]
|
4056
|
+
#
|
4057
|
+
class LoRaWANJoinEventNotificationConfigurations < Struct.new(
|
4058
|
+
:dev_eui_event_topic)
|
4059
|
+
SENSITIVE = []
|
4060
|
+
include Aws::Structure
|
4061
|
+
end
|
4062
|
+
|
4063
|
+
# Object for LoRaWAN join resource type event configuration.
|
4064
|
+
#
|
4065
|
+
# @note When making an API call, you may pass LoRaWANJoinResourceTypeEventConfiguration
|
4066
|
+
# data as a hash:
|
4067
|
+
#
|
4068
|
+
# {
|
4069
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
4070
|
+
# }
|
4071
|
+
#
|
4072
|
+
# @!attribute [rw] wireless_device_event_topic
|
4073
|
+
# Enum to denote whether the wireless device join event topic is
|
4074
|
+
# enabled or disabled.
|
4075
|
+
# @return [String]
|
4076
|
+
#
|
4077
|
+
class LoRaWANJoinResourceTypeEventConfiguration < Struct.new(
|
4078
|
+
:wireless_device_event_topic)
|
4079
|
+
SENSITIVE = []
|
4080
|
+
include Aws::Structure
|
4081
|
+
end
|
4082
|
+
|
3530
4083
|
# LoRaWAN object for list functions.
|
3531
4084
|
#
|
3532
4085
|
# @!attribute [rw] dev_eui
|
@@ -3714,6 +4267,12 @@ module Aws::IoTWireless
|
|
3714
4267
|
# {
|
3715
4268
|
# device_profile_id: "DeviceProfileId",
|
3716
4269
|
# service_profile_id: "ServiceProfileId",
|
4270
|
+
# abp_v1_1: {
|
4271
|
+
# f_cnt_start: 1,
|
4272
|
+
# },
|
4273
|
+
# abp_v1_0_x: {
|
4274
|
+
# f_cnt_start: 1,
|
4275
|
+
# },
|
3717
4276
|
# }
|
3718
4277
|
#
|
3719
4278
|
# @!attribute [rw] device_profile_id
|
@@ -3724,9 +4283,19 @@ module Aws::IoTWireless
|
|
3724
4283
|
# The ID of the service profile.
|
3725
4284
|
# @return [String]
|
3726
4285
|
#
|
4286
|
+
# @!attribute [rw] abp_v1_1
|
4287
|
+
# ABP device object for update APIs for v1.1
|
4288
|
+
# @return [Types::UpdateAbpV1_1]
|
4289
|
+
#
|
4290
|
+
# @!attribute [rw] abp_v1_0_x
|
4291
|
+
# ABP device object for update APIs for v1.0.x
|
4292
|
+
# @return [Types::UpdateAbpV1_0_x]
|
4293
|
+
#
|
3727
4294
|
class LoRaWANUpdateDevice < Struct.new(
|
3728
4295
|
:device_profile_id,
|
3729
|
-
:service_profile_id
|
4296
|
+
:service_profile_id,
|
4297
|
+
:abp_v1_1,
|
4298
|
+
:abp_v1_0_x)
|
3730
4299
|
SENSITIVE = []
|
3731
4300
|
include Aws::Structure
|
3732
4301
|
end
|
@@ -3848,6 +4417,23 @@ module Aws::IoTWireless
|
|
3848
4417
|
include Aws::Structure
|
3849
4418
|
end
|
3850
4419
|
|
4420
|
+
# Network analyzer configurations.
|
4421
|
+
#
|
4422
|
+
# @!attribute [rw] arn
|
4423
|
+
# The Amazon Resource Name of the new resource.
|
4424
|
+
# @return [String]
|
4425
|
+
#
|
4426
|
+
# @!attribute [rw] name
|
4427
|
+
# Name of the network analyzer configuration.
|
4428
|
+
# @return [String]
|
4429
|
+
#
|
4430
|
+
class NetworkAnalyzerConfigurations < Struct.new(
|
4431
|
+
:arn,
|
4432
|
+
:name)
|
4433
|
+
SENSITIVE = []
|
4434
|
+
include Aws::Structure
|
4435
|
+
end
|
4436
|
+
|
3851
4437
|
# OTAA device object for v1.0.x
|
3852
4438
|
#
|
3853
4439
|
# @note When making an API call, you may pass OtaaV1_0_x
|
@@ -3920,6 +4506,7 @@ module Aws::IoTWireless
|
|
3920
4506
|
# sidewalk: {
|
3921
4507
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3922
4508
|
# },
|
4509
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
3923
4510
|
# }
|
3924
4511
|
#
|
3925
4512
|
# @!attribute [rw] sidewalk
|
@@ -3927,7 +4514,36 @@ module Aws::IoTWireless
|
|
3927
4514
|
# Sidewalk related event topics.
|
3928
4515
|
# @return [Types::SidewalkEventNotificationConfigurations]
|
3929
4516
|
#
|
4517
|
+
# @!attribute [rw] wireless_device_id_event_topic
|
4518
|
+
# Enum to denote whether the wireless device id proximity event topic
|
4519
|
+
# is enabled or disabled.
|
4520
|
+
# @return [String]
|
4521
|
+
#
|
3930
4522
|
class ProximityEventConfiguration < Struct.new(
|
4523
|
+
:sidewalk,
|
4524
|
+
:wireless_device_id_event_topic)
|
4525
|
+
SENSITIVE = []
|
4526
|
+
include Aws::Structure
|
4527
|
+
end
|
4528
|
+
|
4529
|
+
# Proximity resource type event configuration object for enabling or
|
4530
|
+
# disabling topic.
|
4531
|
+
#
|
4532
|
+
# @note When making an API call, you may pass ProximityResourceTypeEventConfiguration
|
4533
|
+
# data as a hash:
|
4534
|
+
#
|
4535
|
+
# {
|
4536
|
+
# sidewalk: {
|
4537
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
4538
|
+
# },
|
4539
|
+
# }
|
4540
|
+
#
|
4541
|
+
# @!attribute [rw] sidewalk
|
4542
|
+
# Proximity resource type event configuration object for enabling and
|
4543
|
+
# disabling wireless device topic.
|
4544
|
+
# @return [Types::SidewalkResourceTypeEventConfiguration]
|
4545
|
+
#
|
4546
|
+
class ProximityResourceTypeEventConfiguration < Struct.new(
|
3931
4547
|
:sidewalk)
|
3932
4548
|
SENSITIVE = []
|
3933
4549
|
include Aws::Structure
|
@@ -3954,7 +4570,9 @@ module Aws::IoTWireless
|
|
3954
4570
|
# @return [String]
|
3955
4571
|
#
|
3956
4572
|
# @!attribute [rw] log_level
|
3957
|
-
# The log level for a log message.
|
4573
|
+
# The log level for a log message. The log levels can be disabled, or
|
4574
|
+
# set to `ERROR` to display less verbose logs containing only error
|
4575
|
+
# information, or to `INFO` for more detailed logs.
|
3958
4576
|
# @return [String]
|
3959
4577
|
#
|
3960
4578
|
class PutResourceLogLevelRequest < Struct.new(
|
@@ -4352,6 +4970,27 @@ module Aws::IoTWireless
|
|
4352
4970
|
include Aws::Structure
|
4353
4971
|
end
|
4354
4972
|
|
4973
|
+
# Sidewalk resource type event configuration object for enabling or
|
4974
|
+
# disabling topic.
|
4975
|
+
#
|
4976
|
+
# @note When making an API call, you may pass SidewalkResourceTypeEventConfiguration
|
4977
|
+
# data as a hash:
|
4978
|
+
#
|
4979
|
+
# {
|
4980
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
4981
|
+
# }
|
4982
|
+
#
|
4983
|
+
# @!attribute [rw] wireless_device_event_topic
|
4984
|
+
# Enum to denote whether the wireless device join event topic is
|
4985
|
+
# enabled or disabled.
|
4986
|
+
# @return [String]
|
4987
|
+
#
|
4988
|
+
class SidewalkResourceTypeEventConfiguration < Struct.new(
|
4989
|
+
:wireless_device_event_topic)
|
4990
|
+
SENSITIVE = []
|
4991
|
+
include Aws::Structure
|
4992
|
+
end
|
4993
|
+
|
4355
4994
|
# Information about a Sidewalk router.
|
4356
4995
|
#
|
4357
4996
|
# @note When making an API call, you may pass SidewalkSendDataToDevice
|
@@ -4641,7 +5280,7 @@ module Aws::IoTWireless
|
|
4641
5280
|
include Aws::Structure
|
4642
5281
|
end
|
4643
5282
|
|
4644
|
-
# Trace
|
5283
|
+
# Trace content for your wireless gateway and wireless device resources.
|
4645
5284
|
#
|
4646
5285
|
# @note When making an API call, you may pass TraceContent
|
4647
5286
|
# data as a hash:
|
@@ -4652,11 +5291,15 @@ module Aws::IoTWireless
|
|
4652
5291
|
# }
|
4653
5292
|
#
|
4654
5293
|
# @!attribute [rw] wireless_device_frame_info
|
4655
|
-
#
|
5294
|
+
# FrameInfo of your wireless device resources for the trace content.
|
5295
|
+
# Use FrameInfo to debug the communication between your LoRaWAN end
|
5296
|
+
# devices and the network server.
|
4656
5297
|
# @return [String]
|
4657
5298
|
#
|
4658
5299
|
# @!attribute [rw] log_level
|
4659
|
-
# The log level for a log message.
|
5300
|
+
# The log level for a log message. The log levels can be disabled, or
|
5301
|
+
# set to `ERROR` to display less verbose logs containing only error
|
5302
|
+
# information, or to `INFO` for more detailed logs.
|
4660
5303
|
# @return [String]
|
4661
5304
|
#
|
4662
5305
|
class TraceContent < Struct.new(
|
@@ -4691,6 +5334,44 @@ module Aws::IoTWireless
|
|
4691
5334
|
|
4692
5335
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4693
5336
|
|
5337
|
+
# ABP device object for LoRaWAN specification v1.0.x
|
5338
|
+
#
|
5339
|
+
# @note When making an API call, you may pass UpdateAbpV1_0_x
|
5340
|
+
# data as a hash:
|
5341
|
+
#
|
5342
|
+
# {
|
5343
|
+
# f_cnt_start: 1,
|
5344
|
+
# }
|
5345
|
+
#
|
5346
|
+
# @!attribute [rw] f_cnt_start
|
5347
|
+
# The FCnt init value.
|
5348
|
+
# @return [Integer]
|
5349
|
+
#
|
5350
|
+
class UpdateAbpV1_0_x < Struct.new(
|
5351
|
+
:f_cnt_start)
|
5352
|
+
SENSITIVE = []
|
5353
|
+
include Aws::Structure
|
5354
|
+
end
|
5355
|
+
|
5356
|
+
# ABP device object for LoRaWAN specification v1.1
|
5357
|
+
#
|
5358
|
+
# @note When making an API call, you may pass UpdateAbpV1_1
|
5359
|
+
# data as a hash:
|
5360
|
+
#
|
5361
|
+
# {
|
5362
|
+
# f_cnt_start: 1,
|
5363
|
+
# }
|
5364
|
+
#
|
5365
|
+
# @!attribute [rw] f_cnt_start
|
5366
|
+
# The FCnt init value.
|
5367
|
+
# @return [Integer]
|
5368
|
+
#
|
5369
|
+
class UpdateAbpV1_1 < Struct.new(
|
5370
|
+
:f_cnt_start)
|
5371
|
+
SENSITIVE = []
|
5372
|
+
include Aws::Structure
|
5373
|
+
end
|
5374
|
+
|
4694
5375
|
# @note When making an API call, you may pass UpdateDestinationRequest
|
4695
5376
|
# data as a hash:
|
4696
5377
|
#
|
@@ -4734,6 +5415,63 @@ module Aws::IoTWireless
|
|
4734
5415
|
|
4735
5416
|
class UpdateDestinationResponse < Aws::EmptyStructure; end
|
4736
5417
|
|
5418
|
+
# @note When making an API call, you may pass UpdateEventConfigurationByResourceTypesRequest
|
5419
|
+
# data as a hash:
|
5420
|
+
#
|
5421
|
+
# {
|
5422
|
+
# device_registration_state: {
|
5423
|
+
# sidewalk: {
|
5424
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5425
|
+
# },
|
5426
|
+
# },
|
5427
|
+
# proximity: {
|
5428
|
+
# sidewalk: {
|
5429
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5430
|
+
# },
|
5431
|
+
# },
|
5432
|
+
# join: {
|
5433
|
+
# lo_ra_wan: {
|
5434
|
+
# wireless_device_event_topic: "Enabled", # accepts Enabled, Disabled
|
5435
|
+
# },
|
5436
|
+
# },
|
5437
|
+
# connection_status: {
|
5438
|
+
# lo_ra_wan: {
|
5439
|
+
# wireless_gateway_event_topic: "Enabled", # accepts Enabled, Disabled
|
5440
|
+
# },
|
5441
|
+
# },
|
5442
|
+
# }
|
5443
|
+
#
|
5444
|
+
# @!attribute [rw] device_registration_state
|
5445
|
+
# Device registration state resource type event configuration object
|
5446
|
+
# for enabling and disabling wireless gateway topic.
|
5447
|
+
# @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
|
5448
|
+
#
|
5449
|
+
# @!attribute [rw] proximity
|
5450
|
+
# Proximity resource type event configuration object for enabling and
|
5451
|
+
# disabling wireless gateway topic.
|
5452
|
+
# @return [Types::ProximityResourceTypeEventConfiguration]
|
5453
|
+
#
|
5454
|
+
# @!attribute [rw] join
|
5455
|
+
# Join resource type event configuration object for enabling and
|
5456
|
+
# disabling wireless device topic.
|
5457
|
+
# @return [Types::JoinResourceTypeEventConfiguration]
|
5458
|
+
#
|
5459
|
+
# @!attribute [rw] connection_status
|
5460
|
+
# Connection status resource type event configuration object for
|
5461
|
+
# enabling and disabling wireless gateway topic.
|
5462
|
+
# @return [Types::ConnectionStatusResourceTypeEventConfiguration]
|
5463
|
+
#
|
5464
|
+
class UpdateEventConfigurationByResourceTypesRequest < Struct.new(
|
5465
|
+
:device_registration_state,
|
5466
|
+
:proximity,
|
5467
|
+
:join,
|
5468
|
+
:connection_status)
|
5469
|
+
SENSITIVE = []
|
5470
|
+
include Aws::Structure
|
5471
|
+
end
|
5472
|
+
|
5473
|
+
class UpdateEventConfigurationByResourceTypesResponse < Aws::EmptyStructure; end
|
5474
|
+
|
4737
5475
|
# @note When making an API call, you may pass UpdateFuotaTaskRequest
|
4738
5476
|
# data as a hash:
|
4739
5477
|
#
|
@@ -4818,7 +5556,9 @@ module Aws::IoTWireless
|
|
4818
5556
|
# }
|
4819
5557
|
#
|
4820
5558
|
# @!attribute [rw] default_log_level
|
4821
|
-
# The log level for a log message.
|
5559
|
+
# The log level for a log message. The log levels can be disabled, or
|
5560
|
+
# set to `ERROR` to display less verbose logs containing only error
|
5561
|
+
# information, or to `INFO` for more detailed logs.
|
4822
5562
|
# @return [String]
|
4823
5563
|
#
|
4824
5564
|
# @!attribute [rw] wireless_device_log_options
|
@@ -4892,39 +5632,54 @@ module Aws::IoTWireless
|
|
4892
5632
|
# wireless_devices_to_remove: ["WirelessDeviceId"],
|
4893
5633
|
# wireless_gateways_to_add: ["WirelessGatewayId"],
|
4894
5634
|
# wireless_gateways_to_remove: ["WirelessGatewayId"],
|
5635
|
+
# description: "Description",
|
4895
5636
|
# }
|
4896
5637
|
#
|
4897
5638
|
# @!attribute [rw] configuration_name
|
4898
|
-
#
|
5639
|
+
# Name of the network analyzer configuration.
|
4899
5640
|
# @return [String]
|
4900
5641
|
#
|
4901
5642
|
# @!attribute [rw] trace_content
|
4902
|
-
# Trace
|
5643
|
+
# Trace content for your wireless gateway and wireless device
|
5644
|
+
# resources.
|
4903
5645
|
# @return [Types::TraceContent]
|
4904
5646
|
#
|
4905
5647
|
# @!attribute [rw] wireless_devices_to_add
|
4906
|
-
#
|
5648
|
+
# Wireless device resources to add to the network analyzer
|
5649
|
+
# configuration. Provide the `WirelessDeviceId` of the resource to add
|
5650
|
+
# in the input array.
|
4907
5651
|
# @return [Array<String>]
|
4908
5652
|
#
|
4909
5653
|
# @!attribute [rw] wireless_devices_to_remove
|
4910
|
-
#
|
5654
|
+
# Wireless device resources to remove from the network analyzer
|
5655
|
+
# configuration. Provide the `WirelessDeviceId` of the resources to
|
5656
|
+
# remove in the input array.
|
4911
5657
|
# @return [Array<String>]
|
4912
5658
|
#
|
4913
5659
|
# @!attribute [rw] wireless_gateways_to_add
|
4914
|
-
#
|
5660
|
+
# Wireless gateway resources to add to the network analyzer
|
5661
|
+
# configuration. Provide the `WirelessGatewayId` of the resource to
|
5662
|
+
# add in the input array.
|
4915
5663
|
# @return [Array<String>]
|
4916
5664
|
#
|
4917
5665
|
# @!attribute [rw] wireless_gateways_to_remove
|
4918
|
-
#
|
5666
|
+
# Wireless gateway resources to remove from the network analyzer
|
5667
|
+
# configuration. Provide the `WirelessGatewayId` of the resources to
|
5668
|
+
# remove in the input array.
|
4919
5669
|
# @return [Array<String>]
|
4920
5670
|
#
|
5671
|
+
# @!attribute [rw] description
|
5672
|
+
# The description of the new resource.
|
5673
|
+
# @return [String]
|
5674
|
+
#
|
4921
5675
|
class UpdateNetworkAnalyzerConfigurationRequest < Struct.new(
|
4922
5676
|
:configuration_name,
|
4923
5677
|
:trace_content,
|
4924
5678
|
:wireless_devices_to_add,
|
4925
5679
|
:wireless_devices_to_remove,
|
4926
5680
|
:wireless_gateways_to_add,
|
4927
|
-
:wireless_gateways_to_remove
|
5681
|
+
:wireless_gateways_to_remove,
|
5682
|
+
:description)
|
4928
5683
|
SENSITIVE = []
|
4929
5684
|
include Aws::Structure
|
4930
5685
|
end
|
@@ -4969,17 +5724,31 @@ module Aws::IoTWireless
|
|
4969
5724
|
#
|
4970
5725
|
# {
|
4971
5726
|
# identifier: "Identifier", # required
|
4972
|
-
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId
|
5727
|
+
# identifier_type: "PartnerAccountId", # required, accepts PartnerAccountId, DevEui, GatewayEui, WirelessDeviceId, WirelessGatewayId
|
4973
5728
|
# partner_type: "Sidewalk", # accepts Sidewalk
|
4974
5729
|
# device_registration_state: {
|
4975
5730
|
# sidewalk: {
|
4976
5731
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4977
5732
|
# },
|
5733
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4978
5734
|
# },
|
4979
5735
|
# proximity: {
|
4980
5736
|
# sidewalk: {
|
4981
5737
|
# amazon_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4982
5738
|
# },
|
5739
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
5740
|
+
# },
|
5741
|
+
# join: {
|
5742
|
+
# lo_ra_wan: {
|
5743
|
+
# dev_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
5744
|
+
# },
|
5745
|
+
# wireless_device_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
5746
|
+
# },
|
5747
|
+
# connection_status: {
|
5748
|
+
# lo_ra_wan: {
|
5749
|
+
# gateway_eui_event_topic: "Enabled", # accepts Enabled, Disabled
|
5750
|
+
# },
|
5751
|
+
# wireless_gateway_id_event_topic: "Enabled", # accepts Enabled, Disabled
|
4983
5752
|
# },
|
4984
5753
|
# }
|
4985
5754
|
#
|
@@ -5005,12 +5774,22 @@ module Aws::IoTWireless
|
|
5005
5774
|
# Event configuration for the Proximity event
|
5006
5775
|
# @return [Types::ProximityEventConfiguration]
|
5007
5776
|
#
|
5777
|
+
# @!attribute [rw] join
|
5778
|
+
# Event configuration for the join event
|
5779
|
+
# @return [Types::JoinEventConfiguration]
|
5780
|
+
#
|
5781
|
+
# @!attribute [rw] connection_status
|
5782
|
+
# Event configuration for the connection status event
|
5783
|
+
# @return [Types::ConnectionStatusEventConfiguration]
|
5784
|
+
#
|
5008
5785
|
class UpdateResourceEventConfigurationRequest < Struct.new(
|
5009
5786
|
:identifier,
|
5010
5787
|
:identifier_type,
|
5011
5788
|
:partner_type,
|
5012
5789
|
:device_registration_state,
|
5013
|
-
:proximity
|
5790
|
+
:proximity,
|
5791
|
+
:join,
|
5792
|
+
:connection_status)
|
5014
5793
|
SENSITIVE = []
|
5015
5794
|
include Aws::Structure
|
5016
5795
|
end
|
@@ -5028,6 +5807,12 @@ module Aws::IoTWireless
|
|
5028
5807
|
# lo_ra_wan: {
|
5029
5808
|
# device_profile_id: "DeviceProfileId",
|
5030
5809
|
# service_profile_id: "ServiceProfileId",
|
5810
|
+
# abp_v1_1: {
|
5811
|
+
# f_cnt_start: 1,
|
5812
|
+
# },
|
5813
|
+
# abp_v1_0_x: {
|
5814
|
+
# f_cnt_start: 1,
|
5815
|
+
# },
|
5031
5816
|
# },
|
5032
5817
|
# }
|
5033
5818
|
#
|
@@ -5208,7 +5993,9 @@ module Aws::IoTWireless
|
|
5208
5993
|
# @return [String]
|
5209
5994
|
#
|
5210
5995
|
# @!attribute [rw] log_level
|
5211
|
-
# The log level for a log message.
|
5996
|
+
# The log level for a log message. The log levels can be disabled, or
|
5997
|
+
# set to `ERROR` to display less verbose logs containing only error
|
5998
|
+
# information, or to `INFO` for more detailed logs.
|
5212
5999
|
# @return [String]
|
5213
6000
|
#
|
5214
6001
|
class WirelessDeviceEventLogOption < Struct.new(
|
@@ -5240,7 +6027,9 @@ module Aws::IoTWireless
|
|
5240
6027
|
# @return [String]
|
5241
6028
|
#
|
5242
6029
|
# @!attribute [rw] log_level
|
5243
|
-
# The log level for a log message.
|
6030
|
+
# The log level for a log message. The log levels can be disabled, or
|
6031
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6032
|
+
# information, or to `INFO` for more detailed logs.
|
5244
6033
|
# @return [String]
|
5245
6034
|
#
|
5246
6035
|
# @!attribute [rw] events
|
@@ -5337,7 +6126,9 @@ module Aws::IoTWireless
|
|
5337
6126
|
# @return [String]
|
5338
6127
|
#
|
5339
6128
|
# @!attribute [rw] log_level
|
5340
|
-
# The log level for a log message.
|
6129
|
+
# The log level for a log message. The log levels can be disabled, or
|
6130
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6131
|
+
# information, or to `INFO` for more detailed logs.
|
5341
6132
|
# @return [String]
|
5342
6133
|
#
|
5343
6134
|
class WirelessGatewayEventLogOption < Struct.new(
|
@@ -5369,7 +6160,9 @@ module Aws::IoTWireless
|
|
5369
6160
|
# @return [String]
|
5370
6161
|
#
|
5371
6162
|
# @!attribute [rw] log_level
|
5372
|
-
# The log level for a log message.
|
6163
|
+
# The log level for a log message. The log levels can be disabled, or
|
6164
|
+
# set to `ERROR` to display less verbose logs containing only error
|
6165
|
+
# information, or to `INFO` for more detailed logs.
|
5373
6166
|
# @return [String]
|
5374
6167
|
#
|
5375
6168
|
# @!attribute [rw] events
|