software.amazon.awssdk.services.customerprofiles.model.AppflowIntegrationWorkflowMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of customerprofiles Show documentation
Show all versions of customerprofiles Show documentation
The AWS Java SDK for Customer Profiles module holds the client classes that are used for
communicating with Customer Profiles.
/*
* 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.customerprofiles.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;
/**
*
* Workflow specific execution metrics for APPFLOW_INTEGRATION
workflow.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class AppflowIntegrationWorkflowMetrics implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField RECORDS_PROCESSED_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("RecordsProcessed").getter(getter(AppflowIntegrationWorkflowMetrics::recordsProcessed))
.setter(setter(Builder::recordsProcessed))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecordsProcessed").build()).build();
private static final SdkField STEPS_COMPLETED_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("StepsCompleted").getter(getter(AppflowIntegrationWorkflowMetrics::stepsCompleted))
.setter(setter(Builder::stepsCompleted))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StepsCompleted").build()).build();
private static final SdkField TOTAL_STEPS_FIELD = SdkField. builder(MarshallingType.LONG)
.memberName("TotalSteps").getter(getter(AppflowIntegrationWorkflowMetrics::totalSteps))
.setter(setter(Builder::totalSteps))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TotalSteps").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(RECORDS_PROCESSED_FIELD,
STEPS_COMPLETED_FIELD, TOTAL_STEPS_FIELD));
private static final long serialVersionUID = 1L;
private final Long recordsProcessed;
private final Long stepsCompleted;
private final Long totalSteps;
private AppflowIntegrationWorkflowMetrics(BuilderImpl builder) {
this.recordsProcessed = builder.recordsProcessed;
this.stepsCompleted = builder.stepsCompleted;
this.totalSteps = builder.totalSteps;
}
/**
*
* Number of records processed in APPFLOW_INTEGRATION
workflow.
*
*
* @return Number of records processed in APPFLOW_INTEGRATION
workflow.
*/
public final Long recordsProcessed() {
return recordsProcessed;
}
/**
*
* Total steps completed in APPFLOW_INTEGRATION
workflow.
*
*
* @return Total steps completed in APPFLOW_INTEGRATION
workflow.
*/
public final Long stepsCompleted() {
return stepsCompleted;
}
/**
*
* Total steps in APPFLOW_INTEGRATION
workflow.
*
*
* @return Total steps in APPFLOW_INTEGRATION
workflow.
*/
public final Long totalSteps() {
return totalSteps;
}
@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(recordsProcessed());
hashCode = 31 * hashCode + Objects.hashCode(stepsCompleted());
hashCode = 31 * hashCode + Objects.hashCode(totalSteps());
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 AppflowIntegrationWorkflowMetrics)) {
return false;
}
AppflowIntegrationWorkflowMetrics other = (AppflowIntegrationWorkflowMetrics) obj;
return Objects.equals(recordsProcessed(), other.recordsProcessed())
&& Objects.equals(stepsCompleted(), other.stepsCompleted()) && Objects.equals(totalSteps(), other.totalSteps());
}
/**
* 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("AppflowIntegrationWorkflowMetrics").add("RecordsProcessed", recordsProcessed())
.add("StepsCompleted", stepsCompleted()).add("TotalSteps", totalSteps()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "RecordsProcessed":
return Optional.ofNullable(clazz.cast(recordsProcessed()));
case "StepsCompleted":
return Optional.ofNullable(clazz.cast(stepsCompleted()));
case "TotalSteps":
return Optional.ofNullable(clazz.cast(totalSteps()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function