aws-sdk-lookoutequipment 1.10.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb7eb448af7b35f4cfefcd4d600263a3dcacd0ade069a29cb3725adad99739ff
4
- data.tar.gz: 72bc00970c58ea6fd81a189d0298ecb2f9220233b29bb1f1e0c2f51cca6534fe
3
+ metadata.gz: cc182835e28c205da9454e54f9314253a030b4b5288632ad1af77c8560d85987
4
+ data.tar.gz: 352422b517ecb6360b0a11ae988b153ea0dcd39ddae8fe48471c0f8d49f004cc
5
5
  SHA512:
6
- metadata.gz: 587467bddc5e0539bf8ecf14eb2c0aca23cc8ae9441a26bc34d957cbd602534df17629fd8846506f216c37d59ea2597babfc0d8d7adeed4a48d258ab26212756
7
- data.tar.gz: 78e87d6a3fa4d0e71f769fb37357a3f92df6ebb4d4fde2daadbdf52ec8b136ff8b9dd5231e589a4d760871572435e7e4b8a789a09741860c6ad30a84dc2902c8
6
+ metadata.gz: 6f4e339025f9906e13379a033da2c44c55d01f55c8f92c5fce378e9e6b5645be4747073d23138e9869c4fcced257947e7c2f6ff173b740ec6375c9902961e750
7
+ data.tar.gz: 73c90cd03ec85c83b5a243f17de47bfb943e4d1b1fb8986db8622002e19432007977a1c4b90d3200ed4d8dfeb16f0623bd4b2f647c4fd209749ebc7e4d0f772b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2022-04-27)
5
+ ------------------
6
+
7
+ * Feature - This release adds the following new features: 1) Introduces an option for automatic schema creation 2) Now allows for Ingestion of data containing most common errors and allows automatic data cleaning 3) Introduces new API ListSensorStatistics that gives further information about the ingested data
8
+
4
9
  1.10.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -371,7 +371,7 @@ module Aws::LookoutEquipment
371
371
  # @option params [required, String] :dataset_name
372
372
  # The name of the dataset being created.
373
373
  #
374
- # @option params [required, Types::DatasetSchema] :dataset_schema
374
+ # @option params [Types::DatasetSchema] :dataset_schema
375
375
  # A JSON description of the data that is in each time series dataset,
376
376
  # including names, column names, and data types.
377
377
  #
@@ -399,7 +399,7 @@ module Aws::LookoutEquipment
399
399
  #
400
400
  # resp = client.create_dataset({
401
401
  # dataset_name: "DatasetName", # required
402
- # dataset_schema: { # required
402
+ # dataset_schema: {
403
403
  # inline_data_schema: "InlineDataSchema",
404
404
  # },
405
405
  # server_side_kms_key_id: "NameOrArn",
@@ -751,7 +751,7 @@ module Aws::LookoutEquipment
751
751
  end
752
752
 
753
753
  # Provides information on a specific data ingestion job such as creation
754
- # time, dataset ARN, status, and so on.
754
+ # time, dataset ARN, and status.
755
755
  #
756
756
  # @option params [required, String] :job_id
757
757
  # The job ID of the data ingestion job.
@@ -765,6 +765,12 @@ module Aws::LookoutEquipment
765
765
  # * {Types::DescribeDataIngestionJobResponse#created_at #created_at} => Time
766
766
  # * {Types::DescribeDataIngestionJobResponse#status #status} => String
767
767
  # * {Types::DescribeDataIngestionJobResponse#failed_reason #failed_reason} => String
768
+ # * {Types::DescribeDataIngestionJobResponse#data_quality_summary #data_quality_summary} => Types::DataQualitySummary
769
+ # * {Types::DescribeDataIngestionJobResponse#ingested_files_summary #ingested_files_summary} => Types::IngestedFilesSummary
770
+ # * {Types::DescribeDataIngestionJobResponse#status_detail #status_detail} => String
771
+ # * {Types::DescribeDataIngestionJobResponse#ingested_data_size #ingested_data_size} => Integer
772
+ # * {Types::DescribeDataIngestionJobResponse#data_start_time #data_start_time} => Time
773
+ # * {Types::DescribeDataIngestionJobResponse#data_end_time #data_end_time} => Time
768
774
  #
769
775
  # @example Request syntax with placeholder values
770
776
  #
@@ -778,10 +784,28 @@ module Aws::LookoutEquipment
778
784
  # resp.dataset_arn #=> String
779
785
  # resp.ingestion_input_configuration.s3_input_configuration.bucket #=> String
780
786
  # resp.ingestion_input_configuration.s3_input_configuration.prefix #=> String
787
+ # resp.ingestion_input_configuration.s3_input_configuration.key_pattern #=> String
781
788
  # resp.role_arn #=> String
782
789
  # resp.created_at #=> Time
783
790
  # resp.status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED"
784
791
  # resp.failed_reason #=> String
792
+ # resp.data_quality_summary.insufficient_sensor_data.missing_complete_sensor_data.affected_sensor_count #=> Integer
793
+ # resp.data_quality_summary.insufficient_sensor_data.sensors_with_short_date_range.affected_sensor_count #=> Integer
794
+ # resp.data_quality_summary.missing_sensor_data.affected_sensor_count #=> Integer
795
+ # resp.data_quality_summary.missing_sensor_data.total_number_of_missing_values #=> Integer
796
+ # resp.data_quality_summary.invalid_sensor_data.affected_sensor_count #=> Integer
797
+ # resp.data_quality_summary.invalid_sensor_data.total_number_of_invalid_values #=> Integer
798
+ # resp.data_quality_summary.unsupported_timestamps.total_number_of_unsupported_timestamps #=> Integer
799
+ # resp.data_quality_summary.duplicate_timestamps.total_number_of_duplicate_timestamps #=> Integer
800
+ # resp.ingested_files_summary.total_number_of_files #=> Integer
801
+ # resp.ingested_files_summary.ingested_number_of_files #=> Integer
802
+ # resp.ingested_files_summary.discarded_files #=> Array
803
+ # resp.ingested_files_summary.discarded_files[0].bucket #=> String
804
+ # resp.ingested_files_summary.discarded_files[0].key #=> String
805
+ # resp.status_detail #=> String
806
+ # resp.ingested_data_size #=> Integer
807
+ # resp.data_start_time #=> Time
808
+ # resp.data_end_time #=> Time
785
809
  #
786
810
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeDataIngestionJob AWS API Documentation
787
811
  #
@@ -792,8 +816,8 @@ module Aws::LookoutEquipment
792
816
  req.send_request(options)
793
817
  end
794
818
 
795
- # Provides a JSON description of the data that is in each time series
796
- # dataset, including names, column names, and data types.
819
+ # Provides a JSON description of the data in each time series dataset,
820
+ # including names, column names, and data types.
797
821
  #
798
822
  # @option params [required, String] :dataset_name
799
823
  # The name of the dataset to be described.
@@ -808,6 +832,11 @@ module Aws::LookoutEquipment
808
832
  # * {Types::DescribeDatasetResponse#schema #schema} => String
809
833
  # * {Types::DescribeDatasetResponse#server_side_kms_key_id #server_side_kms_key_id} => String
810
834
  # * {Types::DescribeDatasetResponse#ingestion_input_configuration #ingestion_input_configuration} => Types::IngestionInputConfiguration
835
+ # * {Types::DescribeDatasetResponse#data_quality_summary #data_quality_summary} => Types::DataQualitySummary
836
+ # * {Types::DescribeDatasetResponse#ingested_files_summary #ingested_files_summary} => Types::IngestedFilesSummary
837
+ # * {Types::DescribeDatasetResponse#role_arn #role_arn} => String
838
+ # * {Types::DescribeDatasetResponse#data_start_time #data_start_time} => Time
839
+ # * {Types::DescribeDatasetResponse#data_end_time #data_end_time} => Time
811
840
  #
812
841
  # @example Request syntax with placeholder values
813
842
  #
@@ -826,6 +855,23 @@ module Aws::LookoutEquipment
826
855
  # resp.server_side_kms_key_id #=> String
827
856
  # resp.ingestion_input_configuration.s3_input_configuration.bucket #=> String
828
857
  # resp.ingestion_input_configuration.s3_input_configuration.prefix #=> String
858
+ # resp.ingestion_input_configuration.s3_input_configuration.key_pattern #=> String
859
+ # resp.data_quality_summary.insufficient_sensor_data.missing_complete_sensor_data.affected_sensor_count #=> Integer
860
+ # resp.data_quality_summary.insufficient_sensor_data.sensors_with_short_date_range.affected_sensor_count #=> Integer
861
+ # resp.data_quality_summary.missing_sensor_data.affected_sensor_count #=> Integer
862
+ # resp.data_quality_summary.missing_sensor_data.total_number_of_missing_values #=> Integer
863
+ # resp.data_quality_summary.invalid_sensor_data.affected_sensor_count #=> Integer
864
+ # resp.data_quality_summary.invalid_sensor_data.total_number_of_invalid_values #=> Integer
865
+ # resp.data_quality_summary.unsupported_timestamps.total_number_of_unsupported_timestamps #=> Integer
866
+ # resp.data_quality_summary.duplicate_timestamps.total_number_of_duplicate_timestamps #=> Integer
867
+ # resp.ingested_files_summary.total_number_of_files #=> Integer
868
+ # resp.ingested_files_summary.ingested_number_of_files #=> Integer
869
+ # resp.ingested_files_summary.discarded_files #=> Array
870
+ # resp.ingested_files_summary.discarded_files[0].bucket #=> String
871
+ # resp.ingested_files_summary.discarded_files[0].key #=> String
872
+ # resp.role_arn #=> String
873
+ # resp.data_start_time #=> Time
874
+ # resp.data_end_time #=> Time
829
875
  #
830
876
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeDataset AWS API Documentation
831
877
  #
@@ -1007,6 +1053,7 @@ module Aws::LookoutEquipment
1007
1053
  # resp.data_ingestion_job_summaries[0].dataset_arn #=> String
1008
1054
  # resp.data_ingestion_job_summaries[0].ingestion_input_configuration.s3_input_configuration.bucket #=> String
1009
1055
  # resp.data_ingestion_job_summaries[0].ingestion_input_configuration.s3_input_configuration.prefix #=> String
1056
+ # resp.data_ingestion_job_summaries[0].ingestion_input_configuration.s3_input_configuration.key_pattern #=> String
1010
1057
  # resp.data_ingestion_job_summaries[0].status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED"
1011
1058
  #
1012
1059
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListDataIngestionJobs AWS API Documentation
@@ -1250,6 +1297,77 @@ module Aws::LookoutEquipment
1250
1297
  req.send_request(options)
1251
1298
  end
1252
1299
 
1300
+ # Lists statistics about the data collected for each of the sensors that
1301
+ # have been successfully ingested in the particular dataset. Can also be
1302
+ # used to retreive Sensor Statistics for a previous ingestion job.
1303
+ #
1304
+ # @option params [required, String] :dataset_name
1305
+ # The name of the dataset associated with the list of Sensor Statistics.
1306
+ #
1307
+ # @option params [String] :ingestion_job_id
1308
+ # The ingestion job id associated with the list of Sensor Statistics. To
1309
+ # get sensor statistics for a particular ingestion job id, both dataset
1310
+ # name and ingestion job id must be submitted as inputs.
1311
+ #
1312
+ # @option params [Integer] :max_results
1313
+ # Specifies the maximum number of sensors for which to retrieve
1314
+ # statistics.
1315
+ #
1316
+ # @option params [String] :next_token
1317
+ # An opaque pagination token indicating where to continue the listing of
1318
+ # sensor statistics.
1319
+ #
1320
+ # @return [Types::ListSensorStatisticsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1321
+ #
1322
+ # * {Types::ListSensorStatisticsResponse#sensor_statistics_summaries #sensor_statistics_summaries} => Array<Types::SensorStatisticsSummary>
1323
+ # * {Types::ListSensorStatisticsResponse#next_token #next_token} => String
1324
+ #
1325
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1326
+ #
1327
+ # @example Request syntax with placeholder values
1328
+ #
1329
+ # resp = client.list_sensor_statistics({
1330
+ # dataset_name: "DatasetName", # required
1331
+ # ingestion_job_id: "IngestionJobId",
1332
+ # max_results: 1,
1333
+ # next_token: "NextToken",
1334
+ # })
1335
+ #
1336
+ # @example Response structure
1337
+ #
1338
+ # resp.sensor_statistics_summaries #=> Array
1339
+ # resp.sensor_statistics_summaries[0].component_name #=> String
1340
+ # resp.sensor_statistics_summaries[0].sensor_name #=> String
1341
+ # resp.sensor_statistics_summaries[0].data_exists #=> Boolean
1342
+ # resp.sensor_statistics_summaries[0].missing_values.count #=> Integer
1343
+ # resp.sensor_statistics_summaries[0].missing_values.percentage #=> Float
1344
+ # resp.sensor_statistics_summaries[0].invalid_values.count #=> Integer
1345
+ # resp.sensor_statistics_summaries[0].invalid_values.percentage #=> Float
1346
+ # resp.sensor_statistics_summaries[0].invalid_date_entries.count #=> Integer
1347
+ # resp.sensor_statistics_summaries[0].invalid_date_entries.percentage #=> Float
1348
+ # resp.sensor_statistics_summaries[0].duplicate_timestamps.count #=> Integer
1349
+ # resp.sensor_statistics_summaries[0].duplicate_timestamps.percentage #=> Float
1350
+ # resp.sensor_statistics_summaries[0].categorical_values.status #=> String, one of "POTENTIAL_ISSUE_DETECTED", "NO_ISSUE_DETECTED"
1351
+ # resp.sensor_statistics_summaries[0].categorical_values.number_of_category #=> Integer
1352
+ # resp.sensor_statistics_summaries[0].multiple_operating_modes.status #=> String, one of "POTENTIAL_ISSUE_DETECTED", "NO_ISSUE_DETECTED"
1353
+ # resp.sensor_statistics_summaries[0].large_timestamp_gaps.status #=> String, one of "POTENTIAL_ISSUE_DETECTED", "NO_ISSUE_DETECTED"
1354
+ # resp.sensor_statistics_summaries[0].large_timestamp_gaps.number_of_large_timestamp_gaps #=> Integer
1355
+ # resp.sensor_statistics_summaries[0].large_timestamp_gaps.max_timestamp_gap_in_days #=> Integer
1356
+ # resp.sensor_statistics_summaries[0].monotonic_values.status #=> String, one of "POTENTIAL_ISSUE_DETECTED", "NO_ISSUE_DETECTED"
1357
+ # resp.sensor_statistics_summaries[0].monotonic_values.monotonicity #=> String, one of "DECREASING", "INCREASING", "STATIC"
1358
+ # resp.sensor_statistics_summaries[0].data_start_time #=> Time
1359
+ # resp.sensor_statistics_summaries[0].data_end_time #=> Time
1360
+ # resp.next_token #=> String
1361
+ #
1362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListSensorStatistics AWS API Documentation
1363
+ #
1364
+ # @overload list_sensor_statistics(params = {})
1365
+ # @param [Hash] params ({})
1366
+ def list_sensor_statistics(params = {}, options = {})
1367
+ req = build_request(:list_sensor_statistics, params)
1368
+ req.send_request(options)
1369
+ end
1370
+
1253
1371
  # Lists all the tags for a specified resource, including key and value.
1254
1372
  #
1255
1373
  # @option params [required, String] :resource_arn
@@ -1315,6 +1433,7 @@ module Aws::LookoutEquipment
1315
1433
  # s3_input_configuration: { # required
1316
1434
  # bucket: "S3Bucket", # required
1317
1435
  # prefix: "S3Prefix",
1436
+ # key_pattern: "KeyPattern",
1318
1437
  # },
1319
1438
  # },
1320
1439
  # role_arn: "IamRoleArn", # required
@@ -1561,7 +1680,7 @@ module Aws::LookoutEquipment
1561
1680
  params: params,
1562
1681
  config: config)
1563
1682
  context[:gem_name] = 'aws-sdk-lookoutequipment'
1564
- context[:gem_version] = '1.10.0'
1683
+ context[:gem_version] = '1.11.0'
1565
1684
  Seahorse::Client::Request.new(handlers, context)
1566
1685
  end
1567
1686
 
@@ -15,9 +15,13 @@ module Aws::LookoutEquipment
15
15
 
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
17
  AmazonResourceArn = Shapes::StringShape.new(name: 'AmazonResourceArn')
18
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
18
19
  BoundedLengthString = Shapes::StringShape.new(name: 'BoundedLengthString')
20
+ CategoricalValues = Shapes::StructureShape.new(name: 'CategoricalValues')
21
+ ComponentName = Shapes::StringShape.new(name: 'ComponentName')
19
22
  ComponentTimestampDelimiter = Shapes::StringShape.new(name: 'ComponentTimestampDelimiter')
20
23
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
24
+ CountPercent = Shapes::StructureShape.new(name: 'CountPercent')
21
25
  CreateDatasetRequest = Shapes::StructureShape.new(name: 'CreateDatasetRequest')
22
26
  CreateDatasetResponse = Shapes::StructureShape.new(name: 'CreateDatasetResponse')
23
27
  CreateInferenceSchedulerRequest = Shapes::StructureShape.new(name: 'CreateInferenceSchedulerRequest')
@@ -28,6 +32,8 @@ module Aws::LookoutEquipment
28
32
  DataIngestionJobSummaries = Shapes::ListShape.new(name: 'DataIngestionJobSummaries')
29
33
  DataIngestionJobSummary = Shapes::StructureShape.new(name: 'DataIngestionJobSummary')
30
34
  DataPreProcessingConfiguration = Shapes::StructureShape.new(name: 'DataPreProcessingConfiguration')
35
+ DataQualitySummary = Shapes::StructureShape.new(name: 'DataQualitySummary')
36
+ DataSizeInBytes = Shapes::IntegerShape.new(name: 'DataSizeInBytes')
31
37
  DataUploadFrequency = Shapes::StringShape.new(name: 'DataUploadFrequency')
32
38
  DatasetArn = Shapes::StringShape.new(name: 'DatasetArn')
33
39
  DatasetIdentifier = Shapes::StringShape.new(name: 'DatasetIdentifier')
@@ -47,7 +53,9 @@ module Aws::LookoutEquipment
47
53
  DescribeInferenceSchedulerResponse = Shapes::StructureShape.new(name: 'DescribeInferenceSchedulerResponse')
48
54
  DescribeModelRequest = Shapes::StructureShape.new(name: 'DescribeModelRequest')
49
55
  DescribeModelResponse = Shapes::StructureShape.new(name: 'DescribeModelResponse')
56
+ DuplicateTimestamps = Shapes::StructureShape.new(name: 'DuplicateTimestamps')
50
57
  FileNameTimestampFormat = Shapes::StringShape.new(name: 'FileNameTimestampFormat')
58
+ Float = Shapes::FloatShape.new(name: 'Float')
51
59
  IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
52
60
  IdempotenceToken = Shapes::StringShape.new(name: 'IdempotenceToken')
53
61
  InferenceExecutionStatus = Shapes::StringShape.new(name: 'InferenceExecutionStatus')
@@ -64,15 +72,21 @@ module Aws::LookoutEquipment
64
72
  InferenceSchedulerStatus = Shapes::StringShape.new(name: 'InferenceSchedulerStatus')
65
73
  InferenceSchedulerSummaries = Shapes::ListShape.new(name: 'InferenceSchedulerSummaries')
66
74
  InferenceSchedulerSummary = Shapes::StructureShape.new(name: 'InferenceSchedulerSummary')
75
+ IngestedFilesSummary = Shapes::StructureShape.new(name: 'IngestedFilesSummary')
67
76
  IngestionInputConfiguration = Shapes::StructureShape.new(name: 'IngestionInputConfiguration')
68
77
  IngestionJobId = Shapes::StringShape.new(name: 'IngestionJobId')
69
78
  IngestionJobStatus = Shapes::StringShape.new(name: 'IngestionJobStatus')
70
79
  IngestionS3InputConfiguration = Shapes::StructureShape.new(name: 'IngestionS3InputConfiguration')
71
80
  InlineDataSchema = Shapes::StringShape.new(name: 'InlineDataSchema')
81
+ InsufficientSensorData = Shapes::StructureShape.new(name: 'InsufficientSensorData')
82
+ Integer = Shapes::IntegerShape.new(name: 'Integer')
72
83
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
84
+ InvalidSensorData = Shapes::StructureShape.new(name: 'InvalidSensorData')
85
+ KeyPattern = Shapes::StringShape.new(name: 'KeyPattern')
73
86
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
74
87
  LabelsInputConfiguration = Shapes::StructureShape.new(name: 'LabelsInputConfiguration')
75
88
  LabelsS3InputConfiguration = Shapes::StructureShape.new(name: 'LabelsS3InputConfiguration')
89
+ LargeTimestampGaps = Shapes::StructureShape.new(name: 'LargeTimestampGaps')
76
90
  ListDataIngestionJobsRequest = Shapes::StructureShape.new(name: 'ListDataIngestionJobsRequest')
77
91
  ListDataIngestionJobsResponse = Shapes::StructureShape.new(name: 'ListDataIngestionJobsResponse')
78
92
  ListDatasetsRequest = Shapes::StructureShape.new(name: 'ListDatasetsRequest')
@@ -83,15 +97,23 @@ module Aws::LookoutEquipment
83
97
  ListInferenceSchedulersResponse = Shapes::StructureShape.new(name: 'ListInferenceSchedulersResponse')
84
98
  ListModelsRequest = Shapes::StructureShape.new(name: 'ListModelsRequest')
85
99
  ListModelsResponse = Shapes::StructureShape.new(name: 'ListModelsResponse')
100
+ ListOfDiscardedFiles = Shapes::ListShape.new(name: 'ListOfDiscardedFiles')
101
+ ListSensorStatisticsRequest = Shapes::StructureShape.new(name: 'ListSensorStatisticsRequest')
102
+ ListSensorStatisticsResponse = Shapes::StructureShape.new(name: 'ListSensorStatisticsResponse')
86
103
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
87
104
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
88
105
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
106
+ MissingCompleteSensorData = Shapes::StructureShape.new(name: 'MissingCompleteSensorData')
107
+ MissingSensorData = Shapes::StructureShape.new(name: 'MissingSensorData')
89
108
  ModelArn = Shapes::StringShape.new(name: 'ModelArn')
90
109
  ModelMetrics = Shapes::StringShape.new(name: 'ModelMetrics')
91
110
  ModelName = Shapes::StringShape.new(name: 'ModelName')
92
111
  ModelStatus = Shapes::StringShape.new(name: 'ModelStatus')
93
112
  ModelSummaries = Shapes::ListShape.new(name: 'ModelSummaries')
94
113
  ModelSummary = Shapes::StructureShape.new(name: 'ModelSummary')
114
+ MonotonicValues = Shapes::StructureShape.new(name: 'MonotonicValues')
115
+ Monotonicity = Shapes::StringShape.new(name: 'Monotonicity')
116
+ MultipleOperatingModes = Shapes::StructureShape.new(name: 'MultipleOperatingModes')
95
117
  NameOrArn = Shapes::StringShape.new(name: 'NameOrArn')
96
118
  NextToken = Shapes::StringShape.new(name: 'NextToken')
97
119
  OffCondition = Shapes::StringShape.new(name: 'OffCondition')
@@ -100,11 +122,16 @@ module Aws::LookoutEquipment
100
122
  S3Key = Shapes::StringShape.new(name: 'S3Key')
101
123
  S3Object = Shapes::StructureShape.new(name: 'S3Object')
102
124
  S3Prefix = Shapes::StringShape.new(name: 'S3Prefix')
125
+ SensorName = Shapes::StringShape.new(name: 'SensorName')
126
+ SensorStatisticsSummaries = Shapes::ListShape.new(name: 'SensorStatisticsSummaries')
127
+ SensorStatisticsSummary = Shapes::StructureShape.new(name: 'SensorStatisticsSummary')
128
+ SensorsWithShortDateRange = Shapes::StructureShape.new(name: 'SensorsWithShortDateRange')
103
129
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
104
130
  StartDataIngestionJobRequest = Shapes::StructureShape.new(name: 'StartDataIngestionJobRequest')
105
131
  StartDataIngestionJobResponse = Shapes::StructureShape.new(name: 'StartDataIngestionJobResponse')
106
132
  StartInferenceSchedulerRequest = Shapes::StructureShape.new(name: 'StartInferenceSchedulerRequest')
107
133
  StartInferenceSchedulerResponse = Shapes::StructureShape.new(name: 'StartInferenceSchedulerResponse')
134
+ StatisticalIssueStatus = Shapes::StringShape.new(name: 'StatisticalIssueStatus')
108
135
  StopInferenceSchedulerRequest = Shapes::StructureShape.new(name: 'StopInferenceSchedulerRequest')
109
136
  StopInferenceSchedulerResponse = Shapes::StructureShape.new(name: 'StopInferenceSchedulerResponse')
110
137
  Tag = Shapes::StructureShape.new(name: 'Tag')
@@ -118,6 +145,7 @@ module Aws::LookoutEquipment
118
145
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
119
146
  TimeZoneOffset = Shapes::StringShape.new(name: 'TimeZoneOffset')
120
147
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
148
+ UnsupportedTimestamps = Shapes::StructureShape.new(name: 'UnsupportedTimestamps')
121
149
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
122
150
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
123
151
  UpdateInferenceSchedulerRequest = Shapes::StructureShape.new(name: 'UpdateInferenceSchedulerRequest')
@@ -126,11 +154,19 @@ module Aws::LookoutEquipment
126
154
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "Message"))
127
155
  AccessDeniedException.struct_class = Types::AccessDeniedException
128
156
 
157
+ CategoricalValues.add_member(:status, Shapes::ShapeRef.new(shape: StatisticalIssueStatus, required: true, location_name: "Status"))
158
+ CategoricalValues.add_member(:number_of_category, Shapes::ShapeRef.new(shape: Integer, location_name: "NumberOfCategory"))
159
+ CategoricalValues.struct_class = Types::CategoricalValues
160
+
129
161
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "Message"))
130
162
  ConflictException.struct_class = Types::ConflictException
131
163
 
164
+ CountPercent.add_member(:count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "Count"))
165
+ CountPercent.add_member(:percentage, Shapes::ShapeRef.new(shape: Float, required: true, location_name: "Percentage"))
166
+ CountPercent.struct_class = Types::CountPercent
167
+
132
168
  CreateDatasetRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location_name: "DatasetName"))
133
- CreateDatasetRequest.add_member(:dataset_schema, Shapes::ShapeRef.new(shape: DatasetSchema, required: true, location_name: "DatasetSchema"))
169
+ CreateDatasetRequest.add_member(:dataset_schema, Shapes::ShapeRef.new(shape: DatasetSchema, location_name: "DatasetSchema"))
134
170
  CreateDatasetRequest.add_member(:server_side_kms_key_id, Shapes::ShapeRef.new(shape: NameOrArn, location_name: "ServerSideKmsKeyId"))
135
171
  CreateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotenceToken, required: true, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
136
172
  CreateDatasetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
@@ -190,6 +226,13 @@ module Aws::LookoutEquipment
190
226
  DataPreProcessingConfiguration.add_member(:target_sampling_rate, Shapes::ShapeRef.new(shape: TargetSamplingRate, location_name: "TargetSamplingRate"))
191
227
  DataPreProcessingConfiguration.struct_class = Types::DataPreProcessingConfiguration
192
228
 
229
+ DataQualitySummary.add_member(:insufficient_sensor_data, Shapes::ShapeRef.new(shape: InsufficientSensorData, required: true, location_name: "InsufficientSensorData"))
230
+ DataQualitySummary.add_member(:missing_sensor_data, Shapes::ShapeRef.new(shape: MissingSensorData, required: true, location_name: "MissingSensorData"))
231
+ DataQualitySummary.add_member(:invalid_sensor_data, Shapes::ShapeRef.new(shape: InvalidSensorData, required: true, location_name: "InvalidSensorData"))
232
+ DataQualitySummary.add_member(:unsupported_timestamps, Shapes::ShapeRef.new(shape: UnsupportedTimestamps, required: true, location_name: "UnsupportedTimestamps"))
233
+ DataQualitySummary.add_member(:duplicate_timestamps, Shapes::ShapeRef.new(shape: DuplicateTimestamps, required: true, location_name: "DuplicateTimestamps"))
234
+ DataQualitySummary.struct_class = Types::DataQualitySummary
235
+
193
236
  DatasetSchema.add_member(:inline_data_schema, Shapes::ShapeRef.new(shape: InlineDataSchema, location_name: "InlineDataSchema", metadata: {"jsonvalue"=>true}))
194
237
  DatasetSchema.struct_class = Types::DatasetSchema
195
238
 
@@ -220,6 +263,12 @@ module Aws::LookoutEquipment
220
263
  DescribeDataIngestionJobResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
221
264
  DescribeDataIngestionJobResponse.add_member(:status, Shapes::ShapeRef.new(shape: IngestionJobStatus, location_name: "Status"))
222
265
  DescribeDataIngestionJobResponse.add_member(:failed_reason, Shapes::ShapeRef.new(shape: BoundedLengthString, location_name: "FailedReason"))
266
+ DescribeDataIngestionJobResponse.add_member(:data_quality_summary, Shapes::ShapeRef.new(shape: DataQualitySummary, location_name: "DataQualitySummary"))
267
+ DescribeDataIngestionJobResponse.add_member(:ingested_files_summary, Shapes::ShapeRef.new(shape: IngestedFilesSummary, location_name: "IngestedFilesSummary"))
268
+ DescribeDataIngestionJobResponse.add_member(:status_detail, Shapes::ShapeRef.new(shape: BoundedLengthString, location_name: "StatusDetail"))
269
+ DescribeDataIngestionJobResponse.add_member(:ingested_data_size, Shapes::ShapeRef.new(shape: DataSizeInBytes, location_name: "IngestedDataSize"))
270
+ DescribeDataIngestionJobResponse.add_member(:data_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DataStartTime"))
271
+ DescribeDataIngestionJobResponse.add_member(:data_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DataEndTime"))
223
272
  DescribeDataIngestionJobResponse.struct_class = Types::DescribeDataIngestionJobResponse
224
273
 
225
274
  DescribeDatasetRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: DatasetIdentifier, required: true, location_name: "DatasetName"))
@@ -233,6 +282,11 @@ module Aws::LookoutEquipment
233
282
  DescribeDatasetResponse.add_member(:schema, Shapes::ShapeRef.new(shape: InlineDataSchema, location_name: "Schema", metadata: {"jsonvalue"=>true}))
234
283
  DescribeDatasetResponse.add_member(:server_side_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "ServerSideKmsKeyId"))
235
284
  DescribeDatasetResponse.add_member(:ingestion_input_configuration, Shapes::ShapeRef.new(shape: IngestionInputConfiguration, location_name: "IngestionInputConfiguration"))
285
+ DescribeDatasetResponse.add_member(:data_quality_summary, Shapes::ShapeRef.new(shape: DataQualitySummary, location_name: "DataQualitySummary"))
286
+ DescribeDatasetResponse.add_member(:ingested_files_summary, Shapes::ShapeRef.new(shape: IngestedFilesSummary, location_name: "IngestedFilesSummary"))
287
+ DescribeDatasetResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
288
+ DescribeDatasetResponse.add_member(:data_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DataStartTime"))
289
+ DescribeDatasetResponse.add_member(:data_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DataEndTime"))
236
290
  DescribeDatasetResponse.struct_class = Types::DescribeDatasetResponse
237
291
 
238
292
  DescribeInferenceSchedulerRequest.add_member(:inference_scheduler_name, Shapes::ShapeRef.new(shape: InferenceSchedulerIdentifier, required: true, location_name: "InferenceSchedulerName"))
@@ -279,6 +333,9 @@ module Aws::LookoutEquipment
279
333
  DescribeModelResponse.add_member(:off_condition, Shapes::ShapeRef.new(shape: OffCondition, location_name: "OffCondition"))
280
334
  DescribeModelResponse.struct_class = Types::DescribeModelResponse
281
335
 
336
+ DuplicateTimestamps.add_member(:total_number_of_duplicate_timestamps, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfDuplicateTimestamps"))
337
+ DuplicateTimestamps.struct_class = Types::DuplicateTimestamps
338
+
282
339
  InferenceExecutionSummaries.member = Shapes::ShapeRef.new(shape: InferenceExecutionSummary)
283
340
 
284
341
  InferenceExecutionSummary.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelName"))
@@ -327,16 +384,30 @@ module Aws::LookoutEquipment
327
384
  InferenceSchedulerSummary.add_member(:data_upload_frequency, Shapes::ShapeRef.new(shape: DataUploadFrequency, location_name: "DataUploadFrequency"))
328
385
  InferenceSchedulerSummary.struct_class = Types::InferenceSchedulerSummary
329
386
 
387
+ IngestedFilesSummary.add_member(:total_number_of_files, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfFiles"))
388
+ IngestedFilesSummary.add_member(:ingested_number_of_files, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "IngestedNumberOfFiles"))
389
+ IngestedFilesSummary.add_member(:discarded_files, Shapes::ShapeRef.new(shape: ListOfDiscardedFiles, location_name: "DiscardedFiles"))
390
+ IngestedFilesSummary.struct_class = Types::IngestedFilesSummary
391
+
330
392
  IngestionInputConfiguration.add_member(:s3_input_configuration, Shapes::ShapeRef.new(shape: IngestionS3InputConfiguration, required: true, location_name: "S3InputConfiguration"))
331
393
  IngestionInputConfiguration.struct_class = Types::IngestionInputConfiguration
332
394
 
333
395
  IngestionS3InputConfiguration.add_member(:bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "Bucket"))
334
396
  IngestionS3InputConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3Prefix, location_name: "Prefix"))
397
+ IngestionS3InputConfiguration.add_member(:key_pattern, Shapes::ShapeRef.new(shape: KeyPattern, location_name: "KeyPattern"))
335
398
  IngestionS3InputConfiguration.struct_class = Types::IngestionS3InputConfiguration
336
399
 
400
+ InsufficientSensorData.add_member(:missing_complete_sensor_data, Shapes::ShapeRef.new(shape: MissingCompleteSensorData, required: true, location_name: "MissingCompleteSensorData"))
401
+ InsufficientSensorData.add_member(:sensors_with_short_date_range, Shapes::ShapeRef.new(shape: SensorsWithShortDateRange, required: true, location_name: "SensorsWithShortDateRange"))
402
+ InsufficientSensorData.struct_class = Types::InsufficientSensorData
403
+
337
404
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "Message"))
338
405
  InternalServerException.struct_class = Types::InternalServerException
339
406
 
407
+ InvalidSensorData.add_member(:affected_sensor_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "AffectedSensorCount"))
408
+ InvalidSensorData.add_member(:total_number_of_invalid_values, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfInvalidValues"))
409
+ InvalidSensorData.struct_class = Types::InvalidSensorData
410
+
340
411
  LabelsInputConfiguration.add_member(:s3_input_configuration, Shapes::ShapeRef.new(shape: LabelsS3InputConfiguration, required: true, location_name: "S3InputConfiguration"))
341
412
  LabelsInputConfiguration.struct_class = Types::LabelsInputConfiguration
342
413
 
@@ -344,6 +415,11 @@ module Aws::LookoutEquipment
344
415
  LabelsS3InputConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3Prefix, location_name: "Prefix"))
345
416
  LabelsS3InputConfiguration.struct_class = Types::LabelsS3InputConfiguration
346
417
 
418
+ LargeTimestampGaps.add_member(:status, Shapes::ShapeRef.new(shape: StatisticalIssueStatus, required: true, location_name: "Status"))
419
+ LargeTimestampGaps.add_member(:number_of_large_timestamp_gaps, Shapes::ShapeRef.new(shape: Integer, location_name: "NumberOfLargeTimestampGaps"))
420
+ LargeTimestampGaps.add_member(:max_timestamp_gap_in_days, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxTimestampGapInDays"))
421
+ LargeTimestampGaps.struct_class = Types::LargeTimestampGaps
422
+
347
423
  ListDataIngestionJobsRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: DatasetName, location_name: "DatasetName"))
348
424
  ListDataIngestionJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
349
425
  ListDataIngestionJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
@@ -396,12 +472,31 @@ module Aws::LookoutEquipment
396
472
  ListModelsResponse.add_member(:model_summaries, Shapes::ShapeRef.new(shape: ModelSummaries, location_name: "ModelSummaries"))
397
473
  ListModelsResponse.struct_class = Types::ListModelsResponse
398
474
 
475
+ ListOfDiscardedFiles.member = Shapes::ShapeRef.new(shape: S3Object)
476
+
477
+ ListSensorStatisticsRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location_name: "DatasetName"))
478
+ ListSensorStatisticsRequest.add_member(:ingestion_job_id, Shapes::ShapeRef.new(shape: IngestionJobId, location_name: "IngestionJobId"))
479
+ ListSensorStatisticsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
480
+ ListSensorStatisticsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
481
+ ListSensorStatisticsRequest.struct_class = Types::ListSensorStatisticsRequest
482
+
483
+ ListSensorStatisticsResponse.add_member(:sensor_statistics_summaries, Shapes::ShapeRef.new(shape: SensorStatisticsSummaries, location_name: "SensorStatisticsSummaries"))
484
+ ListSensorStatisticsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
485
+ ListSensorStatisticsResponse.struct_class = Types::ListSensorStatisticsResponse
486
+
399
487
  ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceArn, required: true, location_name: "ResourceArn"))
400
488
  ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
401
489
 
402
490
  ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
403
491
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
404
492
 
493
+ MissingCompleteSensorData.add_member(:affected_sensor_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "AffectedSensorCount"))
494
+ MissingCompleteSensorData.struct_class = Types::MissingCompleteSensorData
495
+
496
+ MissingSensorData.add_member(:affected_sensor_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "AffectedSensorCount"))
497
+ MissingSensorData.add_member(:total_number_of_missing_values, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfMissingValues"))
498
+ MissingSensorData.struct_class = Types::MissingSensorData
499
+
405
500
  ModelSummaries.member = Shapes::ShapeRef.new(shape: ModelSummary)
406
501
 
407
502
  ModelSummary.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelName"))
@@ -412,6 +507,13 @@ module Aws::LookoutEquipment
412
507
  ModelSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
413
508
  ModelSummary.struct_class = Types::ModelSummary
414
509
 
510
+ MonotonicValues.add_member(:status, Shapes::ShapeRef.new(shape: StatisticalIssueStatus, required: true, location_name: "Status"))
511
+ MonotonicValues.add_member(:monotonicity, Shapes::ShapeRef.new(shape: Monotonicity, location_name: "Monotonicity"))
512
+ MonotonicValues.struct_class = Types::MonotonicValues
513
+
514
+ MultipleOperatingModes.add_member(:status, Shapes::ShapeRef.new(shape: StatisticalIssueStatus, required: true, location_name: "Status"))
515
+ MultipleOperatingModes.struct_class = Types::MultipleOperatingModes
516
+
415
517
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "Message"))
416
518
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
417
519
 
@@ -419,6 +521,26 @@ module Aws::LookoutEquipment
419
521
  S3Object.add_member(:key, Shapes::ShapeRef.new(shape: S3Key, required: true, location_name: "Key"))
420
522
  S3Object.struct_class = Types::S3Object
421
523
 
524
+ SensorStatisticsSummaries.member = Shapes::ShapeRef.new(shape: SensorStatisticsSummary)
525
+
526
+ SensorStatisticsSummary.add_member(:component_name, Shapes::ShapeRef.new(shape: ComponentName, location_name: "ComponentName"))
527
+ SensorStatisticsSummary.add_member(:sensor_name, Shapes::ShapeRef.new(shape: SensorName, location_name: "SensorName"))
528
+ SensorStatisticsSummary.add_member(:data_exists, Shapes::ShapeRef.new(shape: Boolean, location_name: "DataExists"))
529
+ SensorStatisticsSummary.add_member(:missing_values, Shapes::ShapeRef.new(shape: CountPercent, location_name: "MissingValues"))
530
+ SensorStatisticsSummary.add_member(:invalid_values, Shapes::ShapeRef.new(shape: CountPercent, location_name: "InvalidValues"))
531
+ SensorStatisticsSummary.add_member(:invalid_date_entries, Shapes::ShapeRef.new(shape: CountPercent, location_name: "InvalidDateEntries"))
532
+ SensorStatisticsSummary.add_member(:duplicate_timestamps, Shapes::ShapeRef.new(shape: CountPercent, location_name: "DuplicateTimestamps"))
533
+ SensorStatisticsSummary.add_member(:categorical_values, Shapes::ShapeRef.new(shape: CategoricalValues, location_name: "CategoricalValues"))
534
+ SensorStatisticsSummary.add_member(:multiple_operating_modes, Shapes::ShapeRef.new(shape: MultipleOperatingModes, location_name: "MultipleOperatingModes"))
535
+ SensorStatisticsSummary.add_member(:large_timestamp_gaps, Shapes::ShapeRef.new(shape: LargeTimestampGaps, location_name: "LargeTimestampGaps"))
536
+ SensorStatisticsSummary.add_member(:monotonic_values, Shapes::ShapeRef.new(shape: MonotonicValues, location_name: "MonotonicValues"))
537
+ SensorStatisticsSummary.add_member(:data_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DataStartTime"))
538
+ SensorStatisticsSummary.add_member(:data_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DataEndTime"))
539
+ SensorStatisticsSummary.struct_class = Types::SensorStatisticsSummary
540
+
541
+ SensorsWithShortDateRange.add_member(:affected_sensor_count, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "AffectedSensorCount"))
542
+ SensorsWithShortDateRange.struct_class = Types::SensorsWithShortDateRange
543
+
422
544
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "Message"))
423
545
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
424
546
 
@@ -469,6 +591,9 @@ module Aws::LookoutEquipment
469
591
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: BoundedLengthString, required: true, location_name: "Message"))
470
592
  ThrottlingException.struct_class = Types::ThrottlingException
471
593
 
594
+ UnsupportedTimestamps.add_member(:total_number_of_unsupported_timestamps, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfUnsupportedTimestamps"))
595
+ UnsupportedTimestamps.struct_class = Types::UnsupportedTimestamps
596
+
472
597
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceArn, required: true, location_name: "ResourceArn"))
473
598
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
474
599
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -732,6 +857,25 @@ module Aws::LookoutEquipment
732
857
  )
733
858
  end)
734
859
 
860
+ api.add_operation(:list_sensor_statistics, Seahorse::Model::Operation.new.tap do |o|
861
+ o.name = "ListSensorStatistics"
862
+ o.http_method = "POST"
863
+ o.http_request_uri = "/"
864
+ o.input = Shapes::ShapeRef.new(shape: ListSensorStatisticsRequest)
865
+ o.output = Shapes::ShapeRef.new(shape: ListSensorStatisticsResponse)
866
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
867
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
868
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
869
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
870
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
871
+ o[:pager] = Aws::Pager.new(
872
+ limit_key: "max_results",
873
+ tokens: {
874
+ "next_token" => "next_token"
875
+ }
876
+ )
877
+ end)
878
+
735
879
  api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
736
880
  o.name = "ListTagsForResource"
737
881
  o.http_method = "POST"
@@ -24,6 +24,26 @@ module Aws::LookoutEquipment
24
24
  include Aws::Structure
25
25
  end
26
26
 
27
+ # Entity that comprises information on categorical values in data.
28
+ #
29
+ # @!attribute [rw] status
30
+ # Indicates whether there is a potential data issue related to
31
+ # categorical values.
32
+ # @return [String]
33
+ #
34
+ # @!attribute [rw] number_of_category
35
+ # Indicates the number of categories in the data.
36
+ # @return [Integer]
37
+ #
38
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CategoricalValues AWS API Documentation
39
+ #
40
+ class CategoricalValues < Struct.new(
41
+ :status,
42
+ :number_of_category)
43
+ SENSITIVE = []
44
+ include Aws::Structure
45
+ end
46
+
27
47
  # The request could not be completed due to a conflict with the current
28
48
  # state of the target resource.
29
49
  #
@@ -38,12 +58,31 @@ module Aws::LookoutEquipment
38
58
  include Aws::Structure
39
59
  end
40
60
 
61
+ # Entity that comprises information of count and percentage.
62
+ #
63
+ # @!attribute [rw] count
64
+ # Indicates the count of occurences of the given statistic.
65
+ # @return [Integer]
66
+ #
67
+ # @!attribute [rw] percentage
68
+ # Indicates the percentage of occurances of the given statistic.
69
+ # @return [Float]
70
+ #
71
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CountPercent AWS API Documentation
72
+ #
73
+ class CountPercent < Struct.new(
74
+ :count,
75
+ :percentage)
76
+ SENSITIVE = []
77
+ include Aws::Structure
78
+ end
79
+
41
80
  # @note When making an API call, you may pass CreateDatasetRequest
42
81
  # data as a hash:
43
82
  #
44
83
  # {
45
84
  # dataset_name: "DatasetName", # required
46
- # dataset_schema: { # required
85
+ # dataset_schema: {
47
86
  # inline_data_schema: "InlineDataSchema",
48
87
  # },
49
88
  # server_side_kms_key_id: "NameOrArn",
@@ -426,7 +465,7 @@ module Aws::LookoutEquipment
426
465
  #
427
466
  # @!attribute [rw] ingestion_input_configuration
428
467
  # Specifies information for the input data for the data inference job,
429
- # including data S3 location parameters.
468
+ # including data Amazon S3 location parameters.
430
469
  # @return [Types::IngestionInputConfiguration]
431
470
  #
432
471
  # @!attribute [rw] status
@@ -484,6 +523,50 @@ module Aws::LookoutEquipment
484
523
  include Aws::Structure
485
524
  end
486
525
 
526
+ # DataQualitySummary gives aggregated statistics over all the sensors
527
+ # about a completed ingestion job. It primarily gives more information
528
+ # about statistics over different incorrect data like
529
+ # MissingCompleteSensorData, MissingSensorData, UnsupportedDateFormats,
530
+ # InsufficientSensorData, DuplicateTimeStamps.
531
+ #
532
+ # @!attribute [rw] insufficient_sensor_data
533
+ # Parameter that gives information about insufficient data for sensors
534
+ # in the dataset. This includes information about those sensors that
535
+ # have complete data missing and those with a short date range.
536
+ # @return [Types::InsufficientSensorData]
537
+ #
538
+ # @!attribute [rw] missing_sensor_data
539
+ # Parameter that gives information about data that is missing over all
540
+ # the sensors in the input data.
541
+ # @return [Types::MissingSensorData]
542
+ #
543
+ # @!attribute [rw] invalid_sensor_data
544
+ # Parameter that gives information about data that is invalid over all
545
+ # the sensors in the input data.
546
+ # @return [Types::InvalidSensorData]
547
+ #
548
+ # @!attribute [rw] unsupported_timestamps
549
+ # Parameter that gives information about unsupported timestamps in the
550
+ # input data.
551
+ # @return [Types::UnsupportedTimestamps]
552
+ #
553
+ # @!attribute [rw] duplicate_timestamps
554
+ # Parameter that gives information about duplicate timestamps in the
555
+ # input data.
556
+ # @return [Types::DuplicateTimestamps]
557
+ #
558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DataQualitySummary AWS API Documentation
559
+ #
560
+ class DataQualitySummary < Struct.new(
561
+ :insufficient_sensor_data,
562
+ :missing_sensor_data,
563
+ :invalid_sensor_data,
564
+ :unsupported_timestamps,
565
+ :duplicate_timestamps)
566
+ SENSITIVE = []
567
+ include Aws::Structure
568
+ end
569
+
487
570
  # Provides information about the data schema used with the given
488
571
  # dataset.
489
572
  #
@@ -644,6 +727,38 @@ module Aws::LookoutEquipment
644
727
  # failed.
645
728
  # @return [String]
646
729
  #
730
+ # @!attribute [rw] data_quality_summary
731
+ # Gives statistics about a completed ingestion job. These statistics
732
+ # primarily relate to quantifying incorrect data such as
733
+ # MissingCompleteSensorData, MissingSensorData,
734
+ # UnsupportedDateFormats, InsufficientSensorData, and
735
+ # DuplicateTimeStamps.
736
+ # @return [Types::DataQualitySummary]
737
+ #
738
+ # @!attribute [rw] ingested_files_summary
739
+ # Gives statistics about how many files have been ingested, and which
740
+ # files have not been ingested, for a particular ingestion job.
741
+ # @return [Types::IngestedFilesSummary]
742
+ #
743
+ # @!attribute [rw] status_detail
744
+ # Provides details about status of the ingestion job that is currently
745
+ # in progress.
746
+ # @return [String]
747
+ #
748
+ # @!attribute [rw] ingested_data_size
749
+ # Indicates the size of the ingested dataset.
750
+ # @return [Integer]
751
+ #
752
+ # @!attribute [rw] data_start_time
753
+ # Indicates the earliest timestamp corresponding to data that was
754
+ # successfully ingested during this specific ingestion job.
755
+ # @return [Time]
756
+ #
757
+ # @!attribute [rw] data_end_time
758
+ # Indicates the latest timestamp corresponding to data that was
759
+ # successfully ingested during this specific ingestion job.
760
+ # @return [Time]
761
+ #
647
762
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeDataIngestionJobResponse AWS API Documentation
648
763
  #
649
764
  class DescribeDataIngestionJobResponse < Struct.new(
@@ -653,7 +768,13 @@ module Aws::LookoutEquipment
653
768
  :role_arn,
654
769
  :created_at,
655
770
  :status,
656
- :failed_reason)
771
+ :failed_reason,
772
+ :data_quality_summary,
773
+ :ingested_files_summary,
774
+ :status_detail,
775
+ :ingested_data_size,
776
+ :data_start_time,
777
+ :data_end_time)
657
778
  SENSITIVE = []
658
779
  include Aws::Structure
659
780
  end
@@ -713,6 +834,37 @@ module Aws::LookoutEquipment
713
834
  # data ingestion job.
714
835
  # @return [Types::IngestionInputConfiguration]
715
836
  #
837
+ # @!attribute [rw] data_quality_summary
838
+ # Gives statistics associated with the given dataset for the latest
839
+ # successful associated ingestion job id. These statistics primarily
840
+ # relate to quantifying incorrect data such as
841
+ # MissingCompleteSensorData, MissingSensorData,
842
+ # UnsupportedDateFormats, InsufficientSensorData, and
843
+ # DuplicateTimeStamps.
844
+ # @return [Types::DataQualitySummary]
845
+ #
846
+ # @!attribute [rw] ingested_files_summary
847
+ # IngestedFilesSummary associated with the given dataset for the
848
+ # latest successful associated ingestion job id.
849
+ # @return [Types::IngestedFilesSummary]
850
+ #
851
+ # @!attribute [rw] role_arn
852
+ # The Amazon Resource Name (ARN) of the IAM role that you are using
853
+ # for this the data ingestion job.
854
+ # @return [String]
855
+ #
856
+ # @!attribute [rw] data_start_time
857
+ # Indicates the earliest timestamp corresponding to data that was
858
+ # successfully ingested during the most recent ingestion of this
859
+ # particular dataset.
860
+ # @return [Time]
861
+ #
862
+ # @!attribute [rw] data_end_time
863
+ # Indicates the latest timestamp corresponding to data that was
864
+ # successfully ingested during the most recent ingestion of this
865
+ # particular dataset.
866
+ # @return [Time]
867
+ #
716
868
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeDatasetResponse AWS API Documentation
717
869
  #
718
870
  class DescribeDatasetResponse < Struct.new(
@@ -723,7 +875,12 @@ module Aws::LookoutEquipment
723
875
  :status,
724
876
  :schema,
725
877
  :server_side_kms_key_id,
726
- :ingestion_input_configuration)
878
+ :ingestion_input_configuration,
879
+ :data_quality_summary,
880
+ :ingested_files_summary,
881
+ :role_arn,
882
+ :data_start_time,
883
+ :data_end_time)
727
884
  SENSITIVE = []
728
885
  include Aws::Structure
729
886
  end
@@ -999,6 +1156,21 @@ module Aws::LookoutEquipment
999
1156
  include Aws::Structure
1000
1157
  end
1001
1158
 
1159
+ # Entity that comprises information abount duplicate timestamps in the
1160
+ # dataset.
1161
+ #
1162
+ # @!attribute [rw] total_number_of_duplicate_timestamps
1163
+ # Indicates the total number of duplicate timestamps.
1164
+ # @return [Integer]
1165
+ #
1166
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DuplicateTimestamps AWS API Documentation
1167
+ #
1168
+ class DuplicateTimestamps < Struct.new(
1169
+ :total_number_of_duplicate_timestamps)
1170
+ SENSITIVE = []
1171
+ include Aws::Structure
1172
+ end
1173
+
1002
1174
  # Contains information about the specific inference execution, including
1003
1175
  # input and output data configuration, inference scheduling information,
1004
1176
  # status, and so on.
@@ -1045,7 +1217,7 @@ module Aws::LookoutEquipment
1045
1217
  #
1046
1218
  # @!attribute [rw] data_output_configuration
1047
1219
  # Specifies configuration information for the output results from for
1048
- # the inference execution, including the output S3 location.
1220
+ # the inference execution, including the output Amazon S3 location.
1049
1221
  # @return [Types::InferenceOutputConfiguration]
1050
1222
  #
1051
1223
  # @!attribute [rw] customer_result_object
@@ -1080,7 +1252,7 @@ module Aws::LookoutEquipment
1080
1252
  end
1081
1253
 
1082
1254
  # Specifies configuration information for the input data for the
1083
- # inference, including S3 location of input data..
1255
+ # inference, including Amazon S3 location of input data..
1084
1256
  #
1085
1257
  # @note When making an API call, you may pass InferenceInputConfiguration
1086
1258
  # data as a hash:
@@ -1099,12 +1271,12 @@ module Aws::LookoutEquipment
1099
1271
  #
1100
1272
  # @!attribute [rw] s3_input_configuration
1101
1273
  # Specifies configuration information for the input data for the
1102
- # inference, including S3 location of input data..
1274
+ # inference, including Amazon S3 location of input data.
1103
1275
  # @return [Types::InferenceS3InputConfiguration]
1104
1276
  #
1105
1277
  # @!attribute [rw] input_time_zone_offset
1106
- # Indicates the difference between your time zone and Greenwich Mean
1107
- # Time (GMT).
1278
+ # Indicates the difference between your time zone and Coordinated
1279
+ # Universal Time (UTC).
1108
1280
  # @return [String]
1109
1281
  #
1110
1282
  # @!attribute [rw] inference_input_name_configuration
@@ -1302,6 +1474,34 @@ module Aws::LookoutEquipment
1302
1474
  include Aws::Structure
1303
1475
  end
1304
1476
 
1477
+ # Gives statistics about how many files have been ingested, and which
1478
+ # files have not been ingested, for a particular ingestion job.
1479
+ #
1480
+ # @!attribute [rw] total_number_of_files
1481
+ # Indicates the total number of files that were submitted for
1482
+ # ingestion.
1483
+ # @return [Integer]
1484
+ #
1485
+ # @!attribute [rw] ingested_number_of_files
1486
+ # Indicates the number of files that were successfully ingested.
1487
+ # @return [Integer]
1488
+ #
1489
+ # @!attribute [rw] discarded_files
1490
+ # Indicates the number of files that were discarded. A file could be
1491
+ # discarded because its format is invalid (for example, a jpg or pdf)
1492
+ # or not readable.
1493
+ # @return [Array<Types::S3Object>]
1494
+ #
1495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/IngestedFilesSummary AWS API Documentation
1496
+ #
1497
+ class IngestedFilesSummary < Struct.new(
1498
+ :total_number_of_files,
1499
+ :ingested_number_of_files,
1500
+ :discarded_files)
1501
+ SENSITIVE = []
1502
+ include Aws::Structure
1503
+ end
1504
+
1305
1505
  # Specifies configuration information for the input data for the data
1306
1506
  # ingestion job, including input data S3 location.
1307
1507
  #
@@ -1312,6 +1512,7 @@ module Aws::LookoutEquipment
1312
1512
  # s3_input_configuration: { # required
1313
1513
  # bucket: "S3Bucket", # required
1314
1514
  # prefix: "S3Prefix",
1515
+ # key_pattern: "KeyPattern",
1315
1516
  # },
1316
1517
  # }
1317
1518
  #
@@ -1337,6 +1538,7 @@ module Aws::LookoutEquipment
1337
1538
  # {
1338
1539
  # bucket: "S3Bucket", # required
1339
1540
  # prefix: "S3Prefix",
1541
+ # key_pattern: "KeyPattern",
1340
1542
  # }
1341
1543
  #
1342
1544
  # @!attribute [rw] bucket
@@ -1349,11 +1551,41 @@ module Aws::LookoutEquipment
1349
1551
  # data ingestion.
1350
1552
  # @return [String]
1351
1553
  #
1554
+ # @!attribute [rw] key_pattern
1555
+ # Pattern for matching the Amazon S3 files which will be used for
1556
+ # ingestion. If no KeyPattern is provided, we will use the default
1557
+ # hierarchy file structure, which is same as KeyPattern
1558
+ # \\\{prefix\\}/\\\{component\_name\\}/*
1559
+ # @return [String]
1560
+ #
1352
1561
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/IngestionS3InputConfiguration AWS API Documentation
1353
1562
  #
1354
1563
  class IngestionS3InputConfiguration < Struct.new(
1355
1564
  :bucket,
1356
- :prefix)
1565
+ :prefix,
1566
+ :key_pattern)
1567
+ SENSITIVE = []
1568
+ include Aws::Structure
1569
+ end
1570
+
1571
+ # Entity that comprises aggregated information on sensors having
1572
+ # insufficient data.
1573
+ #
1574
+ # @!attribute [rw] missing_complete_sensor_data
1575
+ # Parameter that describes the total number of sensors that have data
1576
+ # completely missing for it.
1577
+ # @return [Types::MissingCompleteSensorData]
1578
+ #
1579
+ # @!attribute [rw] sensors_with_short_date_range
1580
+ # Parameter that describes the total number of sensors that have a
1581
+ # short date range of less than 90 days of data overall.
1582
+ # @return [Types::SensorsWithShortDateRange]
1583
+ #
1584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/InsufficientSensorData AWS API Documentation
1585
+ #
1586
+ class InsufficientSensorData < Struct.new(
1587
+ :missing_complete_sensor_data,
1588
+ :sensors_with_short_date_range)
1357
1589
  SENSITIVE = []
1358
1590
  include Aws::Structure
1359
1591
  end
@@ -1372,6 +1604,27 @@ module Aws::LookoutEquipment
1372
1604
  include Aws::Structure
1373
1605
  end
1374
1606
 
1607
+ # Entity that comprises aggregated information on sensors having
1608
+ # insufficient data.
1609
+ #
1610
+ # @!attribute [rw] affected_sensor_count
1611
+ # Indicates the number of sensors that have at least some invalid
1612
+ # values.
1613
+ # @return [Integer]
1614
+ #
1615
+ # @!attribute [rw] total_number_of_invalid_values
1616
+ # Indicates the total number of invalid values across all the sensors.
1617
+ # @return [Integer]
1618
+ #
1619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/InvalidSensorData AWS API Documentation
1620
+ #
1621
+ class InvalidSensorData < Struct.new(
1622
+ :affected_sensor_count,
1623
+ :total_number_of_invalid_values)
1624
+ SENSITIVE = []
1625
+ include Aws::Structure
1626
+ end
1627
+
1375
1628
  # Contains the configuration information for the S3 location being used
1376
1629
  # to hold label data.
1377
1630
  #
@@ -1426,6 +1679,32 @@ module Aws::LookoutEquipment
1426
1679
  include Aws::Structure
1427
1680
  end
1428
1681
 
1682
+ # Entity that comprises information on large gaps between consecutive
1683
+ # timestamps in data.
1684
+ #
1685
+ # @!attribute [rw] status
1686
+ # Indicates whether there is a potential data issue related to large
1687
+ # gaps in timestamps.
1688
+ # @return [String]
1689
+ #
1690
+ # @!attribute [rw] number_of_large_timestamp_gaps
1691
+ # Indicates the number of large timestamp gaps, if there are any.
1692
+ # @return [Integer]
1693
+ #
1694
+ # @!attribute [rw] max_timestamp_gap_in_days
1695
+ # Indicates the size of the largest timestamp gap, in days.
1696
+ # @return [Integer]
1697
+ #
1698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/LargeTimestampGaps AWS API Documentation
1699
+ #
1700
+ class LargeTimestampGaps < Struct.new(
1701
+ :status,
1702
+ :number_of_large_timestamp_gaps,
1703
+ :max_timestamp_gap_in_days)
1704
+ SENSITIVE = []
1705
+ include Aws::Structure
1706
+ end
1707
+
1429
1708
  # @note When making an API call, you may pass ListDataIngestionJobsRequest
1430
1709
  # data as a hash:
1431
1710
  #
@@ -1730,6 +2009,69 @@ module Aws::LookoutEquipment
1730
2009
  include Aws::Structure
1731
2010
  end
1732
2011
 
2012
+ # @note When making an API call, you may pass ListSensorStatisticsRequest
2013
+ # data as a hash:
2014
+ #
2015
+ # {
2016
+ # dataset_name: "DatasetName", # required
2017
+ # ingestion_job_id: "IngestionJobId",
2018
+ # max_results: 1,
2019
+ # next_token: "NextToken",
2020
+ # }
2021
+ #
2022
+ # @!attribute [rw] dataset_name
2023
+ # The name of the dataset associated with the list of Sensor
2024
+ # Statistics.
2025
+ # @return [String]
2026
+ #
2027
+ # @!attribute [rw] ingestion_job_id
2028
+ # The ingestion job id associated with the list of Sensor Statistics.
2029
+ # To get sensor statistics for a particular ingestion job id, both
2030
+ # dataset name and ingestion job id must be submitted as inputs.
2031
+ # @return [String]
2032
+ #
2033
+ # @!attribute [rw] max_results
2034
+ # Specifies the maximum number of sensors for which to retrieve
2035
+ # statistics.
2036
+ # @return [Integer]
2037
+ #
2038
+ # @!attribute [rw] next_token
2039
+ # An opaque pagination token indicating where to continue the listing
2040
+ # of sensor statistics.
2041
+ # @return [String]
2042
+ #
2043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListSensorStatisticsRequest AWS API Documentation
2044
+ #
2045
+ class ListSensorStatisticsRequest < Struct.new(
2046
+ :dataset_name,
2047
+ :ingestion_job_id,
2048
+ :max_results,
2049
+ :next_token)
2050
+ SENSITIVE = []
2051
+ include Aws::Structure
2052
+ end
2053
+
2054
+ # @!attribute [rw] sensor_statistics_summaries
2055
+ # Provides ingestion-based statistics regarding the specified sensor
2056
+ # with respect to various validation types, such as whether data
2057
+ # exists, the number and percentage of missing values, and the number
2058
+ # and percentage of duplicate timestamps.
2059
+ # @return [Array<Types::SensorStatisticsSummary>]
2060
+ #
2061
+ # @!attribute [rw] next_token
2062
+ # An opaque pagination token indicating where to continue the listing
2063
+ # of sensor statistics.
2064
+ # @return [String]
2065
+ #
2066
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListSensorStatisticsResponse AWS API Documentation
2067
+ #
2068
+ class ListSensorStatisticsResponse < Struct.new(
2069
+ :sensor_statistics_summaries,
2070
+ :next_token)
2071
+ SENSITIVE = []
2072
+ include Aws::Structure
2073
+ end
2074
+
1733
2075
  # @note When making an API call, you may pass ListTagsForResourceRequest
1734
2076
  # data as a hash:
1735
2077
  #
@@ -1762,6 +2104,41 @@ module Aws::LookoutEquipment
1762
2104
  include Aws::Structure
1763
2105
  end
1764
2106
 
2107
+ # Entity that comprises information on sensors that have sensor data
2108
+ # completely missing.
2109
+ #
2110
+ # @!attribute [rw] affected_sensor_count
2111
+ # Indicates the number of sensors that have data missing completely.
2112
+ # @return [Integer]
2113
+ #
2114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/MissingCompleteSensorData AWS API Documentation
2115
+ #
2116
+ class MissingCompleteSensorData < Struct.new(
2117
+ :affected_sensor_count)
2118
+ SENSITIVE = []
2119
+ include Aws::Structure
2120
+ end
2121
+
2122
+ # Entity that comprises aggregated information on sensors having missing
2123
+ # data.
2124
+ #
2125
+ # @!attribute [rw] affected_sensor_count
2126
+ # Indicates the number of sensors that have atleast some data missing.
2127
+ # @return [Integer]
2128
+ #
2129
+ # @!attribute [rw] total_number_of_missing_values
2130
+ # Indicates the total number of missing values across all the sensors.
2131
+ # @return [Integer]
2132
+ #
2133
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/MissingSensorData AWS API Documentation
2134
+ #
2135
+ class MissingSensorData < Struct.new(
2136
+ :affected_sensor_count,
2137
+ :total_number_of_missing_values)
2138
+ SENSITIVE = []
2139
+ include Aws::Structure
2140
+ end
2141
+
1765
2142
  # Provides information about the specified ML model, including dataset
1766
2143
  # and model names and ARNs, as well as status.
1767
2144
  #
@@ -1803,6 +2180,42 @@ module Aws::LookoutEquipment
1803
2180
  include Aws::Structure
1804
2181
  end
1805
2182
 
2183
+ # Entity that comprises information on monotonic values in the data.
2184
+ #
2185
+ # @!attribute [rw] status
2186
+ # Indicates whether there is a potential data issue related to having
2187
+ # monotonic values.
2188
+ # @return [String]
2189
+ #
2190
+ # @!attribute [rw] monotonicity
2191
+ # Indicates the monotonicity of values. Can be INCREASING, DECREASING,
2192
+ # or STATIC.
2193
+ # @return [String]
2194
+ #
2195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/MonotonicValues AWS API Documentation
2196
+ #
2197
+ class MonotonicValues < Struct.new(
2198
+ :status,
2199
+ :monotonicity)
2200
+ SENSITIVE = []
2201
+ include Aws::Structure
2202
+ end
2203
+
2204
+ # Entity that comprises information on operating modes in data.
2205
+ #
2206
+ # @!attribute [rw] status
2207
+ # Indicates whether there is a potential data issue related to having
2208
+ # multiple operating modes.
2209
+ # @return [String]
2210
+ #
2211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/MultipleOperatingModes AWS API Documentation
2212
+ #
2213
+ class MultipleOperatingModes < Struct.new(
2214
+ :status)
2215
+ SENSITIVE = []
2216
+ include Aws::Structure
2217
+ end
2218
+
1806
2219
  # The resource requested could not be found. Verify the resource ID and
1807
2220
  # retry your request.
1808
2221
  #
@@ -1838,6 +2251,112 @@ module Aws::LookoutEquipment
1838
2251
  include Aws::Structure
1839
2252
  end
1840
2253
 
2254
+ # Summary of ingestion statistics like whether data exists, number of
2255
+ # missing values, number of invalid values and so on related to the
2256
+ # particular sensor.
2257
+ #
2258
+ # @!attribute [rw] component_name
2259
+ # Name of the component to which the particular sensor belongs for
2260
+ # which the statistics belong to.
2261
+ # @return [String]
2262
+ #
2263
+ # @!attribute [rw] sensor_name
2264
+ # Name of the sensor that the statistics belong to.
2265
+ # @return [String]
2266
+ #
2267
+ # @!attribute [rw] data_exists
2268
+ # Parameter that indicates whether data exists for the sensor that the
2269
+ # statistics belong to.
2270
+ # @return [Boolean]
2271
+ #
2272
+ # @!attribute [rw] missing_values
2273
+ # Parameter that describes the total number of, and percentage of,
2274
+ # values that are missing for the sensor that the statistics belong
2275
+ # to.
2276
+ # @return [Types::CountPercent]
2277
+ #
2278
+ # @!attribute [rw] invalid_values
2279
+ # Parameter that describes the total number of, and percentage of,
2280
+ # values that are invalid for the sensor that the statistics belong
2281
+ # to.
2282
+ # @return [Types::CountPercent]
2283
+ #
2284
+ # @!attribute [rw] invalid_date_entries
2285
+ # Parameter that describes the total number of invalid date entries
2286
+ # associated with the sensor that the statistics belong to.
2287
+ # @return [Types::CountPercent]
2288
+ #
2289
+ # @!attribute [rw] duplicate_timestamps
2290
+ # Parameter that describes the total number of duplicate timestamp
2291
+ # records associated with the sensor that the statistics belong to.
2292
+ # @return [Types::CountPercent]
2293
+ #
2294
+ # @!attribute [rw] categorical_values
2295
+ # Parameter that describes potential risk about whether data
2296
+ # associated with the sensor is categorical.
2297
+ # @return [Types::CategoricalValues]
2298
+ #
2299
+ # @!attribute [rw] multiple_operating_modes
2300
+ # Parameter that describes potential risk about whether data
2301
+ # associated with the sensor has more than one operating mode.
2302
+ # @return [Types::MultipleOperatingModes]
2303
+ #
2304
+ # @!attribute [rw] large_timestamp_gaps
2305
+ # Parameter that describes potential risk about whether data
2306
+ # associated with the sensor contains one or more large gaps between
2307
+ # consecutive timestamps.
2308
+ # @return [Types::LargeTimestampGaps]
2309
+ #
2310
+ # @!attribute [rw] monotonic_values
2311
+ # Parameter that describes potential risk about whether data
2312
+ # associated with the sensor is mostly monotonic.
2313
+ # @return [Types::MonotonicValues]
2314
+ #
2315
+ # @!attribute [rw] data_start_time
2316
+ # Indicates the time reference to indicate the beginning of valid data
2317
+ # associated with the sensor that the statistics belong to.
2318
+ # @return [Time]
2319
+ #
2320
+ # @!attribute [rw] data_end_time
2321
+ # Indicates the time reference to indicate the end of valid data
2322
+ # associated with the sensor that the statistics belong to.
2323
+ # @return [Time]
2324
+ #
2325
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/SensorStatisticsSummary AWS API Documentation
2326
+ #
2327
+ class SensorStatisticsSummary < Struct.new(
2328
+ :component_name,
2329
+ :sensor_name,
2330
+ :data_exists,
2331
+ :missing_values,
2332
+ :invalid_values,
2333
+ :invalid_date_entries,
2334
+ :duplicate_timestamps,
2335
+ :categorical_values,
2336
+ :multiple_operating_modes,
2337
+ :large_timestamp_gaps,
2338
+ :monotonic_values,
2339
+ :data_start_time,
2340
+ :data_end_time)
2341
+ SENSITIVE = []
2342
+ include Aws::Structure
2343
+ end
2344
+
2345
+ # Entity that comprises information on sensors that have shorter date
2346
+ # range.
2347
+ #
2348
+ # @!attribute [rw] affected_sensor_count
2349
+ # Indicates the number of sensors that have less than 90 days of data.
2350
+ # @return [Integer]
2351
+ #
2352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/SensorsWithShortDateRange AWS API Documentation
2353
+ #
2354
+ class SensorsWithShortDateRange < Struct.new(
2355
+ :affected_sensor_count)
2356
+ SENSITIVE = []
2357
+ include Aws::Structure
2358
+ end
2359
+
1841
2360
  # Resource limitations have been exceeded.
1842
2361
  #
1843
2362
  # @!attribute [rw] message
@@ -1860,6 +2379,7 @@ module Aws::LookoutEquipment
1860
2379
  # s3_input_configuration: { # required
1861
2380
  # bucket: "S3Bucket", # required
1862
2381
  # prefix: "S3Prefix",
2382
+ # key_pattern: "KeyPattern",
1863
2383
  # },
1864
2384
  # },
1865
2385
  # role_arn: "IamRoleArn", # required
@@ -2099,6 +2619,22 @@ module Aws::LookoutEquipment
2099
2619
  include Aws::Structure
2100
2620
  end
2101
2621
 
2622
+ # Entity that comprises information abount unsupported timestamps in the
2623
+ # dataset.
2624
+ #
2625
+ # @!attribute [rw] total_number_of_unsupported_timestamps
2626
+ # Indicates the total number of unsupported timestamps across the
2627
+ # ingested data.
2628
+ # @return [Integer]
2629
+ #
2630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/UnsupportedTimestamps AWS API Documentation
2631
+ #
2632
+ class UnsupportedTimestamps < Struct.new(
2633
+ :total_number_of_unsupported_timestamps)
2634
+ SENSITIVE = []
2635
+ include Aws::Structure
2636
+ end
2637
+
2102
2638
  # @note When making an API call, you may pass UntagResourceRequest
2103
2639
  # data as a hash:
2104
2640
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-lookoutequipment/customizations'
48
48
  # @!group service
49
49
  module Aws::LookoutEquipment
50
50
 
51
- GEM_VERSION = '1.10.0'
51
+ GEM_VERSION = '1.11.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lookoutequipment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core