AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeConfigurationSettingsRequest.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
26 {
27 public:
28 AWS_ELASTICBEANSTALK_API DescribeConfigurationSettingsRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeConfigurationSettings"; }
35
36 AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
44
47 inline const Aws::String& GetApplicationName() const{ return m_applicationName; }
48 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
49 inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
50 inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
51 inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
54 inline DescribeConfigurationSettingsRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;}
56
58
66 inline const Aws::String& GetTemplateName() const{ return m_templateName; }
67 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
68 inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; }
69 inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); }
70 inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); }
72 inline DescribeConfigurationSettingsRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;}
73 inline DescribeConfigurationSettingsRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;}
75
77
84 inline const Aws::String& GetEnvironmentName() const{ return m_environmentName; }
85 inline bool EnvironmentNameHasBeenSet() const { return m_environmentNameHasBeenSet; }
86 inline void SetEnvironmentName(const Aws::String& value) { m_environmentNameHasBeenSet = true; m_environmentName = value; }
87 inline void SetEnvironmentName(Aws::String&& value) { m_environmentNameHasBeenSet = true; m_environmentName = std::move(value); }
88 inline void SetEnvironmentName(const char* value) { m_environmentNameHasBeenSet = true; m_environmentName.assign(value); }
91 inline DescribeConfigurationSettingsRequest& WithEnvironmentName(const char* value) { SetEnvironmentName(value); return *this;}
93 private:
94
95 Aws::String m_applicationName;
96 bool m_applicationNameHasBeenSet = false;
97
98 Aws::String m_templateName;
99 bool m_templateNameHasBeenSet = false;
100
101 Aws::String m_environmentName;
102 bool m_environmentNameHasBeenSet = false;
103 };
104
105} // namespace Model
106} // namespace ElasticBeanstalk
107} // namespace Aws
DescribeConfigurationSettingsRequest & WithEnvironmentName(const Aws::String &value)
DescribeConfigurationSettingsRequest & WithApplicationName(Aws::String &&value)
DescribeConfigurationSettingsRequest & WithEnvironmentName(const char *value)
DescribeConfigurationSettingsRequest & WithApplicationName(const char *value)
AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override
DescribeConfigurationSettingsRequest & WithTemplateName(Aws::String &&value)
AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeConfigurationSettingsRequest & WithTemplateName(const Aws::String &value)
DescribeConfigurationSettingsRequest & WithTemplateName(const char *value)
DescribeConfigurationSettingsRequest & WithApplicationName(const Aws::String &value)
DescribeConfigurationSettingsRequest & WithEnvironmentName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String