@Generated(value="software.amazon.awssdk:codegen") public final class Impact extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Impact.Builder,Impact>
The dollar value of the anomaly.
| Modifier and Type | Class and Description |
|---|---|
static interface |
Impact.Builder |
| Modifier and Type | Method and Description |
|---|---|
static Impact.Builder |
builder() |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
Double |
maxImpact()
The maximum dollar value that's observed for an anomaly.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends Impact.Builder> |
serializableBuilderClass() |
Impact.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
Double |
totalActualSpend()
The cumulative dollar amount that was actually spent during the anomaly.
|
Double |
totalExpectedSpend()
The cumulative dollar amount that was expected to be spent during the anomaly.
|
Double |
totalImpact()
The cumulative dollar difference between the total actual spend and total expected spend.
|
Double |
totalImpactPercentage()
The cumulative percentage difference between the total actual spend and total expected spend.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final Double maxImpact()
The maximum dollar value that's observed for an anomaly.
public final Double totalImpact()
The cumulative dollar difference between the total actual spend and total expected spend. It is calculated as
TotalActualSpend - TotalExpectedSpend.
TotalActualSpend - TotalExpectedSpend.public final Double totalActualSpend()
The cumulative dollar amount that was actually spent during the anomaly.
public final Double totalExpectedSpend()
The cumulative dollar amount that was expected to be spent during the anomaly. It is calculated using advanced machine learning models to determine the typical spending pattern based on historical data for a customer.
public final Double totalImpactPercentage()
The cumulative percentage difference between the total actual spend and total expected spend. It is calculated as
(TotalImpact / TotalExpectedSpend) * 100. When TotalExpectedSpend is zero, this field
is omitted. Expected spend can be zero in situations such as when you start to use a service for the first time.
(TotalImpact / TotalExpectedSpend) * 100. When TotalExpectedSpend
is zero, this field is omitted. Expected spend can be zero in situations such as when you start to use a
service for the first time.public Impact.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<Impact.Builder,Impact>public static Impact.Builder builder()
public static Class<? extends Impact.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.