aws-sdk-iotwireless 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -91,6 +91,27 @@ module Aws::IoTWireless
91
91
  include Aws::Structure
92
92
  end
93
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
+
94
115
  # @note When making an API call, you may pass AssociateAwsAccountWithPartnerAccountRequest
95
116
  # data as a hash:
96
117
  #
@@ -385,8 +406,8 @@ module Aws::IoTWireless
385
406
  # @return [Types::LoRaWANConnectionStatusEventNotificationConfigurations]
386
407
  #
387
408
  # @!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 .
409
+ # Enum to denote whether the wireless gateway ID connection status
410
+ # event topic is enabled or disabled.
390
411
  # @return [String]
391
412
  #
392
413
  class ConnectionStatusEventConfiguration < Struct.new(
@@ -933,6 +954,11 @@ module Aws::IoTWireless
933
954
  # fuota: 1,
934
955
  # multicast: 1,
935
956
  # clock_sync: 1,
957
+ # positioning: {
958
+ # clock_sync: 1,
959
+ # stream: 1,
960
+ # gnss: 1,
961
+ # },
936
962
  # },
937
963
  # },
938
964
  # tags: [
@@ -1800,6 +1826,11 @@ module Aws::IoTWireless
1800
1826
  # fuota: 1,
1801
1827
  # multicast: 1,
1802
1828
  # clock_sync: 1,
1829
+ # positioning: {
1830
+ # clock_sync: 1,
1831
+ # stream: 1,
1832
+ # gnss: 1,
1833
+ # },
1803
1834
  # }
1804
1835
  #
1805
1836
  # @!attribute [rw] fuota
@@ -1814,10 +1845,16 @@ module Aws::IoTWireless
1814
1845
  # The Fport value.
1815
1846
  # @return [Integer]
1816
1847
  #
1848
+ # @!attribute [rw] positioning
1849
+ # FPort values for the GNSS, stream, and ClockSync functions of the
1850
+ # positioning information.
1851
+ # @return [Types::Positioning]
1852
+ #
1817
1853
  class FPorts < Struct.new(
1818
1854
  :fuota,
1819
1855
  :multicast,
1820
- :clock_sync)
1856
+ :clock_sync,
1857
+ :positioning)
1821
1858
  SENSITIVE = []
1822
1859
  include Aws::Structure
1823
1860
  end
@@ -1944,19 +1981,19 @@ module Aws::IoTWireless
1944
1981
 
1945
1982
  # @!attribute [rw] device_registration_state
1946
1983
  # Resource type event configuration for the device registration state
1947
- # event
1984
+ # event.
1948
1985
  # @return [Types::DeviceRegistrationStateResourceTypeEventConfiguration]
1949
1986
  #
1950
1987
  # @!attribute [rw] proximity
1951
- # Resource type event configuration for the proximity event
1988
+ # Resource type event configuration for the proximity event.
1952
1989
  # @return [Types::ProximityResourceTypeEventConfiguration]
1953
1990
  #
1954
1991
  # @!attribute [rw] join
1955
- # Resource type event configuration for the join event
1992
+ # Resource type event configuration for the join event.
1956
1993
  # @return [Types::JoinResourceTypeEventConfiguration]
1957
1994
  #
1958
1995
  # @!attribute [rw] connection_status
1959
- # Resource type event configuration for the connection status event
1996
+ # Resource type event configuration for the connection status event.
1960
1997
  # @return [Types::ConnectionStatusResourceTypeEventConfiguration]
1961
1998
  #
