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.

The newest version!
/*
 * Copyright 2013-2018 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.time.Instant;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.core.protocol.ProtocolMarshaller;
import software.amazon.awssdk.core.protocol.StructuredPojo;
import software.amazon.awssdk.services.databasemigration.transform.RefreshSchemasStatusMarshaller;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

*/ @Generated("software.amazon.awssdk:codegen") public final class RefreshSchemasStatus implements StructuredPojo, ToCopyableBuilder { 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 String endpointArn() { return endpointArn; } /** *

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

* * @return The Amazon Resource Name (ARN) of the replication instance. */ public 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 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 String statusAsString() { return status; } /** *

* The date the schema was last refreshed. *

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

* The last failure message for the schema. *

* * @return The last failure message for the schema. */ public 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 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 boolean equals(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()); } @Override public String toString() { return ToString.builder("RefreshSchemasStatus").add("EndpointArn", endpointArn()) .add("ReplicationInstanceArn", replicationInstanceArn()).add("Status", statusAsString()) .add("LastRefreshDate", lastRefreshDate()).add("LastFailureMessage", lastFailureMessage()).build(); } public 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(); } } @SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { RefreshSchemasStatusMarshaller.getInstance().marshall(this, protocolMarshaller); } public interface Builder extends 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; } @Override public final Builder endpointArn(String endpointArn) { this.endpointArn = endpointArn; return this; } public final void setEndpointArn(String endpointArn) { this.endpointArn = endpointArn; } public final String getReplicationInstanceArn() { return replicationInstanceArn; } @Override public final Builder replicationInstanceArn(String replicationInstanceArn) { this.replicationInstanceArn = replicationInstanceArn; return this; } public final void setReplicationInstanceArn(String replicationInstanceArn) { this.replicationInstanceArn = replicationInstanceArn; } public final String getStatus() { return status; } @Override public final Builder status(String status) { this.status = status; return this; } @Override public final Builder status(RefreshSchemasStatusTypeValue status) { this.status(status.toString()); return this; } public final void setStatus(String status) { this.status = status; } public final Instant getLastRefreshDate() { return lastRefreshDate; } @Override public final Builder lastRefreshDate(Instant lastRefreshDate) { this.lastRefreshDate = lastRefreshDate; return this; } public final void setLastRefreshDate(Instant lastRefreshDate) { this.lastRefreshDate = lastRefreshDate; } public final String getLastFailureMessage() { return lastFailureMessage; } @Override public final Builder lastFailureMessage(String lastFailureMessage) { this.lastFailureMessage = lastFailureMessage; return this; } public final void setLastFailureMessage(String lastFailureMessage) { this.lastFailureMessage = lastFailureMessage; } @Override public RefreshSchemasStatus build() { return new RefreshSchemasStatus(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy