AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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
54 inline const Aws::String& GetSettingId() const{ return m_settingId; }
55 inline bool SettingIdHasBeenSet() const { return m_settingIdHasBeenSet; }
56 inline void SetSettingId(const Aws::String& value) { m_settingIdHasBeenSet = true; m_settingId = value; }
57 inline void SetSettingId(Aws::String&& value) { m_settingIdHasBeenSet = true; m_settingId = std::move(value); }
58 inline void SetSettingId(const char* value) { m_settingIdHasBeenSet = true; m_settingId.assign(value); }
59 inline GetServiceSettingRequest& WithSettingId(const Aws::String& value) { SetSettingId(value); return *this;}
60 inline GetServiceSettingRequest& WithSettingId(Aws::String&& value) { SetSettingId(std::move(value)); return *this;}
61 inline GetServiceSettingRequest& WithSettingId(const char* value) { SetSettingId(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
GetServiceSettingRequest & WithSettingId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
AWS_SSM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetServiceSettingRequest & WithSettingId(Aws::String &&value)
AWS_SSM_API Aws::String SerializePayload() const override
GetServiceSettingRequest & WithSettingId(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String