Class: Aws::SageMaker::Types::TrialComponentStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TrialComponentStatus
- Defined in:
- gems/aws-sdk-sagemaker/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, Stopping, Stopped
message: "TrialComponentStatusMessage",
}
The status of the trial component.
Constant Summary collapse
- SENSITIVE =
[]
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.
38478 38479 38480 38481 38482 38483 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38478 class TrialComponentStatus < Struct.new( :primary_status, :message) SENSITIVE = [] include Aws::Structure end |
#primary_status ⇒ String
The status of the trial component.
38478 38479 38480 38481 38482 38483 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38478 class TrialComponentStatus < Struct.new( :primary_status, :message) SENSITIVE = [] include Aws::Structure end |