Class: Aws::Braket::Types::JobCheckpointConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::JobCheckpointConfig
- Includes:
- Structure
- Defined in:
- 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
-
#local_path ⇒ String
(Optional) The local directory where checkpoints are written.
-
#s3_uri ⇒ String
Identifies the S3 path where you want Amazon Braket to store checkpoints.
Instance Attribute Details
#local_path ⇒ String
(Optional) The local directory where checkpoints are written. The default directory is ‘/opt/braket/checkpoints/`.
858 859 860 861 862 863 |
# File 'lib/aws-sdk-braket/types.rb', line 858 class JobCheckpointConfig < Struct.new( :local_path, :s3_uri) SENSITIVE = [] include Aws::Structure end |
#s3_uri ⇒ String
Identifies the S3 path where you want Amazon Braket to store checkpoints. For example, ‘s3://bucket-name/key-name-prefix`.
858 859 860 861 862 863 |
# File 'lib/aws-sdk-braket/types.rb', line 858 class JobCheckpointConfig < Struct.new( :local_path, :s3_uri) SENSITIVE = [] include Aws::Structure end |