AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; }
50 inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); }
51 inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); }
52 inline DeleteKxScalingGroupRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;}
53 inline DeleteKxScalingGroupRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;}
54 inline DeleteKxScalingGroupRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;}
56
58
61 inline const Aws::String& GetScalingGroupName() const{ return m_scalingGroupName; }
62 inline bool ScalingGroupNameHasBeenSet() const { return m_scalingGroupNameHasBeenSet; }
63 inline void SetScalingGroupName(const Aws::String& value) { m_scalingGroupNameHasBeenSet = true; m_scalingGroupName = value; }
64 inline void SetScalingGroupName(Aws::String&& value) { m_scalingGroupNameHasBeenSet = true; m_scalingGroupName = std::move(value); }
65 inline void SetScalingGroupName(const char* value) { m_scalingGroupNameHasBeenSet = true; m_scalingGroupName.assign(value); }
67 inline DeleteKxScalingGroupRequest& WithScalingGroupName(Aws::String&& value) { SetScalingGroupName(std::move(value)); return *this;}
68 inline DeleteKxScalingGroupRequest& WithScalingGroupName(const char* value) { SetScalingGroupName(value); return *this;}
70
72
75 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
76 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
77 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
78 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
79 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
80 inline DeleteKxScalingGroupRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
81 inline DeleteKxScalingGroupRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
82 inline DeleteKxScalingGroupRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
84 private:
85
86 Aws::String m_environmentId;
87 bool m_environmentIdHasBeenSet = false;
88
89 Aws::String m_scalingGroupName;
90 bool m_scalingGroupNameHasBeenSet = false;
91
92 Aws::String m_clientToken;
93 bool m_clientTokenHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace finspace
98} // namespace Aws
DeleteKxScalingGroupRequest & WithEnvironmentId(const char *value)
DeleteKxScalingGroupRequest & WithClientToken(Aws::String &&value)
DeleteKxScalingGroupRequest & WithScalingGroupName(const char *value)
DeleteKxScalingGroupRequest & WithScalingGroupName(Aws::String &&value)
DeleteKxScalingGroupRequest & WithClientToken(const Aws::String &value)
DeleteKxScalingGroupRequest & WithScalingGroupName(const Aws::String &value)
DeleteKxScalingGroupRequest & WithClientToken(const char *value)
AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteKxScalingGroupRequest & WithEnvironmentId(const Aws::String &value)
DeleteKxScalingGroupRequest & WithEnvironmentId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
AWS_FINSPACE_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String