Class: Aws::LookoutEquipment::Types::ModelDiagnosticsS3OutputConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::ModelDiagnosticsS3OutputConfiguration
- Defined in:
- gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb
Overview
The Amazon S3 location for the pointwise model diagnostics for an Amazon Lookout for Equipment model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket where the pointwise model diagnostics are located.
-
#prefix ⇒ String
The Amazon S3 prefix for the location of the pointwise model diagnostics.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket where the pointwise model diagnostics are located. You must be the owner of the Amazon S3 bucket.
3532 3533 3534 3535 3536 3537 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 3532 class ModelDiagnosticsS3OutputConfiguration < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The Amazon S3 prefix for the location of the pointwise model
diagnostics. The prefix specifies the folder and evaluation result
file name. (bucket
).
When you call CreateModel
or UpdateModel
, specify the path
within the bucket that you want Lookout for Equipment to save the
model to. During training, Lookout for Equipment creates the model
evaluation model as a compressed JSON file with the name
model_diagnostics_results.json.gz
.
When you call DescribeModel
or DescribeModelVersion
, prefix
contains the file path and filename of the model evaluation file.
3532 3533 3534 3535 3536 3537 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 3532 class ModelDiagnosticsS3OutputConfiguration < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |