software.amazon.awssdk.services.config.model.ResourceEvaluation Maven / Gradle / Ivy
Show all versions of config Show documentation
/*
* 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.config.model;
import java.io.Serializable;
import java.time.Instant;
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;
/**
*
* Returns details of a resource evaluation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class ResourceEvaluation implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField RESOURCE_EVALUATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ResourceEvaluationId").getter(getter(ResourceEvaluation::resourceEvaluationId))
.setter(setter(Builder::resourceEvaluationId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ResourceEvaluationId").build())
.build();
private static final SdkField EVALUATION_MODE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("EvaluationMode").getter(getter(ResourceEvaluation::evaluationModeAsString))
.setter(setter(Builder::evaluationMode))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EvaluationMode").build()).build();
private static final SdkField EVALUATION_START_TIMESTAMP_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("EvaluationStartTimestamp").getter(getter(ResourceEvaluation::evaluationStartTimestamp))
.setter(setter(Builder::evaluationStartTimestamp))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EvaluationStartTimestamp").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(RESOURCE_EVALUATION_ID_FIELD,
EVALUATION_MODE_FIELD, EVALUATION_START_TIMESTAMP_FIELD));
private static final long serialVersionUID = 1L;
private final String resourceEvaluationId;
private final String evaluationMode;
private final Instant evaluationStartTimestamp;
private ResourceEvaluation(BuilderImpl builder) {
this.resourceEvaluationId = builder.resourceEvaluationId;
this.evaluationMode = builder.evaluationMode;
this.evaluationStartTimestamp = builder.evaluationStartTimestamp;
}
/**
*
* The ResourceEvaluationId of a evaluation.
*
*
* @return The ResourceEvaluationId of a evaluation.
*/
public final String resourceEvaluationId() {
return resourceEvaluationId;
}
/**
*
* The mode of an evaluation. The valid values are Detective or Proactive.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #evaluationMode}
* will return {@link EvaluationMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #evaluationModeAsString}.
*
*
* @return The mode of an evaluation. The valid values are Detective or Proactive.
* @see EvaluationMode
*/
public final EvaluationMode evaluationMode() {
return EvaluationMode.fromValue(evaluationMode);
}
/**
*
* The mode of an evaluation. The valid values are Detective or Proactive.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #evaluationMode}
* will return {@link EvaluationMode#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #evaluationModeAsString}.
*
*
* @return The mode of an evaluation. The valid values are Detective or Proactive.
* @see EvaluationMode
*/
public final String evaluationModeAsString() {
return evaluationMode;
}
/**
*
* The starting time of an execution.
*
*
* @return The starting time of an execution.
*/
public final Instant evaluationStartTimestamp() {
return evaluationStartTimestamp;
}
@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(resourceEvaluationId());
hashCode = 31 * hashCode + Objects.hashCode(evaluationModeAsString());
hashCode = 31 * hashCode + Objects.hashCode(evaluationStartTimestamp());
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 ResourceEvaluation)) {
return false;
}
ResourceEvaluation other = (ResourceEvaluation) obj;
return Objects.equals(resourceEvaluationId(), other.resourceEvaluationId())
&& Objects.equals(evaluationModeAsString(), other.evaluationModeAsString())
&& Objects.equals(evaluationStartTimestamp(), other.evaluationStartTimestamp());
}
/**
* 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("ResourceEvaluation").add("ResourceEvaluationId", resourceEvaluationId())
.add("EvaluationMode", evaluationModeAsString()).add("EvaluationStartTimestamp", evaluationStartTimestamp())
.build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "ResourceEvaluationId":
return Optional.ofNullable(clazz.cast(resourceEvaluationId()));
case "EvaluationMode":
return Optional.ofNullable(clazz.cast(evaluationModeAsString()));
case "EvaluationStartTimestamp":
return Optional.ofNullable(clazz.cast(evaluationStartTimestamp()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function