AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ResetConnectorMetadataCacheRequest.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/appflow/AppflowRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/appflow/model/ConnectorType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Appflow
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_APPFLOW_API ResetConnectorMetadataCacheRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ResetConnectorMetadataCache"; }
32
33 AWS_APPFLOW_API Aws::String SerializePayload() const override;
34
35
37
44 inline const Aws::String& GetConnectorProfileName() const { return m_connectorProfileName; }
45 inline bool ConnectorProfileNameHasBeenSet() const { return m_connectorProfileNameHasBeenSet; }
46 template<typename ConnectorProfileNameT = Aws::String>
47 void SetConnectorProfileName(ConnectorProfileNameT&& value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName = std::forward<ConnectorProfileNameT>(value); }
48 template<typename ConnectorProfileNameT = Aws::String>
49 ResetConnectorMetadataCacheRequest& WithConnectorProfileName(ConnectorProfileNameT&& value) { SetConnectorProfileName(std::forward<ConnectorProfileNameT>(value)); return *this;}
51
53
60 inline ConnectorType GetConnectorType() const { return m_connectorType; }
61 inline bool ConnectorTypeHasBeenSet() const { return m_connectorTypeHasBeenSet; }
62 inline void SetConnectorType(ConnectorType value) { m_connectorTypeHasBeenSet = true; m_connectorType = value; }
65
67
73 inline const Aws::String& GetConnectorEntityName() const { return m_connectorEntityName; }
74 inline bool ConnectorEntityNameHasBeenSet() const { return m_connectorEntityNameHasBeenSet; }
75 template<typename ConnectorEntityNameT = Aws::String>
76 void SetConnectorEntityName(ConnectorEntityNameT&& value) { m_connectorEntityNameHasBeenSet = true; m_connectorEntityName = std::forward<ConnectorEntityNameT>(value); }
77 template<typename ConnectorEntityNameT = Aws::String>
78 ResetConnectorMetadataCacheRequest& WithConnectorEntityName(ConnectorEntityNameT&& value) { SetConnectorEntityName(std::forward<ConnectorEntityNameT>(value)); return *this;}
80
82
94 inline const Aws::String& GetEntitiesPath() const { return m_entitiesPath; }
95 inline bool EntitiesPathHasBeenSet() const { return m_entitiesPathHasBeenSet; }
96 template<typename EntitiesPathT = Aws::String>
97 void SetEntitiesPath(EntitiesPathT&& value) { m_entitiesPathHasBeenSet = true; m_entitiesPath = std::forward<EntitiesPathT>(value); }
98 template<typename EntitiesPathT = Aws::String>
99 ResetConnectorMetadataCacheRequest& WithEntitiesPath(EntitiesPathT&& value) { SetEntitiesPath(std::forward<EntitiesPathT>(value)); return *this;}
101
103
115 inline const Aws::String& GetApiVersion() const { return m_apiVersion; }
116 inline bool ApiVersionHasBeenSet() const { return m_apiVersionHasBeenSet; }
117 template<typename ApiVersionT = Aws::String>
118 void SetApiVersion(ApiVersionT&& value) { m_apiVersionHasBeenSet = true; m_apiVersion = std::forward<ApiVersionT>(value); }
119 template<typename ApiVersionT = Aws::String>
120 ResetConnectorMetadataCacheRequest& WithApiVersion(ApiVersionT&& value) { SetApiVersion(std::forward<ApiVersionT>(value)); return *this;}
122 private:
123
124 Aws::String m_connectorProfileName;
125 bool m_connectorProfileNameHasBeenSet = false;
126
127 ConnectorType m_connectorType{ConnectorType::NOT_SET};
128 bool m_connectorTypeHasBeenSet = false;
129
130 Aws::String m_connectorEntityName;
131 bool m_connectorEntityNameHasBeenSet = false;
132
133 Aws::String m_entitiesPath;
134 bool m_entitiesPathHasBeenSet = false;
135
136 Aws::String m_apiVersion;
137 bool m_apiVersionHasBeenSet = false;
138 };
139
140} // namespace Model
141} // namespace Appflow
142} // namespace Aws
ResetConnectorMetadataCacheRequest & WithConnectorEntityName(ConnectorEntityNameT &&value)
AWS_APPFLOW_API Aws::String SerializePayload() const override
ResetConnectorMetadataCacheRequest & WithEntitiesPath(EntitiesPathT &&value)
ResetConnectorMetadataCacheRequest & WithConnectorType(ConnectorType value)
ResetConnectorMetadataCacheRequest & WithApiVersion(ApiVersionT &&value)
ResetConnectorMetadataCacheRequest & WithConnectorProfileName(ConnectorProfileNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String