68 lines
1.8 KiB
C
68 lines
1.8 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/securityhub/SecurityHub_EXPORTS.h>
|
|||
|
|
#include <aws/securityhub/model/InsightResults.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace SecurityHub
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_SECURITYHUB_API GetInsightResultsResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetInsightResultsResult();
|
|||
|
|
GetInsightResultsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
GetInsightResultsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The insight results returned by the operation.</p>
|
|||
|
|
*/
|
|||
|
|
inline const InsightResults& GetInsightResults() const{ return m_insightResults; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The insight results returned by the operation.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetInsightResults(const InsightResults& value) { m_insightResults = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The insight results returned by the operation.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetInsightResults(InsightResults&& value) { m_insightResults = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The insight results returned by the operation.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetInsightResultsResult& WithInsightResults(const InsightResults& value) { SetInsightResults(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The insight results returned by the operation.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetInsightResultsResult& WithInsightResults(InsightResults&& value) { SetInsightResults(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
InsightResults m_insightResults;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace SecurityHub
|
|||
|
|
} // namespace Aws
|