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
GetServiceSettingRequest.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 GetServiceSettingRequest() = 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 "GetServiceSetting"; }
35
36 AWS_SSM_API Aws::String SerializePayload() const override;
37
39
40
42
55 inline const Aws::String& GetSettingId() const { return m_settingId; }
56 inline bool SettingIdHasBeenSet() const { return m_settingIdHasBeenSet; }
57 template<typename SettingIdT = Aws::String>
58 void SetSettingId(SettingIdT&& value) { m_settingIdHasBeenSet = true; m_settingId = std::forward<SettingIdT>(value); }
59 template<typename SettingIdT = Aws::String>
60 GetServiceSettingRequest& WithSettingId(SettingIdT&& value) { SetSettingId(std::forward<SettingIdT>(value)); return *this;}
62 private:
63
64 Aws::String m_settingId;
65 bool m_settingIdHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace SSM
70} // namespace Aws
GetServiceSettingRequest & WithSettingId(SettingIdT &&value)
virtual const char * GetServiceRequestName() const override
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SSM_API Aws::String SerializePayload() const override
AWS_SSM_API GetServiceSettingRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String