Class: Aws::SageMaker::Types::ModelVariantConfigSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelVariantConfigSummary
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Summary of the deployment configuration of a model.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #infrastructure_config  ⇒ Types::ModelInfrastructureConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of the infrastructure that the model has been deployed to.
 - 
  
    
      #model_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Amazon SageMaker Model entity.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of deployment for the model variant on the hosted inference endpoint.
 - 
  
    
      #variant_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the variant.
 
Instance Attribute Details
#infrastructure_config ⇒ Types::ModelInfrastructureConfig
The configuration of the infrastructure that the model has been deployed to.
      35403 35404 35405 35406 35407 35408 35409 35410  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35403 class ModelVariantConfigSummary < Struct.new( :model_name, :variant_name, :infrastructure_config, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#model_name ⇒ String
The name of the Amazon SageMaker Model entity.
      35403 35404 35405 35406 35407 35408 35409 35410  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35403 class ModelVariantConfigSummary < Struct.new( :model_name, :variant_name, :infrastructure_config, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of deployment for the model variant on the hosted inference endpoint.
- 
‘Creating` - Amazon SageMaker is preparing the model variant on the hosted inference endpoint.
 - 
‘InService` - The model variant is running on the hosted inference endpoint.
 - 
‘Updating` - Amazon SageMaker is updating the model variant on the hosted inference endpoint.
 - 
‘Deleting` - Amazon SageMaker is deleting the model variant on the hosted inference endpoint.
 - 
‘Deleted` - The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.
 
      35403 35404 35405 35406 35407 35408 35409 35410  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35403 class ModelVariantConfigSummary < Struct.new( :model_name, :variant_name, :infrastructure_config, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#variant_name ⇒ String
The name of the variant.
      35403 35404 35405 35406 35407 35408 35409 35410  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35403 class ModelVariantConfigSummary < Struct.new( :model_name, :variant_name, :infrastructure_config, :status) SENSITIVE = [] include Aws::Structure end  |