AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeConnectorsRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/appflow/model/ConnectorType.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Appflow
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_APPFLOW_API DescribeConnectorsRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DescribeConnectors"; }
33
34 AWS_APPFLOW_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::Vector<ConnectorType>& GetConnectorTypes() const{ return m_connectorTypes; }
42 inline bool ConnectorTypesHasBeenSet() const { return m_connectorTypesHasBeenSet; }
43 inline void SetConnectorTypes(const Aws::Vector<ConnectorType>& value) { m_connectorTypesHasBeenSet = true; m_connectorTypes = value; }
44 inline void SetConnectorTypes(Aws::Vector<ConnectorType>&& value) { m_connectorTypesHasBeenSet = true; m_connectorTypes = std::move(value); }
47 inline DescribeConnectorsRequest& AddConnectorTypes(const ConnectorType& value) { m_connectorTypesHasBeenSet = true; m_connectorTypes.push_back(value); return *this; }
48 inline DescribeConnectorsRequest& AddConnectorTypes(ConnectorType&& value) { m_connectorTypesHasBeenSet = true; m_connectorTypes.push_back(std::move(value)); return *this; }
50
52
56 inline int GetMaxResults() const{ return m_maxResults; }
57 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
58 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
59 inline DescribeConnectorsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
61
63
66 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
67 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
68 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
69 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
70 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
71 inline DescribeConnectorsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
72 inline DescribeConnectorsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
73 inline DescribeConnectorsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
75 private:
76
77 Aws::Vector<ConnectorType> m_connectorTypes;
78 bool m_connectorTypesHasBeenSet = false;
79
80 int m_maxResults;
81 bool m_maxResultsHasBeenSet = false;
82
83 Aws::String m_nextToken;
84 bool m_nextTokenHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace Appflow
89} // namespace Aws
DescribeConnectorsRequest & AddConnectorTypes(const ConnectorType &value)
DescribeConnectorsRequest & WithConnectorTypes(Aws::Vector< ConnectorType > &&value)
DescribeConnectorsRequest & WithNextToken(Aws::String &&value)
void SetConnectorTypes(Aws::Vector< ConnectorType > &&value)
DescribeConnectorsRequest & WithMaxResults(int value)
DescribeConnectorsRequest & WithNextToken(const Aws::String &value)
AWS_APPFLOW_API Aws::String SerializePayload() const override
const Aws::Vector< ConnectorType > & GetConnectorTypes() const
DescribeConnectorsRequest & WithConnectorTypes(const Aws::Vector< ConnectorType > &value)
DescribeConnectorsRequest & AddConnectorTypes(ConnectorType &&value)
virtual const char * GetServiceRequestName() const override
DescribeConnectorsRequest & WithNextToken(const char *value)
void SetConnectorTypes(const Aws::Vector< ConnectorType > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector