AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetMilestoneRequest.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 GetMilestoneRequest();
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 "GetMilestone"; }
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 GetMilestoneRequest& WithWorkloadId(const Aws::String& value) { SetWorkloadId(value); return *this;}
46 inline GetMilestoneRequest& WithWorkloadId(Aws::String&& value) { SetWorkloadId(std::move(value)); return *this;}
47 inline GetMilestoneRequest& WithWorkloadId(const char* value) { SetWorkloadId(value); return *this;}
49
51
52 inline int GetMilestoneNumber() const{ return m_milestoneNumber; }
53 inline bool MilestoneNumberHasBeenSet() const { return m_milestoneNumberHasBeenSet; }
54 inline void SetMilestoneNumber(int value) { m_milestoneNumberHasBeenSet = true; m_milestoneNumber = value; }
55 inline GetMilestoneRequest& WithMilestoneNumber(int value) { SetMilestoneNumber(value); return *this;}
57 private:
58
59 Aws::String m_workloadId;
60 bool m_workloadIdHasBeenSet = false;
61
62 int m_milestoneNumber;
63 bool m_milestoneNumberHasBeenSet = false;
64 };
65
66} // namespace Model
67} // namespace WellArchitected
68} // namespace Aws
GetMilestoneRequest & WithWorkloadId(const char *value)
GetMilestoneRequest & WithWorkloadId(Aws::String &&value)
GetMilestoneRequest & WithWorkloadId(const Aws::String &value)
GetMilestoneRequest & WithMilestoneNumber(int value)
virtual const char * GetServiceRequestName() const override
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String