AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
S3Location.h
1
6#pragma once
7#include <aws/lookoutvision/LookoutforVision_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 LookoutforVision
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_LOOKOUTFORVISION_API S3Location();
36 AWS_LOOKOUTFORVISION_API S3Location(Aws::Utils::Json::JsonView jsonValue);
37 AWS_LOOKOUTFORVISION_API S3Location& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LOOKOUTFORVISION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
48 inline const Aws::String& GetBucket() const{ return m_bucket; }
49 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
50 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
51 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
52 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
53 inline S3Location& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
54 inline S3Location& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
55 inline S3Location& WithBucket(const char* value) { SetBucket(value); return *this;}
57
59
62 inline const Aws::String& GetPrefix() const{ return m_prefix; }
63 inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
64 inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; }
65 inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); }
66 inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); }
67 inline S3Location& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;}
68 inline S3Location& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;}
69 inline S3Location& WithPrefix(const char* value) { SetPrefix(value); return *this;}
71 private:
72
73 Aws::String m_bucket;
74 bool m_bucketHasBeenSet = false;
75
76 Aws::String m_prefix;
77 bool m_prefixHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace LookoutforVision
82} // namespace Aws
void SetBucket(const Aws::String &value)
Definition S3Location.h:50
S3Location & WithBucket(const char *value)
Definition S3Location.h:55
S3Location & WithPrefix(const char *value)
Definition S3Location.h:69
AWS_LOOKOUTFORVISION_API S3Location(Aws::Utils::Json::JsonView jsonValue)
S3Location & WithPrefix(Aws::String &&value)
Definition S3Location.h:68
void SetPrefix(const Aws::String &value)
Definition S3Location.h:64
const Aws::String & GetBucket() const
Definition S3Location.h:48
void SetPrefix(Aws::String &&value)
Definition S3Location.h:65
AWS_LOOKOUTFORVISION_API S3Location & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetBucket(const char *value)
Definition S3Location.h:52
void SetPrefix(const char *value)
Definition S3Location.h:66
AWS_LOOKOUTFORVISION_API S3Location()
AWS_LOOKOUTFORVISION_API Aws::Utils::Json::JsonValue Jsonize() const
S3Location & WithPrefix(const Aws::String &value)
Definition S3Location.h:67
S3Location & WithBucket(Aws::String &&value)
Definition S3Location.h:54
S3Location & WithBucket(const Aws::String &value)
Definition S3Location.h:53
const Aws::String & GetPrefix() const
Definition S3Location.h:62
void SetBucket(Aws::String &&value)
Definition S3Location.h:51
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue