/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace FraudDetector { namespace Model { /** *

The details of the relative importance of the aggregated variables.

*

Account Takeover Insights (ATI) model uses event variables from the login * data you provide to continuously calculate a set of variables (aggregated * variables) based on historical events. For example, your ATI model might * calculate the number of times an user has logged in using the same IP address. * In this case, event variables used to derive the aggregated variables are * IP address and user.

See Also:

AWS * API Reference

*/ class AggregatedVariablesImportanceMetrics { public: AWS_FRAUDDETECTOR_API AggregatedVariablesImportanceMetrics(); AWS_FRAUDDETECTOR_API AggregatedVariablesImportanceMetrics(Aws::Utils::Json::JsonView jsonValue); AWS_FRAUDDETECTOR_API AggregatedVariablesImportanceMetrics& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

List of variables' metrics.

*/ inline const Aws::Vector& GetLogOddsMetrics() const{ return m_logOddsMetrics; } /** *

List of variables' metrics.

*/ inline bool LogOddsMetricsHasBeenSet() const { return m_logOddsMetricsHasBeenSet; } /** *

List of variables' metrics.

*/ inline void SetLogOddsMetrics(const Aws::Vector& value) { m_logOddsMetricsHasBeenSet = true; m_logOddsMetrics = value; } /** *

List of variables' metrics.

*/ inline void SetLogOddsMetrics(Aws::Vector&& value) { m_logOddsMetricsHasBeenSet = true; m_logOddsMetrics = std::move(value); } /** *

List of variables' metrics.

*/ inline AggregatedVariablesImportanceMetrics& WithLogOddsMetrics(const Aws::Vector& value) { SetLogOddsMetrics(value); return *this;} /** *

List of variables' metrics.

*/ inline AggregatedVariablesImportanceMetrics& WithLogOddsMetrics(Aws::Vector&& value) { SetLogOddsMetrics(std::move(value)); return *this;} /** *

List of variables' metrics.

*/ inline AggregatedVariablesImportanceMetrics& AddLogOddsMetrics(const AggregatedLogOddsMetric& value) { m_logOddsMetricsHasBeenSet = true; m_logOddsMetrics.push_back(value); return *this; } /** *

List of variables' metrics.

*/ inline AggregatedVariablesImportanceMetrics& AddLogOddsMetrics(AggregatedLogOddsMetric&& value) { m_logOddsMetricsHasBeenSet = true; m_logOddsMetrics.push_back(std::move(value)); return *this; } private: Aws::Vector m_logOddsMetrics; bool m_logOddsMetricsHasBeenSet = false; }; } // namespace Model } // namespace FraudDetector } // namespace Aws