AWS SDK for C++

AWS SDK for C++ Version 1.11.807

Loading...
Searching...
No Matches
DescribeAttachedFilesConfigurationRequest.h
1
6#pragma once
7#include <aws/connect/ConnectRequest.h>
8#include <aws/connect/Connect_EXPORTS.h>
9#include <aws/connect/model/AttachmentScope.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Connect {
16namespace Model {
17
21 public:
22 AWS_CONNECT_API DescribeAttachedFilesConfigurationRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DescribeAttachedFilesConfiguration"; }
29
30 AWS_CONNECT_API Aws::String SerializePayload() const override;
31
33
38 inline const Aws::String& GetInstanceId() const { return m_instanceId; }
39 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
40 template <typename InstanceIdT = Aws::String>
41 void SetInstanceId(InstanceIdT&& value) {
42 m_instanceIdHasBeenSet = true;
43 m_instanceId = std::forward<InstanceIdT>(value);
44 }
45 template <typename InstanceIdT = Aws::String>
47 SetInstanceId(std::forward<InstanceIdT>(value));
48 return *this;
49 }
51
53
57 inline AttachmentScope GetAttachmentScope() const { return m_attachmentScope; }
58 inline bool AttachmentScopeHasBeenSet() const { return m_attachmentScopeHasBeenSet; }
60 m_attachmentScopeHasBeenSet = true;
61 m_attachmentScope = value;
62 }
64 SetAttachmentScope(value);
65 return *this;
66 }
68 private:
69 Aws::String m_instanceId;
70
72 bool m_instanceIdHasBeenSet = false;
73 bool m_attachmentScopeHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace Connect
78} // namespace Aws
DescribeAttachedFilesConfigurationRequest & WithInstanceId(InstanceIdT &&value)
AWS_CONNECT_API Aws::String SerializePayload() const override
DescribeAttachedFilesConfigurationRequest & WithAttachmentScope(AttachmentScope value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String