/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the result of the scan.See Also:
AWS
* API Reference
An enum value representing possible scan results.
*/ inline const ScanResult& GetScanResult() const{ return m_scanResult; } /** *An enum value representing possible scan results.
*/ inline bool ScanResultHasBeenSet() const { return m_scanResultHasBeenSet; } /** *An enum value representing possible scan results.
*/ inline void SetScanResult(const ScanResult& value) { m_scanResultHasBeenSet = true; m_scanResult = value; } /** *An enum value representing possible scan results.
*/ inline void SetScanResult(ScanResult&& value) { m_scanResultHasBeenSet = true; m_scanResult = std::move(value); } /** *An enum value representing possible scan results.
*/ inline ScanResultDetails& WithScanResult(const ScanResult& value) { SetScanResult(value); return *this;} /** *An enum value representing possible scan results.
*/ inline ScanResultDetails& WithScanResult(ScanResult&& value) { SetScanResult(std::move(value)); return *this;} private: ScanResult m_scanResult; bool m_scanResultHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws