AWS SDK for C++

AWS SDK for C++ Version 1.11.810

Loading...
Searching...
No Matches
AttachedFilesConfigurationSummary.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/model/AttachmentScope.h>
9#include <aws/connect/model/ExtensionConfiguration.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Connect {
22namespace Model {
23
30 public:
31 AWS_CONNECT_API AttachedFilesConfigurationSummary() = default;
34 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetInstanceId() const { return m_instanceId; }
41 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
42 template <typename InstanceIdT = Aws::String>
43 void SetInstanceId(InstanceIdT&& value) {
44 m_instanceIdHasBeenSet = true;
45 m_instanceId = std::forward<InstanceIdT>(value);
46 }
47 template <typename InstanceIdT = Aws::String>
49 SetInstanceId(std::forward<InstanceIdT>(value));
50 return *this;
51 }
53
55
59 inline AttachmentScope GetAttachmentScope() const { return m_attachmentScope; }
60 inline bool AttachmentScopeHasBeenSet() const { return m_attachmentScopeHasBeenSet; }
62 m_attachmentScopeHasBeenSet = true;
63 m_attachmentScope = value;
64 }
66 SetAttachmentScope(value);
67 return *this;
68 }
70
72
73 inline long long GetMaximumSizeLimitInBytes() const { return m_maximumSizeLimitInBytes; }
74 inline bool MaximumSizeLimitInBytesHasBeenSet() const { return m_maximumSizeLimitInBytesHasBeenSet; }
75 inline void SetMaximumSizeLimitInBytes(long long value) {
76 m_maximumSizeLimitInBytesHasBeenSet = true;
77 m_maximumSizeLimitInBytes = value;
78 }
81 return *this;
82 }
84
86
89 inline const ExtensionConfiguration& GetExtensionConfiguration() const { return m_extensionConfiguration; }
90 inline bool ExtensionConfigurationHasBeenSet() const { return m_extensionConfigurationHasBeenSet; }
91 template <typename ExtensionConfigurationT = ExtensionConfiguration>
92 void SetExtensionConfiguration(ExtensionConfigurationT&& value) {
93 m_extensionConfigurationHasBeenSet = true;
94 m_extensionConfiguration = std::forward<ExtensionConfigurationT>(value);
95 }
96 template <typename ExtensionConfigurationT = ExtensionConfiguration>
98 SetExtensionConfiguration(std::forward<ExtensionConfigurationT>(value));
99 return *this;
100 }
102 private:
103 Aws::String m_instanceId;
104
105 AttachmentScope m_attachmentScope{AttachmentScope::NOT_SET};
106
107 long long m_maximumSizeLimitInBytes{0};
108
109 ExtensionConfiguration m_extensionConfiguration;
110 bool m_instanceIdHasBeenSet = false;
111 bool m_attachmentScopeHasBeenSet = false;
112 bool m_maximumSizeLimitInBytesHasBeenSet = false;
113 bool m_extensionConfigurationHasBeenSet = false;
114};
115
116} // namespace Model
117} // namespace Connect
118} // namespace Aws
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
AttachedFilesConfigurationSummary & WithExtensionConfiguration(ExtensionConfigurationT &&value)
AWS_CONNECT_API AttachedFilesConfigurationSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API AttachedFilesConfigurationSummary(Aws::Utils::Json::JsonView jsonValue)
AttachedFilesConfigurationSummary & WithMaximumSizeLimitInBytes(long long value)
AttachedFilesConfigurationSummary & WithInstanceId(InstanceIdT &&value)
AttachedFilesConfigurationSummary & WithAttachmentScope(AttachmentScope value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue