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

software.amazon.awssdk.services.databasemigration.model.ReplicationPendingModifiedValues 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.0.0-preview-11
Show newest version
/*
 * Copyright 2012-2017 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.util.Optional;
import javax.annotation.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.ReplicationPendingModifiedValuesMarshaller;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

*/ @Generated("software.amazon.awssdk:codegen") public class ReplicationPendingModifiedValues implements StructuredPojo, ToCopyableBuilder { private final String replicationInstanceClass; private final Integer allocatedStorage; private final Boolean multiAZ; private final String engineVersion; private ReplicationPendingModifiedValues(BuilderImpl builder) { this.replicationInstanceClass = builder.replicationInstanceClass; this.allocatedStorage = builder.allocatedStorage; this.multiAZ = builder.multiAZ; this.engineVersion = builder.engineVersion; } /** *

* The compute and memory capacity of the replication instance. *

*

* Valid Values: * dms.t2.micro | dms.t2.small | dms.t2.medium | dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge | dms.c4.4xlarge *

* * @return The compute and memory capacity of the replication instance.

*

* Valid Values: * dms.t2.micro | dms.t2.small | dms.t2.medium | dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge | dms.c4.4xlarge */ public String replicationInstanceClass() { return replicationInstanceClass; } /** *

* The amount of storage (in gigabytes) that is allocated for the replication instance. *

* * @return The amount of storage (in gigabytes) that is allocated for the replication instance. */ public Integer allocatedStorage() { return allocatedStorage; } /** *

* Specifies if the replication instance is a Multi-AZ deployment. You cannot set the AvailabilityZone * parameter if the Multi-AZ parameter is set to true. *

* * @return Specifies if the replication instance is a Multi-AZ deployment. You cannot set the * AvailabilityZone parameter if the Multi-AZ parameter is set to true. */ public Boolean multiAZ() { return multiAZ; } /** *

* The engine version number of the replication instance. *

* * @return The engine version number of the replication instance. */ public String engineVersion() { return engineVersion; } @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 + ((replicationInstanceClass() == null) ? 0 : replicationInstanceClass().hashCode()); hashCode = 31 * hashCode + ((allocatedStorage() == null) ? 0 : allocatedStorage().hashCode()); hashCode = 31 * hashCode + ((multiAZ() == null) ? 0 : multiAZ().hashCode()); hashCode = 31 * hashCode + ((engineVersion() == null) ? 0 : engineVersion().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ReplicationPendingModifiedValues)) { return false; } ReplicationPendingModifiedValues other = (ReplicationPendingModifiedValues) obj; if (other.replicationInstanceClass() == null ^ this.replicationInstanceClass() == null) { return false; } if (other.replicationInstanceClass() != null && !other.replicationInstanceClass().equals(this.replicationInstanceClass())) { return false; } if (other.allocatedStorage() == null ^ this.allocatedStorage() == null) { return false; } if (other.allocatedStorage() != null && !other.allocatedStorage().equals(this.allocatedStorage())) { return false; } if (other.multiAZ() == null ^ this.multiAZ() == null) { return false; } if (other.multiAZ() != null && !other.multiAZ().equals(this.multiAZ())) { return false; } if (other.engineVersion() == null ^ this.engineVersion() == null) { return false; } if (other.engineVersion() != null && !other.engineVersion().equals(this.engineVersion())) { return false; } return true; } @Override public String toString() { StringBuilder sb = new StringBuilder("{"); if (replicationInstanceClass() != null) { sb.append("ReplicationInstanceClass: ").append(replicationInstanceClass()).append(","); } if (allocatedStorage() != null) { sb.append("AllocatedStorage: ").append(allocatedStorage()).append(","); } if (multiAZ() != null) { sb.append("MultiAZ: ").append(multiAZ()).append(","); } if (engineVersion() != null) { sb.append("EngineVersion: ").append(engineVersion()).append(","); } if (sb.length() > 1) { sb.setLength(sb.length() - 1); } sb.append("}"); return sb.toString(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ReplicationInstanceClass": return Optional.of(clazz.cast(replicationInstanceClass())); case "AllocatedStorage": return Optional.of(clazz.cast(allocatedStorage())); case "MultiAZ": return Optional.of(clazz.cast(multiAZ())); case "EngineVersion": return Optional.of(clazz.cast(engineVersion())); default: return Optional.empty(); } } @SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { ReplicationPendingModifiedValuesMarshaller.getInstance().marshall(this, protocolMarshaller); } public interface Builder extends CopyableBuilder { /** *

* The compute and memory capacity of the replication instance. *

*

* Valid Values: * dms.t2.micro | dms.t2.small | dms.t2.medium | dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge | dms.c4.4xlarge *

* * @param replicationInstanceClass * The compute and memory capacity of the replication instance.

*

* Valid Values: * dms.t2.micro | dms.t2.small | dms.t2.medium | dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge | dms.c4.4xlarge * @return Returns a reference to this object so that method calls can be chained together. */ Builder replicationInstanceClass(String replicationInstanceClass); /** *

* The amount of storage (in gigabytes) that is allocated for the replication instance. *

* * @param allocatedStorage * The amount of storage (in gigabytes) that is allocated for the replication instance. * @return Returns a reference to this object so that method calls can be chained together. */ Builder allocatedStorage(Integer allocatedStorage); /** *

* Specifies if the replication instance is a Multi-AZ deployment. You cannot set the * AvailabilityZone parameter if the Multi-AZ parameter is set to true. *

* * @param multiAZ * Specifies if the replication instance is a Multi-AZ deployment. You cannot set the * AvailabilityZone parameter if the Multi-AZ parameter is set to true. * @return Returns a reference to this object so that method calls can be chained together. */ Builder multiAZ(Boolean multiAZ); /** *

* The engine version number of the replication instance. *

* * @param engineVersion * The engine version number of the replication instance. * @return Returns a reference to this object so that method calls can be chained together. */ Builder engineVersion(String engineVersion); } static final class BuilderImpl implements Builder { private String replicationInstanceClass; private Integer allocatedStorage; private Boolean multiAZ; private String engineVersion; private BuilderImpl() { } private BuilderImpl(ReplicationPendingModifiedValues model) { replicationInstanceClass(model.replicationInstanceClass); allocatedStorage(model.allocatedStorage); multiAZ(model.multiAZ); engineVersion(model.engineVersion); } public final String getReplicationInstanceClass() { return replicationInstanceClass; } @Override public final Builder replicationInstanceClass(String replicationInstanceClass) { this.replicationInstanceClass = replicationInstanceClass; return this; } public final void setReplicationInstanceClass(String replicationInstanceClass) { this.replicationInstanceClass = replicationInstanceClass; } public final Integer getAllocatedStorage() { return allocatedStorage; } @Override public final Builder allocatedStorage(Integer allocatedStorage) { this.allocatedStorage = allocatedStorage; return this; } public final void setAllocatedStorage(Integer allocatedStorage) { this.allocatedStorage = allocatedStorage; } public final Boolean getMultiAZ() { return multiAZ; } @Override public final Builder multiAZ(Boolean multiAZ) { this.multiAZ = multiAZ; return this; } public final void setMultiAZ(Boolean multiAZ) { this.multiAZ = multiAZ; } public final String getEngineVersion() { return engineVersion; } @Override public final Builder engineVersion(String engineVersion) { this.engineVersion = engineVersion; return this; } public final void setEngineVersion(String engineVersion) { this.engineVersion = engineVersion; } @Override public ReplicationPendingModifiedValues build() { return new ReplicationPendingModifiedValues(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy