AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetConnectorEntityName(const Aws::String& value) { m_connectorEntityNameHasBeenSet = true; m_connectorEntityName = value; }
43 inline void SetConnectorEntityName(Aws::String&& value) { m_connectorEntityNameHasBeenSet = true; m_connectorEntityName = std::move(value); }
44 inline void SetConnectorEntityName(const char* value) { m_connectorEntityNameHasBeenSet = true; m_connectorEntityName.assign(value); }
47 inline DescribeConnectorEntityRequest& WithConnectorEntityName(const char* value) { SetConnectorEntityName(value); return *this;}
49
51
55 inline const ConnectorType& GetConnectorType() const{ return m_connectorType; }
56 inline bool ConnectorTypeHasBeenSet() const { return m_connectorTypeHasBeenSet; }
57 inline void SetConnectorType(const ConnectorType& value) { m_connectorTypeHasBeenSet = true; m_connectorType = value; }
58 inline void SetConnectorType(ConnectorType&& value) { m_connectorTypeHasBeenSet = true; m_connectorType = std::move(value); }
60 inline DescribeConnectorEntityRequest& WithConnectorType(ConnectorType&& value) { SetConnectorType(std::move(value)); return *this;}
62
64
68 inline const Aws::String& GetConnectorProfileName() const{ return m_connectorProfileName; }
69 inline bool ConnectorProfileNameHasBeenSet() const { return m_connectorProfileNameHasBeenSet; }
70 inline void SetConnectorProfileName(const Aws::String& value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName = value; }
71 inline void SetConnectorProfileName(Aws::String&& value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName = std::move(value); }
72 inline void SetConnectorProfileName(const char* value) { m_connectorProfileNameHasBeenSet = true; m_connectorProfileName.assign(value); }
75 inline DescribeConnectorEntityRequest& WithConnectorProfileName(const char* value) { SetConnectorProfileName(value); return *this;}
77
79
82 inline const Aws::String& GetApiVersion() const{ return m_apiVersion; }
83 inline bool ApiVersionHasBeenSet() const { return m_apiVersionHasBeenSet; }
84 inline void SetApiVersion(const Aws::String& value) { m_apiVersionHasBeenSet = true; m_apiVersion = value; }
85 inline void SetApiVersion(Aws::String&& value) { m_apiVersionHasBeenSet = true; m_apiVersion = std::move(value); }
86 inline void SetApiVersion(const char* value) { m_apiVersionHasBeenSet = true; m_apiVersion.assign(value); }
87 inline DescribeConnectorEntityRequest& WithApiVersion(const Aws::String& value) { SetApiVersion(value); return *this;}
88 inline DescribeConnectorEntityRequest& WithApiVersion(Aws::String&& value) { SetApiVersion(std::move(value)); return *this;}
89 inline DescribeConnectorEntityRequest& WithApiVersion(const char* value) { SetApiVersion(value); return *this;}
91 private:
92
93 Aws::String m_connectorEntityName;
94 bool m_connectorEntityNameHasBeenSet = false;
95
96 ConnectorType m_connectorType;
97 bool m_connectorTypeHasBeenSet = false;
98
99 Aws::String m_connectorProfileName;
100 bool m_connectorProfileNameHasBeenSet = false;
101
102 Aws::String m_apiVersion;
103 bool m_apiVersionHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace Appflow
108} // namespace Aws
DescribeConnectorEntityRequest & WithConnectorProfileName(const Aws::String &value)
DescribeConnectorEntityRequest & WithConnectorType(const ConnectorType &value)
DescribeConnectorEntityRequest & WithApiVersion(const Aws::String &value)
DescribeConnectorEntityRequest & WithConnectorEntityName(Aws::String &&value)
AWS_APPFLOW_API Aws::String SerializePayload() const override
DescribeConnectorEntityRequest & WithConnectorType(ConnectorType &&value)
DescribeConnectorEntityRequest & WithConnectorEntityName(const Aws::String &value)
DescribeConnectorEntityRequest & WithConnectorProfileName(Aws::String &&value)
DescribeConnectorEntityRequest & WithConnectorEntityName(const char *value)
DescribeConnectorEntityRequest & WithConnectorProfileName(const char *value)
DescribeConnectorEntityRequest & WithApiVersion(const char *value)
DescribeConnectorEntityRequest & WithApiVersion(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String