AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListBuildsRequest.h
1
6#pragma once
7#include <aws/codebuild/CodeBuild_EXPORTS.h>
8#include <aws/codebuild/CodeBuildRequest.h>
9#include <aws/codebuild/model/SortOrderType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CodeBuild
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CODEBUILD_API ListBuildsRequest();
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 "ListBuilds"; }
32
33 AWS_CODEBUILD_API Aws::String SerializePayload() const override;
34
36
37
39
45 inline const SortOrderType& GetSortOrder() const{ return m_sortOrder; }
46 inline bool SortOrderHasBeenSet() const { return m_sortOrderHasBeenSet; }
47 inline void SetSortOrder(const SortOrderType& value) { m_sortOrderHasBeenSet = true; m_sortOrder = value; }
48 inline void SetSortOrder(SortOrderType&& value) { m_sortOrderHasBeenSet = true; m_sortOrder = std::move(value); }
49 inline ListBuildsRequest& WithSortOrder(const SortOrderType& value) { SetSortOrder(value); return *this;}
50 inline ListBuildsRequest& WithSortOrder(SortOrderType&& value) { SetSortOrder(std::move(value)); return *this;}
52
54
62 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
63 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
64 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
65 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
66 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
67 inline ListBuildsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
68 inline ListBuildsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
69 inline ListBuildsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
71 private:
72
73 SortOrderType m_sortOrder;
74 bool m_sortOrderHasBeenSet = false;
75
76 Aws::String m_nextToken;
77 bool m_nextTokenHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace CodeBuild
82} // namespace Aws
ListBuildsRequest & WithSortOrder(const SortOrderType &value)
virtual const char * GetServiceRequestName() const override
AWS_CODEBUILD_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_CODEBUILD_API Aws::String SerializePayload() const override
void SetSortOrder(SortOrderType &&value)
void SetNextToken(const Aws::String &value)
ListBuildsRequest & WithNextToken(Aws::String &&value)
ListBuildsRequest & WithNextToken(const char *value)
ListBuildsRequest & WithSortOrder(SortOrderType &&value)
const SortOrderType & GetSortOrder() const
ListBuildsRequest & WithNextToken(const Aws::String &value)
const Aws::String & GetNextToken() const
void SetSortOrder(const SortOrderType &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String