AWS SDK for C++

AWS SDK for C++ Version 1.11.757

Loading...
Searching...
No Matches
S3ExportingLocation.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/customer-profiles/CustomerProfiles_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace CustomerProfiles {
20namespace Model {
21
29 public:
30 AWS_CUSTOMERPROFILES_API S3ExportingLocation() = default;
31 AWS_CUSTOMERPROFILES_API S3ExportingLocation(Aws::Utils::Json::JsonView jsonValue);
32 AWS_CUSTOMERPROFILES_API S3ExportingLocation& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetS3BucketName() const { return m_s3BucketName; }
41 inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; }
42 template <typename S3BucketNameT = Aws::String>
43 void SetS3BucketName(S3BucketNameT&& value) {
44 m_s3BucketNameHasBeenSet = true;
45 m_s3BucketName = std::forward<S3BucketNameT>(value);
46 }
47 template <typename S3BucketNameT = Aws::String>
48 S3ExportingLocation& WithS3BucketName(S3BucketNameT&& value) {
49 SetS3BucketName(std::forward<S3BucketNameT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetS3KeyName() const { return m_s3KeyName; }
60 inline bool S3KeyNameHasBeenSet() const { return m_s3KeyNameHasBeenSet; }
61 template <typename S3KeyNameT = Aws::String>
62 void SetS3KeyName(S3KeyNameT&& value) {
63 m_s3KeyNameHasBeenSet = true;
64 m_s3KeyName = std::forward<S3KeyNameT>(value);
65 }
66 template <typename S3KeyNameT = Aws::String>
67 S3ExportingLocation& WithS3KeyName(S3KeyNameT&& value) {
68 SetS3KeyName(std::forward<S3KeyNameT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_s3BucketName;
74
75 Aws::String m_s3KeyName;
76 bool m_s3BucketNameHasBeenSet = false;
77 bool m_s3KeyNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace CustomerProfiles
82} // namespace Aws
AWS_CUSTOMERPROFILES_API S3ExportingLocation()=default
S3ExportingLocation & WithS3BucketName(S3BucketNameT &&value)
AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CUSTOMERPROFILES_API S3ExportingLocation(Aws::Utils::Json::JsonView jsonValue)
S3ExportingLocation & WithS3KeyName(S3KeyNameT &&value)
AWS_CUSTOMERPROFILES_API S3ExportingLocation & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue