Class: Aws::SageMaker::Types::CheckpointConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::CheckpointConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Contains information about the output location for managed spot training checkpoint data.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #local_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
(Optional) The local directory where checkpoints are written.
 - 
  
    
      #s3_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies the S3 path where you want SageMaker to store checkpoints.
 
Instance Attribute Details
#local_path ⇒ String
(Optional) The local directory where checkpoints are written. The default directory is ‘/opt/ml/checkpoints/`.
      3777 3778 3779 3780 3781 3782  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3777 class CheckpointConfig < Struct.new( :s3_uri, :local_path) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_uri ⇒ String
Identifies the S3 path where you want SageMaker to store checkpoints. For example, ‘s3://bucket-name/key-name-prefix`.
      3777 3778 3779 3780 3781 3782  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 3777 class CheckpointConfig < Struct.new( :s3_uri, :local_path) SENSITIVE = [] include Aws::Structure end  |