AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetDestination(const Aws::String& value) { m_destinationHasBeenSet = true; m_destination = value; }
50 inline void SetDestination(Aws::String&& value) { m_destinationHasBeenSet = true; m_destination = std::move(value); }
51 inline void SetDestination(const char* value) { m_destinationHasBeenSet = true; m_destination.assign(value); }
53 inline InferenceExperimentDataStorageConfig& WithDestination(Aws::String&& value) { SetDestination(std::move(value)); return *this;}
54 inline InferenceExperimentDataStorageConfig& WithDestination(const char* value) { SetDestination(value); return *this;}
56
58
63 inline const Aws::String& GetKmsKey() const{ return m_kmsKey; }
64 inline bool KmsKeyHasBeenSet() const { return m_kmsKeyHasBeenSet; }
65 inline void SetKmsKey(const Aws::String& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = value; }
66 inline void SetKmsKey(Aws::String&& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = std::move(value); }
67 inline void SetKmsKey(const char* value) { m_kmsKeyHasBeenSet = true; m_kmsKey.assign(value); }
68 inline InferenceExperimentDataStorageConfig& WithKmsKey(const Aws::String& value) { SetKmsKey(value); return *this;}
69 inline InferenceExperimentDataStorageConfig& WithKmsKey(Aws::String&& value) { SetKmsKey(std::move(value)); return *this;}
70 inline InferenceExperimentDataStorageConfig& WithKmsKey(const char* value) { SetKmsKey(value); return *this;}
72
74
75 inline const CaptureContentTypeHeader& GetContentType() const{ return m_contentType; }
76 inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
77 inline void SetContentType(const CaptureContentTypeHeader& value) { m_contentTypeHasBeenSet = true; m_contentType = value; }
78 inline void SetContentType(CaptureContentTypeHeader&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::move(value); }
82 private:
83
84 Aws::String m_destination;
85 bool m_destinationHasBeenSet = false;
86
87 Aws::String m_kmsKey;
88 bool m_kmsKeyHasBeenSet = false;
89
90 CaptureContentTypeHeader m_contentType;
91 bool m_contentTypeHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace SageMaker
96} // namespace Aws
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
InferenceExperimentDataStorageConfig & WithDestination(Aws::String &&value)
InferenceExperimentDataStorageConfig & WithKmsKey(const Aws::String &value)
AWS_SAGEMAKER_API InferenceExperimentDataStorageConfig(Aws::Utils::Json::JsonView jsonValue)
InferenceExperimentDataStorageConfig & WithDestination(const Aws::String &value)
InferenceExperimentDataStorageConfig & WithContentType(CaptureContentTypeHeader &&value)
InferenceExperimentDataStorageConfig & WithKmsKey(Aws::String &&value)
AWS_SAGEMAKER_API InferenceExperimentDataStorageConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
InferenceExperimentDataStorageConfig & WithContentType(const CaptureContentTypeHeader &value)
InferenceExperimentDataStorageConfig & WithKmsKey(const char *value)
InferenceExperimentDataStorageConfig & WithDestination(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue