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

software.amazon.awssdk.services.elasticloadbalancingv2.model.MutualAuthenticationAttributes Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Elastic Load Balancing module holds the client classes that are used for communicating with Elastic Load Balancing Service (API Version 2015-12-01)

There is a newer version: 2.29.39
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.elasticloadbalancingv2.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.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;

/**
 * 

* Information about the mutual authentication attributes of a listener. *

*/ @Generated("software.amazon.awssdk:codegen") public final class MutualAuthenticationAttributes implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField MODE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Mode") .getter(getter(MutualAuthenticationAttributes::mode)).setter(setter(Builder::mode)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Mode").build()).build(); private static final SdkField TRUST_STORE_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("TrustStoreArn").getter(getter(MutualAuthenticationAttributes::trustStoreArn)) .setter(setter(Builder::trustStoreArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TrustStoreArn").build()).build(); private static final SdkField IGNORE_CLIENT_CERTIFICATE_EXPIRY_FIELD = SdkField . builder(MarshallingType.BOOLEAN) .memberName("IgnoreClientCertificateExpiry") .getter(getter(MutualAuthenticationAttributes::ignoreClientCertificateExpiry)) .setter(setter(Builder::ignoreClientCertificateExpiry)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("IgnoreClientCertificateExpiry") .build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(MODE_FIELD, TRUST_STORE_ARN_FIELD, IGNORE_CLIENT_CERTIFICATE_EXPIRY_FIELD)); private static final long serialVersionUID = 1L; private final String mode; private final String trustStoreArn; private final Boolean ignoreClientCertificateExpiry; private MutualAuthenticationAttributes(BuilderImpl builder) { this.mode = builder.mode; this.trustStoreArn = builder.trustStoreArn; this.ignoreClientCertificateExpiry = builder.ignoreClientCertificateExpiry; } /** *

* The client certificate handling method. Options are off, passthrough or * verify. The default value is off. *

* * @return The client certificate handling method. Options are off, passthrough or * verify. The default value is off. */ public final String mode() { return mode; } /** *

* The Amazon Resource Name (ARN) of the trust store. *

* * @return The Amazon Resource Name (ARN) of the trust store. */ public final String trustStoreArn() { return trustStoreArn; } /** *

* Indicates whether expired client certificates are ignored. *

* * @return Indicates whether expired client certificates are ignored. */ public final Boolean ignoreClientCertificateExpiry() { return ignoreClientCertificateExpiry; } @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(mode()); hashCode = 31 * hashCode + Objects.hashCode(trustStoreArn()); hashCode = 31 * hashCode + Objects.hashCode(ignoreClientCertificateExpiry()); 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 MutualAuthenticationAttributes)) { return false; } MutualAuthenticationAttributes other = (MutualAuthenticationAttributes) obj; return Objects.equals(mode(), other.mode()) && Objects.equals(trustStoreArn(), other.trustStoreArn()) && Objects.equals(ignoreClientCertificateExpiry(), other.ignoreClientCertificateExpiry()); } /** * 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("MutualAuthenticationAttributes").add("Mode", mode()).add("TrustStoreArn", trustStoreArn()) .add("IgnoreClientCertificateExpiry", ignoreClientCertificateExpiry()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "Mode": return Optional.ofNullable(clazz.cast(mode())); case "TrustStoreArn": return Optional.ofNullable(clazz.cast(trustStoreArn())); case "IgnoreClientCertificateExpiry": return Optional.ofNullable(clazz.cast(ignoreClientCertificateExpiry())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((MutualAuthenticationAttributes) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The client certificate handling method. Options are off, passthrough or * verify. The default value is off. *

* * @param mode * The client certificate handling method. Options are off, passthrough or * verify. The default value is off. * @return Returns a reference to this object so that method calls can be chained together. */ Builder mode(String mode); /** *

* The Amazon Resource Name (ARN) of the trust store. *

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

* Indicates whether expired client certificates are ignored. *

* * @param ignoreClientCertificateExpiry * Indicates whether expired client certificates are ignored. * @return Returns a reference to this object so that method calls can be chained together. */ Builder ignoreClientCertificateExpiry(Boolean ignoreClientCertificateExpiry); } static final class BuilderImpl implements Builder { private String mode; private String trustStoreArn; private Boolean ignoreClientCertificateExpiry; private BuilderImpl() { } private BuilderImpl(MutualAuthenticationAttributes model) { mode(model.mode); trustStoreArn(model.trustStoreArn); ignoreClientCertificateExpiry(model.ignoreClientCertificateExpiry); } public final String getMode() { return mode; } public final void setMode(String mode) { this.mode = mode; } @Override public final Builder mode(String mode) { this.mode = mode; return this; } public final String getTrustStoreArn() { return trustStoreArn; } public final void setTrustStoreArn(String trustStoreArn) { this.trustStoreArn = trustStoreArn; } @Override public final Builder trustStoreArn(String trustStoreArn) { this.trustStoreArn = trustStoreArn; return this; } public final Boolean getIgnoreClientCertificateExpiry() { return ignoreClientCertificateExpiry; } public final void setIgnoreClientCertificateExpiry(Boolean ignoreClientCertificateExpiry) { this.ignoreClientCertificateExpiry = ignoreClientCertificateExpiry; } @Override public final Builder ignoreClientCertificateExpiry(Boolean ignoreClientCertificateExpiry) { this.ignoreClientCertificateExpiry = ignoreClientCertificateExpiry; return this; } @Override public MutualAuthenticationAttributes build() { return new MutualAuthenticationAttributes(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy