Class: Aws::SageMaker::Types::AlgorithmStatusDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AlgorithmStatusDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Specifies the validation and image scan statuses of the algorithm.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_scan_statuses ⇒ Array<Types::AlgorithmStatusItem>
The status of the scan of the algorithm’s Docker image container.
-
#validation_statuses ⇒ Array<Types::AlgorithmStatusItem>
The status of algorithm validation.
Instance Attribute Details
#image_scan_statuses ⇒ Array<Types::AlgorithmStatusItem>
The status of the scan of the algorithm’s Docker image container.
498 499 500 501 502 503 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmStatusDetails < Struct.new( :validation_statuses, :image_scan_statuses) SENSITIVE = [] include Aws::Structure end |
#validation_statuses ⇒ Array<Types::AlgorithmStatusItem>
The status of algorithm validation.
498 499 500 501 502 503 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 498 class AlgorithmStatusDetails < Struct.new( :validation_statuses, :image_scan_statuses) SENSITIVE = [] include Aws::Structure end |