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 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)


909
910
911
912
913
914
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 909

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)


909
910
911
912
913
914
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 909

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