AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetGlyphsRequest.h
1
6#pragma once
7#include <aws/geo-maps/GeoMaps_EXPORTS.h>
8#include <aws/geo-maps/GeoMapsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace GeoMaps
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_GEOMAPS_API GetGlyphsRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetGlyphs"; }
31
32 AWS_GEOMAPS_API Aws::String SerializePayload() const override;
33
34
36
89 inline const Aws::String& GetFontStack() const { return m_fontStack; }
90 inline bool FontStackHasBeenSet() const { return m_fontStackHasBeenSet; }
91 template<typename FontStackT = Aws::String>
92 void SetFontStack(FontStackT&& value) { m_fontStackHasBeenSet = true; m_fontStack = std::forward<FontStackT>(value); }
93 template<typename FontStackT = Aws::String>
94 GetGlyphsRequest& WithFontStack(FontStackT&& value) { SetFontStack(std::forward<FontStackT>(value)); return *this;}
96
98
102 inline const Aws::String& GetFontUnicodeRange() const { return m_fontUnicodeRange; }
103 inline bool FontUnicodeRangeHasBeenSet() const { return m_fontUnicodeRangeHasBeenSet; }
104 template<typename FontUnicodeRangeT = Aws::String>
105 void SetFontUnicodeRange(FontUnicodeRangeT&& value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange = std::forward<FontUnicodeRangeT>(value); }
106 template<typename FontUnicodeRangeT = Aws::String>
107 GetGlyphsRequest& WithFontUnicodeRange(FontUnicodeRangeT&& value) { SetFontUnicodeRange(std::forward<FontUnicodeRangeT>(value)); return *this;}
109 private:
110
111 Aws::String m_fontStack;
112 bool m_fontStackHasBeenSet = false;
113
114 Aws::String m_fontUnicodeRange;
115 bool m_fontUnicodeRangeHasBeenSet = false;
116 };
117
118} // namespace Model
119} // namespace GeoMaps
120} // namespace Aws
virtual const char * GetServiceRequestName() const override
GetGlyphsRequest & WithFontUnicodeRange(FontUnicodeRangeT &&value)
GetGlyphsRequest & WithFontStack(FontStackT &&value)
void SetFontUnicodeRange(FontUnicodeRangeT &&value)
AWS_GEOMAPS_API Aws::String SerializePayload() const override
AWS_GEOMAPS_API GetGlyphsRequest()=default
const Aws::String & GetFontUnicodeRange() const
const Aws::String & GetFontStack() const
void SetFontStack(FontStackT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String