AWS SDK for C++

AWS SDK for C++ Version 1.11.552

All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
Loading...
Searching...
No Matches
ResetServiceSettingRequest.h
1
6#pragma once
7#include <aws/ssm/SSM_EXPORTS.h>
8#include <aws/ssm/SSMRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SSM
15{
16namespace Model
17{
18
26 {
27 public:
28 AWS_SSM_API ResetServiceSettingRequest() = default;
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 "ResetServiceSetting"; }
35
36 AWS_SSM_API Aws::String SerializePayload() const override;
37
39
40
42
56 inline const Aws::String& GetSettingId() const { return m_settingId; }
57 inline bool SettingIdHasBeenSet() const { return m_settingIdHasBeenSet; }
58 template<typename SettingIdT = Aws::String>
59 void SetSettingId(SettingIdT&& value) { m_settingIdHasBeenSet = true; m_settingId = std::forward<SettingIdT>(value); }
60 template<typename SettingIdT = Aws::String>
61 ResetServiceSettingRequest& WithSettingId(SettingIdT&& value) { SetSettingId(std::forward<SettingIdT>(value)); return *this;}
63 private:
64
65 Aws::String m_settingId;
66 bool m_settingIdHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace SSM
71} // namespace Aws
AWS_SSM_API ResetServiceSettingRequest()=default
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SSM_API Aws::String SerializePayload() const override
ResetServiceSettingRequest & WithSettingId(SettingIdT &&value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String