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)


40080
40081
40082
40083
40084
40085
# File 'lib/aws-sdk-sagemaker/types.rb', line 40080

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)


40080
40081
40082
40083
40084
40085
# File 'lib/aws-sdk-sagemaker/types.rb', line 40080

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