1962
1999
  class GetEventConfigurationByResourceTypesResponse < Struct.new(
@@ -2240,6 +2277,110 @@ module Aws::IoTWireless
2240
2277
  include Aws::Structure
2241
2278
  end
2242
2279
 
2280
+ # @note When making an API call, you may pass GetPositionConfigurationRequest
2281
+ # data as a hash:
2282
+ #
2283
+ # {
2284
+ # resource_identifier: "PositionResourceIdentifier", # required
2285
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
2286
+ # }
2287
+ #
2288
+ # @!attribute [rw] resource_identifier
2289
+ # Resource identifier used in a position configuration.
2290
+ # @return [String]
2291
+ #
2292
+ # @!attribute [rw] resource_type
2293
+ # Resource type of the resource for which position configuration is
2294
+ # retrieved.
2295
+ # @return [String]
2296
+ #
2297
+ class GetPositionConfigurationRequest < Struct.new(
2298
+ :resource_identifier,
2299
+ :resource_type)
2300
+ SENSITIVE = []
2301
+ include Aws::Structure
2302
+ end
2303
+
2304
+ # @!attribute [rw] solvers
2305
+ # The wrapper for the solver configuration details object.
2306
+ # @return [Types::PositionSolverDetails]
2307
+ #
2308
+ # @!attribute [rw] destination
2309
+ # The position data destination that describes the AWS IoT rule that
2310
+ # processes the device's position data for use by AWS IoT Core for
2311
+ # LoRaWAN.
2312
+ # @return [String]
2313
+ #
2314
+ class GetPositionConfigurationResponse < Struct.new(
2315
+ :solvers,
2316
+ :destination)
2317
+ SENSITIVE = []
2318
+ include Aws::Structure
2319
+ end
2320
+
2321
+ # @note When making an API call, you may pass GetPositionRequest
2322
+ # data as a hash:
2323
+ #
2324
+ # {
2325
+ # resource_identifier: "PositionResourceIdentifier", # required
2326
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
2327
+ # }
2328
+ #
2329
+ # @!attribute [rw] resource_identifier
2330
+ # Resource identifier used to retrieve the position information.
2331
+ # @return [String]
2332
+ #
2333
+ # @!attribute [rw] resource_type
2334
+ # Resource type of the resource for which position information is
2335
+ # retrieved.
2336
+ # @return [String]
2337
+ #
2338
+ class GetPositionRequest < Struct.new(
2339
+ :resource_identifier,
2340
+ :resource_type)
2341
+ SENSITIVE = []
2342
+ include Aws::Structure
2343
+ end
2344
+
2345
+ # @!attribute [rw] position
2346
+ # The position information of the resource.
2347
+ # @return [Array<Float>]
2348
+ #
2349
+ # @!attribute [rw] accuracy
2350
+ # The accuracy of the estimated position in meters. An empty value
2351
+ # indicates that no position data is available. A value of ‘0.0’ value
2352
+ # indicates that position data is available. This data corresponds to
2353
+ # the position information that you specified instead of the position
2354
+ # computed by solver.
2355
+ # @return [Types::Accuracy]
2356
+ #
2357
+ # @!attribute [rw] solver_type
2358
+ # The type of solver used to identify the position of the resource.
2359
+ # @return [String]
2360
+ #
2361
+ # @!attribute [rw] solver_provider
2362
+ # The vendor of the positioning solver.
2363
+ # @return [String]
2364
+ #
2365
+ # @!attribute [rw] solver_version
2366
+ # The version of the positioning solver.
2367
+ # @return [String]
2368
+ #
2369
+ # @!attribute [rw] timestamp
2370
+ # The timestamp at which the device's position was determined.
2371
+ # @return [String]
2372
+ #
2373
+ class GetPositionResponse < Struct.new(
2374
+ :position,
2375
+ :accuracy,
2376
+ :solver_type,
2377
+ :solver_provider,
2378
+ :solver_version,
2379
+ :timestamp)
2380
+ SENSITIVE = []
2381
+ include Aws::Structure
2382
+ end
2383
+
2243
2384
  # @note When making an API call, you may pass GetResourceEventConfigurationRequest
2244
2385
  # data as a hash:
2245
2386
  #
@@ -2260,7 +2401,7 @@ module Aws::IoTWireless
2260
2401
  #
2261
2402
  # @!attribute [rw] partner_type
2262
2403
  # Partner type of the resource if the identifier type is
2263
- # PartnerAccountId.
2404
+ # `PartnerAccountId`.
2264
2405
  # @return [String]
2265
2406
  #
2266
2407
  class GetResourceEventConfigurationRequest < Struct.new(
@@ -2272,11 +2413,11 @@ module Aws::IoTWireless
2272
2413
  end
2273
2414
 
2274
2415
  # @!attribute [rw] device_registration_state
2275
- # Event configuration for the device registration state event
2416
+ # Event configuration for the device registration state event.
2276
2417
  # @return [Types::DeviceRegistrationStateEventConfiguration]
2277
2418
  #
2278
2419
  # @!attribute [rw] proximity
2279
- # Event configuration for the Proximity event
2420
+ # Event configuration for the proximity event.
2280
2421
  # @return [Types::ProximityEventConfiguration]
2281
2422
  #
2282
2423
  # @!attribute [rw] join
@@ -3196,6 +3337,53 @@ module Aws::IoTWireless
3196
3337
  include Aws::Structure
3197
3338
  end
3198
3339
 
3340
+ # @note When making an API call, you may pass ListPositionConfigurationsRequest
3341
+ # data as a hash:
3342
+ #
3343
+ # {
3344
+ # resource_type: "WirelessDevice", # accepts WirelessDevice, WirelessGateway
3345
+ # max_results: 1,
3346
+ # next_token: "NextToken",
3347
+ # }
3348
+ #
3349
+ # @!attribute [rw] resource_type
3350
+ # Resource type for which position configurations are listed.
3351
+ # @return [String]
3352
+ #
3353
+ # @!attribute [rw] max_results
3354
+ # The maximum number of results to return in this operation.
3355
+ # @return [Integer]
3356
+ #
3357
+ # @!attribute [rw] next_token
3358
+ # To retrieve the next set of results, the `nextToken` value from a
3359
+ # previous response; otherwise **null** to receive the first set of
3360
+ # results.
3361
+ # @return [String]
3362
+ #
3363
+ class ListPositionConfigurationsRequest < Struct.new(
3364
+ :resource_type,
3365
+ :max_results,
3366
+ :next_token)
3367
+ SENSITIVE = []
3368
+ include Aws::Structure
3369
+ end
3370
+
3371
+ # @!attribute [rw] position_configuration_list
3372
+ # A list of position configurations.
3373
+ # @return [Array<Types::PositionConfigurationItem>]
3374
+ #
3375
+ # @!attribute [rw] next_token
3376
+ # The token to use to get the next set of results, or **null** if
3377
+ # there are no additional results.
3378
+ # @return [String]
3379
+ #
3380
+ class ListPositionConfigurationsResponse < Struct.new(
3381
+ :position_configuration_list,
3382
+ :next_token)
3383
+ SENSITIVE = []
3384
+ include Aws::Structure
3385
+ end
3386
+
3199
3387
  # @note When making an API call, you may pass ListQueuedMessagesRequest
3200
3388
  # data as a hash:
3201
3389
  #
@@ -3501,7 +3689,7 @@ module Aws::IoTWireless
3501
3689
  # }
3502
3690
  #
3503
3691
  # @!attribute [rw] gateway_eui_event_topic
3504
- # Enum to denote whether the gateway eui connection status event topic
3692
+ # Enum to denote whether the gateway EUI connection status event topic
3505
3693
  # is enabled or disabled.
3506
3694
  # @return [String]
3507
3695
  #
@@ -3573,6 +3761,11 @@ module Aws::IoTWireless
3573
3761
  # fuota: 1,
3574
3762
  # multicast: 1,
3575
3763
  # clock_sync: 1,
3764
+ # positioning: {
3765
+ # clock_sync: 1,
3766
+ # stream: 1,
3767
+ # gnss: 1,
3768
+ # },
3576
3769
  # },
3577
3770
  # }
3578
3771
  #
@@ -4050,7 +4243,7 @@ module Aws::IoTWireless
4050
4243
  # }
4051
4244
  #
4052
4245
  # @!attribute [rw] dev_eui_event_topic
4053
- # Enum to denote whether the dev eui join event topic is enabled or
4246
+ # Enum to denote whether the Dev EUI join event topic is enabled or
4054
4247
  # disabled.
4055
4248
  # @return [String]
4056
4249
  #
@@ -4273,6 +4466,13 @@ module Aws::IoTWireless
4273
4466
  # abp_v1_0_x: {
4274
4467
  # f_cnt_start: 1,
4275
4468
  # },
4469
+ # f_ports: {
4470
+ # positioning: {
4471
+ # clock_sync: 1,
4472
+ # stream: 1,
4473
+ # gnss: 1,
4474
+ # },
4475
+ # },
4276
4476
  # }
4277
4477
  #
4278
4478
  # @!attribute [rw] device_profile_id
@@ -4291,11 +4491,16 @@ module Aws::IoTWireless
4291
4491
  # ABP device object for update APIs for v1.0.x
4292
4492
  # @return [Types::UpdateAbpV1_0_x]
4293
4493
  #
4494
+ # @!attribute [rw] f_ports
4495
+ # FPorts object for the positioning information of the device.
4496
+ # @return [Types::UpdateFPorts]
4497
+ #
4294
4498
  class LoRaWANUpdateDevice < Struct.new(
4295
4499
  :device_profile_id,
4296
4500
  :service_profile_id,
4297
4501
  :abp_v1_1,
4298
- :abp_v1_0_x)
4502
+ :abp_v1_0_x,
4503
+ :f_ports)
4299
4504
  SENSITIVE = []
4300
4505
  include Aws::Structure
4301
4506
  end
@@ -4496,6 +4701,101 @@ module Aws::IoTWireless
4496
4701
  include Aws::Structure
4497
4702
  end
4498
4703
 
4704
+ # The wrapper for a position configuration.
4705
+ #
4706
+ # @!attribute [rw] resource_identifier
4707
+ # Resource identifier for the position configuration.
4708
+ # @return [String]
4709
+ #
4710
+ # @!attribute [rw] resource_type
4711
+ # Resource type of the resource for the position configuration.
4712
+ # @return [String]
4713
+ #
4714
+ # @!attribute [rw] solvers
4715
+ # The details of the positioning solver object used to compute the
4716
+ # location.
4717
+ # @return [Types::PositionSolverDetails]
4718
+ #
4719
+ # @!attribute [rw] destination
4720
+ # The position data destination that describes the AWS IoT rule that
4721
+ # processes the device's position data for use by AWS IoT Core for
4722
+ # LoRaWAN.
4723
+ # @return [String]
4724
+ #
4725
+ class PositionConfigurationItem < Struct.new(
4726
+ :resource_identifier,
4727
+ :resource_type,
4728
+ :solvers,
4729
+ :destination)
4730
+ SENSITIVE = []
4731
+ include Aws::Structure
4732
+ end
4733
+
4734
+ # The wrapper for position solver configurations.
4735
+ #
4736
+ # @note When making an API call, you may pass PositionSolverConfigurations
4737
+ # data as a hash:
4738
+ #
4739
+ # {
4740
+ # semtech_gnss: {
4741
+ # status: "Enabled", # required, accepts Enabled, Disabled
4742
+ # fec: "ROSE", # required, accepts ROSE, NONE
4743
+ # },
4744
+ # }
4745
+ #
4746
+ # @!attribute [rw] semtech_gnss
4747
+ # The Semtech GNSS solver configuration object.
4748
+ # @return [Types::SemtechGnssConfiguration]
4749
+ #
4750
+ class PositionSolverConfigurations < Struct.new(
4751
+ :semtech_gnss)
4752
+ SENSITIVE = []
4753
+ include Aws::Structure
4754
+ end
4755
+
4756
+ # The wrapper for position solver details.
4757
+ #
4758
+ # @!attribute [rw] semtech_gnss
4759
+ # The Semtech GNSS solver object details.
4760
+ # @return [Types::SemtechGnssDetail]
4761
+ #
4762
+ class PositionSolverDetails < Struct.new(
4763
+ :semtech_gnss)
4764
+ SENSITIVE = []
4765
+ include Aws::Structure
4766
+ end
4767
+
4768
+ # The FPorts for the position information.
4769
+ #
4770
+ # @note When making an API call, you may pass Positioning
4771
+ # data as a hash:
4772
+ #
4773
+ # {
4774
+ # clock_sync: 1,
4775
+ # stream: 1,
4776
+ # gnss: 1,
4777
+ # }
4778
+ #
4779
+ # @!attribute [rw] clock_sync
4780
+ # The Fport value.
4781
+ # @return [Integer]
4782
+ #
4783
+ # @!attribute [rw] stream
4784
+ # The Fport value.
4785
+ # @return [Integer]
4786
+ #
4787
+ # @!attribute [rw] gnss
4788
+ # The Fport value.
4789
+ # @return [Integer]
4790
+ #
4791
+ class Positioning < Struct.new(
4792
+ :clock_sync,
4793
+ :stream,
4794
+ :gnss)
4795
+ SENSITIVE = []
4796
+ include Aws::Structure
4797
+ end
4798
+
4499
4799
  # Proximity event configuration object for enabling and disabling
4500
4800
  # relevant topics.
4501
4801
  #
@@ -4549,6 +4849,52 @@ module Aws::IoTWireless
4549
4849
  include Aws::Structure
4550
4850
  end
4551
4851
 
4852
+ # @note When making an API call, you may pass PutPositionConfigurationRequest
4853
+ # data as a hash:
4854
+ #
4855
+ # {
4856
+ # resource_identifier: "PositionResourceIdentifier", # required
4857
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
4858
+ # solvers: {
4859
+ # semtech_gnss: {
4860
+ # status: "Enabled", # required, accepts Enabled, Disabled
4861
+ # fec: "ROSE", # required, accepts ROSE, NONE
4862
+ # },
4863
+ # },
4864
+ # destination: "DestinationName",
4865
+ # }
4866
+ #
4867
+ # @!attribute [rw] resource_identifier
4868
+ # Resource identifier used to update the position configuration.
4869
+ # @return [String]
4870
+ #
4871
+ # @!attribute [rw] resource_type
4872
+ # Resource type of the resource for which you want to update the
4873
+ # position configuration.
4874
+ # @return [String]
4875
+ #
4876
+ # @!attribute [rw] solvers
4877
+ # The positioning solvers used to update the position configuration of
4878
+ # the resource.
4879
+ # @return [Types::PositionSolverConfigurations]
4880
+ #
4881
+ # @!attribute [rw] destination
4882
+ # The position data destination that describes the AWS IoT rule that
4883
+ # processes the device's position data for use by AWS IoT Core for
4884
+ # LoRaWAN.
4885
+ # @return [String]
4886
+ #
4887
+ class PutPositionConfigurationRequest < Struct.new(
4888
+ :resource_identifier,
4889
+ :resource_type,
4890
+ :solvers,
4891
+ :destination)
4892
+ SENSITIVE = []
4893
+ include Aws::Structure
4894
+ end
4895
+
4896
+ class PutPositionConfigurationResponse < Aws::EmptyStructure; end
4897
+
4552
4898
  # @note When making an API call, you may pass PutResourceLogLevelRequest
4553
4899
  # data as a hash:
4554
4900
  #
@@ -4640,6 +4986,58 @@ module Aws::IoTWireless
4640
4986
  include Aws::Structure
4641
4987
  end
4642
4988
 
4989
+ # Information about the Semtech GNSS solver configuration.
4990
+ #
4991
+ # @note When making an API call, you may pass SemtechGnssConfiguration
4992
+ # data as a hash:
4993
+ #
4994
+ # {
4995
+ # status: "Enabled", # required, accepts Enabled, Disabled
4996
+ # fec: "ROSE", # required, accepts ROSE, NONE
4997
+ # }
4998
+ #
4999
+ # @!attribute [rw] status
5000
+ # The status indicating whether the solver is enabled.
5001
+ # @return [String]
5002
+ #
5003
+ # @!attribute [rw] fec
5004
+ # Whether forward error correction is enabled.
5005
+ # @return [String]
5006
+ #
5007
+ class SemtechGnssConfiguration < Struct.new(
5008
+ :status,
5009
+ :fec)
5010
+ SENSITIVE = []
5011
+ include Aws::Structure
5012
+ end
5013
+
5014
+ # Details of the Semtech GNSS solver object.
5015
+ #
5016
+ # @!attribute [rw] provider
5017
+ # The vendor of the solver object.
5018
+ # @return [String]
5019
+ #
5020
+ # @!attribute [rw] type
5021
+ # The type of positioning solver used.
5022
+ # @return [String]
5023
+ #
5024
+ # @!attribute [rw] status
5025
+ # The status indicating whether the solver is enabled.
5026
+ # @return [String]
5027
+ #
5028
+ # @!attribute [rw] fec
5029
+ # Whether forward error correction is enabled.
5030
+ # @return [String]
5031
+ #
5032
+ class SemtechGnssDetail < Struct.new(
5033
+ :provider,
5034
+ :type,
5035
+ :status,
5036
+ :fec)
5037
+ SENSITIVE = []
5038
+ include Aws::Structure
5039
+ end
5040
+
4643
5041
  # @note When making an API call, you may pass SendDataToMulticastGroupRequest
4644
5042
  # data as a hash:
4645
5043
  #
@@ -4923,8 +5321,8 @@ module Aws::IoTWireless
4923
5321
  include Aws::Structure
4924
5322
  end
4925
5323
 
4926
- # SidewalkEventNotificationConfigurations object Event configuration
4927
- # object for Sidewalk related event topics.
5324
+ # `SidewalkEventNotificationConfigurations` object, which is the event
5325
+ # configuration object for Sidewalk-related event topics.
4928
5326
  #
4929
5327
  # @note When making an API call, you may pass SidewalkEventNotificationConfigurations
4930
5328
  # data as a hash:
@@ -5291,7 +5689,7 @@ module Aws::IoTWireless
5291
5689
  # }
5292
5690
  #
5293
5691
  # @!attribute [rw] wireless_device_frame_info
5294
- # FrameInfo of your wireless device resources for the trace content.
5692
+ # `FrameInfo` of your wireless device resources for the trace content.
5295
5693
  # Use FrameInfo to debug the communication between your LoRaWAN end
5296
5694
  # devices and the network server.
5297
5695
  # @return [String]
@@ -5472,6 +5870,29 @@ module Aws::IoTWireless
5472
5870
 
5473
5871
  class UpdateEventConfigurationByResourceTypesResponse < Aws::EmptyStructure; end
5474
5872
 
5873
+ # Object for updating the FPorts information.
5874
+ #
5875
+ # @note When making an API call, you may pass UpdateFPorts
5876
+ # data as a hash:
5877
+ #
5878
+ # {
5879
+ # positioning: {
5880
+ # clock_sync: 1,
5881
+ # stream: 1,
5882
+ # gnss: 1,
5883
+ # },
5884
+ # }
5885
+ #
5886
+ # @!attribute [rw] positioning
5887
+ # Positioning FPorts for the ClockSync, Stream, and GNSS functions.
5888
+ # @return [Types::Positioning]
5889
+ #
5890
+ class UpdateFPorts < Struct.new(
5891
+ :positioning)
5892
+ SENSITIVE = []
5893
+ include Aws::Structure
5894
+ end
5895
+
5475
5896
  # @note When making an API call, you may pass UpdateFuotaTaskRequest
5476
5897
  # data as a hash:
5477
5898
  #
@@ -5719,6 +6140,37 @@ module Aws::IoTWireless
5719
6140
 
5720
6141
  class UpdatePartnerAccountResponse < Aws::EmptyStructure; end
5721
6142
 
6143
+ # @note When making an API call, you may pass UpdatePositionRequest
6144
+ # data as a hash:
6145
+ #
6146
+ # {
6147
+ # resource_identifier: "PositionResourceIdentifier", # required
6148
+ # resource_type: "WirelessDevice", # required, accepts WirelessDevice, WirelessGateway
6149
+ # position: [1.0], # required
6150
+ # }
6151
+ #
6152
+ # @!attribute [rw] resource_identifier
6153
+ # Resource identifier of the resource for which position is updated.
6154
+ # @return [String]
6155
+ #
6156
+ # @!attribute [rw] resource_type
6157
+ # Resource type of the resource for which position is updated.
6158
+ # @return [String]
6159
+ #
6160
+ # @!attribute [rw] position
6161
+ # The position information of the resource.
6162
+ # @return [Array<Float>]
6163
+ #
6164
+ class UpdatePositionRequest < Struct.new(
6165
+ :resource_identifier,
6166
+ :resource_type,
6167
+ :position)
6168
+ SENSITIVE = []
6169
+ include Aws::Structure
6170
+ end
6171
+
6172
+ class UpdatePositionResponse < Aws::EmptyStructure; end
6173
+
5722
6174
  # @note When making an API call, you may pass UpdateResourceEventConfigurationRequest
5723
6175
  # data as a hash:
5724
6176
  #
@@ -5763,23 +6215,23 @@ module Aws::IoTWireless
5763
6215
  #
5764
6216
  # @!attribute [rw] partner_type
5765
6217
  # Partner type of the resource if the identifier type is
5766
- # PartnerAccountId
6218
+ # `PartnerAccountId`
5767
6219
  # @return [String]
5768
6220
  #
5769
6221
  # @!attribute [rw] device_registration_state
5770
- # Event configuration for the device registration state event
6222
+ # Event configuration for the device registration state event.
5771
6223
  # @return [Types::DeviceRegistrationStateEventConfiguration]
5772
6224
  #
5773
6225
  # @!attribute [rw] proximity
5774
- # Event configuration for the Proximity event
6226
+ # Event configuration for the proximity event.
5775
6227
  # @return [Types::ProximityEventConfiguration]
5776
6228
  #
5777
6229
  # @!attribute [rw] join
5778
- # Event configuration for the join event
6230
+ # Event configuration for the join event.
5779
6231
  # @return [Types::JoinEventConfiguration]
5780
6232
  #
5781
6233
  # @!attribute [rw] connection_status
5782
- # Event configuration for the connection status event
6234
+ # Event configuration for the connection status event.
5783
6235
  # @return [Types::ConnectionStatusEventConfiguration]
5784
6236
  #
5785
6237
  class UpdateResourceEventConfigurationRequest < Struct.new(
@@ -5813,6 +6265,13 @@ module Aws::IoTWireless
5813
6265
  # abp_v1_0_x: {
5814
6266
  # f_cnt_start: 1,
5815
6267
  # },
6268
+ # f_ports: {
6269
+ # positioning: {
6270
+ # clock_sync: 1,
6271
+ # stream: 1,
6272
+ # gnss: 1,
6273
+ # },
6274
+ # },
5816
6275
  # },
5817
6276
  # }
5818
6277
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-iotwireless/customizations'
48
48
  # @!group service
49
49
  module Aws::IoTWireless
50
50
 
51
- GEM_VERSION = '1.23.0'
51
+ GEM_VERSION = '1.24.0'
52
52
 
53
53
  end