AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteKxEnvironmentRequest.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 DeleteKxEnvironmentRequest() = 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 "DeleteKxEnvironment"; }
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
46 inline const Aws::String& GetEnvironmentId() const { return m_environmentId; }
47 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
48 template<typename EnvironmentIdT = Aws::String>
49 void SetEnvironmentId(EnvironmentIdT&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::forward<EnvironmentIdT>(value); }
50 template<typename EnvironmentIdT = Aws::String>
51 DeleteKxEnvironmentRequest& WithEnvironmentId(EnvironmentIdT&& value) { SetEnvironmentId(std::forward<EnvironmentIdT>(value)); return *this;}
53
55
58 inline const Aws::String& GetClientToken() const { return m_clientToken; }
59 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
60 template<typename ClientTokenT = Aws::String>
61 void SetClientToken(ClientTokenT&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::forward<ClientTokenT>(value); }
62 template<typename ClientTokenT = Aws::String>
63 DeleteKxEnvironmentRequest& WithClientToken(ClientTokenT&& value) { SetClientToken(std::forward<ClientTokenT>(value)); return *this;}
65 private:
66
67 Aws::String m_environmentId;
68 bool m_environmentIdHasBeenSet = false;
69
71 bool m_clientTokenHasBeenSet = true;
72 };
73
74} // namespace Model
75} // namespace finspace
76} // namespace Aws
static Aws::Utils::UUID PseudoRandomUUID()
AWS_FINSPACE_API Aws::String SerializePayload() const override
AWS_FINSPACE_API DeleteKxEnvironmentRequest()=default
AWS_FINSPACE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteKxEnvironmentRequest & WithClientToken(ClientTokenT &&value)
virtual const char * GetServiceRequestName() const override
DeleteKxEnvironmentRequest & WithEnvironmentId(EnvironmentIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String