AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
S3ExportConfiguration.h
1
6#pragma once
7#include <aws/qldb/QLDB_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/qldb/model/S3EncryptionConfiguration.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 QLDB
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_QLDB_API S3ExportConfiguration();
40
41
43
50 inline const Aws::String& GetBucket() const{ return m_bucket; }
51 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
52 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
53 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
54 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
55 inline S3ExportConfiguration& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
56 inline S3ExportConfiguration& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
57 inline S3ExportConfiguration& WithBucket(const char* value) { SetBucket(value); return *this;}
59
61
72 inline const Aws::String& GetPrefix() const{ return m_prefix; }
73 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
74 inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; }
75 inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); }
76 inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); }
77 inline S3ExportConfiguration& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;}
78 inline S3ExportConfiguration& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;}
79 inline S3ExportConfiguration& WithPrefix(const char* value) { SetPrefix(value); return *this;}
81
83
87 inline const S3EncryptionConfiguration& GetEncryptionConfiguration() const{ return m_encryptionConfiguration; }
88 inline bool EncryptionConfigurationHasBeenSet() const { return m_encryptionConfigurationHasBeenSet; }
89 inline void SetEncryptionConfiguration(const S3EncryptionConfiguration& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = value; }
90 inline void SetEncryptionConfiguration(S3EncryptionConfiguration&& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = std::move(value); }
94 private:
95
96 Aws::String m_bucket;
97 bool m_bucketHasBeenSet = false;
98
99 Aws::String m_prefix;
100 bool m_prefixHasBeenSet = false;
101
102 S3EncryptionConfiguration m_encryptionConfiguration;
103 bool m_encryptionConfigurationHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace QLDB
108} // namespace Aws
S3ExportConfiguration & WithBucket(Aws::String &&value)
S3ExportConfiguration & WithEncryptionConfiguration(const S3EncryptionConfiguration &value)
S3ExportConfiguration & WithBucket(const Aws::String &value)
S3ExportConfiguration & WithPrefix(Aws::String &&value)
void SetBucket(const Aws::String &value)
S3ExportConfiguration & WithBucket(const char *value)
S3ExportConfiguration & WithEncryptionConfiguration(S3EncryptionConfiguration &&value)
void SetEncryptionConfiguration(S3EncryptionConfiguration &&value)
void SetEncryptionConfiguration(const S3EncryptionConfiguration &value)
AWS_QLDB_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QLDB_API S3ExportConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_QLDB_API S3ExportConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
S3ExportConfiguration & WithPrefix(const char *value)
const S3EncryptionConfiguration & GetEncryptionConfiguration() const
S3ExportConfiguration & WithPrefix(const Aws::String &value)
void SetPrefix(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue