AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 const ConnectorType& GetConnectorType() const{ return m_connectorType; }
42 inline bool ConnectorTypeHasBeenSet() const { return m_connectorTypeHasBeenSet; }
43 inline void SetConnectorType(const ConnectorType& value) { m_connectorTypeHasBeenSet = true; m_connectorType = value; }
44 inline void SetConnectorType(ConnectorType&& value) { m_connectorTypeHasBeenSet = true; m_connectorType = std::move(value); }
45 inline DescribeConnectorRequest& WithConnectorType(const ConnectorType& value) { SetConnectorType(value); return *this;}
46 inline DescribeConnectorRequest& WithConnectorType(ConnectorType&& value) { SetConnectorType(std::move(value)); return *this;}
48
50
55 inline const Aws::String& GetConnectorLabel() const{ return m_connectorLabel; }
56 inline bool ConnectorLabelHasBeenSet() const { return m_connectorLabelHasBeenSet; }
57 inline void SetConnectorLabel(const Aws::String& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = value; }
58 inline void SetConnectorLabel(Aws::String&& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = std::move(value); }
59 inline void SetConnectorLabel(const char* value) { m_connectorLabelHasBeenSet = true; m_connectorLabel.assign(value); }
60 inline DescribeConnectorRequest& WithConnectorLabel(const Aws::String& value) { SetConnectorLabel(value); return *this;}
61 inline DescribeConnectorRequest& WithConnectorLabel(Aws::String&& value) { SetConnectorLabel(std::move(value)); return *this;}
62 inline DescribeConnectorRequest& WithConnectorLabel(const char* value) { SetConnectorLabel(value); return *this;}
64 private:
65
66 ConnectorType m_connectorType;
67 bool m_connectorTypeHasBeenSet = false;
68
69 Aws::String m_connectorLabel;
70 bool m_connectorLabelHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace Appflow
75} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_APPFLOW_API Aws::String SerializePayload() const override
DescribeConnectorRequest & WithConnectorLabel(Aws::String &&value)
DescribeConnectorRequest & WithConnectorLabel(const char *value)
DescribeConnectorRequest & WithConnectorType(const ConnectorType &value)
DescribeConnectorRequest & WithConnectorLabel(const Aws::String &value)
DescribeConnectorRequest & WithConnectorType(ConnectorType &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String