All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.databasemigration.model.RefreshSchemasStatus Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Database Migration Service module holds the client classes that are used for communicating with AWS Database Migration Service.

There is a newer version: 2.29.15
Show newest version
/*
 * 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.databasemigration.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;

/**
 * 

* Provides information that describes status of a schema at an endpoint specified by the * DescribeRefreshSchemaStatus operation. *

*/ @Generated("software.amazon.awssdk:codegen") public final class RefreshSchemasStatus implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField ENDPOINT_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("EndpointArn").getter(getter(RefreshSchemasStatus::endpointArn)).setter(setter(Builder::endpointArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EndpointArn").build()).build(); private static final SdkField REPLICATION_INSTANCE_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("ReplicationInstanceArn").getter(getter(RefreshSchemasStatus::replicationInstanceArn)) .setter(setter(Builder::replicationInstanceArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ReplicationInstanceArn").build()) .build(); private static final SdkField STATUS_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Status") .getter(getter(RefreshSchemasStatus::statusAsString)).setter(setter(Builder::status)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Status").build()).build(); private static final SdkField LAST_REFRESH_DATE_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("LastRefreshDate").getter(getter(RefreshSchemasStatus::lastRefreshDate)) .setter(setter(Builder::lastRefreshDate)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastRefreshDate").build()).build(); private static final SdkField LAST_FAILURE_MESSAGE_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("LastFailureMessage").getter(getter(RefreshSchemasStatus::lastFailureMessage)) .setter(setter(Builder::lastFailureMessage)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastFailureMessage").build()) .build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ENDPOINT_ARN_FIELD, REPLICATION_INSTANCE_ARN_FIELD, STATUS_FIELD, LAST_REFRESH_DATE_FIELD, LAST_FAILURE_MESSAGE_FIELD)); private static final long serialVersionUID = 1L; private final String endpointArn; private final String replicationInstanceArn; private final String status; private final Instant lastRefreshDate; private final String lastFailureMessage; private RefreshSchemasStatus(BuilderImpl builder) { this.endpointArn = builder.endpointArn; this.replicationInstanceArn = builder.replicationInstanceArn; this.status = builder.status; this.lastRefreshDate = builder.lastRefreshDate; this.lastFailureMessage = builder.lastFailureMessage; } /** *

* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. *

* * @return The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. */ public final String endpointArn() { return endpointArn; } /** *

* The Amazon Resource Name (ARN) of the replication instance. *

* * @return The Amazon Resource Name (ARN) of the replication instance. */ public final String replicationInstanceArn() { return replicationInstanceArn; } /** *

* The status of the schema. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #status} will * return {@link RefreshSchemasStatusTypeValue#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is * available from {@link #statusAsString}. *

* * @return The status of the schema. * @see RefreshSchemasStatusTypeValue */ public final RefreshSchemasStatusTypeValue status() { return RefreshSchemasStatusTypeValue.fromValue(status); } /** *

* The status of the schema. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #status} will * return {@link RefreshSchemasStatusTypeValue#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is * available from {@link #statusAsString}. *

* * @return The status of the schema. * @see RefreshSchemasStatusTypeValue */ public final String statusAsString() { return status; } /** *

* The date the schema was last refreshed. *

* * @return The date the schema was last refreshed. */ public final Instant lastRefreshDate() { return lastRefreshDate; } /** *

* The last failure message for the schema. *

* * @return The last failure message for the schema. */ public final String lastFailureMessage() { return lastFailureMessage; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(endpointArn()); hashCode = 31 * hashCode + Objects.hashCode(replicationInstanceArn()); hashCode = 31 * hashCode + Objects.hashCode(statusAsString()); hashCode = 31 * hashCode + Objects.hashCode(lastRefreshDate()); hashCode = 31 * hashCode + Objects.hashCode(lastFailureMessage()); 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 RefreshSchemasStatus)) { return false; } RefreshSchemasStatus other = (RefreshSchemasStatus) obj; return Objects.equals(endpointArn(), other.endpointArn()) && Objects.equals(replicationInstanceArn(), other.replicationInstanceArn()) && Objects.equals(statusAsString(), other.statusAsString()) && Objects.equals(lastRefreshDate(), other.lastRefreshDate()) && Objects.equals(lastFailureMessage(), other.lastFailureMessage()); } /** * 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("RefreshSchemasStatus").add("EndpointArn", endpointArn()) .add("ReplicationInstanceArn", replicationInstanceArn()).add("Status", statusAsString()) .add("LastRefreshDate", lastRefreshDate()).add("LastFailureMessage", lastFailureMessage()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "EndpointArn": return Optional.ofNullable(clazz.cast(endpointArn())); case "ReplicationInstanceArn": return Optional.ofNullable(clazz.cast(replicationInstanceArn())); case "Status": return Optional.ofNullable(clazz.cast(statusAsString())); case "LastRefreshDate": return Optional.ofNullable(clazz.cast(lastRefreshDate())); case "LastFailureMessage": return Optional.ofNullable(clazz.cast(lastFailureMessage())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((RefreshSchemasStatus) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. *

* * @param endpointArn * The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ Builder endpointArn(String endpointArn); /** *

* The Amazon Resource Name (ARN) of the replication instance. *

* * @param replicationInstanceArn * The Amazon Resource Name (ARN) of the replication instance. * @return Returns a reference to this object so that method calls can be chained together. */ Builder replicationInstanceArn(String replicationInstanceArn); /** *

* The status of the schema. *

* * @param status * The status of the schema. * @see RefreshSchemasStatusTypeValue * @return Returns a reference to this object so that method calls can be chained together. * @see RefreshSchemasStatusTypeValue */ Builder status(String status); /** *

* The status of the schema. *

* * @param status * The status of the schema. * @see RefreshSchemasStatusTypeValue * @return Returns a reference to this object so that method calls can be chained together. * @see RefreshSchemasStatusTypeValue */ Builder status(RefreshSchemasStatusTypeValue status); /** *

* The date the schema was last refreshed. *

* * @param lastRefreshDate * The date the schema was last refreshed. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastRefreshDate(Instant lastRefreshDate); /** *

* The last failure message for the schema. *

* * @param lastFailureMessage * The last failure message for the schema. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastFailureMessage(String lastFailureMessage); } static final class BuilderImpl implements Builder { private String endpointArn; private String replicationInstanceArn; private String status; private Instant lastRefreshDate; private String lastFailureMessage; private BuilderImpl() { } private BuilderImpl(RefreshSchemasStatus model) { endpointArn(model.endpointArn); replicationInstanceArn(model.replicationInstanceArn); status(model.status); lastRefreshDate(model.lastRefreshDate); lastFailureMessage(model.lastFailureMessage); } public final String getEndpointArn() { return endpointArn; } public final void setEndpointArn(String endpointArn) { this.endpointArn = endpointArn; } @Override public final Builder endpointArn(String endpointArn) { this.endpointArn = endpointArn; return this; } public final String getReplicationInstanceArn() { return replicationInstanceArn; } public final void setReplicationInstanceArn(String replicationInstanceArn) { this.replicationInstanceArn = replicationInstanceArn; } @Override public final Builder replicationInstanceArn(String replicationInstanceArn) { this.replicationInstanceArn = replicationInstanceArn; return this; } public final String getStatus() { return status; } public final void setStatus(String status) { this.status = status; } @Override public final Builder status(String status) { this.status = status; return this; } @Override public final Builder status(RefreshSchemasStatusTypeValue status) { this.status(status == null ? null : status.toString()); return this; } public final Instant getLastRefreshDate() { return lastRefreshDate; } public final void setLastRefreshDate(Instant lastRefreshDate) { this.lastRefreshDate = lastRefreshDate; } @Override public final Builder lastRefreshDate(Instant lastRefreshDate) { this.lastRefreshDate = lastRefreshDate; return this; } public final String getLastFailureMessage() { return lastFailureMessage; } public final void setLastFailureMessage(String lastFailureMessage) { this.lastFailureMessage = lastFailureMessage; } @Override public final Builder lastFailureMessage(String lastFailureMessage) { this.lastFailureMessage = lastFailureMessage; return this; } @Override public RefreshSchemasStatus build() { return new RefreshSchemasStatus(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy