AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
S3ApplicationCodeLocationDescription.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
33 {
34 public:
35 AWS_KINESISANALYTICSV2_API S3ApplicationCodeLocationDescription() = default;
38 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetBucketARN() const { return m_bucketARN; }
47 inline bool BucketARNHasBeenSet() const { return m_bucketARNHasBeenSet; }
48 template<typename BucketARNT = Aws::String>
49 void SetBucketARN(BucketARNT&& value) { m_bucketARNHasBeenSet = true; m_bucketARN = std::forward<BucketARNT>(value); }
50 template<typename BucketARNT = Aws::String>
51 S3ApplicationCodeLocationDescription& WithBucketARN(BucketARNT&& value) { SetBucketARN(std::forward<BucketARNT>(value)); return *this;}
53
55
58 inline const Aws::String& GetFileKey() const { return m_fileKey; }
59 inline bool FileKeyHasBeenSet() const { return m_fileKeyHasBeenSet; }
60 template<typename FileKeyT = Aws::String>
61 void SetFileKey(FileKeyT&& value) { m_fileKeyHasBeenSet = true; m_fileKey = std::forward<FileKeyT>(value); }
62 template<typename FileKeyT = Aws::String>
63 S3ApplicationCodeLocationDescription& WithFileKey(FileKeyT&& value) { SetFileKey(std::forward<FileKeyT>(value)); return *this;}
65
67
70 inline const Aws::String& GetObjectVersion() const { return m_objectVersion; }
71 inline bool ObjectVersionHasBeenSet() const { return m_objectVersionHasBeenSet; }
72 template<typename ObjectVersionT = Aws::String>
73 void SetObjectVersion(ObjectVersionT&& value) { m_objectVersionHasBeenSet = true; m_objectVersion = std::forward<ObjectVersionT>(value); }
74 template<typename ObjectVersionT = Aws::String>
75 S3ApplicationCodeLocationDescription& WithObjectVersion(ObjectVersionT&& value) { SetObjectVersion(std::forward<ObjectVersionT>(value)); return *this;}
77 private:
78
79 Aws::String m_bucketARN;
80 bool m_bucketARNHasBeenSet = false;
81
82 Aws::String m_fileKey;
83 bool m_fileKeyHasBeenSet = false;
84
85 Aws::String m_objectVersion;
86 bool m_objectVersionHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace KinesisAnalyticsV2
91} // namespace Aws
S3ApplicationCodeLocationDescription & WithBucketARN(BucketARNT &&value)
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_KINESISANALYTICSV2_API S3ApplicationCodeLocationDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
S3ApplicationCodeLocationDescription & WithObjectVersion(ObjectVersionT &&value)
AWS_KINESISANALYTICSV2_API S3ApplicationCodeLocationDescription()=default
AWS_KINESISANALYTICSV2_API S3ApplicationCodeLocationDescription(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue