AWS SDK for C++

AWS SDK for C++ Version 1.11.757

Loading...
Searching...
No Matches
S3ContentLocationUpdate.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace KinesisAnalyticsV2 {
20namespace Model {
21
29 public:
30 AWS_KINESISANALYTICSV2_API S3ContentLocationUpdate() = default;
31 AWS_KINESISANALYTICSV2_API S3ContentLocationUpdate(Aws::Utils::Json::JsonView jsonValue);
32 AWS_KINESISANALYTICSV2_API S3ContentLocationUpdate& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetBucketARNUpdate() const { return m_bucketARNUpdate; }
41 inline bool BucketARNUpdateHasBeenSet() const { return m_bucketARNUpdateHasBeenSet; }
42 template <typename BucketARNUpdateT = Aws::String>
43 void SetBucketARNUpdate(BucketARNUpdateT&& value) {
44 m_bucketARNUpdateHasBeenSet = true;
45 m_bucketARNUpdate = std::forward<BucketARNUpdateT>(value);
46 }
47 template <typename BucketARNUpdateT = Aws::String>
48 S3ContentLocationUpdate& WithBucketARNUpdate(BucketARNUpdateT&& value) {
49 SetBucketARNUpdate(std::forward<BucketARNUpdateT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetFileKeyUpdate() const { return m_fileKeyUpdate; }
59 inline bool FileKeyUpdateHasBeenSet() const { return m_fileKeyUpdateHasBeenSet; }
60 template <typename FileKeyUpdateT = Aws::String>
61 void SetFileKeyUpdate(FileKeyUpdateT&& value) {
62 m_fileKeyUpdateHasBeenSet = true;
63 m_fileKeyUpdate = std::forward<FileKeyUpdateT>(value);
64 }
65 template <typename FileKeyUpdateT = Aws::String>
66 S3ContentLocationUpdate& WithFileKeyUpdate(FileKeyUpdateT&& value) {
67 SetFileKeyUpdate(std::forward<FileKeyUpdateT>(value));
68 return *this;
69 }
71
73
76 inline const Aws::String& GetObjectVersionUpdate() const { return m_objectVersionUpdate; }
77 inline bool ObjectVersionUpdateHasBeenSet() const { return m_objectVersionUpdateHasBeenSet; }
78 template <typename ObjectVersionUpdateT = Aws::String>
79 void SetObjectVersionUpdate(ObjectVersionUpdateT&& value) {
80 m_objectVersionUpdateHasBeenSet = true;
81 m_objectVersionUpdate = std::forward<ObjectVersionUpdateT>(value);
82 }
83 template <typename ObjectVersionUpdateT = Aws::String>
84 S3ContentLocationUpdate& WithObjectVersionUpdate(ObjectVersionUpdateT&& value) {
85 SetObjectVersionUpdate(std::forward<ObjectVersionUpdateT>(value));
86 return *this;
87 }
89 private:
90 Aws::String m_bucketARNUpdate;
91
92 Aws::String m_fileKeyUpdate;
93
94 Aws::String m_objectVersionUpdate;
95 bool m_bucketARNUpdateHasBeenSet = false;
96 bool m_fileKeyUpdateHasBeenSet = false;
97 bool m_objectVersionUpdateHasBeenSet = false;
98};
99
100} // namespace Model
101} // namespace KinesisAnalyticsV2
102} // namespace Aws
AWS_KINESISANALYTICSV2_API S3ContentLocationUpdate()=default
S3ContentLocationUpdate & WithObjectVersionUpdate(ObjectVersionUpdateT &&value)
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_KINESISANALYTICSV2_API S3ContentLocationUpdate(Aws::Utils::Json::JsonView jsonValue)
S3ContentLocationUpdate & WithBucketARNUpdate(BucketARNUpdateT &&value)
S3ContentLocationUpdate & WithFileKeyUpdate(FileKeyUpdateT &&value)
AWS_KINESISANALYTICSV2_API S3ContentLocationUpdate & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue