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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#local_pathString

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

Returns:

  • (String)


3393
3394
3395
3396
3397
3398
# File 'lib/aws-sdk-sagemaker/types.rb', line 3393

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)


3393
3394
3395
3396
3397
3398
# File 'lib/aws-sdk-sagemaker/types.rb', line 3393

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