AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetFontStack(const Aws::String& value) { m_fontStackHasBeenSet = true; m_fontStack = value; }
92 inline void SetFontStack(Aws::String&& value) { m_fontStackHasBeenSet = true; m_fontStack = std::move(value); }
93 inline void SetFontStack(const char* value) { m_fontStackHasBeenSet = true; m_fontStack.assign(value); }
94 inline GetGlyphsRequest& WithFontStack(const Aws::String& value) { SetFontStack(value); return *this;}
95 inline GetGlyphsRequest& WithFontStack(Aws::String&& value) { SetFontStack(std::move(value)); return *this;}
96 inline GetGlyphsRequest& WithFontStack(const char* value) { SetFontStack(value); return *this;}
98
100
104 inline const Aws::String& GetFontUnicodeRange() const{ return m_fontUnicodeRange; }
105 inline bool FontUnicodeRangeHasBeenSet() const { return m_fontUnicodeRangeHasBeenSet; }
106 inline void SetFontUnicodeRange(const Aws::String& value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange = value; }
107 inline void SetFontUnicodeRange(Aws::String&& value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange = std::move(value); }
108 inline void SetFontUnicodeRange(const char* value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange.assign(value); }
109 inline GetGlyphsRequest& WithFontUnicodeRange(const Aws::String& value) { SetFontUnicodeRange(value); return *this;}
110 inline GetGlyphsRequest& WithFontUnicodeRange(Aws::String&& value) { SetFontUnicodeRange(std::move(value)); return *this;}
111 inline GetGlyphsRequest& WithFontUnicodeRange(const char* value) { SetFontUnicodeRange(value); return *this;}
113 private:
114
115 Aws::String m_fontStack;
116 bool m_fontStackHasBeenSet = false;
117
118 Aws::String m_fontUnicodeRange;
119 bool m_fontUnicodeRangeHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace GeoMaps
124} // namespace Aws
virtual const char * GetServiceRequestName() const override
void SetFontStack(Aws::String &&value)
GetGlyphsRequest & WithFontUnicodeRange(const char *value)
GetGlyphsRequest & WithFontUnicodeRange(Aws::String &&value)
GetGlyphsRequest & WithFontUnicodeRange(const Aws::String &value)
GetGlyphsRequest & WithFontStack(const Aws::String &value)
GetGlyphsRequest & WithFontStack(Aws::String &&value)
void SetFontStack(const Aws::String &value)
AWS_GEOMAPS_API Aws::String SerializePayload() const override
void SetFontUnicodeRange(const Aws::String &value)
const Aws::String & GetFontUnicodeRange() const
GetGlyphsRequest & WithFontStack(const char *value)
void SetFontUnicodeRange(const char *value)
const Aws::String & GetFontStack() const
void SetFontUnicodeRange(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String