AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
UpsolverDestinationProperties.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/appflow/model/UpsolverS3OutputFormatConfig.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace Appflow {
21namespace Model {
22
30 public:
31 AWS_APPFLOW_API UpsolverDestinationProperties() = default;
34 AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
41 inline const Aws::String& GetBucketName() const { return m_bucketName; }
42 inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; }
43 template <typename BucketNameT = Aws::String>
44 void SetBucketName(BucketNameT&& value) {
45 m_bucketNameHasBeenSet = true;
46 m_bucketName = std::forward<BucketNameT>(value);
47 }
48 template <typename BucketNameT = Aws::String>
50 SetBucketName(std::forward<BucketNameT>(value));
51 return *this;
52 }
54
56
60 inline const Aws::String& GetBucketPrefix() const { return m_bucketPrefix; }
61 inline bool BucketPrefixHasBeenSet() const { return m_bucketPrefixHasBeenSet; }
62 template <typename BucketPrefixT = Aws::String>
63 void SetBucketPrefix(BucketPrefixT&& value) {
64 m_bucketPrefixHasBeenSet = true;
65 m_bucketPrefix = std::forward<BucketPrefixT>(value);
66 }
67 template <typename BucketPrefixT = Aws::String>
69 SetBucketPrefix(std::forward<BucketPrefixT>(value));
70 return *this;
71 }
73
75
79 inline const UpsolverS3OutputFormatConfig& GetS3OutputFormatConfig() const { return m_s3OutputFormatConfig; }
80 inline bool S3OutputFormatConfigHasBeenSet() const { return m_s3OutputFormatConfigHasBeenSet; }
81 template <typename S3OutputFormatConfigT = UpsolverS3OutputFormatConfig>
82 void SetS3OutputFormatConfig(S3OutputFormatConfigT&& value) {
83 m_s3OutputFormatConfigHasBeenSet = true;
84 m_s3OutputFormatConfig = std::forward<S3OutputFormatConfigT>(value);
85 }
86 template <typename S3OutputFormatConfigT = UpsolverS3OutputFormatConfig>
88 SetS3OutputFormatConfig(std::forward<S3OutputFormatConfigT>(value));
89 return *this;
90 }
92 private:
93 Aws::String m_bucketName;
94
95 Aws::String m_bucketPrefix;
96
97 UpsolverS3OutputFormatConfig m_s3OutputFormatConfig;
98 bool m_bucketNameHasBeenSet = false;
99 bool m_bucketPrefixHasBeenSet = false;
100 bool m_s3OutputFormatConfigHasBeenSet = false;
101};
102
103} // namespace Model
104} // namespace Appflow
105} // namespace Aws
AWS_APPFLOW_API UpsolverDestinationProperties()=default
AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const
const UpsolverS3OutputFormatConfig & GetS3OutputFormatConfig() const
UpsolverDestinationProperties & WithBucketPrefix(BucketPrefixT &&value)
UpsolverDestinationProperties & WithBucketName(BucketNameT &&value)
UpsolverDestinationProperties & WithS3OutputFormatConfig(S3OutputFormatConfigT &&value)
AWS_APPFLOW_API UpsolverDestinationProperties & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_APPFLOW_API UpsolverDestinationProperties(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue