AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Typography.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/quicksight/model/Font.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace QuickSight
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_QUICKSIGHT_API Typography();
36 AWS_QUICKSIGHT_API Typography(Aws::Utils::Json::JsonView jsonValue);
37 AWS_QUICKSIGHT_API Typography& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::Vector<Font>& GetFontFamilies() const{ return m_fontFamilies; }
46 inline bool FontFamiliesHasBeenSet() const { return m_fontFamiliesHasBeenSet; }
47 inline void SetFontFamilies(const Aws::Vector<Font>& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies = value; }
48 inline void SetFontFamilies(Aws::Vector<Font>&& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies = std::move(value); }
49 inline Typography& WithFontFamilies(const Aws::Vector<Font>& value) { SetFontFamilies(value); return *this;}
50 inline Typography& WithFontFamilies(Aws::Vector<Font>&& value) { SetFontFamilies(std::move(value)); return *this;}
51 inline Typography& AddFontFamilies(const Font& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies.push_back(value); return *this; }
52 inline Typography& AddFontFamilies(Font&& value) { m_fontFamiliesHasBeenSet = true; m_fontFamilies.push_back(std::move(value)); return *this; }
54 private:
55
56 Aws::Vector<Font> m_fontFamilies;
57 bool m_fontFamiliesHasBeenSet = false;
58 };
59
60} // namespace Model
61} // namespace QuickSight
62} // namespace Aws
void SetFontFamilies(const Aws::Vector< Font > &value)
Definition Typography.h:47
void SetFontFamilies(Aws::Vector< Font > &&value)
Definition Typography.h:48
AWS_QUICKSIGHT_API Typography & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Font > & GetFontFamilies() const
Definition Typography.h:45
Typography & AddFontFamilies(Font &&value)
Definition Typography.h:52
Typography & AddFontFamilies(const Font &value)
Definition Typography.h:51
AWS_QUICKSIGHT_API Typography(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API Typography()
Typography & WithFontFamilies(const Aws::Vector< Font > &value)
Definition Typography.h:49
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
Typography & WithFontFamilies(Aws::Vector< Font > &&value)
Definition Typography.h:50
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue