AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
S3ExportingLocation.h
1
6#pragma once
7#include <aws/customer-profiles/CustomerProfiles_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 CustomerProfiles
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_CUSTOMERPROFILES_API S3ExportingLocation() = default;
36 AWS_CUSTOMERPROFILES_API S3ExportingLocation(Aws::Utils::Json::JsonView jsonValue);
37 AWS_CUSTOMERPROFILES_API S3ExportingLocation& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetS3BucketName() const { return m_s3BucketName; }
47 inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; }
48 template<typename S3BucketNameT = Aws::String>
49 void SetS3BucketName(S3BucketNameT&& value) { m_s3BucketNameHasBeenSet = true; m_s3BucketName = std::forward<S3BucketNameT>(value); }
50 template<typename S3BucketNameT = Aws::String>
51 S3ExportingLocation& WithS3BucketName(S3BucketNameT&& value) { SetS3BucketName(std::forward<S3BucketNameT>(value)); return *this;}
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) { m_s3KeyNameHasBeenSet = true; m_s3KeyName = std::forward<S3KeyNameT>(value); }
63 template<typename S3KeyNameT = Aws::String>
64 S3ExportingLocation& WithS3KeyName(S3KeyNameT&& value) { SetS3KeyName(std::forward<S3KeyNameT>(value)); return *this;}
66 private:
67
68 Aws::String m_s3BucketName;
69 bool m_s3BucketNameHasBeenSet = false;
70
71 Aws::String m_s3KeyName;
72 bool m_s3KeyNameHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace CustomerProfiles
77} // 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