aws-sdk-lookoutequipment 1.26.0 → 1.28.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: 99eda81f8af658b0fe2c055adeb9e905f71051ee6771428e9bb3b3f65a405309
4
- data.tar.gz: 4d4e2c7c475c45f91f48c3449128184b5e1413f84266e7fcbe58bbe9f8bd2bcb
3
+ metadata.gz: 07136557c56a64449fa9a611448d6223e7437cc1fd5ab5b7db95dc3fdf7af94c
4
+ data.tar.gz: 1e36bcd691569476b278d922c6c58c8b38ebc79d05e36b58ff8b88766b64a6e0
5
5
  SHA512:
6
- metadata.gz: 310603396692d362ced52a041d94505dfb55902afc07ae2373e13f35e2b5ae55a3f47051c56cc28040e9cefdffd08ead86e73de7539386af0c50d607185c3d3b
7
- data.tar.gz: bce278e64aa03af2e69a33b2cc7472fad45cd1702a99b8042541bfc0459c83707bbb11e258161912489f3da9b88dac902d3a4cba39434557648ee69702308e5b
6
+ metadata.gz: 065fd1171ec2da96a65be0a998c680ff9bf8fed18c40731406165249a3d2534d29dd2df069af169756a1f7788370869d05a63dd2d3270ac24dad8d4595dc490d
7
+ data.tar.gz: 216ef4023b1d6b35b3c786bcaba0975fc7975d8df7d5d28debfb1b9f1d4dd1ac4eb996dd530c3f59e73291f947662f129f83be13d342a50b6929753d210bd7cc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2024-02-14)
5
+ ------------------
6
+
7
+ * Feature - This feature allows customers to see pointwise model diagnostics results for their models.
8
+
9
+ 1.27.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.26.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.28.0
@@ -805,6 +805,11 @@ module Aws::LookoutEquipment
805
805
  # off. As long as this condition is met, Lookout for Equipment will not
806
806
  # use data from this asset for training, evaluation, or inference.
807
807
  #
808
+ # @option params [Types::ModelDiagnosticsOutputConfiguration] :model_diagnostics_output_configuration
809
+ # The Amazon S3 location where you want Amazon Lookout for Equipment to
810
+ # save the pointwise model diagnostics. You must also specify the
811
+ # `RoleArn` request parameter.
812
+ #
808
813
  # @return [Types::CreateModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
809
814
  #
810
815
  # * {Types::CreateModelResponse#model_arn #model_arn} => String
@@ -842,6 +847,13 @@ module Aws::LookoutEquipment
842
847
  # },
843
848
  # ],
844
849
  # off_condition: "OffCondition",
850
+ # model_diagnostics_output_configuration: {
851
+ # s3_output_configuration: { # required
852
+ # bucket: "S3Bucket", # required
853
+ # prefix: "S3Prefix",
854
+ # },
855
+ # kms_key_id: "NameOrArn",
856
+ # },
845
857
  # })
846
858
  #
847
859
  # @example Response structure
@@ -1483,6 +1495,7 @@ module Aws::LookoutEquipment
1483
1495
  # * {Types::DescribeModelResponse#accumulated_inference_data_start_time #accumulated_inference_data_start_time} => Time
1484
1496
  # * {Types::DescribeModelResponse#accumulated_inference_data_end_time #accumulated_inference_data_end_time} => Time
1485
1497
  # * {Types::DescribeModelResponse#retraining_scheduler_status #retraining_scheduler_status} => String
1498
+ # * {Types::DescribeModelResponse#model_diagnostics_output_configuration #model_diagnostics_output_configuration} => Types::ModelDiagnosticsOutputConfiguration
1486
1499
  #
1487
1500
  # @example Request syntax with placeholder values
1488
1501
  #
@@ -1534,6 +1547,9 @@ module Aws::LookoutEquipment
1534
1547
  # resp.accumulated_inference_data_start_time #=> Time
1535
1548
  # resp.accumulated_inference_data_end_time #=> Time
1536
1549
  # resp.retraining_scheduler_status #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED"
1550
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
1551
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
1552
+ # resp.model_diagnostics_output_configuration.kms_key_id #=> String
1537
1553
  #
1538
1554
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModel AWS API Documentation
1539
1555
  #
@@ -1586,6 +1602,8 @@ module Aws::LookoutEquipment
1586
1602
  # * {Types::DescribeModelVersionResponse#retraining_available_data_in_days #retraining_available_data_in_days} => Integer
1587
1603
  # * {Types::DescribeModelVersionResponse#auto_promotion_result #auto_promotion_result} => String
1588
1604
  # * {Types::DescribeModelVersionResponse#auto_promotion_result_reason #auto_promotion_result_reason} => String
1605
+ # * {Types::DescribeModelVersionResponse#model_diagnostics_output_configuration #model_diagnostics_output_configuration} => Types::ModelDiagnosticsOutputConfiguration
1606
+ # * {Types::DescribeModelVersionResponse#model_diagnostics_results_object #model_diagnostics_results_object} => Types::S3Object
1589
1607
  #
1590
1608
  # @example Request syntax with placeholder values
1591
1609
  #
@@ -1630,6 +1648,11 @@ module Aws::LookoutEquipment
1630
1648
  # resp.retraining_available_data_in_days #=> Integer
1631
1649
  # resp.auto_promotion_result #=> String, one of "MODEL_PROMOTED", "MODEL_NOT_PROMOTED", "RETRAINING_INTERNAL_ERROR", "RETRAINING_CUSTOMER_ERROR", "RETRAINING_CANCELLED"
1632
1650
  # resp.auto_promotion_result_reason #=> String
1651
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
1652
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
1653
+ # resp.model_diagnostics_output_configuration.kms_key_id #=> String
1654
+ # resp.model_diagnostics_results_object.bucket #=> String
1655
+ # resp.model_diagnostics_results_object.key #=> String
1633
1656
  #
1634
1657
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelVersion AWS API Documentation
1635
1658
  #
@@ -2243,7 +2266,7 @@ module Aws::LookoutEquipment
2243
2266
  # Provides a list of labels.
2244
2267
  #
2245
2268
  # @option params [required, String] :label_group_name
2246
- # Retruns the name of the label group.
2269
+ # Returns the name of the label group.
2247
2270
  #
2248
2271
  # @option params [Time,DateTime,Date,Integer,String] :interval_start_time
2249
2272
  # Returns all the labels with a end time equal to or later than the
@@ -2442,6 +2465,9 @@ module Aws::LookoutEquipment
2442
2465
  # resp.model_summaries[0].latest_scheduled_retraining_start_time #=> Time
2443
2466
  # resp.model_summaries[0].next_scheduled_retraining_start_date #=> Time
2444
2467
  # resp.model_summaries[0].retraining_scheduler_status #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED"
2468
+ # resp.model_summaries[0].model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
2469
+ # resp.model_summaries[0].model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
2470
+ # resp.model_summaries[0].model_diagnostics_output_configuration.kms_key_id #=> String
2445
2471
  #
2446
2472
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModels AWS API Documentation
2447
2473
  #
@@ -3139,6 +3165,11 @@ module Aws::LookoutEquipment
3139
3165
  # @option params [String] :role_arn
3140
3166
  # The ARN of the model to update.
3141
3167
  #
3168
+ # @option params [Types::ModelDiagnosticsOutputConfiguration] :model_diagnostics_output_configuration
3169
+ # The Amazon S3 location where you want Amazon Lookout for Equipment to
3170
+ # save the pointwise model diagnostics for the model. You must also
3171
+ # specify the `RoleArn` request parameter.
3172
+ #
3142
3173
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3143
3174
  #
3144
3175
  #
@@ -3163,6 +3194,13 @@ module Aws::LookoutEquipment
3163
3194
  # label_group_name: "LabelGroupName",
3164
3195
  # },
3165
3196
  # role_arn: "IamRoleArn",
3197
+ # model_diagnostics_output_configuration: {
3198
+ # s3_output_configuration: { # required
3199
+ # bucket: "S3Bucket", # required
3200
+ # prefix: "S3Prefix",
3201
+ # },
3202
+ # kms_key_id: "NameOrArn",
3203
+ # },
3166
3204
  # })
3167
3205
  #
3168
3206
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/UpdateModel AWS API Documentation
@@ -3256,7 +3294,7 @@ module Aws::LookoutEquipment
3256
3294
  params: params,
3257
3295
  config: config)
3258
3296
  context[:gem_name] = 'aws-sdk-lookoutequipment'
3259
- context[:gem_version] = '1.26.0'
3297
+ context[:gem_version] = '1.28.0'
3260
3298
  Seahorse::Client::Request.new(handlers, context)
3261
3299
  end
3262
3300
 
@@ -160,6 +160,8 @@ module Aws::LookoutEquipment
160
160
  MissingCompleteSensorData = Shapes::StructureShape.new(name: 'MissingCompleteSensorData')
