AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListMilestonesRequest.h
1
6#pragma once
7#include <aws/wellarchitected/WellArchitected_EXPORTS.h>
8#include <aws/wellarchitected/WellArchitectedRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace WellArchitected
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_WELLARCHITECTED_API ListMilestonesRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "ListMilestones"; }
34
35 AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override;
36
37
39
40 inline const Aws::String& GetWorkloadId() const{ return m_workloadId; }
41 inline bool WorkloadIdHasBeenSet() const { return m_workloadIdHasBeenSet; }
42 inline void SetWorkloadId(const Aws::String& value) { m_workloadIdHasBeenSet = true; m_workloadId = value; }
43 inline void SetWorkloadId(Aws::String&& value) { m_workloadIdHasBeenSet = true; m_workloadId = std::move(value); }
44 inline void SetWorkloadId(const char* value) { m_workloadIdHasBeenSet = true; m_workloadId.assign(value); }
45 inline ListMilestonesRequest& WithWorkloadId(const Aws::String& value) { SetWorkloadId(value); return *this;}
46 inline ListMilestonesRequest& WithWorkloadId(Aws::String&& value) { SetWorkloadId(std::move(value)); return *this;}
47 inline ListMilestonesRequest& WithWorkloadId(const char* value) { SetWorkloadId(value); return *this;}
49
51
52 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
53 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
54 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
55 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
56 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
57 inline ListMilestonesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
58 inline ListMilestonesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
59 inline ListMilestonesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
61
63
64 inline int GetMaxResults() const{ return m_maxResults; }
65 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
66 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
67 inline ListMilestonesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
69 private:
70
71 Aws::String m_workloadId;
72 bool m_workloadIdHasBeenSet = false;
73
74 Aws::String m_nextToken;
75 bool m_nextTokenHasBeenSet = false;
76
77 int m_maxResults;
78 bool m_maxResultsHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace WellArchitected
83} // namespace Aws
ListMilestonesRequest & WithNextToken(const char *value)
ListMilestonesRequest & WithWorkloadId(const Aws::String &value)
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
ListMilestonesRequest & WithWorkloadId(const char *value)
virtual const char * GetServiceRequestName() const override
ListMilestonesRequest & WithWorkloadId(Aws::String &&value)
ListMilestonesRequest & WithNextToken(const Aws::String &value)
ListMilestonesRequest & WithNextToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String