AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
WorkflowExportConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/nova-act/NovaAct_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace NovaAct {
20namespace Model {
21
29 public:
30 AWS_NOVAACT_API WorkflowExportConfig() = default;
33 AWS_NOVAACT_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
41 inline const Aws::String& GetS3BucketName() const { return m_s3BucketName; }
42 inline bool S3BucketNameHasBeenSet() const { return m_s3BucketNameHasBeenSet; }
43 template <typename S3BucketNameT = Aws::String>
44 void SetS3BucketName(S3BucketNameT&& value) {
45 m_s3BucketNameHasBeenSet = true;
46 m_s3BucketName = std::forward<S3BucketNameT>(value);
47 }
48 template <typename S3BucketNameT = Aws::String>
49 WorkflowExportConfig& WithS3BucketName(S3BucketNameT&& value) {
50 SetS3BucketName(std::forward<S3BucketNameT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetS3KeyPrefix() const { return m_s3KeyPrefix; }
60 inline bool S3KeyPrefixHasBeenSet() const { return m_s3KeyPrefixHasBeenSet; }
61 template <typename S3KeyPrefixT = Aws::String>
62 void SetS3KeyPrefix(S3KeyPrefixT&& value) {
63 m_s3KeyPrefixHasBeenSet = true;
64 m_s3KeyPrefix = std::forward<S3KeyPrefixT>(value);
65 }
66 template <typename S3KeyPrefixT = Aws::String>
67 WorkflowExportConfig& WithS3KeyPrefix(S3KeyPrefixT&& value) {
68 SetS3KeyPrefix(std::forward<S3KeyPrefixT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_s3BucketName;
74
75 Aws::String m_s3KeyPrefix;
76 bool m_s3BucketNameHasBeenSet = false;
77 bool m_s3KeyPrefixHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace NovaAct
82} // namespace Aws
WorkflowExportConfig & WithS3KeyPrefix(S3KeyPrefixT &&value)
WorkflowExportConfig & WithS3BucketName(S3BucketNameT &&value)
AWS_NOVAACT_API WorkflowExportConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_NOVAACT_API WorkflowExportConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_NOVAACT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_NOVAACT_API WorkflowExportConfig()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue