/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

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

See Also:

AWS * API Reference

*/ class TensorBoardOutputConfig { public: AWS_SAGEMAKER_API TensorBoardOutputConfig(); AWS_SAGEMAKER_API TensorBoardOutputConfig(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API TensorBoardOutputConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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

*/ inline const Aws::String& GetLocalPath() const{ return m_localPath; } /** *

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

*/ inline bool LocalPathHasBeenSet() const { return m_localPathHasBeenSet; } /** *

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

*/ inline void SetLocalPath(const Aws::String& value) { m_localPathHasBeenSet = true; m_localPath = value; } /** *

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

*/ inline void SetLocalPath(Aws::String&& value) { m_localPathHasBeenSet = true; m_localPath = std::move(value); } /** *

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

*/ inline void SetLocalPath(const char* value) { m_localPathHasBeenSet = true; m_localPath.assign(value); } /** *

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

*/ inline TensorBoardOutputConfig& WithLocalPath(const Aws::String& value) { SetLocalPath(value); return *this;} /** *

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

*/ inline TensorBoardOutputConfig& WithLocalPath(Aws::String&& value) { SetLocalPath(std::move(value)); return *this;} /** *

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

*/ inline TensorBoardOutputConfig& WithLocalPath(const char* value) { SetLocalPath(value); return *this;} /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline const Aws::String& GetS3OutputPath() const{ return m_s3OutputPath; } /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; } /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline void SetS3OutputPath(const Aws::String& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = value; } /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline void SetS3OutputPath(Aws::String&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::move(value); } /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline void SetS3OutputPath(const char* value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath.assign(value); } /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline TensorBoardOutputConfig& WithS3OutputPath(const Aws::String& value) { SetS3OutputPath(value); return *this;} /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline TensorBoardOutputConfig& WithS3OutputPath(Aws::String&& value) { SetS3OutputPath(std::move(value)); return *this;} /** *

Path to Amazon S3 storage location for TensorBoard output.

*/ inline TensorBoardOutputConfig& WithS3OutputPath(const char* value) { SetS3OutputPath(value); return *this;} private: Aws::String m_localPath; bool m_localPathHasBeenSet = false; Aws::String m_s3OutputPath; bool m_s3OutputPathHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws