software.amazon.awssdk.services.rds.model.Subnet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds Show documentation
Show all versions of rds Show documentation
The AWS Java SDK for Amazon RDS module holds the client classes that are used for communicating with
Amazon Relational Database 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.rds.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.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;
/**
*
* This data type is used as a response element for the DescribeDBSubnetGroups
operation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class Subnet implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField SUBNET_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("SubnetIdentifier").getter(getter(Subnet::subnetIdentifier)).setter(setter(Builder::subnetIdentifier))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SubnetIdentifier").build()).build();
private static final SdkField SUBNET_AVAILABILITY_ZONE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("SubnetAvailabilityZone")
.getter(getter(Subnet::subnetAvailabilityZone)).setter(setter(Builder::subnetAvailabilityZone))
.constructor(AvailabilityZone::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SubnetAvailabilityZone").build())
.build();
private static final SdkField SUBNET_OUTPOST_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("SubnetOutpost").getter(getter(Subnet::subnetOutpost)).setter(setter(Builder::subnetOutpost))
.constructor(Outpost::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SubnetOutpost").build()).build();
private static final SdkField SUBNET_STATUS_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("SubnetStatus").getter(getter(Subnet::subnetStatus)).setter(setter(Builder::subnetStatus))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SubnetStatus").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(SUBNET_IDENTIFIER_FIELD,
SUBNET_AVAILABILITY_ZONE_FIELD, SUBNET_OUTPOST_FIELD, SUBNET_STATUS_FIELD));
private static final long serialVersionUID = 1L;
private final String subnetIdentifier;
private final AvailabilityZone subnetAvailabilityZone;
private final Outpost subnetOutpost;
private final String subnetStatus;
private Subnet(BuilderImpl builder) {
this.subnetIdentifier = builder.subnetIdentifier;
this.subnetAvailabilityZone = builder.subnetAvailabilityZone;
this.subnetOutpost = builder.subnetOutpost;
this.subnetStatus = builder.subnetStatus;
}
/**
*
* The identifier of the subnet.
*
*
* @return The identifier of the subnet.
*/
public final String subnetIdentifier() {
return subnetIdentifier;
}
/**
* Returns the value of the SubnetAvailabilityZone property for this object.
*
* @return The value of the SubnetAvailabilityZone property for this object.
*/
public final AvailabilityZone subnetAvailabilityZone() {
return subnetAvailabilityZone;
}
/**
*
* If the subnet is associated with an Outpost, this value specifies the Outpost.
*
*
* For more information about RDS on Outposts, see Amazon RDS on Amazon Web
* Services Outposts in the Amazon RDS User Guide.
*
*
* @return If the subnet is associated with an Outpost, this value specifies the Outpost.
*
* For more information about RDS on Outposts, see Amazon RDS on Amazon
* Web Services Outposts in the Amazon RDS User Guide.
*/
public final Outpost subnetOutpost() {
return subnetOutpost;
}
/**
*
* The status of the subnet.
*
*
* @return The status of the subnet.
*/
public final String subnetStatus() {
return subnetStatus;
}
@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(subnetIdentifier());
hashCode = 31 * hashCode + Objects.hashCode(subnetAvailabilityZone());
hashCode = 31 * hashCode + Objects.hashCode(subnetOutpost());
hashCode = 31 * hashCode + Objects.hashCode(subnetStatus());
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 Subnet)) {
return false;
}
Subnet other = (Subnet) obj;
return Objects.equals(subnetIdentifier(), other.subnetIdentifier())
&& Objects.equals(subnetAvailabilityZone(), other.subnetAvailabilityZone())
&& Objects.equals(subnetOutpost(), other.subnetOutpost()) && Objects.equals(subnetStatus(), other.subnetStatus());
}
/**
* 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("Subnet").add("SubnetIdentifier", subnetIdentifier())
.add("SubnetAvailabilityZone", subnetAvailabilityZone()).add("SubnetOutpost", subnetOutpost())
.add("SubnetStatus", subnetStatus()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "SubnetIdentifier":
return Optional.ofNullable(clazz.cast(subnetIdentifier()));
case "SubnetAvailabilityZone":
return Optional.ofNullable(clazz.cast(subnetAvailabilityZone()));
case "SubnetOutpost":
return Optional.ofNullable(clazz.cast(subnetOutpost()));
case "SubnetStatus":
return Optional.ofNullable(clazz.cast(subnetStatus()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function