AWS SDK for C++

AWS SDK for C++ Version 1.11.747

Loading...
Searching...
No Matches
DescribeRedshiftIdcApplicationsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/redshift/RedshiftRequest.h>
9#include <aws/redshift/Redshift_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Redshift {
15namespace Model {
16
20 public:
21 AWS_REDSHIFT_API DescribeRedshiftIdcApplicationsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeRedshiftIdcApplications"; }
28
29 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
30
31 protected:
32 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
33
34 public:
36
40 inline const Aws::String& GetRedshiftIdcApplicationArn() const { return m_redshiftIdcApplicationArn; }
41 inline bool RedshiftIdcApplicationArnHasBeenSet() const { return m_redshiftIdcApplicationArnHasBeenSet; }
42 template <typename RedshiftIdcApplicationArnT = Aws::String>
43 void SetRedshiftIdcApplicationArn(RedshiftIdcApplicationArnT&& value) {
44 m_redshiftIdcApplicationArnHasBeenSet = true;
45 m_redshiftIdcApplicationArn = std::forward<RedshiftIdcApplicationArnT>(value);
46 }
47 template <typename RedshiftIdcApplicationArnT = Aws::String>
49 SetRedshiftIdcApplicationArn(std::forward<RedshiftIdcApplicationArnT>(value));
50 return *this;
51 }
53
55
61 inline int GetMaxRecords() const { return m_maxRecords; }
62 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
63 inline void SetMaxRecords(int value) {
64 m_maxRecordsHasBeenSet = true;
65 m_maxRecords = value;
66 }
68 SetMaxRecords(value);
69 return *this;
70 }
72
74
81 inline const Aws::String& GetMarker() const { return m_marker; }
82 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
83 template <typename MarkerT = Aws::String>
84 void SetMarker(MarkerT&& value) {
85 m_markerHasBeenSet = true;
86 m_marker = std::forward<MarkerT>(value);
87 }
88 template <typename MarkerT = Aws::String>
90 SetMarker(std::forward<MarkerT>(value));
91 return *this;
92 }
94 private:
95 Aws::String m_redshiftIdcApplicationArn;
96
97 int m_maxRecords{0};
98
99 Aws::String m_marker;
100 bool m_redshiftIdcApplicationArnHasBeenSet = false;
101 bool m_maxRecordsHasBeenSet = false;
102 bool m_markerHasBeenSet = false;
103};
104
105} // namespace Model
106} // namespace Redshift
107} // namespace Aws
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeRedshiftIdcApplicationsRequest & WithRedshiftIdcApplicationArn(RedshiftIdcApplicationArnT &&value)
DescribeRedshiftIdcApplicationsRequest & WithMarker(MarkerT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String