AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
MonitoringAppSpecification.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMaker
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_SAGEMAKER_API MonitoringAppSpecification() = default;
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetImageUri() const { return m_imageUri; }
47 inline bool ImageUriHasBeenSet() const { return m_imageUriHasBeenSet; }
48 template<typename ImageUriT = Aws::String>
49 void SetImageUri(ImageUriT&& value) { m_imageUriHasBeenSet = true; m_imageUri = std::forward<ImageUriT>(value); }
50 template<typename ImageUriT = Aws::String>
51 MonitoringAppSpecification& WithImageUri(ImageUriT&& value) { SetImageUri(std::forward<ImageUriT>(value)); return *this;}
53
55
58 inline const Aws::Vector<Aws::String>& GetContainerEntrypoint() const { return m_containerEntrypoint; }
59 inline bool ContainerEntrypointHasBeenSet() const { return m_containerEntrypointHasBeenSet; }
60 template<typename ContainerEntrypointT = Aws::Vector<Aws::String>>
61 void SetContainerEntrypoint(ContainerEntrypointT&& value) { m_containerEntrypointHasBeenSet = true; m_containerEntrypoint = std::forward<ContainerEntrypointT>(value); }
62 template<typename ContainerEntrypointT = Aws::Vector<Aws::String>>
63 MonitoringAppSpecification& WithContainerEntrypoint(ContainerEntrypointT&& value) { SetContainerEntrypoint(std::forward<ContainerEntrypointT>(value)); return *this;}
64 template<typename ContainerEntrypointT = Aws::String>
65 MonitoringAppSpecification& AddContainerEntrypoint(ContainerEntrypointT&& value) { m_containerEntrypointHasBeenSet = true; m_containerEntrypoint.emplace_back(std::forward<ContainerEntrypointT>(value)); return *this; }
67
69
72 inline const Aws::Vector<Aws::String>& GetContainerArguments() const { return m_containerArguments; }
73 inline bool ContainerArgumentsHasBeenSet() const { return m_containerArgumentsHasBeenSet; }
74 template<typename ContainerArgumentsT = Aws::Vector<Aws::String>>
75 void SetContainerArguments(ContainerArgumentsT&& value) { m_containerArgumentsHasBeenSet = true; m_containerArguments = std::forward<ContainerArgumentsT>(value); }
76 template<typename ContainerArgumentsT = Aws::Vector<Aws::String>>
77 MonitoringAppSpecification& WithContainerArguments(ContainerArgumentsT&& value) { SetContainerArguments(std::forward<ContainerArgumentsT>(value)); return *this;}
78 template<typename ContainerArgumentsT = Aws::String>
79 MonitoringAppSpecification& AddContainerArguments(ContainerArgumentsT&& value) { m_containerArgumentsHasBeenSet = true; m_containerArguments.emplace_back(std::forward<ContainerArgumentsT>(value)); return *this; }
81
83
89 inline const Aws::String& GetRecordPreprocessorSourceUri() const { return m_recordPreprocessorSourceUri; }
90 inline bool RecordPreprocessorSourceUriHasBeenSet() const { return m_recordPreprocessorSourceUriHasBeenSet; }
91 template<typename RecordPreprocessorSourceUriT = Aws::String>
92 void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) { m_recordPreprocessorSourceUriHasBeenSet = true; m_recordPreprocessorSourceUri = std::forward<RecordPreprocessorSourceUriT>(value); }
93 template<typename RecordPreprocessorSourceUriT = Aws::String>
94 MonitoringAppSpecification& WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT&& value) { SetRecordPreprocessorSourceUri(std::forward<RecordPreprocessorSourceUriT>(value)); return *this;}
96
98
102 inline const Aws::String& GetPostAnalyticsProcessorSourceUri() const { return m_postAnalyticsProcessorSourceUri; }
103 inline bool PostAnalyticsProcessorSourceUriHasBeenSet() const { return m_postAnalyticsProcessorSourceUriHasBeenSet; }
104 template<typename PostAnalyticsProcessorSourceUriT = Aws::String>
105 void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) { m_postAnalyticsProcessorSourceUriHasBeenSet = true; m_postAnalyticsProcessorSourceUri = std::forward<PostAnalyticsProcessorSourceUriT>(value); }
106 template<typename PostAnalyticsProcessorSourceUriT = Aws::String>
107 MonitoringAppSpecification& WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT&& value) { SetPostAnalyticsProcessorSourceUri(std::forward<PostAnalyticsProcessorSourceUriT>(value)); return *this;}
109 private:
110
111 Aws::String m_imageUri;
112 bool m_imageUriHasBeenSet = false;
113
114 Aws::Vector<Aws::String> m_containerEntrypoint;
115 bool m_containerEntrypointHasBeenSet = false;
116
117 Aws::Vector<Aws::String> m_containerArguments;
118 bool m_containerArgumentsHasBeenSet = false;
119
120 Aws::String m_recordPreprocessorSourceUri;
121 bool m_recordPreprocessorSourceUriHasBeenSet = false;
122
123 Aws::String m_postAnalyticsProcessorSourceUri;
124 bool m_postAnalyticsProcessorSourceUriHasBeenSet = false;
125 };
126
127} // namespace Model
128} // namespace SageMaker
129} // namespace Aws
MonitoringAppSpecification & WithContainerEntrypoint(ContainerEntrypointT &&value)
MonitoringAppSpecification & AddContainerArguments(ContainerArgumentsT &&value)
MonitoringAppSpecification & WithImageUri(ImageUriT &&value)
MonitoringAppSpecification & AddContainerEntrypoint(ContainerEntrypointT &&value)
MonitoringAppSpecification & WithRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetRecordPreprocessorSourceUri(RecordPreprocessorSourceUriT &&value)
AWS_SAGEMAKER_API MonitoringAppSpecification & operator=(Aws::Utils::Json::JsonView jsonValue)
MonitoringAppSpecification & WithPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT &&value)
void SetPostAnalyticsProcessorSourceUri(PostAnalyticsProcessorSourceUriT &&value)
const Aws::Vector< Aws::String > & GetContainerArguments() const
AWS_SAGEMAKER_API MonitoringAppSpecification()=default
AWS_SAGEMAKER_API MonitoringAppSpecification(Aws::Utils::Json::JsonView jsonValue)
MonitoringAppSpecification & WithContainerArguments(ContainerArgumentsT &&value)
const Aws::Vector< Aws::String > & GetContainerEntrypoint() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue