AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ActorProcess.h
1
6#pragma once
7#include <aws/guardduty/GuardDuty_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 GuardDuty
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_GUARDDUTY_API ActorProcess() = default;
37 AWS_GUARDDUTY_API ActorProcess(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GUARDDUTY_API ActorProcess& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const { return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 template<typename NameT = Aws::String>
49 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
50 template<typename NameT = Aws::String>
51 ActorProcess& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
53
55
58 inline const Aws::String& GetPath() const { return m_path; }
59 inline bool PathHasBeenSet() const { return m_pathHasBeenSet; }
60 template<typename PathT = Aws::String>
61 void SetPath(PathT&& value) { m_pathHasBeenSet = true; m_path = std::forward<PathT>(value); }
62 template<typename PathT = Aws::String>
63 ActorProcess& WithPath(PathT&& value) { SetPath(std::forward<PathT>(value)); return *this;}
65
67
71 inline const Aws::String& GetSha256() const { return m_sha256; }
72 inline bool Sha256HasBeenSet() const { return m_sha256HasBeenSet; }
73 template<typename Sha256T = Aws::String>
74 void SetSha256(Sha256T&& value) { m_sha256HasBeenSet = true; m_sha256 = std::forward<Sha256T>(value); }
75 template<typename Sha256T = Aws::String>
76 ActorProcess& WithSha256(Sha256T&& value) { SetSha256(std::forward<Sha256T>(value)); return *this;}
78 private:
79
80 Aws::String m_name;
81 bool m_nameHasBeenSet = false;
82
83 Aws::String m_path;
84 bool m_pathHasBeenSet = false;
85
86 Aws::String m_sha256;
87 bool m_sha256HasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace GuardDuty
92} // namespace Aws
ActorProcess & WithName(NameT &&value)
AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GUARDDUTY_API ActorProcess(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetName() const
const Aws::String & GetPath() const
void SetSha256(Sha256T &&value)
ActorProcess & WithPath(PathT &&value)
ActorProcess & WithSha256(Sha256T &&value)
const Aws::String & GetSha256() const
AWS_GUARDDUTY_API ActorProcess & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GUARDDUTY_API ActorProcess()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue