Class: Aws::SageMaker::Types::ModelInfrastructureConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelInfrastructureConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The configuration for the infrastructure that the model will be deployed to.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #infrastructure_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The inference option to which to deploy your model.
 - 
  
    
      #real_time_inference_config  ⇒ Types::RealTimeInferenceConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The infrastructure configuration for deploying the model to real-time inference.
 
Instance Attribute Details
#infrastructure_type ⇒ String
The inference option to which to deploy your model. Possible values are the following:
- 
‘RealTime`: Deploy to real-time inference.
 
^
      34555 34556 34557 34558 34559 34560  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34555 class ModelInfrastructureConfig < Struct.new( :infrastructure_type, :real_time_inference_config) SENSITIVE = [] include Aws::Structure end  | 
  
#real_time_inference_config ⇒ Types::RealTimeInferenceConfig
The infrastructure configuration for deploying the model to real-time inference.
      34555 34556 34557 34558 34559 34560  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34555 class ModelInfrastructureConfig < Struct.new( :infrastructure_type, :real_time_inference_config) SENSITIVE = [] include Aws::Structure end  |