AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
InferenceExperimentDataStorageConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/model/CaptureContentTypeHeader.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 InferenceExperimentDataStorageConfig() = default;
39 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetDestination() const { return m_destination; }
48 inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; }
49 template<typename DestinationT = Aws::String>
50 void SetDestination(DestinationT&& value) { m_destinationHasBeenSet = true; m_destination = std::forward<DestinationT>(value); }
51 template<typename DestinationT = Aws::String>
52 InferenceExperimentDataStorageConfig& WithDestination(DestinationT&& value) { SetDestination(std::forward<DestinationT>(value)); return *this;}
54
56
61 inline const Aws::String& GetKmsKey() const { return m_kmsKey; }
62 inline bool KmsKeyHasBeenSet() const { return m_kmsKeyHasBeenSet; }
63 template<typename KmsKeyT = Aws::String>
64 void SetKmsKey(KmsKeyT&& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = std::forward<KmsKeyT>(value); }
65 template<typename KmsKeyT = Aws::String>
66 InferenceExperimentDataStorageConfig& WithKmsKey(KmsKeyT&& value) { SetKmsKey(std::forward<KmsKeyT>(value)); return *this;}
68
70
71 inline const CaptureContentTypeHeader& GetContentType() const { return m_contentType; }
72 inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
73 template<typename ContentTypeT = CaptureContentTypeHeader>
74 void SetContentType(ContentTypeT&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::forward<ContentTypeT>(value); }
75 template<typename ContentTypeT = CaptureContentTypeHeader>
76 InferenceExperimentDataStorageConfig& WithContentType(ContentTypeT&& value) { SetContentType(std::forward<ContentTypeT>(value)); return *this;}
78 private:
79
80 Aws::String m_destination;
81 bool m_destinationHasBeenSet = false;
82
83 Aws::String m_kmsKey;
84 bool m_kmsKeyHasBeenSet = false;
85
86 CaptureContentTypeHeader m_contentType;
87 bool m_contentTypeHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace SageMaker
92} // namespace Aws
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API InferenceExperimentDataStorageConfig(Aws::Utils::Json::JsonView jsonValue)
InferenceExperimentDataStorageConfig & WithKmsKey(KmsKeyT &&value)
InferenceExperimentDataStorageConfig & WithDestination(DestinationT &&value)
AWS_SAGEMAKER_API InferenceExperimentDataStorageConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
InferenceExperimentDataStorageConfig & WithContentType(ContentTypeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue