Class: Aws::SageMaker::Types::ModelPackageStatusItem
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelPackageStatusItem
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Represents the overall status of a model package.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #failure_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
if the overall status is ‘Failed`, the reason for the failure.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the model package for which the overall status is being reported.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status.
 
Instance Attribute Details
#failure_reason ⇒ String
if the overall status is ‘Failed`, the reason for the failure.
      35271 35272 35273 35274 35275 35276 35277  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35271 class ModelPackageStatusItem < Struct.new( :name, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the model package for which the overall status is being reported.
      35271 35272 35273 35274 35275 35276 35277  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35271 class ModelPackageStatusItem < Struct.new( :name, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The current status.
      35271 35272 35273 35274 35275 35276 35277  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35271 class ModelPackageStatusItem < Struct.new( :name, :status, :failure_reason) SENSITIVE = [] include Aws::Structure end  |