AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SuggestedFix.h
1
6#pragma once
7#include <aws/codeguru-security/CodeGuruSecurity_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 CodeGuruSecurity
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_CODEGURUSECURITY_API SuggestedFix();
36 AWS_CODEGURUSECURITY_API SuggestedFix(Aws::Utils::Json::JsonView jsonValue);
37 AWS_CODEGURUSECURITY_API SuggestedFix& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CODEGURUSECURITY_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetCode() const{ return m_code; }
47 inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
48 inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; }
49 inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); }
50 inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); }
51 inline SuggestedFix& WithCode(const Aws::String& value) { SetCode(value); return *this;}
52 inline SuggestedFix& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;}
53 inline SuggestedFix& WithCode(const char* value) { SetCode(value); return *this;}
55
57
60 inline const Aws::String& GetDescription() const{ return m_description; }
61 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
62 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
63 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
64 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
65 inline SuggestedFix& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
66 inline SuggestedFix& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
67 inline SuggestedFix& WithDescription(const char* value) { SetDescription(value); return *this;}
69 private:
70
71 Aws::String m_code;
72 bool m_codeHasBeenSet = false;
73
74 Aws::String m_description;
75 bool m_descriptionHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace CodeGuruSecurity
80} // namespace Aws
const Aws::String & GetDescription() const
void SetDescription(const Aws::String &value)
SuggestedFix & WithCode(const char *value)
SuggestedFix & WithDescription(const char *value)
const Aws::String & GetCode() const
AWS_CODEGURUSECURITY_API SuggestedFix()
SuggestedFix & WithCode(Aws::String &&value)
SuggestedFix & WithDescription(Aws::String &&value)
SuggestedFix & WithDescription(const Aws::String &value)
SuggestedFix & WithCode(const Aws::String &value)
AWS_CODEGURUSECURITY_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CODEGURUSECURITY_API SuggestedFix & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetDescription(Aws::String &&value)
void SetCode(const Aws::String &value)
AWS_CODEGURUSECURITY_API SuggestedFix(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue