AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ProtectedQueryS3OutputConfiguration.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/model/ResultFormat.h>
9#include <aws/core/utils/memory/stl/AWSString.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 CleanRooms
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const ResultFormat& GetResultFormat() const{ return m_resultFormat; }
47 inline bool ResultFormatHasBeenSet() const { return m_resultFormatHasBeenSet; }
48 inline void SetResultFormat(const ResultFormat& value) { m_resultFormatHasBeenSet = true; m_resultFormat = value; }
49 inline void SetResultFormat(ResultFormat&& value) { m_resultFormatHasBeenSet = true; m_resultFormat = std::move(value); }
51 inline ProtectedQueryS3OutputConfiguration& WithResultFormat(ResultFormat&& value) { SetResultFormat(std::move(value)); return *this;}
53
55
58 inline const Aws::String& GetBucket() const{ return m_bucket; }
59 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
60 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
61 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
62 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
63 inline ProtectedQueryS3OutputConfiguration& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
64 inline ProtectedQueryS3OutputConfiguration& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
65 inline ProtectedQueryS3OutputConfiguration& WithBucket(const char* value) { SetBucket(value); return *this;}
67
69
72 inline const Aws::String& GetKeyPrefix() const{ return m_keyPrefix; }
73 inline bool KeyPrefixHasBeenSet() const { return m_keyPrefixHasBeenSet; }
74 inline void SetKeyPrefix(const Aws::String& value) { m_keyPrefixHasBeenSet = true; m_keyPrefix = value; }
75 inline void SetKeyPrefix(Aws::String&& value) { m_keyPrefixHasBeenSet = true; m_keyPrefix = std::move(value); }
76 inline void SetKeyPrefix(const char* value) { m_keyPrefixHasBeenSet = true; m_keyPrefix.assign(value); }
77 inline ProtectedQueryS3OutputConfiguration& WithKeyPrefix(const Aws::String& value) { SetKeyPrefix(value); return *this;}
78 inline ProtectedQueryS3OutputConfiguration& WithKeyPrefix(Aws::String&& value) { SetKeyPrefix(std::move(value)); return *this;}
79 inline ProtectedQueryS3OutputConfiguration& WithKeyPrefix(const char* value) { SetKeyPrefix(value); return *this;}
81
83
88 inline bool GetSingleFileOutput() const{ return m_singleFileOutput; }
89 inline bool SingleFileOutputHasBeenSet() const { return m_singleFileOutputHasBeenSet; }
90 inline void SetSingleFileOutput(bool value) { m_singleFileOutputHasBeenSet = true; m_singleFileOutput = value; }
93 private:
94
95 ResultFormat m_resultFormat;
96 bool m_resultFormatHasBeenSet = false;
97
98 Aws::String m_bucket;
99 bool m_bucketHasBeenSet = false;
100
101 Aws::String m_keyPrefix;
102 bool m_keyPrefixHasBeenSet = false;
103
104 bool m_singleFileOutput;
105 bool m_singleFileOutputHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace CleanRooms
110} // namespace Aws
ProtectedQueryS3OutputConfiguration & WithBucket(const Aws::String &value)
ProtectedQueryS3OutputConfiguration & WithResultFormat(ResultFormat &&value)
AWS_CLEANROOMS_API ProtectedQueryS3OutputConfiguration(Aws::Utils::Json::JsonView jsonValue)
ProtectedQueryS3OutputConfiguration & WithKeyPrefix(const char *value)
ProtectedQueryS3OutputConfiguration & WithSingleFileOutput(bool value)
AWS_CLEANROOMS_API ProtectedQueryS3OutputConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
ProtectedQueryS3OutputConfiguration & WithResultFormat(const ResultFormat &value)
ProtectedQueryS3OutputConfiguration & WithKeyPrefix(const Aws::String &value)
ProtectedQueryS3OutputConfiguration & WithKeyPrefix(Aws::String &&value)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
ProtectedQueryS3OutputConfiguration & WithBucket(Aws::String &&value)
ProtectedQueryS3OutputConfiguration & WithBucket(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue