software.amazon.awssdk.services.costexplorer.model.RightsizingRecommendationSummary Maven / Gradle / Ivy
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.costexplorer.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Summary of rightsizing recommendations
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class RightsizingRecommendationSummary implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField TOTAL_RECOMMENDATION_COUNT_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("TotalRecommendationCount").getter(getter(RightsizingRecommendationSummary::totalRecommendationCount))
.setter(setter(Builder::totalRecommendationCount))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TotalRecommendationCount").build())
.build();
private static final SdkField ESTIMATED_TOTAL_MONTHLY_SAVINGS_AMOUNT_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("EstimatedTotalMonthlySavingsAmount")
.getter(getter(RightsizingRecommendationSummary::estimatedTotalMonthlySavingsAmount))
.setter(setter(Builder::estimatedTotalMonthlySavingsAmount))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EstimatedTotalMonthlySavingsAmount")
.build()).build();
private static final SdkField SAVINGS_CURRENCY_CODE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("SavingsCurrencyCode").getter(getter(RightsizingRecommendationSummary::savingsCurrencyCode))
.setter(setter(Builder::savingsCurrencyCode))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SavingsCurrencyCode").build())
.build();
private static final SdkField SAVINGS_PERCENTAGE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("SavingsPercentage").getter(getter(RightsizingRecommendationSummary::savingsPercentage))
.setter(setter(Builder::savingsPercentage))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SavingsPercentage").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(
TOTAL_RECOMMENDATION_COUNT_FIELD, ESTIMATED_TOTAL_MONTHLY_SAVINGS_AMOUNT_FIELD, SAVINGS_CURRENCY_CODE_FIELD,
SAVINGS_PERCENTAGE_FIELD));
private static final long serialVersionUID = 1L;
private final String totalRecommendationCount;
private final String estimatedTotalMonthlySavingsAmount;
private final String savingsCurrencyCode;
private final String savingsPercentage;
private RightsizingRecommendationSummary(BuilderImpl builder) {
this.totalRecommendationCount = builder.totalRecommendationCount;
this.estimatedTotalMonthlySavingsAmount = builder.estimatedTotalMonthlySavingsAmount;
this.savingsCurrencyCode = builder.savingsCurrencyCode;
this.savingsPercentage = builder.savingsPercentage;
}
/**
*
* Total number of instance recommendations.
*
*
* @return Total number of instance recommendations.
*/
public final String totalRecommendationCount() {
return totalRecommendationCount;
}
/**
*
* Estimated total savings resulting from modifications, on a monthly basis.
*
*
* @return Estimated total savings resulting from modifications, on a monthly basis.
*/
public final String estimatedTotalMonthlySavingsAmount() {
return estimatedTotalMonthlySavingsAmount;
}
/**
*
* The currency code that AWS used to calculate the savings.
*
*
* @return The currency code that AWS used to calculate the savings.
*/
public final String savingsCurrencyCode() {
return savingsCurrencyCode;
}
/**
*
* Savings percentage based on the recommended modifications, relative to the total On-Demand costs associated with
* these instances.
*
*
* @return Savings percentage based on the recommended modifications, relative to the total On-Demand costs
* associated with these instances.
*/
public final String savingsPercentage() {
return savingsPercentage;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(totalRecommendationCount());
hashCode = 31 * hashCode + Objects.hashCode(estimatedTotalMonthlySavingsAmount());
hashCode = 31 * hashCode + Objects.hashCode(savingsCurrencyCode());
hashCode = 31 * hashCode + Objects.hashCode(savingsPercentage());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof RightsizingRecommendationSummary)) {
return false;
}
RightsizingRecommendationSummary other = (RightsizingRecommendationSummary) obj;
return Objects.equals(totalRecommendationCount(), other.totalRecommendationCount())
&& Objects.equals(estimatedTotalMonthlySavingsAmount(), other.estimatedTotalMonthlySavingsAmount())
&& Objects.equals(savingsCurrencyCode(), other.savingsCurrencyCode())
&& Objects.equals(savingsPercentage(), other.savingsPercentage());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("RightsizingRecommendationSummary").add("TotalRecommendationCount", totalRecommendationCount())
.add("EstimatedTotalMonthlySavingsAmount", estimatedTotalMonthlySavingsAmount())
.add("SavingsCurrencyCode", savingsCurrencyCode()).add("SavingsPercentage", savingsPercentage()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "TotalRecommendationCount":
return Optional.ofNullable(clazz.cast(totalRecommendationCount()));
case "EstimatedTotalMonthlySavingsAmount":
return Optional.ofNullable(clazz.cast(estimatedTotalMonthlySavingsAmount()));
case "SavingsCurrencyCode":
return Optional.ofNullable(clazz.cast(savingsCurrencyCode()));
case "SavingsPercentage":
return Optional.ofNullable(clazz.cast(savingsPercentage()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy