AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListNotebookMetadataRequest.h
1
6#pragma once
7#include <aws/athena/Athena_EXPORTS.h>
8#include <aws/athena/AthenaRequest.h>
9#include <aws/athena/model/FilterDefinition.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Athena
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 "ListNotebookMetadata"; }
32
33 AWS_ATHENA_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const FilterDefinition& GetFilters() const{ return m_filters; }
43 inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
44 inline void SetFilters(const FilterDefinition& value) { m_filtersHasBeenSet = true; m_filters = value; }
45 inline void SetFilters(FilterDefinition&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
46 inline ListNotebookMetadataRequest& WithFilters(const FilterDefinition& value) { SetFilters(value); return *this;}
47 inline ListNotebookMetadataRequest& WithFilters(FilterDefinition&& value) { SetFilters(std::move(value)); return *this;}
49
51
55 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
56 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
57 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
58 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
59 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
60 inline ListNotebookMetadataRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
61 inline ListNotebookMetadataRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
62 inline ListNotebookMetadataRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
64
66
69 inline int GetMaxResults() const{ return m_maxResults; }
70 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
71 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
72 inline ListNotebookMetadataRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
74
76
80 inline const Aws::String& GetWorkGroup() const{ return m_workGroup; }
81 inline bool WorkGroupHasBeenSet() const { return m_workGroupHasBeenSet; }
82 inline void SetWorkGroup(const Aws::String& value) { m_workGroupHasBeenSet = true; m_workGroup = value; }
83 inline void SetWorkGroup(Aws::String&& value) { m_workGroupHasBeenSet = true; m_workGroup = std::move(value); }
84 inline void SetWorkGroup(const char* value) { m_workGroupHasBeenSet = true; m_workGroup.assign(value); }
85 inline ListNotebookMetadataRequest& WithWorkGroup(const Aws::String& value) { SetWorkGroup(value); return *this;}
86 inline ListNotebookMetadataRequest& WithWorkGroup(Aws::String&& value) { SetWorkGroup(std::move(value)); return *this;}
87 inline ListNotebookMetadataRequest& WithWorkGroup(const char* value) { SetWorkGroup(value); return *this;}
89 private:
90
91 FilterDefinition m_filters;
92 bool m_filtersHasBeenSet = false;
93
94 Aws::String m_nextToken;
95 bool m_nextTokenHasBeenSet = false;
96
97 int m_maxResults;
98 bool m_maxResultsHasBeenSet = false;
99
100 Aws::String m_workGroup;
101 bool m_workGroupHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace Athena
106} // namespace Aws
ListNotebookMetadataRequest & WithNextToken(const char *value)
ListNotebookMetadataRequest & WithFilters(FilterDefinition &&value)
AWS_ATHENA_API Aws::String SerializePayload() const override
ListNotebookMetadataRequest & WithWorkGroup(Aws::String &&value)
ListNotebookMetadataRequest & WithNextToken(Aws::String &&value)
ListNotebookMetadataRequest & WithNextToken(const Aws::String &value)
ListNotebookMetadataRequest & WithWorkGroup(const char *value)
ListNotebookMetadataRequest & WithWorkGroup(const Aws::String &value)
AWS_ATHENA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
ListNotebookMetadataRequest & WithFilters(const FilterDefinition &value)
ListNotebookMetadataRequest & WithMaxResults(int value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String