AWS SDK for C++

AWS SDK for C++ Version 1.11.745

Loading...
Searching...
No Matches
StartConfigurationSessionRequest.h
1
6#pragma once
7#include <aws/appconfigdata/AppConfigDataRequest.h>
8#include <aws/appconfigdata/AppConfigData_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace AppConfigData {
15namespace Model {
16
20 public:
21 AWS_APPCONFIGDATA_API StartConfigurationSessionRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "StartConfigurationSession"; }
28
29 AWS_APPCONFIGDATA_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetApplicationIdentifier() const { return m_applicationIdentifier; }
36 inline bool ApplicationIdentifierHasBeenSet() const { return m_applicationIdentifierHasBeenSet; }
37 template <typename ApplicationIdentifierT = Aws::String>
38 void SetApplicationIdentifier(ApplicationIdentifierT&& value) {
39 m_applicationIdentifierHasBeenSet = true;
40 m_applicationIdentifier = std::forward<ApplicationIdentifierT>(value);
41 }
42 template <typename ApplicationIdentifierT = Aws::String>
44 SetApplicationIdentifier(std::forward<ApplicationIdentifierT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetEnvironmentIdentifier() const { return m_environmentIdentifier; }
54 inline bool EnvironmentIdentifierHasBeenSet() const { return m_environmentIdentifierHasBeenSet; }
55 template <typename EnvironmentIdentifierT = Aws::String>
56 void SetEnvironmentIdentifier(EnvironmentIdentifierT&& value) {
57 m_environmentIdentifierHasBeenSet = true;
58 m_environmentIdentifier = std::forward<EnvironmentIdentifierT>(value);
59 }
60 template <typename EnvironmentIdentifierT = Aws::String>
62 SetEnvironmentIdentifier(std::forward<EnvironmentIdentifierT>(value));
63 return *this;
64 }
66
68
71 inline const Aws::String& GetConfigurationProfileIdentifier() const { return m_configurationProfileIdentifier; }
72 inline bool ConfigurationProfileIdentifierHasBeenSet() const { return m_configurationProfileIdentifierHasBeenSet; }
73 template <typename ConfigurationProfileIdentifierT = Aws::String>
74 void SetConfigurationProfileIdentifier(ConfigurationProfileIdentifierT&& value) {
75 m_configurationProfileIdentifierHasBeenSet = true;
76 m_configurationProfileIdentifier = std::forward<ConfigurationProfileIdentifierT>(value);
77 }
78 template <typename ConfigurationProfileIdentifierT = Aws::String>
79 StartConfigurationSessionRequest& WithConfigurationProfileIdentifier(ConfigurationProfileIdentifierT&& value) {
80 SetConfigurationProfileIdentifier(std::forward<ConfigurationProfileIdentifierT>(value));
81 return *this;
82 }
84
86
91 inline int GetRequiredMinimumPollIntervalInSeconds() const { return m_requiredMinimumPollIntervalInSeconds; }
92 inline bool RequiredMinimumPollIntervalInSecondsHasBeenSet() const { return m_requiredMinimumPollIntervalInSecondsHasBeenSet; }
94 m_requiredMinimumPollIntervalInSecondsHasBeenSet = true;
95 m_requiredMinimumPollIntervalInSeconds = value;
96 }
99 return *this;
100 }
102 private:
103 Aws::String m_applicationIdentifier;
104
105 Aws::String m_environmentIdentifier;
106
107 Aws::String m_configurationProfileIdentifier;
108
109 int m_requiredMinimumPollIntervalInSeconds{0};
110 bool m_applicationIdentifierHasBeenSet = false;
111 bool m_environmentIdentifierHasBeenSet = false;
112 bool m_configurationProfileIdentifierHasBeenSet = false;
113 bool m_requiredMinimumPollIntervalInSecondsHasBeenSet = false;
114};
115
116} // namespace Model
117} // namespace AppConfigData
118} // namespace Aws
AWS_APPCONFIGDATA_API StartConfigurationSessionRequest()=default
void SetConfigurationProfileIdentifier(ConfigurationProfileIdentifierT &&value)
StartConfigurationSessionRequest & WithEnvironmentIdentifier(EnvironmentIdentifierT &&value)
AWS_APPCONFIGDATA_API Aws::String SerializePayload() const override
StartConfigurationSessionRequest & WithRequiredMinimumPollIntervalInSeconds(int value)
StartConfigurationSessionRequest & WithApplicationIdentifier(ApplicationIdentifierT &&value)
StartConfigurationSessionRequest & WithConfigurationProfileIdentifier(ConfigurationProfileIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String