Class: Aws::SageMaker::Types::TensorBoardOutputConfig

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

Overview

Configuration of storage locations for the Amazon SageMaker Debugger TensorBoard output data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#local_pathString

Path to local storage location for tensorBoard output. Defaults to ‘/opt/ml/output/tensorboard`.

Returns:

  • (String)


40196
40197
40198
40199
40200
40201
# File 'lib/aws-sdk-sagemaker/types.rb', line 40196

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

#s3_output_pathString

Path to Amazon S3 storage location for TensorBoard output.

Returns:

  • (String)


40196
40197
40198
40199
40200
40201
# File 'lib/aws-sdk-sagemaker/types.rb', line 40196

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