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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass CheckpointConfig data as a hash:

{
  s3_uri: "S3Uri", # required
  local_path: "DirectoryPath",
}

Contains information about the output location for managed spot training checkpoint data.

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)


1556
1557
1558
1559
1560
# File 'lib/aws-sdk-sagemaker/types.rb', line 1556

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

#s3_uriString

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

Returns:

  • (String)


1556
1557
1558
1559
1560
# File 'lib/aws-sdk-sagemaker/types.rb', line 1556

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