AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
S3Configuration.h
1
6#pragma once
7#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_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 KinesisAnalyticsV2
22{
23namespace Model
24{
25
35 {
36 public:
37 AWS_KINESISANALYTICSV2_API S3Configuration() = default;
38 AWS_KINESISANALYTICSV2_API S3Configuration(Aws::Utils::Json::JsonView jsonValue);
39 AWS_KINESISANALYTICSV2_API S3Configuration& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetBucketARN() const { return m_bucketARN; }
48 inline bool BucketARNHasBeenSet() const { return m_bucketARNHasBeenSet; }
49 template<typename BucketARNT = Aws::String>
50 void SetBucketARN(BucketARNT&& value) { m_bucketARNHasBeenSet = true; m_bucketARN = std::forward<BucketARNT>(value); }
51 template<typename BucketARNT = Aws::String>
52 S3Configuration& WithBucketARN(BucketARNT&& value) { SetBucketARN(std::forward<BucketARNT>(value)); return *this;}
54
56
59 inline const Aws::String& GetFileKey() const { return m_fileKey; }
60 inline bool FileKeyHasBeenSet() const { return m_fileKeyHasBeenSet; }
61 template<typename FileKeyT = Aws::String>
62 void SetFileKey(FileKeyT&& value) { m_fileKeyHasBeenSet = true; m_fileKey = std::forward<FileKeyT>(value); }
63 template<typename FileKeyT = Aws::String>
64 S3Configuration& WithFileKey(FileKeyT&& value) { SetFileKey(std::forward<FileKeyT>(value)); return *this;}
66 private:
67
68 Aws::String m_bucketARN;
69 bool m_bucketARNHasBeenSet = false;
70
71 Aws::String m_fileKey;
72 bool m_fileKeyHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace KinesisAnalyticsV2
77} // namespace Aws
S3Configuration & WithBucketARN(BucketARNT &&value)
S3Configuration & WithFileKey(FileKeyT &&value)
AWS_KINESISANALYTICSV2_API S3Configuration(Aws::Utils::Json::JsonView jsonValue)
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_KINESISANALYTICSV2_API S3Configuration()=default
AWS_KINESISANALYTICSV2_API S3Configuration & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue