software.amazon.awssdk.services.rds.model.CertificateDetails 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.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;
/**
*
* The details of the DB instance’s server certificate.
*
*
* For more information, see Using SSL/TLS to encrypt a
* connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a
* connection to a DB cluster in the Amazon Aurora User Guide.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class CertificateDetails implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField CA_IDENTIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("CAIdentifier").getter(getter(CertificateDetails::caIdentifier)).setter(setter(Builder::caIdentifier))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CAIdentifier").build()).build();
private static final SdkField VALID_TILL_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("ValidTill").getter(getter(CertificateDetails::validTill)).setter(setter(Builder::validTill))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ValidTill").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CA_IDENTIFIER_FIELD,
VALID_TILL_FIELD));
private static final long serialVersionUID = 1L;
private final String caIdentifier;
private final Instant validTill;
private CertificateDetails(BuilderImpl builder) {
this.caIdentifier = builder.caIdentifier;
this.validTill = builder.validTill;
}
/**
*
* The CA identifier of the CA certificate used for the DB instance's server certificate.
*
*
* @return The CA identifier of the CA certificate used for the DB instance's server certificate.
*/
public final String caIdentifier() {
return caIdentifier;
}
/**
*
* The expiration date of the DB instance’s server certificate.
*
*
* @return The expiration date of the DB instance’s server certificate.
*/
public final Instant validTill() {
return validTill;
}
@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(caIdentifier());
hashCode = 31 * hashCode + Objects.hashCode(validTill());
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 CertificateDetails)) {
return false;
}
CertificateDetails other = (CertificateDetails) obj;
return Objects.equals(caIdentifier(), other.caIdentifier()) && Objects.equals(validTill(), other.validTill());
}
/**
* 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("CertificateDetails").add("CAIdentifier", caIdentifier()).add("ValidTill", validTill()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "CAIdentifier":
return Optional.ofNullable(clazz.cast(caIdentifier()));
case "ValidTill":
return Optional.ofNullable(clazz.cast(validTill()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function