AWS SDK for C++

AWS SDK for C++ Version 1.11.785

Loading...
Searching...
No Matches
GetIngressPointRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mailmanager/MailManagerRequest.h>
9#include <aws/mailmanager/MailManager_EXPORTS.h>
10#include <aws/mailmanager/model/TrustStoreResponseOption.h>
11
12#include <utility>
13
14namespace Aws {
15namespace MailManager {
16namespace Model {
17
21 public:
22 AWS_MAILMANAGER_API GetIngressPointRequest() = 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 "GetIngressPoint"; }
29
30 AWS_MAILMANAGER_API Aws::String SerializePayload() const override;
31
32 AWS_MAILMANAGER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
33
35
38 inline const Aws::String& GetIngressPointId() const { return m_ingressPointId; }
39 inline bool IngressPointIdHasBeenSet() const { return m_ingressPointIdHasBeenSet; }
40 template <typename IngressPointIdT = Aws::String>
41 void SetIngressPointId(IngressPointIdT&& value) {
42 m_ingressPointIdHasBeenSet = true;
43 m_ingressPointId = std::forward<IngressPointIdT>(value);
44 }
45 template <typename IngressPointIdT = Aws::String>
46 GetIngressPointRequest& WithIngressPointId(IngressPointIdT&& value) {
47 SetIngressPointId(std::forward<IngressPointIdT>(value));
48 return *this;
49 }
51
53
57 inline TrustStoreResponseOption GetIncludeTrustStoreContents() const { return m_includeTrustStoreContents; }
58 inline bool IncludeTrustStoreContentsHasBeenSet() const { return m_includeTrustStoreContentsHasBeenSet; }
60 m_includeTrustStoreContentsHasBeenSet = true;
61 m_includeTrustStoreContents = value;
62 }
65 return *this;
66 }
68 private:
69 Aws::String m_ingressPointId;
70
72 bool m_ingressPointIdHasBeenSet = false;
73 bool m_includeTrustStoreContentsHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace MailManager
78} // namespace Aws
AWS_MAILMANAGER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_MAILMANAGER_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
AWS_MAILMANAGER_API GetIngressPointRequest()=default
GetIngressPointRequest & WithIngressPointId(IngressPointIdT &&value)
void SetIncludeTrustStoreContents(TrustStoreResponseOption value)
TrustStoreResponseOption GetIncludeTrustStoreContents() const
GetIngressPointRequest & WithIncludeTrustStoreContents(TrustStoreResponseOption value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String