161
161
  MissingSensorData = Shapes::StructureShape.new(name: 'MissingSensorData')
162
162
  ModelArn = Shapes::StringShape.new(name: 'ModelArn')
163
+ ModelDiagnosticsOutputConfiguration = Shapes::StructureShape.new(name: 'ModelDiagnosticsOutputConfiguration')
164
+ ModelDiagnosticsS3OutputConfiguration = Shapes::StructureShape.new(name: 'ModelDiagnosticsS3OutputConfiguration')
163
165
  ModelMetrics = Shapes::StringShape.new(name: 'ModelMetrics')
164
166
  ModelName = Shapes::StringShape.new(name: 'ModelName')
165
167
  ModelPromoteMode = Shapes::StringShape.new(name: 'ModelPromoteMode')
@@ -310,6 +312,7 @@ module Aws::LookoutEquipment
310
312
  CreateModelRequest.add_member(:server_side_kms_key_id, Shapes::ShapeRef.new(shape: NameOrArn, location_name: "ServerSideKmsKeyId"))
311
313
  CreateModelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
312
314
  CreateModelRequest.add_member(:off_condition, Shapes::ShapeRef.new(shape: OffCondition, location_name: "OffCondition"))
315
+ CreateModelRequest.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
313
316
  CreateModelRequest.struct_class = Types::CreateModelRequest
314
317
 
315
318
  CreateModelResponse.add_member(:model_arn, Shapes::ShapeRef.new(shape: ModelArn, location_name: "ModelArn"))
@@ -507,6 +510,7 @@ module Aws::LookoutEquipment
507
510
  DescribeModelResponse.add_member(:accumulated_inference_data_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AccumulatedInferenceDataStartTime"))
508
511
  DescribeModelResponse.add_member(:accumulated_inference_data_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AccumulatedInferenceDataEndTime"))
509
512
  DescribeModelResponse.add_member(:retraining_scheduler_status, Shapes::ShapeRef.new(shape: RetrainingSchedulerStatus, location_name: "RetrainingSchedulerStatus"))
513
+ DescribeModelResponse.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
510
514
  DescribeModelResponse.struct_class = Types::DescribeModelResponse
511
515
 
512
516
  DescribeModelVersionRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
@@ -545,6 +549,8 @@ module Aws::LookoutEquipment
545
549
  DescribeModelVersionResponse.add_member(:retraining_available_data_in_days, Shapes::ShapeRef.new(shape: Integer, location_name: "RetrainingAvailableDataInDays"))
546
550
  DescribeModelVersionResponse.add_member(:auto_promotion_result, Shapes::ShapeRef.new(shape: AutoPromotionResult, location_name: "AutoPromotionResult"))
547
551
  DescribeModelVersionResponse.add_member(:auto_promotion_result_reason, Shapes::ShapeRef.new(shape: AutoPromotionResultReason, location_name: "AutoPromotionResultReason"))
552
+ DescribeModelVersionResponse.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
553
+ DescribeModelVersionResponse.add_member(:model_diagnostics_results_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "ModelDiagnosticsResultsObject"))
548
554
  DescribeModelVersionResponse.struct_class = Types::DescribeModelVersionResponse
549
555
 
550
556
  DescribeResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
@@ -861,6 +867,14 @@ module Aws::LookoutEquipment
861
867
  MissingSensorData.add_member(:total_number_of_missing_values, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfMissingValues"))
862
868
  MissingSensorData.struct_class = Types::MissingSensorData
863
869
 
870
+ ModelDiagnosticsOutputConfiguration.add_member(:s3_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsS3OutputConfiguration, required: true, location_name: "S3OutputConfiguration"))
871
+ ModelDiagnosticsOutputConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NameOrArn, location_name: "KmsKeyId"))
872
+ ModelDiagnosticsOutputConfiguration.struct_class = Types::ModelDiagnosticsOutputConfiguration
873
+
874
+ ModelDiagnosticsS3OutputConfiguration.add_member(:bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "Bucket"))
875
+ ModelDiagnosticsS3OutputConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3Prefix, location_name: "Prefix"))
876
+ ModelDiagnosticsS3OutputConfiguration.struct_class = Types::ModelDiagnosticsS3OutputConfiguration
877
+
864
878
  ModelSummaries.member = Shapes::ShapeRef.new(shape: ModelSummary)
865
879
 
866
880
  ModelSummary.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelName"))
@@ -876,6 +890,7 @@ module Aws::LookoutEquipment
876
890
  ModelSummary.add_member(:latest_scheduled_retraining_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LatestScheduledRetrainingStartTime"))
877
891
  ModelSummary.add_member(:next_scheduled_retraining_start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "NextScheduledRetrainingStartDate"))
878
892
  ModelSummary.add_member(:retraining_scheduler_status, Shapes::ShapeRef.new(shape: RetrainingSchedulerStatus, location_name: "RetrainingSchedulerStatus"))
893
+ ModelSummary.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
879
894
  ModelSummary.struct_class = Types::ModelSummary
880
895
 
881
896
  ModelVersionSummaries.member = Shapes::ShapeRef.new(shape: ModelVersionSummary)
@@ -1045,6 +1060,7 @@ module Aws::LookoutEquipment
1045
1060
  UpdateModelRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
1046
1061
  UpdateModelRequest.add_member(:labels_input_configuration, Shapes::ShapeRef.new(shape: LabelsInputConfiguration, location_name: "LabelsInputConfiguration"))
1047
1062
  UpdateModelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
1063
+ UpdateModelRequest.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
1048
1064
  UpdateModelRequest.struct_class = Types::UpdateModelRequest
1049
1065
 
1050
1066
  UpdateRetrainingSchedulerRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
@@ -32,7 +32,7 @@ module Aws::LookoutEquipment
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://lookoutequipment-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -14,6 +14,7 @@ module Aws::LookoutEquipment
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::LookoutEquipment::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -470,6 +470,12 @@ module Aws::LookoutEquipment
470
470
  # not use data from this asset for training, evaluation, or inference.
471
471
  # @return [String]
472
472
  #
473
+ # @!attribute [rw] model_diagnostics_output_configuration
474
+ # The Amazon S3 location where you want Amazon Lookout for Equipment
475
+ # to save the pointwise model diagnostics. You must also specify the
476
+ # `RoleArn` request parameter.
477
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
478
+ #
473
479
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CreateModelRequest AWS API Documentation
474
480
  #
475
481
  class CreateModelRequest < Struct.new(
@@ -486,7 +492,8 @@ module Aws::LookoutEquipment
486
492
  :data_pre_processing_configuration,
487
493
  :server_side_kms_key_id,
488
494
  :tags,
489
- :off_condition)
495
+ :off_condition,
496
+ :model_diagnostics_output_configuration)
490
497
  SENSITIVE = []
491
498
  include Aws::Structure
492
499
  end
@@ -1513,6 +1520,11 @@ module Aws::LookoutEquipment
1513
1520
  # Indicates the status of the retraining scheduler.
1514
1521
  # @return [String]
1515
1522
  #
1523
+ # @!attribute [rw] model_diagnostics_output_configuration
1524
+ # Configuration information for the model's pointwise model
1525
+ # diagnostics.
1526
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
1527
+ #
1516
1528
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelResponse AWS API Documentation
1517
1529
  #
1518
1530
  class DescribeModelResponse < Struct.new(
@@ -1555,7 +1567,8 @@ module Aws::LookoutEquipment
1555
1567
  :next_scheduled_retraining_start_date,
1556
1568
  :accumulated_inference_data_start_time,
1557
1569
  :accumulated_inference_data_end_time,
1558
- :retraining_scheduler_status)
1570
+ :retraining_scheduler_status,
1571
+ :model_diagnostics_output_configuration)
1559
1572
  SENSITIVE = []
1560
1573
  include Aws::Structure
1561
1574
  end
@@ -1750,6 +1763,16 @@ module Aws::LookoutEquipment
1750
1763
  # than the previous model.
1751
1764
  # @return [String]
1752
1765
  #
1766
+ # @!attribute [rw] model_diagnostics_output_configuration
1767
+ # The Amazon S3 location where Amazon Lookout for Equipment saves the
1768
+ # pointwise model diagnostics for the model version.
1769
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
1770
+ #
1771
+ # @!attribute [rw] model_diagnostics_results_object
1772
+ # The Amazon S3 output prefix for where Lookout for Equipment saves
1773
+ # the pointwise model diagnostics for the model version.
1774
+ # @return [Types::S3Object]
1775
+ #
1753
1776
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelVersionResponse AWS API Documentation
1754
1777
  #
1755
1778
  class DescribeModelVersionResponse < Struct.new(
@@ -1784,7 +1807,9 @@ module Aws::LookoutEquipment
1784
1807
  :prior_model_metrics,
1785
1808
  :retraining_available_data_in_days,
1786
1809
  :auto_promotion_result,
1787
- :auto_promotion_result_reason)
1810
+ :auto_promotion_result_reason,
1811
+ :model_diagnostics_output_configuration,
1812
+ :model_diagnostics_results_object)
1788
1813
  SENSITIVE = []
1789
1814
  include Aws::Structure
1790
1815
  end
@@ -2502,7 +2527,7 @@ module Aws::LookoutEquipment
2502
2527
  #
2503
2528
  # @!attribute [rw] sensors_with_short_date_range
2504
2529
  # Parameter that describes the total number of sensors that have a
2505
- # short date range of less than 90 days of data overall.
2530
+ # short date range of less than 14 days of data overall.
2506
2531
  # @return [Types::SensorsWithShortDateRange]
2507
2532
  #
2508
2533
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/InsufficientSensorData AWS API Documentation
@@ -2898,6 +2923,13 @@ module Aws::LookoutEquipment
2898
2923
  # executions returned from the `ListInferenceExecutions` operation,
2899
2924
  # including model used, inference scheduler, data configuration, and
2900
2925
  # so on.
2926
+ #
2927
+ # <note markdown="1"> If you don't supply the `InferenceSchedulerName` request parameter,
2928
+ # or if you supply the name of an inference scheduler that doesn't
2929
+ # exist, `ListInferenceExecutions` returns an empty array in
2930
+ # `InferenceExecutionSummaries`.
2931
+ #
2932
+ # </note>
2901
2933
  # @return [Array<Types::InferenceExecutionSummary>]
2902
2934
  #
2903
2935
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListInferenceExecutionsResponse AWS API Documentation
@@ -3004,7 +3036,7 @@ module Aws::LookoutEquipment
3004
3036
  end
3005
3037
 
3006
3038
  # @!attribute [rw] label_group_name
3007
- # Retruns the name of the label group.
3039
+ # Returns the name of the label group.
3008
3040
  # @return [String]
3009
3041
  #
3010
3042
  # @!attribute [rw] interval_start_time
@@ -3055,6 +3087,12 @@ module Aws::LookoutEquipment
3055
3087
  #
3056
3088
  # @!attribute [rw] label_summaries
3057
3089
  # A summary of the items in the label group.
3090
+ #
3091
+ # <note markdown="1"> If you don't supply the `LabelGroupName` request parameter, or if
3092
+ # you supply the name of a label group that doesn't exist,
3093
+ # `ListLabels` returns an empty array in `LabelSummaries`.
3094
+ #
3095
+ # </note>
3058
3096
  # @return [Array<Types::LabelSummary>]
3059
3097
  #
3060
3098
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListLabelsResponse AWS API Documentation
@@ -3137,6 +3175,12 @@ module Aws::LookoutEquipment
3137
3175
  # @!attribute [rw] model_version_summaries
3138
3176
  # Provides information on the specified model version, including the
3139
3177
  # created time, model and dataset ARNs, and status.
3178
+ #
3179
+ # <note markdown="1"> If you don't supply the `ModelName` request parameter, or if you
3180
+ # supply the name of a model that doesn't exist, `ListModelVersions`
3181
+ # returns an empty array in `ModelVersionSummaries`.
3182
+ #
3183
+ # </note>
3140
3184
  # @return [Array<Types::ModelVersionSummary>]
3141
3185
  #
3142
3186
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModelVersionsResponse AWS API Documentation
@@ -3366,6 +3410,60 @@ module Aws::LookoutEquipment
3366
3410
  include Aws::Structure
3367
3411
  end
3368
3412
 
3413
+ # Output configuration information for the pointwise model diagnostics
3414
+ # for an Amazon Lookout for Equipment model.
3415
+ #
3416
+ # @!attribute [rw] s3_output_configuration
3417
+ # The Amazon S3 location for the pointwise model diagnostics.
3418
+ # @return [Types::ModelDiagnosticsS3OutputConfiguration]
3419
+ #
3420
+ # @!attribute [rw] kms_key_id
3421
+ # The Amazon Web Services Key Management Service (KMS) key identifier
3422
+ # to encrypt the pointwise model diagnostics files.
3423
+ # @return [String]
3424
+ #
3425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelDiagnosticsOutputConfiguration AWS API Documentation
3426
+ #
3427
+ class ModelDiagnosticsOutputConfiguration < Struct.new(
3428
+ :s3_output_configuration,
3429
+ :kms_key_id)
3430
+ SENSITIVE = []
3431
+ include Aws::Structure
3432
+ end
3433
+
3434
+ # The Amazon S3 location for the pointwise model diagnostics for an
3435
+ # Amazon Lookout for Equipment model.
3436
+ #
3437
+ # @!attribute [rw] bucket
3438
+ # The name of the Amazon S3 bucket where the pointwise model
3439
+ # diagnostics are located. You must be the owner of the Amazon S3
3440
+ # bucket.
3441
+ # @return [String]
3442
+ #
3443
+ # @!attribute [rw] prefix
3444
+ # The Amazon S3 prefix for the location of the pointwise model
3445
+ # diagnostics. The prefix specifies the folder and evaluation result
3446
+ # file name. (`bucket`).
3447
+ #
3448
+ # When you call `CreateModel` or `UpdateModel`, specify the path
3449
+ # within the bucket that you want Lookout for Equipment to save the
3450
+ # model to. During training, Lookout for Equipment creates the model
3451
+ # evaluation model as a compressed JSON file with the name
3452
+ # `model_diagnostics_results.json.gz`.
3453
+ #
3454
+ # When you call `DescribeModel` or `DescribeModelVersion`, `prefix`
3455
+ # contains the file path and filename of the model evaluation file.
3456
+ # @return [String]
3457
+ #
3458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelDiagnosticsS3OutputConfiguration AWS API Documentation
3459
+ #
3460
+ class ModelDiagnosticsS3OutputConfiguration < Struct.new(
3461
+ :bucket,
3462
+ :prefix)
3463
+ SENSITIVE = []
3464
+ include Aws::Structure
3465
+ end
3466
+
3369
3467
  # Provides information about the specified machine learning model,
3370
3468
  # including dataset and model names and ARNs, as well as status.
3371
3469
  #
@@ -3433,6 +3531,11 @@ module Aws::LookoutEquipment
3433
3531
  # Indicates the status of the retraining scheduler.
3434
3532
  # @return [String]
3435
3533
  #
3534
+ # @!attribute [rw] model_diagnostics_output_configuration
3535
+ # Output configuration information for the pointwise model diagnostics
3536
+ # for an Amazon Lookout for Equipment model.
3537
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
3538
+ #
3436
3539
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelSummary AWS API Documentation
3437
3540
  #
3438
3541
  class ModelSummary < Struct.new(
@@ -3448,7 +3551,8 @@ module Aws::LookoutEquipment
3448
3551
  :latest_scheduled_retraining_model_version,
3449
3552
  :latest_scheduled_retraining_start_time,
3450
3553
  :next_scheduled_retraining_start_date,
3451
- :retraining_scheduler_status)
3554
+ :retraining_scheduler_status,
3555
+ :model_diagnostics_output_configuration)
3452
3556
  SENSITIVE = []
3453
3557
  include Aws::Structure
3454
3558
  end
@@ -3761,7 +3865,7 @@ module Aws::LookoutEquipment
3761
3865
  # range.
3762
3866
  #
3763
3867
  # @!attribute [rw] affected_sensor_count
3764
- # Indicates the number of sensors that have less than 90 days of data.
3868
+ # Indicates the number of sensors that have less than 14 days of data.
3765
3869
  # @return [Integer]
3766
3870
  #
3767
3871
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/SensorsWithShortDateRange AWS API Documentation
@@ -4241,12 +4345,19 @@ module Aws::LookoutEquipment
4241
4345
  # The ARN of the model to update.
4242
4346
  # @return [String]
4243
4347
  #
4348
+ # @!attribute [rw] model_diagnostics_output_configuration
4349
+ # The Amazon S3 location where you want Amazon Lookout for Equipment
4350
+ # to save the pointwise model diagnostics for the model. You must also
4351
+ # specify the `RoleArn` request parameter.
4352
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
4353
+ #
4244
4354
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/UpdateModelRequest AWS API Documentation
4245
4355
  #
4246
4356
  class UpdateModelRequest < Struct.new(
4247
4357
  :model_name,
4248
4358
  :labels_input_configuration,
4249
- :role_arn)
4359
+ :role_arn,
4360
+ :model_diagnostics_output_configuration)
4250
4361
  SENSITIVE = []
4251
4362
  include Aws::Structure
4252
4363
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lookoutequipment/customizations'
52
52
  # @!group service
53
53
  module Aws::LookoutEquipment
54
54
 
55
- GEM_VERSION = '1.26.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  end