AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TensorBoardOutputConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SageMaker
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_SAGEMAKER_API TensorBoardOutputConfig();
38 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetLocalPath() const{ return m_localPath; }
47 inline bool LocalPathHasBeenSet() const { return m_localPathHasBeenSet; }
48 inline void SetLocalPath(const Aws::String& value) { m_localPathHasBeenSet = true; m_localPath = value; }
49 inline void SetLocalPath(Aws::String&& value) { m_localPathHasBeenSet = true; m_localPath = std::move(value); }
50 inline void SetLocalPath(const char* value) { m_localPathHasBeenSet = true; m_localPath.assign(value); }
51 inline TensorBoardOutputConfig& WithLocalPath(const Aws::String& value) { SetLocalPath(value); return *this;}
52 inline TensorBoardOutputConfig& WithLocalPath(Aws::String&& value) { SetLocalPath(std::move(value)); return *this;}
53 inline TensorBoardOutputConfig& WithLocalPath(const char* value) { SetLocalPath(value); return *this;}
55
57
60 inline const Aws::String& GetS3OutputPath() const{ return m_s3OutputPath; }
61 inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; }
62 inline void SetS3OutputPath(const Aws::String& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = value; }
63 inline void SetS3OutputPath(Aws::String&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::move(value); }
64 inline void SetS3OutputPath(const char* value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath.assign(value); }
65 inline TensorBoardOutputConfig& WithS3OutputPath(const Aws::String& value) { SetS3OutputPath(value); return *this;}
66 inline TensorBoardOutputConfig& WithS3OutputPath(Aws::String&& value) { SetS3OutputPath(std::move(value)); return *this;}
67 inline TensorBoardOutputConfig& WithS3OutputPath(const char* value) { SetS3OutputPath(value); return *this;}
69 private:
70
71 Aws::String m_localPath;
72 bool m_localPathHasBeenSet = false;
73
74 Aws::String m_s3OutputPath;
75 bool m_s3OutputPathHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace SageMaker
80} // namespace Aws
AWS_SAGEMAKER_API TensorBoardOutputConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
TensorBoardOutputConfig & WithLocalPath(Aws::String &&value)
AWS_SAGEMAKER_API TensorBoardOutputConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
TensorBoardOutputConfig & WithS3OutputPath(Aws::String &&value)
TensorBoardOutputConfig & WithS3OutputPath(const char *value)
TensorBoardOutputConfig & WithLocalPath(const char *value)
TensorBoardOutputConfig & WithLocalPath(const Aws::String &value)
TensorBoardOutputConfig & WithS3OutputPath(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue