Class: Aws::SageMaker::Types::TrialComponentStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TrialComponentStatus
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass TrialComponentStatus data as a hash:
{
primary_status: "InProgress", # accepts InProgress, Completed, Failed
message: "TrialComponentStatusMessage",
}
The status of the trial component.
Instance Attribute Summary collapse
-
#message ⇒ String
If the component failed, a message describing why.
-
#primary_status ⇒ String
The status of the trial component.
Instance Attribute Details
#message ⇒ String
If the component failed, a message describing why.
19393 19394 19395 19396 19397 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19393 class TrialComponentStatus < Struct.new( :primary_status, :message) include Aws::Structure end |
#primary_status ⇒ String
The status of the trial component.
19393 19394 19395 19396 19397 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 19393 class TrialComponentStatus < Struct.new( :primary_status, :message) include Aws::Structure end |