software.amazon.awssdk.services.config.model.EvaluationResultIdentifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config Show documentation
Show all versions of config Show documentation
The AWS Java SDK for AWS Config module holds the client classes that are used for communicating with
AWS Config 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.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.Consumer;
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;
/**
*
* Uniquely identifies an evaluation result.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class EvaluationResultIdentifier implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField EVALUATION_RESULT_QUALIFIER_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("EvaluationResultQualifier")
.getter(getter(EvaluationResultIdentifier::evaluationResultQualifier))
.setter(setter(Builder::evaluationResultQualifier)).constructor(EvaluationResultQualifier::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EvaluationResultQualifier").build())
.build();
private static final SdkField ORDERING_TIMESTAMP_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("OrderingTimestamp").getter(getter(EvaluationResultIdentifier::orderingTimestamp))
.setter(setter(Builder::orderingTimestamp))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("OrderingTimestamp").build()).build();
private static final SdkField RESOURCE_EVALUATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ResourceEvaluationId").getter(getter(EvaluationResultIdentifier::resourceEvaluationId))
.setter(setter(Builder::resourceEvaluationId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ResourceEvaluationId").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(
EVALUATION_RESULT_QUALIFIER_FIELD, ORDERING_TIMESTAMP_FIELD, RESOURCE_EVALUATION_ID_FIELD));
private static final long serialVersionUID = 1L;
private final EvaluationResultQualifier evaluationResultQualifier;
private final Instant orderingTimestamp;
private final String resourceEvaluationId;
private EvaluationResultIdentifier(BuilderImpl builder) {
this.evaluationResultQualifier = builder.evaluationResultQualifier;
this.orderingTimestamp = builder.orderingTimestamp;
this.resourceEvaluationId = builder.resourceEvaluationId;
}
/**
*
* Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the
* evaluated resource.
*
*
* @return Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID
* of the evaluated resource.
*/
public final EvaluationResultQualifier evaluationResultQualifier() {
return evaluationResultQualifier;
}
/**
*
* The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate
* when Config delivered a configuration item change notification, or it can indicate when Config delivered the
* configuration snapshot, depending on which event triggered the evaluation.
*
*
* @return The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can
* indicate when Config delivered a configuration item change notification, or it can indicate when Config
* delivered the configuration snapshot, depending on which event triggered the evaluation.
*/
public final Instant orderingTimestamp() {
return orderingTimestamp;
}
/**
*
* A Unique ID for an evaluation result.
*
*
* @return A Unique ID for an evaluation result.
*/
public final String resourceEvaluationId() {
return resourceEvaluationId;
}
@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(evaluationResultQualifier());
hashCode = 31 * hashCode + Objects.hashCode(orderingTimestamp());
hashCode = 31 * hashCode + Objects.hashCode(resourceEvaluationId());
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 EvaluationResultIdentifier)) {
return false;
}
EvaluationResultIdentifier other = (EvaluationResultIdentifier) obj;
return Objects.equals(evaluationResultQualifier(), other.evaluationResultQualifier())
&& Objects.equals(orderingTimestamp(), other.orderingTimestamp())
&& Objects.equals(resourceEvaluationId(), other.resourceEvaluationId());
}
/**
* 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("EvaluationResultIdentifier").add("EvaluationResultQualifier", evaluationResultQualifier())
.add("OrderingTimestamp", orderingTimestamp()).add("ResourceEvaluationId", resourceEvaluationId()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "EvaluationResultQualifier":
return Optional.ofNullable(clazz.cast(evaluationResultQualifier()));
case "OrderingTimestamp":
return Optional.ofNullable(clazz.cast(orderingTimestamp()));
case "ResourceEvaluationId":
return Optional.ofNullable(clazz.cast(resourceEvaluationId()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function