AWS SDK for C++

AWS SDK for C++ Version 1.11.718

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