AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ThemeFooterLink.h
1
6#pragma once
7#include <aws/appstream/AppStream_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace AppStream
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_APPSTREAM_API ThemeFooterLink();
36 AWS_APPSTREAM_API ThemeFooterLink(Aws::Utils::Json::JsonView jsonValue);
38 AWS_APPSTREAM_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetDisplayName() const{ return m_displayName; }
46 inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; }
47 inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; }
48 inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); }
49 inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); }
50 inline ThemeFooterLink& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;}
51 inline ThemeFooterLink& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;}
52 inline ThemeFooterLink& WithDisplayName(const char* value) { SetDisplayName(value); return *this;}
54
56
59 inline const Aws::String& GetFooterLinkURL() const{ return m_footerLinkURL; }
60 inline bool FooterLinkURLHasBeenSet() const { return m_footerLinkURLHasBeenSet; }
61 inline void SetFooterLinkURL(const Aws::String& value) { m_footerLinkURLHasBeenSet = true; m_footerLinkURL = value; }
62 inline void SetFooterLinkURL(Aws::String&& value) { m_footerLinkURLHasBeenSet = true; m_footerLinkURL = std::move(value); }
63 inline void SetFooterLinkURL(const char* value) { m_footerLinkURLHasBeenSet = true; m_footerLinkURL.assign(value); }
64 inline ThemeFooterLink& WithFooterLinkURL(const Aws::String& value) { SetFooterLinkURL(value); return *this;}
65 inline ThemeFooterLink& WithFooterLinkURL(Aws::String&& value) { SetFooterLinkURL(std::move(value)); return *this;}
66 inline ThemeFooterLink& WithFooterLinkURL(const char* value) { SetFooterLinkURL(value); return *this;}
68 private:
69
70 Aws::String m_displayName;
71 bool m_displayNameHasBeenSet = false;
72
73 Aws::String m_footerLinkURL;
74 bool m_footerLinkURLHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace AppStream
79} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue