AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
OutputDataConfig.h
1
6#pragma once
7#include <aws/comprehendmedical/ComprehendMedical_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 ComprehendMedical
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_COMPREHENDMEDICAL_API OutputDataConfig();
35 AWS_COMPREHENDMEDICAL_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue);
36 AWS_COMPREHENDMEDICAL_API OutputDataConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_COMPREHENDMEDICAL_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
48 inline const Aws::String& GetS3Bucket() const{ return m_s3Bucket; }
49 inline bool S3BucketHasBeenSet() const { return m_s3BucketHasBeenSet; }
50 inline void SetS3Bucket(const Aws::String& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = value; }
51 inline void SetS3Bucket(Aws::String&& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = std::move(value); }
52 inline void SetS3Bucket(const char* value) { m_s3BucketHasBeenSet = true; m_s3Bucket.assign(value); }
53 inline OutputDataConfig& WithS3Bucket(const Aws::String& value) { SetS3Bucket(value); return *this;}
54 inline OutputDataConfig& WithS3Bucket(Aws::String&& value) { SetS3Bucket(std::move(value)); return *this;}
55 inline OutputDataConfig& WithS3Bucket(const char* value) { SetS3Bucket(value); return *this;}
57
59
64 inline const Aws::String& GetS3Key() const{ return m_s3Key; }
65 inline bool S3KeyHasBeenSet() const { return m_s3KeyHasBeenSet; }
66 inline void SetS3Key(const Aws::String& value) { m_s3KeyHasBeenSet = true; m_s3Key = value; }
67 inline void SetS3Key(Aws::String&& value) { m_s3KeyHasBeenSet = true; m_s3Key = std::move(value); }
68 inline void SetS3Key(const char* value) { m_s3KeyHasBeenSet = true; m_s3Key.assign(value); }
69 inline OutputDataConfig& WithS3Key(const Aws::String& value) { SetS3Key(value); return *this;}
70 inline OutputDataConfig& WithS3Key(Aws::String&& value) { SetS3Key(std::move(value)); return *this;}
71 inline OutputDataConfig& WithS3Key(const char* value) { SetS3Key(value); return *this;}
73 private:
74
75 Aws::String m_s3Bucket;
76 bool m_s3BucketHasBeenSet = false;
77
78 Aws::String m_s3Key;
79 bool m_s3KeyHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace ComprehendMedical
84} // namespace Aws
AWS_COMPREHENDMEDICAL_API OutputDataConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_COMPREHENDMEDICAL_API OutputDataConfig(Aws::Utils::Json::JsonView jsonValue)
OutputDataConfig & WithS3Key(Aws::String &&value)
AWS_COMPREHENDMEDICAL_API Aws::Utils::Json::JsonValue Jsonize() const
OutputDataConfig & WithS3Key(const Aws::String &value)
OutputDataConfig & WithS3Bucket(const char *value)
OutputDataConfig & WithS3Key(const char *value)
OutputDataConfig & WithS3Bucket(Aws::String &&value)
AWS_COMPREHENDMEDICAL_API OutputDataConfig()
OutputDataConfig & WithS3Bucket(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue