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

Details about the metric that the analysis used when it detected the * anomaly. The metric what is analyzed to create recommendations. It includes the * name of the frame that was analyzed and the type and thread states used to * derive the metric value for that frame.

See Also:

AWS * API Reference

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

The name of the method that appears as a frame in any stack in a profile. *

*/ inline const Aws::String& GetFrameName() const{ return m_frameName; } /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline bool FrameNameHasBeenSet() const { return m_frameNameHasBeenSet; } /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline void SetFrameName(const Aws::String& value) { m_frameNameHasBeenSet = true; m_frameName = value; } /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline void SetFrameName(Aws::String&& value) { m_frameNameHasBeenSet = true; m_frameName = std::move(value); } /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline void SetFrameName(const char* value) { m_frameNameHasBeenSet = true; m_frameName.assign(value); } /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline Metric& WithFrameName(const Aws::String& value) { SetFrameName(value); return *this;} /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline Metric& WithFrameName(Aws::String&& value) { SetFrameName(std::move(value)); return *this;} /** *

The name of the method that appears as a frame in any stack in a profile. *

*/ inline Metric& WithFrameName(const char* value) { SetFrameName(value); return *this;} /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline const Aws::Vector& GetThreadStates() const{ return m_threadStates; } /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline bool ThreadStatesHasBeenSet() const { return m_threadStatesHasBeenSet; } /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline void SetThreadStates(const Aws::Vector& value) { m_threadStatesHasBeenSet = true; m_threadStates = value; } /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline void SetThreadStates(Aws::Vector&& value) { m_threadStatesHasBeenSet = true; m_threadStates = std::move(value); } /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline Metric& WithThreadStates(const Aws::Vector& value) { SetThreadStates(value); return *this;} /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline Metric& WithThreadStates(Aws::Vector&& value) { SetThreadStates(std::move(value)); return *this;} /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline Metric& AddThreadStates(const Aws::String& value) { m_threadStatesHasBeenSet = true; m_threadStates.push_back(value); return *this; } /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline Metric& AddThreadStates(Aws::String&& value) { m_threadStatesHasBeenSet = true; m_threadStates.push_back(std::move(value)); return *this; } /** *

The list of application runtime thread states that is used to calculate the * metric value for the frame.

*/ inline Metric& AddThreadStates(const char* value) { m_threadStatesHasBeenSet = true; m_threadStates.push_back(value); return *this; } /** *

A type that specifies how a metric for a frame is analyzed. The supported * value AggregatedRelativeTotalTime is an aggregation of the metric * value for one frame that is calculated across the occurences of all frames in a * profile.

*/ inline const MetricType& GetType() const{ return m_type; } /** *

A type that specifies how a metric for a frame is analyzed. The supported * value AggregatedRelativeTotalTime is an aggregation of the metric * value for one frame that is calculated across the occurences of all frames in a * profile.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

A type that specifies how a metric for a frame is analyzed. The supported * value AggregatedRelativeTotalTime is an aggregation of the metric * value for one frame that is calculated across the occurences of all frames in a * profile.

*/ inline void SetType(const MetricType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

A type that specifies how a metric for a frame is analyzed. The supported * value AggregatedRelativeTotalTime is an aggregation of the metric * value for one frame that is calculated across the occurences of all frames in a * profile.

*/ inline void SetType(MetricType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

A type that specifies how a metric for a frame is analyzed. The supported * value AggregatedRelativeTotalTime is an aggregation of the metric * value for one frame that is calculated across the occurences of all frames in a * profile.

*/ inline Metric& WithType(const MetricType& value) { SetType(value); return *this;} /** *

A type that specifies how a metric for a frame is analyzed. The supported * value AggregatedRelativeTotalTime is an aggregation of the metric * value for one frame that is calculated across the occurences of all frames in a * profile.

*/ inline Metric& WithType(MetricType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_frameName; bool m_frameNameHasBeenSet = false; Aws::Vector m_threadStates; bool m_threadStatesHasBeenSet = false; MetricType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace CodeGuruProfiler } // namespace Aws