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

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

Overview

Contains information about the output locations for hybrid job checkpoint data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#local_pathString

(Optional) The local directory where checkpoint data is stored. The default directory is ‘/opt/braket/checkpoints/`.

Returns:

  • (String)


1014
1015
1016
1017
1018
1019
# File 'lib/aws-sdk-braket/types.rb', line 1014

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 checkpoint data. For example, ‘s3://bucket-name/key-name-prefix`.

Returns:

  • (String)


1014
1015
1016
1017
1018
1019
# File 'lib/aws-sdk-braket/types.rb', line 1014

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