/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the criteria used for sorting
* findings.See Also:
AWS
* API Reference
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
Represents the finding attribute, such as accountId
, that sorts
* the findings.
The order by which the sorted findings are to be displayed.
*/ inline const OrderBy& GetOrderBy() const{ return m_orderBy; } /** *The order by which the sorted findings are to be displayed.
*/ inline bool OrderByHasBeenSet() const { return m_orderByHasBeenSet; } /** *The order by which the sorted findings are to be displayed.
*/ inline void SetOrderBy(const OrderBy& value) { m_orderByHasBeenSet = true; m_orderBy = value; } /** *The order by which the sorted findings are to be displayed.
*/ inline void SetOrderBy(OrderBy&& value) { m_orderByHasBeenSet = true; m_orderBy = std::move(value); } /** *The order by which the sorted findings are to be displayed.
*/ inline SortCriteria& WithOrderBy(const OrderBy& value) { SetOrderBy(value); return *this;} /** *The order by which the sorted findings are to be displayed.
*/ inline SortCriteria& WithOrderBy(OrderBy&& value) { SetOrderBy(std::move(value)); return *this;} private: Aws::String m_attributeName; bool m_attributeNameHasBeenSet = false; OrderBy m_orderBy; bool m_orderByHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws