AWS SDK for C++

AWS SDK for C++ Version 1.11.716

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