AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
WebsiteCaSummary.h
1
6#pragma once
7#include <aws/worklink/WorkLink_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.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 WorkLink
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_WORKLINK_API WebsiteCaSummary() = default;
36 AWS_WORKLINK_API WebsiteCaSummary(Aws::Utils::Json::JsonView jsonValue);
38 AWS_WORKLINK_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetWebsiteCaId() const { return m_websiteCaId; }
46 inline bool WebsiteCaIdHasBeenSet() const { return m_websiteCaIdHasBeenSet; }
47 template<typename WebsiteCaIdT = Aws::String>
48 void SetWebsiteCaId(WebsiteCaIdT&& value) { m_websiteCaIdHasBeenSet = true; m_websiteCaId = std::forward<WebsiteCaIdT>(value); }
49 template<typename WebsiteCaIdT = Aws::String>
50 WebsiteCaSummary& WithWebsiteCaId(WebsiteCaIdT&& value) { SetWebsiteCaId(std::forward<WebsiteCaIdT>(value)); return *this;}
52
54
57 inline const Aws::Utils::DateTime& GetCreatedTime() const { return m_createdTime; }
58 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
59 template<typename CreatedTimeT = Aws::Utils::DateTime>
60 void SetCreatedTime(CreatedTimeT&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::forward<CreatedTimeT>(value); }
61 template<typename CreatedTimeT = Aws::Utils::DateTime>
62 WebsiteCaSummary& WithCreatedTime(CreatedTimeT&& value) { SetCreatedTime(std::forward<CreatedTimeT>(value)); return *this;}
64
66
69 inline const Aws::String& GetDisplayName() const { return m_displayName; }
70 inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; }
71 template<typename DisplayNameT = Aws::String>
72 void SetDisplayName(DisplayNameT&& value) { m_displayNameHasBeenSet = true; m_displayName = std::forward<DisplayNameT>(value); }
73 template<typename DisplayNameT = Aws::String>
74 WebsiteCaSummary& WithDisplayName(DisplayNameT&& value) { SetDisplayName(std::forward<DisplayNameT>(value)); return *this;}
76 private:
77
78 Aws::String m_websiteCaId;
79 bool m_websiteCaIdHasBeenSet = false;
80
81 Aws::Utils::DateTime m_createdTime{};
82 bool m_createdTimeHasBeenSet = false;
83
84 Aws::String m_displayName;
85 bool m_displayNameHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace WorkLink
90} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue