AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteConfigurationTemplateRequest.h
1
6#pragma once
7#include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h>
8#include <aws/elasticbeanstalk/ElasticBeanstalkRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace ElasticBeanstalk
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_ELASTICBEANSTALK_API DeleteConfigurationTemplateRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DeleteConfigurationTemplate"; }
34
35 AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
46 inline const Aws::String& GetApplicationName() const{ return m_applicationName; }
47 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
48 inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
49 inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
50 inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
52 inline DeleteConfigurationTemplateRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;}
53 inline DeleteConfigurationTemplateRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;}
55
57
60 inline const Aws::String& GetTemplateName() const{ return m_templateName; }
61 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
62 inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; }
63 inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); }
64 inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); }
66 inline DeleteConfigurationTemplateRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;}
67 inline DeleteConfigurationTemplateRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;}
69 private:
70
71 Aws::String m_applicationName;
72 bool m_applicationNameHasBeenSet = false;
73
74 Aws::String m_templateName;
75 bool m_templateNameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace ElasticBeanstalk
80} // namespace Aws
DeleteConfigurationTemplateRequest & WithTemplateName(const Aws::String &value)
AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteConfigurationTemplateRequest & WithApplicationName(const char *value)
DeleteConfigurationTemplateRequest & WithTemplateName(Aws::String &&value)
DeleteConfigurationTemplateRequest & WithApplicationName(Aws::String &&value)
AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override
DeleteConfigurationTemplateRequest & WithApplicationName(const Aws::String &value)
DeleteConfigurationTemplateRequest & WithTemplateName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String