AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ScanFilePath.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
33 {
34 public:
35 AWS_GUARDDUTY_API ScanFilePath() = default;
36 AWS_GUARDDUTY_API ScanFilePath(Aws::Utils::Json::JsonView jsonValue);
37 AWS_GUARDDUTY_API ScanFilePath& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetFilePath() const { return m_filePath; }
46 inline bool FilePathHasBeenSet() const { return m_filePathHasBeenSet; }
47 template<typename FilePathT = Aws::String>
48 void SetFilePath(FilePathT&& value) { m_filePathHasBeenSet = true; m_filePath = std::forward<FilePathT>(value); }
49 template<typename FilePathT = Aws::String>
50 ScanFilePath& WithFilePath(FilePathT&& value) { SetFilePath(std::forward<FilePathT>(value)); return *this;}
52
54
57 inline const Aws::String& GetVolumeArn() const { return m_volumeArn; }
58 inline bool VolumeArnHasBeenSet() const { return m_volumeArnHasBeenSet; }
59 template<typename VolumeArnT = Aws::String>
60 void SetVolumeArn(VolumeArnT&& value) { m_volumeArnHasBeenSet = true; m_volumeArn = std::forward<VolumeArnT>(value); }
61 template<typename VolumeArnT = Aws::String>
62 ScanFilePath& WithVolumeArn(VolumeArnT&& value) { SetVolumeArn(std::forward<VolumeArnT>(value)); return *this;}
64
66
69 inline const Aws::String& GetHash() const { return m_hash; }
70 inline bool HashHasBeenSet() const { return m_hashHasBeenSet; }
71 template<typename HashT = Aws::String>
72 void SetHash(HashT&& value) { m_hashHasBeenSet = true; m_hash = std::forward<HashT>(value); }
73 template<typename HashT = Aws::String>
74 ScanFilePath& WithHash(HashT&& value) { SetHash(std::forward<HashT>(value)); return *this;}
76
78
81 inline const Aws::String& GetFileName() const { return m_fileName; }
82 inline bool FileNameHasBeenSet() const { return m_fileNameHasBeenSet; }
83 template<typename FileNameT = Aws::String>
84 void SetFileName(FileNameT&& value) { m_fileNameHasBeenSet = true; m_fileName = std::forward<FileNameT>(value); }
85 template<typename FileNameT = Aws::String>
86 ScanFilePath& WithFileName(FileNameT&& value) { SetFileName(std::forward<FileNameT>(value)); return *this;}
88 private:
89
90 Aws::String m_filePath;
91 bool m_filePathHasBeenSet = false;
92
93 Aws::String m_volumeArn;
94 bool m_volumeArnHasBeenSet = false;
95
96 Aws::String m_hash;
97 bool m_hashHasBeenSet = false;
98
99 Aws::String m_fileName;
100 bool m_fileNameHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace GuardDuty
105} // namespace Aws
void SetFilePath(FilePathT &&value)
void SetFileName(FileNameT &&value)
const Aws::String & GetFileName() const
const Aws::String & GetHash() const
ScanFilePath & WithHash(HashT &&value)
ScanFilePath & WithFilePath(FilePathT &&value)
ScanFilePath & WithVolumeArn(VolumeArnT &&value)
const Aws::String & GetVolumeArn() const
AWS_GUARDDUTY_API ScanFilePath()=default
ScanFilePath & WithFileName(FileNameT &&value)
AWS_GUARDDUTY_API ScanFilePath(Aws::Utils::Json::JsonView jsonValue)
void SetVolumeArn(VolumeArnT &&value)
AWS_GUARDDUTY_API ScanFilePath & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetFilePath() const
AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue