AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeConnectorEntityRequest.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 DescribeConnectorEntityRequest() = 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 "DescribeConnectorEntity"; }
32
33 AWS_APPFLOW_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetConnectorEntityName() const { return m_connectorEntityName; }
41 inline bool ConnectorEntityNameHasBeenSet() const { return m_connectorEntityNameHasBeenSet; }
42 template<typename ConnectorEntityNameT = Aws::String>
43 void SetConnectorEntityName(ConnectorEntityNameT&& value) { m_connectorEntityNameHasBeenSet = true; m_connectorEntityName = std::forward<ConnectorEntityNameT>(value); }
44 template<typename ConnectorEntityNameT = Aws::String>
45 DescribeConnectorEntityRequest& WithConnectorEntityName(ConnectorEntityNameT&& value) { SetConnectorEntityName(std::forward<ConnectorEntityNameT>(value)); return *this;}
47
49
53 inline ConnectorType GetConnectorType() const { return m_connectorType; }
54 inline bool ConnectorTypeHasBeenSet() const { return m_connectorTypeHasBeenSet; }
55 inline void SetConnectorType(ConnectorType value) { m_connectorTypeHasBeenSet = true; m_connectorType = value; }
58
60
64 inline const Aws::String& GetConnectorProfileName() const { return m_connectorProfileName; }
65 inline bool ConnectorProfileNameHasBeenSet() const { return m_connectorProfileNameHasBeenSet; }
66 template<typename ConnectorProfileNameT = Aws::String>
67 void SetConnectorProfileName(ConnectorProfileNameT&& value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName = std::forward<ConnectorProfileNameT>(value); }
68 template<typename ConnectorProfileNameT = Aws::String>
69 DescribeConnectorEntityRequest& WithConnectorProfileName(ConnectorProfileNameT&& value) { SetConnectorProfileName(std::forward<ConnectorProfileNameT>(value)); return *this;}
71
73
76 inline const Aws::String& GetApiVersion() const { return m_apiVersion; }
77 inline bool ApiVersionHasBeenSet() const { return m_apiVersionHasBeenSet; }
78 template<typename ApiVersionT = Aws::String>
79 void SetApiVersion(ApiVersionT&& value) { m_apiVersionHasBeenSet = true; m_apiVersion = std::forward<ApiVersionT>(value); }
80 template<typename ApiVersionT = Aws::String>
81 DescribeConnectorEntityRequest& WithApiVersion(ApiVersionT&& value) { SetApiVersion(std::forward<ApiVersionT>(value)); return *this;}
83 private:
84
85 Aws::String m_connectorEntityName;
86 bool m_connectorEntityNameHasBeenSet = false;
87
89 bool m_connectorTypeHasBeenSet = false;
90
91 Aws::String m_connectorProfileName;
92 bool m_connectorProfileNameHasBeenSet = false;
93
94 Aws::String m_apiVersion;
95 bool m_apiVersionHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace Appflow
100} // namespace Aws
DescribeConnectorEntityRequest & WithConnectorProfileName(ConnectorProfileNameT &&value)
DescribeConnectorEntityRequest & WithApiVersion(ApiVersionT &&value)
DescribeConnectorEntityRequest & WithConnectorEntityName(ConnectorEntityNameT &&value)
AWS_APPFLOW_API Aws::String SerializePayload() const override
DescribeConnectorEntityRequest & WithConnectorType(ConnectorType value)
AWS_APPFLOW_API DescribeConnectorEntityRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String