Class: Aws::SageMaker::Types::ModelClientConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelClientConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Configures the timeout and maximum number of retries for processing a transform job invocation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #invocations_max_retries  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of retries when invocation requests are failing.
 - 
  
    
      #invocations_timeout_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The timeout value in seconds for an invocation request.
 
Instance Attribute Details
#invocations_max_retries ⇒ Integer
The maximum number of retries when invocation requests are failing. The default value is 3.
      33877 33878 33879 33880 33881 33882  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33877 class ModelClientConfig < Struct.new( :invocations_timeout_in_seconds, :invocations_max_retries) SENSITIVE = [] include Aws::Structure end  | 
  
#invocations_timeout_in_seconds ⇒ Integer
The timeout value in seconds for an invocation request. The default value is 600.
      33877 33878 33879 33880 33881 33882  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33877 class ModelClientConfig < Struct.new( :invocations_timeout_in_seconds, :invocations_max_retries) SENSITIVE = [] include Aws::Structure end  |