AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeConnectorRequest.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/appflow/AppflowRequest.h>
9#include <aws/appflow/model/ConnectorType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Appflow
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_APPFLOW_API DescribeConnectorRequest() = 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 "DescribeConnector"; }
32
33 AWS_APPFLOW_API Aws::String SerializePayload() const override;
34
35
37
41 inline ConnectorType GetConnectorType() const { return m_connectorType; }
42 inline bool ConnectorTypeHasBeenSet() const { return m_connectorTypeHasBeenSet; }
43 inline void SetConnectorType(ConnectorType value) { m_connectorTypeHasBeenSet = true; m_connectorType = value; }
46
48
53 inline const Aws::String& GetConnectorLabel() const { return m_connectorLabel; }
54 inline bool ConnectorLabelHasBeenSet() const { return m_connectorLabelHasBeenSet; }
55 template<typename ConnectorLabelT = Aws::String>
56 void SetConnectorLabel(ConnectorLabelT&& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = std::forward<ConnectorLabelT>(value); }
57 template<typename ConnectorLabelT = Aws::String>
58 DescribeConnectorRequest& WithConnectorLabel(ConnectorLabelT&& value) { SetConnectorLabel(std::forward<ConnectorLabelT>(value)); return *this;}
60 private:
61
63 bool m_connectorTypeHasBeenSet = false;
64
65 Aws::String m_connectorLabel;
66 bool m_connectorLabelHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace Appflow
71} // namespace Aws
AWS_APPFLOW_API DescribeConnectorRequest()=default
virtual const char * GetServiceRequestName() const override
DescribeConnectorRequest & WithConnectorLabel(ConnectorLabelT &&value)
AWS_APPFLOW_API Aws::String SerializePayload() const override
DescribeConnectorRequest & WithConnectorType(ConnectorType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String