aws-sdk-iotwireless 1.42.0 → 1.44.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.
@@ -1398,6 +1398,23 @@ module Aws::IoTWireless
1398
1398
  include Aws::Structure
1399
1399
  end
1400
1400
 
1401
+ # The required list of dimensions for the metric.
1402
+ #
1403
+ # @!attribute [rw] name
1404
+ # The name of the dimension.
1405
+ # @return [String]
1406
+ #
1407
+ # @!attribute [rw] value
1408
+ # The dimension's value.
1409
+ # @return [String]
1410
+ #
1411
+ class Dimension < Struct.new(
1412
+ :name,
1413
+ :value)
1414
+ SENSITIVE = []
1415
+ include Aws::Structure
1416
+ end
1417
+
1401
1418
  # @!attribute [rw] partner_account_id
1402
1419
  # The partner account ID to disassociate from the AWS account.
1403
1420
  # @return [String]
@@ -1910,6 +1927,40 @@ module Aws::IoTWireless
1910
1927
  include Aws::Structure
1911
1928
  end
1912
1929
 
1930
+ # @api private
1931
+ #
1932
+ class GetMetricConfigurationRequest < Aws::EmptyStructure; end
1933
+
1934
+ # @!attribute [rw] summary_metric
1935
+ # The account's configuration status for summary metric aggregation.
1936
+ # @return [Types::SummaryMetricConfiguration]
1937
+ #
1938
+ class GetMetricConfigurationResponse < Struct.new(
1939
+ :summary_metric)
1940
+ SENSITIVE = []
1941
+ include Aws::Structure
1942
+ end
1943
+
1944
+ # @!attribute [rw] summary_metric_queries
1945
+ # The list of queries to retrieve summary metrics.
1946
+ # @return [Array<Types::SummaryMetricQuery>]
1947
+ #
1948
+ class GetMetricsRequest < Struct.new(
1949
+ :summary_metric_queries)
1950
+ SENSITIVE = []
1951
+ include Aws::Structure
1952
+ end
1953
+
1954
+ # @!attribute [rw] summary_metric_query_results
1955
+ # The list of retrieved metrics.
1956
+ # @return [Array<Types::SummaryMetricQueryResult>]
1957
+ #
1958
+ class GetMetricsResponse < Struct.new(
1959
+ :summary_metric_query_results)
1960
+ SENSITIVE = []
1961
+ include Aws::Structure
1962
+ end
1963
+
1913
1964
  # @!attribute [rw] id
1914
1965
  # The ID of the multicast group.
1915
1966
  # @return [String]
@@ -4585,6 +4636,49 @@ module Aws::IoTWireless
4585
4636
  include Aws::Structure
4586
4637
  end
4587
4638
 
4639
+ # The aggregated values of the metric.
4640
+ #
4641
+ # @!attribute [rw] min
4642
+ # The minimum of the values of the all data points collected during
4643
+ # the period.
4644
+ # @return [Float]
4645
+ #
4646
+ # @!attribute [rw] max
4647
+ # The maximum of the values of the all data points collected during
4648
+ # the period.
4649
+ # @return [Float]
4650
+ #
4651
+ # @!attribute [rw] sum
4652
+ # The sum of the values of the all data points collected during the
4653
+ # period.
4654
+ # @return [Float]
4655
+ #
4656
+ # @!attribute [rw] avg
4657
+ # The average of the values of the all data points collected during
4658
+ # the period.
4659
+ # @return [Float]
4660
+ #
4661
+ # @!attribute [rw] std
4662
+ # The standard deviation of the values of the all data points
4663
+ # collected during the period.
4664
+ # @return [Float]
4665
+ #
4666
+ # @!attribute [rw] p90
4667
+ # The 90th percentile of the values of the all data points collected
4668
+ # during the period.
4669
+ # @return [Float]
4670
+ #
4671
+ class MetricQueryValue < Struct.new(
4672
+ :min,
4673
+ :max,
4674
+ :sum,
4675
+ :avg,
4676
+ :std,
4677
+ :p90)
4678
+ SENSITIVE = []
4679
+ include Aws::Structure
4680
+ end
4681
+
4588
4682
  # A multicast group.
4589
4683
  #
4590
4684
  # @!attribute [rw] id
@@ -4655,11 +4749,13 @@ module Aws::IoTWireless
4655
4749
  # @return [String]
4656
4750
  #
4657
4751
  # @!attribute [rw] app_eui
4658
- # The AppEUI value.
4752
+ # The AppEUI value. You specify this value when using LoRaWAN versions
4753
+ # v1.0.2 or v1.0.3.
4659
4754
  # @return [String]
4660
4755
  #
4661
4756
  # @!attribute [rw] join_eui
4662
- # The JoinEUI value.
4757
+ # The JoinEUI value. You specify this value instead of the AppEUI when
4758
+ # using LoRaWAN version v1.0.4.
4663
4759
  # @return [String]
4664
4760
  #
4665
4761
  # @!attribute [rw] gen_app_key
@@ -5625,6 +5721,118 @@ module Aws::IoTWireless
5625
5721
  include Aws::Structure
5626
5722
  end
5627
5723
 
5724
+ # The configuration of summary metric.
5725
+ #
5726
+ # @!attribute [rw] status
5727
+ # The configuration of summary metric.
5728
+ # @return [String]
5729
+ #
5730
+ class SummaryMetricConfiguration < Struct.new(
5731
+ :status)
5732
+ SENSITIVE = []
5733
+ include Aws::Structure
5734
+ end
5735
+
5736
+ # The metric query object.
5737
+ #
5738
+ # @!attribute [rw] query_id
5739
+ # The id of the query.
5740
+ # @return [String]
5741
+ #
5742
+ # @!attribute [rw] metric_name
5743
+ # The name of the metric.
5744
+ # @return [String]
5745
+ #
5746
+ # @!attribute [rw] dimensions
5747
+ # The dimensions of the metric.
5748
+ # @return [Array<Types::Dimension>]
5749
+ #
5750
+ # @!attribute [rw] aggregation_period
5751
+ # The aggregation period of the metric.
5752
+ # @return [String]
5753
+ #
5754
+ # @!attribute [rw] start_timestamp
5755
+ # The start timestamp for summary metric query.
5756
+ # @return [Time]
5757
+ #
5758
+ # @!attribute [rw] end_timestamp
5759
+ # The end timestamp for summary metric query.
5760
+ # @return [Time]
5761
+ #
5762
+ class SummaryMetricQuery < Struct.new(
5763
+ :query_id,
5764
+ :metric_name,
5765
+ :dimensions,
5766
+ :aggregation_period,
5767
+ :start_timestamp,
5768
+ :end_timestamp)
5769
+ SENSITIVE = []
5770
+ include Aws::Structure
5771
+ end
5772
+
5773
+ # The result of metrics aggregation operation.
5774
+ #
5775
+ # @!attribute [rw] query_id
5776
+ # The id of the query.
5777
+ # @return [String]
5778
+ #
5779
+ # @!attribute [rw] query_status
5780
+ # The status of the metric query.
5781
+ # @return [String]
5782
+ #
5783
+ # @!attribute [rw] error
5784
+ # The error message for the summary metric query.
5785
+ # @return [String]
5786
+ #
5787
+ # @!attribute [rw] metric_name
5788
+ # The name of the metric.
5789
+ # @return [String]
5790
+ #
5791
+ # @!attribute [rw] dimensions
5792
+ # The dimensions of the metric.
5793
+ # @return [Array<Types::Dimension>]
5794
+ #
5795
+ # @!attribute [rw] aggregation_period
5796
+ # The aggregation period of the metric.
5797
+ # @return [String]
5798
+ #
5799
+ # @!attribute [rw] start_timestamp
5800
+ # The start timestamp for summary metric query.
5801
+ # @return [Time]
5802
+ #
5803
+ # @!attribute [rw] end_timestamp
5804
+ # The end timestamp for summary metric query.
5805
+ # @return [Time]
5806
+ #
5807
+ # @!attribute [rw] timestamps
5808
+ # The timestamp of each aggregation result.
5809
+ # @return [Array<Time>]
5810
+ #
5811
+ # @!attribute [rw] values
5812
+ # The list of aggregated metrics.
5813
+ # @return [Array<Types::MetricQueryValue>]
5814
+ #
5815
+ # @!attribute [rw] unit
5816
+ # The units of measurement to be used for interpreting the aggregation
5817
+ # result.
5818
+ # @return [String]
5819
+ #
5820
+ class SummaryMetricQueryResult < Struct.new(
5821
+ :query_id,
5822
+ :query_status,
5823
+ :error,
5824
+ :metric_name,
5825
+ :dimensions,
5826
+ :aggregation_period,
5827
+ :start_timestamp,
5828
+ :end_timestamp,
5829
+ :timestamps,
5830
+ :values,
5831
+ :unit)
5832
+ SENSITIVE = []
5833
+ include Aws::Structure
5834
+ end
5835
+
5628
5836
  # A simple label consisting of a customer-defined key-value pair
5629
5837
  #
5630
5838
  # @!attribute [rw] key
@@ -6064,6 +6272,18 @@ module Aws::IoTWireless
6064
6272
 
6065
6273
  class UpdateLogLevelsByResourceTypesResponse < Aws::EmptyStructure; end
6066
6274
 
6275
+ # @!attribute [rw] summary_metric
6276
+ # The value to be used to set summary metric configuration.
6277
+ # @return [Types::SummaryMetricConfiguration]
6278
+ #
6279
+ class UpdateMetricConfigurationRequest < Struct.new(
6280
+ :summary_metric)
6281
+ SENSITIVE = []
6282
+ include Aws::Structure
6283
+ end
6284
+
6285
+ class UpdateMetricConfigurationResponse < Aws::EmptyStructure; end
6286
+
6067
6287
  # @!attribute [rw] id
6068
6288
  # The ID of the multicast group.
6069
6289
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iotwireless/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTWireless
54
54
 
55
- GEM_VERSION = '1.42.0'
55
+ GEM_VERSION = '1.44.0'
56
56
 
57
57
  end