Class: Aws::SageMaker::Types::CheckpointConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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

Instance Attribute Details

#local_pathString

(Optional) The local directory where checkpoints are written. The default directory is /opt/ml/checkpoints/.

Returns:

  • (String)


3528
3529
3530
3531
3532
3533
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3528

class CheckpointConfig < Struct.new(
  :s3_uri,
  :local_path)
  SENSITIVE = []
  include Aws::Structure
end

#s3_uriString

Identifies the S3 path where you want SageMaker to store checkpoints. For example, s3://bucket-name/key-name-prefix.

Returns:

  • (String)


3528
3529
3530
3531
3532
3533
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 3528

class CheckpointConfig < Struct.new(
  :s3_uri,
  :local_path)
  SENSITIVE = []
  include Aws::Structure
end