software.amazon.awssdk.services.costexplorer.model.RecommendationDetailHourlyMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of costexplorer Show documentation
Show all versions of costexplorer Show documentation
The AWS Java SDK for AWS Cost Explorer module holds the client classes that are used for communicating
with AWS Cost Explorer Service
/*
* 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;
/**
*
* Contains the hourly metrics for the given recommendation over the lookback period.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class RecommendationDetailHourlyMetrics implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField START_TIME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("StartTime").getter(getter(RecommendationDetailHourlyMetrics::startTime))
.setter(setter(Builder::startTime))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StartTime").build()).build();
private static final SdkField ESTIMATED_ON_DEMAND_COST_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("EstimatedOnDemandCost").getter(getter(RecommendationDetailHourlyMetrics::estimatedOnDemandCost))
.setter(setter(Builder::estimatedOnDemandCost))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EstimatedOnDemandCost").build())
.build();
private static final SdkField CURRENT_COVERAGE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("CurrentCoverage").getter(getter(RecommendationDetailHourlyMetrics::currentCoverage))
.setter(setter(Builder::currentCoverage))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CurrentCoverage").build()).build();
private static final SdkField ESTIMATED_COVERAGE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("EstimatedCoverage").getter(getter(RecommendationDetailHourlyMetrics::estimatedCoverage))
.setter(setter(Builder::estimatedCoverage))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EstimatedCoverage").build()).build();
private static final SdkField ESTIMATED_NEW_COMMITMENT_UTILIZATION_FIELD = SdkField
. builder(MarshallingType.STRING)
.memberName("EstimatedNewCommitmentUtilization")
.getter(getter(RecommendationDetailHourlyMetrics::estimatedNewCommitmentUtilization))
.setter(setter(Builder::estimatedNewCommitmentUtilization))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EstimatedNewCommitmentUtilization")
.build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(START_TIME_FIELD,
ESTIMATED_ON_DEMAND_COST_FIELD, CURRENT_COVERAGE_FIELD, ESTIMATED_COVERAGE_FIELD,
ESTIMATED_NEW_COMMITMENT_UTILIZATION_FIELD));
private static final long serialVersionUID = 1L;
private final String startTime;
private final String estimatedOnDemandCost;
private final String currentCoverage;
private final String estimatedCoverage;
private final String estimatedNewCommitmentUtilization;
private RecommendationDetailHourlyMetrics(BuilderImpl builder) {
this.startTime = builder.startTime;
this.estimatedOnDemandCost = builder.estimatedOnDemandCost;
this.currentCoverage = builder.currentCoverage;
this.estimatedCoverage = builder.estimatedCoverage;
this.estimatedNewCommitmentUtilization = builder.estimatedNewCommitmentUtilization;
}
/**
* Returns the value of the StartTime property for this object.
*
* @return The value of the StartTime property for this object.
*/
public final String startTime() {
return startTime;
}
/**
*
* The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length of the
* lookback period.
*
*
* @return The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length
* of the lookback period.
*/
public final String estimatedOnDemandCost() {
return estimatedOnDemandCost;
}
/**
*
* The current amount of Savings Plans eligible usage that the Savings Plan covered.
*
*
* @return The current amount of Savings Plans eligible usage that the Savings Plan covered.
*/
public final String currentCoverage() {
return currentCoverage;
}
/**
*
* The estimated coverage amount based on the recommended Savings Plan.
*
*
* @return The estimated coverage amount based on the recommended Savings Plan.
*/
public final String estimatedCoverage() {
return estimatedCoverage;
}
/**
*
* The estimated utilization for the recommended Savings Plan.
*
*
* @return The estimated utilization for the recommended Savings Plan.
*/
public final String estimatedNewCommitmentUtilization() {
return estimatedNewCommitmentUtilization;
}
@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(startTime());
hashCode = 31 * hashCode + Objects.hashCode(estimatedOnDemandCost());
hashCode = 31 * hashCode + Objects.hashCode(currentCoverage());
hashCode = 31 * hashCode + Objects.hashCode(estimatedCoverage());
hashCode = 31 * hashCode + Objects.hashCode(estimatedNewCommitmentUtilization());
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 RecommendationDetailHourlyMetrics)) {
return false;
}
RecommendationDetailHourlyMetrics other = (RecommendationDetailHourlyMetrics) obj;
return Objects.equals(startTime(), other.startTime())
&& Objects.equals(estimatedOnDemandCost(), other.estimatedOnDemandCost())
&& Objects.equals(currentCoverage(), other.currentCoverage())
&& Objects.equals(estimatedCoverage(), other.estimatedCoverage())
&& Objects.equals(estimatedNewCommitmentUtilization(), other.estimatedNewCommitmentUtilization());
}
/**
* 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("RecommendationDetailHourlyMetrics").add("StartTime", startTime())
.add("EstimatedOnDemandCost", estimatedOnDemandCost()).add("CurrentCoverage", currentCoverage())
.add("EstimatedCoverage", estimatedCoverage())
.add("EstimatedNewCommitmentUtilization", estimatedNewCommitmentUtilization()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "StartTime":
return Optional.ofNullable(clazz.cast(startTime()));
case "EstimatedOnDemandCost":
return Optional.ofNullable(clazz.cast(estimatedOnDemandCost()));
case "CurrentCoverage":
return Optional.ofNullable(clazz.cast(currentCoverage()));
case "EstimatedCoverage":
return Optional.ofNullable(clazz.cast(estimatedCoverage()));
case "EstimatedNewCommitmentUtilization":
return Optional.ofNullable(clazz.cast(estimatedNewCommitmentUtilization()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function