AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteProfileRequest.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#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace WellArchitected
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_WELLARCHITECTED_API DeleteProfileRequest();
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 "DeleteProfile"; }
36
37 AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override;
38
39 AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetProfileArn() const{ return m_profileArn; }
47 inline bool ProfileArnHasBeenSet() const { return m_profileArnHasBeenSet; }
48 inline void SetProfileArn(const Aws::String& value) { m_profileArnHasBeenSet = true; m_profileArn = value; }
49 inline void SetProfileArn(Aws::String&& value) { m_profileArnHasBeenSet = true; m_profileArn = std::move(value); }
50 inline void SetProfileArn(const char* value) { m_profileArnHasBeenSet = true; m_profileArn.assign(value); }
51 inline DeleteProfileRequest& WithProfileArn(const Aws::String& value) { SetProfileArn(value); return *this;}
52 inline DeleteProfileRequest& WithProfileArn(Aws::String&& value) { SetProfileArn(std::move(value)); return *this;}
53 inline DeleteProfileRequest& WithProfileArn(const char* value) { SetProfileArn(value); return *this;}
55
57
58 inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; }
59 inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; }
60 inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; }
61 inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); }
62 inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); }
64 inline DeleteProfileRequest& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;}
65 inline DeleteProfileRequest& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;}
67 private:
68
69 Aws::String m_profileArn;
70 bool m_profileArnHasBeenSet = false;
71
72 Aws::String m_clientRequestToken;
73 bool m_clientRequestTokenHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace WellArchitected
78} // namespace Aws
DeleteProfileRequest & WithProfileArn(const char *value)
AWS_WELLARCHITECTED_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteProfileRequest & WithProfileArn(const Aws::String &value)
DeleteProfileRequest & WithClientRequestToken(const Aws::String &value)
DeleteProfileRequest & WithClientRequestToken(const char *value)
DeleteProfileRequest & WithProfileArn(Aws::String &&value)
AWS_WELLARCHITECTED_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
DeleteProfileRequest & WithClientRequestToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String