AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
ResetServiceSettingRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/ssm/SSMRequest.h>
9#include <aws/ssm/SSM_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SSM {
15namespace Model {
16
24 public:
25 AWS_SSM_API ResetServiceSettingRequest() = 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 "ResetServiceSetting"; }
32
33 AWS_SSM_API Aws::String SerializePayload() const override;
34
36
38
52 inline const Aws::String& GetSettingId() const { return m_settingId; }
53 inline bool SettingIdHasBeenSet() const { return m_settingIdHasBeenSet; }
54 template <typename SettingIdT = Aws::String>
55 void SetSettingId(SettingIdT&& value) {
56 m_settingIdHasBeenSet = true;
57 m_settingId = std::forward<SettingIdT>(value);
58 }
59 template <typename SettingIdT = Aws::String>
61 SetSettingId(std::forward<SettingIdT>(value));
62 return *this;
63 }
65 private:
66 Aws::String m_settingId;
67 bool m_settingIdHasBeenSet = false;
68};
69
70} // namespace Model
71} // namespace SSM
72} // 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