AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
FrameworkMetadata.h
1
6#pragma once
7#include <aws/auditmanager/AuditManager_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 AuditManager
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_AUDITMANAGER_API FrameworkMetadata() = default;
36 AWS_AUDITMANAGER_API FrameworkMetadata(Aws::Utils::Json::JsonView jsonValue);
37 AWS_AUDITMANAGER_API FrameworkMetadata& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_AUDITMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetName() const { return m_name; }
46 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
47 template<typename NameT = Aws::String>
48 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
49 template<typename NameT = Aws::String>
50 FrameworkMetadata& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
52
54
57 inline const Aws::String& GetDescription() const { return m_description; }
58 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
59 template<typename DescriptionT = Aws::String>
60 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
61 template<typename DescriptionT = Aws::String>
62 FrameworkMetadata& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
64
66
69 inline const Aws::String& GetLogo() const { return m_logo; }
70 inline bool LogoHasBeenSet() const { return m_logoHasBeenSet; }
71 template<typename LogoT = Aws::String>
72 void SetLogo(LogoT&& value) { m_logoHasBeenSet = true; m_logo = std::forward<LogoT>(value); }
73 template<typename LogoT = Aws::String>
74 FrameworkMetadata& WithLogo(LogoT&& value) { SetLogo(std::forward<LogoT>(value)); return *this;}
76
78
82 inline const Aws::String& GetComplianceType() const { return m_complianceType; }
83 inline bool ComplianceTypeHasBeenSet() const { return m_complianceTypeHasBeenSet; }
84 template<typename ComplianceTypeT = Aws::String>
85 void SetComplianceType(ComplianceTypeT&& value) { m_complianceTypeHasBeenSet = true; m_complianceType = std::forward<ComplianceTypeT>(value); }
86 template<typename ComplianceTypeT = Aws::String>
87 FrameworkMetadata& WithComplianceType(ComplianceTypeT&& value) { SetComplianceType(std::forward<ComplianceTypeT>(value)); return *this;}
89 private:
90
91 Aws::String m_name;
92 bool m_nameHasBeenSet = false;
93
94 Aws::String m_description;
95 bool m_descriptionHasBeenSet = false;
96
97 Aws::String m_logo;
98 bool m_logoHasBeenSet = false;
99
100 Aws::String m_complianceType;
101 bool m_complianceTypeHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace AuditManager
106} // namespace Aws
FrameworkMetadata & WithComplianceType(ComplianceTypeT &&value)
AWS_AUDITMANAGER_API FrameworkMetadata()=default
AWS_AUDITMANAGER_API FrameworkMetadata & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetComplianceType() const
FrameworkMetadata & WithLogo(LogoT &&value)
void SetComplianceType(ComplianceTypeT &&value)
AWS_AUDITMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_AUDITMANAGER_API FrameworkMetadata(Aws::Utils::Json::JsonView jsonValue)
FrameworkMetadata & WithName(NameT &&value)
FrameworkMetadata & WithDescription(DescriptionT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue