AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteKxScalingGroupRequest.h
1
6#pragma once
7#include <aws/finspace/Finspace_EXPORTS.h>
8#include <aws/finspace/FinspaceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace finspace
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_FINSPACE_API DeleteKxScalingGroupRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DeleteKxScalingGroup"; }
36
37 AWS_FINSPACE_API Aws::String SerializePayload() const override;
38
39 AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
47 inline const Aws::String& GetEnvironmentId() const { return m_environmentId; }
48 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
49 template<typename EnvironmentIdT = Aws::String>
50 void SetEnvironmentId(EnvironmentIdT&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::forward<EnvironmentIdT>(value); }
51 template<typename EnvironmentIdT = Aws::String>
52 DeleteKxScalingGroupRequest& WithEnvironmentId(EnvironmentIdT&& value) { SetEnvironmentId(std::forward<EnvironmentIdT>(value)); return *this;}
54
56
59 inline const Aws::String& GetScalingGroupName() const { return m_scalingGroupName; }
60 inline bool ScalingGroupNameHasBeenSet() const { return m_scalingGroupNameHasBeenSet; }
61 template<typename ScalingGroupNameT = Aws::String>
62 void SetScalingGroupName(ScalingGroupNameT&& value) { m_scalingGroupNameHasBeenSet = true; m_scalingGroupName = std::forward<ScalingGroupNameT>(value); }
63 template<typename ScalingGroupNameT = Aws::String>
64 DeleteKxScalingGroupRequest& WithScalingGroupName(ScalingGroupNameT&& value) { SetScalingGroupName(std::forward<ScalingGroupNameT>(value)); return *this;}
66
68
71 inline const Aws::String& GetClientToken() const { return m_clientToken; }
72 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
73 template<typename ClientTokenT = Aws::String>
74 void SetClientToken(ClientTokenT&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::forward<ClientTokenT>(value); }
75 template<typename ClientTokenT = Aws::String>
76 DeleteKxScalingGroupRequest& WithClientToken(ClientTokenT&& value) { SetClientToken(std::forward<ClientTokenT>(value)); return *this;}
78 private:
79
80 Aws::String m_environmentId;
81 bool m_environmentIdHasBeenSet = false;
82
83 Aws::String m_scalingGroupName;
84 bool m_scalingGroupNameHasBeenSet = false;
85
87 bool m_clientTokenHasBeenSet = true;
88 };
89
90} // namespace Model
91} // namespace finspace
92} // namespace Aws
static Aws::Utils::UUID PseudoRandomUUID()
AWS_FINSPACE_API DeleteKxScalingGroupRequest()=default
DeleteKxScalingGroupRequest & WithClientToken(ClientTokenT &&value)
AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
AWS_FINSPACE_API Aws::String SerializePayload() const override
DeleteKxScalingGroupRequest & WithEnvironmentId(EnvironmentIdT &&value)
DeleteKxScalingGroupRequest & WithScalingGroupName(ScalingGroupNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String