AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteConfigurationProfileRequest.h
1
6#pragma once
7#include <aws/appconfig/AppConfig_EXPORTS.h>
8#include <aws/appconfig/AppConfigRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/appconfig/model/DeletionProtectionCheck.h>
11#include <utility>
12
13namespace Aws
14{
15namespace AppConfig
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_APPCONFIG_API DeleteConfigurationProfileRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DeleteConfigurationProfile"; }
32
33 AWS_APPCONFIG_API Aws::String SerializePayload() const override;
34
36
37
39
43 inline const Aws::String& GetApplicationId() const { return m_applicationId; }
44 inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
45 template<typename ApplicationIdT = Aws::String>
46 void SetApplicationId(ApplicationIdT&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::forward<ApplicationIdT>(value); }
47 template<typename ApplicationIdT = Aws::String>
48 DeleteConfigurationProfileRequest& WithApplicationId(ApplicationIdT&& value) { SetApplicationId(std::forward<ApplicationIdT>(value)); return *this;}
50
52
55 inline const Aws::String& GetConfigurationProfileId() const { return m_configurationProfileId; }
56 inline bool ConfigurationProfileIdHasBeenSet() const { return m_configurationProfileIdHasBeenSet; }
57 template<typename ConfigurationProfileIdT = Aws::String>
58 void SetConfigurationProfileId(ConfigurationProfileIdT&& value) { m_configurationProfileIdHasBeenSet = true; m_configurationProfileId = std::forward<ConfigurationProfileIdT>(value); }
59 template<typename ConfigurationProfileIdT = Aws::String>
60 DeleteConfigurationProfileRequest& WithConfigurationProfileId(ConfigurationProfileIdT&& value) { SetConfigurationProfileId(std::forward<ConfigurationProfileIdT>(value)); return *this;}
62
64
81 inline DeletionProtectionCheck GetDeletionProtectionCheck() const { return m_deletionProtectionCheck; }
82 inline bool DeletionProtectionCheckHasBeenSet() const { return m_deletionProtectionCheckHasBeenSet; }
83 inline void SetDeletionProtectionCheck(DeletionProtectionCheck value) { m_deletionProtectionCheckHasBeenSet = true; m_deletionProtectionCheck = value; }
86 private:
87
88 Aws::String m_applicationId;
89 bool m_applicationIdHasBeenSet = false;
90
91 Aws::String m_configurationProfileId;
92 bool m_configurationProfileIdHasBeenSet = false;
93
95 bool m_deletionProtectionCheckHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace AppConfig
100} // namespace Aws
AWS_APPCONFIG_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_APPCONFIG_API Aws::String SerializePayload() const override
AWS_APPCONFIG_API DeleteConfigurationProfileRequest()=default
DeleteConfigurationProfileRequest & WithApplicationId(ApplicationIdT &&value)
DeleteConfigurationProfileRequest & WithConfigurationProfileId(ConfigurationProfileIdT &&value)
DeleteConfigurationProfileRequest & WithDeletionProtectionCheck(DeletionProtectionCheck value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String