Class: Aws::Braket::Types::JobCheckpointConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb

Overview

Contains information about the output locations for job 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/braket/checkpoints/.

Returns:

  • (String)


858
859
860
861
862
863
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 858

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

#s3_uriString

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

Returns:

  • (String)


858
859
860
861
862
863
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 858

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