AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteQueueLimitAssociationRequest.h
1
6#pragma once
7#include <aws/deadline/Deadline_EXPORTS.h>
8#include <aws/deadline/DeadlineRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace deadline
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_DEADLINE_API DeleteQueueLimitAssociationRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteQueueLimitAssociation"; }
31
32 AWS_DEADLINE_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetFarmId() const { return m_farmId; }
41 inline bool FarmIdHasBeenSet() const { return m_farmIdHasBeenSet; }
42 template<typename FarmIdT = Aws::String>
43 void SetFarmId(FarmIdT&& value) { m_farmIdHasBeenSet = true; m_farmId = std::forward<FarmIdT>(value); }
44 template<typename FarmIdT = Aws::String>
45 DeleteQueueLimitAssociationRequest& WithFarmId(FarmIdT&& value) { SetFarmId(std::forward<FarmIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetQueueId() const { return m_queueId; }
53 inline bool QueueIdHasBeenSet() const { return m_queueIdHasBeenSet; }
54 template<typename QueueIdT = Aws::String>
55 void SetQueueId(QueueIdT&& value) { m_queueIdHasBeenSet = true; m_queueId = std::forward<QueueIdT>(value); }
56 template<typename QueueIdT = Aws::String>
57 DeleteQueueLimitAssociationRequest& WithQueueId(QueueIdT&& value) { SetQueueId(std::forward<QueueIdT>(value)); return *this;}
59
61
64 inline const Aws::String& GetLimitId() const { return m_limitId; }
65 inline bool LimitIdHasBeenSet() const { return m_limitIdHasBeenSet; }
66 template<typename LimitIdT = Aws::String>
67 void SetLimitId(LimitIdT&& value) { m_limitIdHasBeenSet = true; m_limitId = std::forward<LimitIdT>(value); }
68 template<typename LimitIdT = Aws::String>
69 DeleteQueueLimitAssociationRequest& WithLimitId(LimitIdT&& value) { SetLimitId(std::forward<LimitIdT>(value)); return *this;}
71 private:
72
73 Aws::String m_farmId;
74 bool m_farmIdHasBeenSet = false;
75
76 Aws::String m_queueId;
77 bool m_queueIdHasBeenSet = false;
78
79 Aws::String m_limitId;
80 bool m_limitIdHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace deadline
85} // namespace Aws
DeleteQueueLimitAssociationRequest & WithLimitId(LimitIdT &&value)
AWS_DEADLINE_API Aws::String SerializePayload() const override
DeleteQueueLimitAssociationRequest & WithFarmId(FarmIdT &&value)
DeleteQueueLimitAssociationRequest & WithQueueId(QueueIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String