software.amazon.awssdk.services.amplifybackend.model.CreateBackendAuthVerificationMessageConfig Maven / Gradle / Ivy
Show all versions of amplifybackend Show documentation
/*
* 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.amplifybackend.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
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;
/**
*
* Creates an email or SMS verification message for the auth resource configured for your Amplify project.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class CreateBackendAuthVerificationMessageConfig implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField DELIVERY_METHOD_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("DeliveryMethod").getter(getter(CreateBackendAuthVerificationMessageConfig::deliveryMethodAsString))
.setter(setter(Builder::deliveryMethod))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("deliveryMethod").build()).build();
private static final SdkField EMAIL_SETTINGS_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("EmailSettings")
.getter(getter(CreateBackendAuthVerificationMessageConfig::emailSettings)).setter(setter(Builder::emailSettings))
.constructor(EmailSettings::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("emailSettings").build()).build();
private static final SdkField SMS_SETTINGS_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.memberName("SmsSettings").getter(getter(CreateBackendAuthVerificationMessageConfig::smsSettings))
.setter(setter(Builder::smsSettings)).constructor(SmsSettings::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("smsSettings").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(DELIVERY_METHOD_FIELD,
EMAIL_SETTINGS_FIELD, SMS_SETTINGS_FIELD));
private static final Map> SDK_NAME_TO_FIELD = Collections
.unmodifiableMap(new HashMap>() {
{
put("deliveryMethod", DELIVERY_METHOD_FIELD);
put("emailSettings", EMAIL_SETTINGS_FIELD);
put("smsSettings", SMS_SETTINGS_FIELD);
}
});
private static final long serialVersionUID = 1L;
private final String deliveryMethod;
private final EmailSettings emailSettings;
private final SmsSettings smsSettings;
private CreateBackendAuthVerificationMessageConfig(BuilderImpl builder) {
this.deliveryMethod = builder.deliveryMethod;
this.emailSettings = builder.emailSettings;
this.smsSettings = builder.smsSettings;
}
/**
*
* The type of verification message to send.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #deliveryMethod}
* will return {@link DeliveryMethod#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #deliveryMethodAsString}.
*
*
* @return The type of verification message to send.
* @see DeliveryMethod
*/
public final DeliveryMethod deliveryMethod() {
return DeliveryMethod.fromValue(deliveryMethod);
}
/**
*
* The type of verification message to send.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #deliveryMethod}
* will return {@link DeliveryMethod#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #deliveryMethodAsString}.
*
*
* @return The type of verification message to send.
* @see DeliveryMethod
*/
public final String deliveryMethodAsString() {
return deliveryMethod;
}
/**
*
* The settings for the email message.
*
*
* @return The settings for the email message.
*/
public final EmailSettings emailSettings() {
return emailSettings;
}
/**
*
* The settings for the SMS message.
*
*
* @return The settings for the SMS message.
*/
public final SmsSettings smsSettings() {
return smsSettings;
}
@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(deliveryMethodAsString());
hashCode = 31 * hashCode + Objects.hashCode(emailSettings());
hashCode = 31 * hashCode + Objects.hashCode(smsSettings());
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 CreateBackendAuthVerificationMessageConfig)) {
return false;
}
CreateBackendAuthVerificationMessageConfig other = (CreateBackendAuthVerificationMessageConfig) obj;
return Objects.equals(deliveryMethodAsString(), other.deliveryMethodAsString())
&& Objects.equals(emailSettings(), other.emailSettings()) && Objects.equals(smsSettings(), other.smsSettings());
}
/**
* 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("CreateBackendAuthVerificationMessageConfig").add("DeliveryMethod", deliveryMethodAsString())
.add("EmailSettings", emailSettings() == null ? null : "*** Sensitive Data Redacted ***")
.add("SmsSettings", smsSettings() == null ? null : "*** Sensitive Data Redacted ***").build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "DeliveryMethod":
return Optional.ofNullable(clazz.cast(deliveryMethodAsString()));
case "EmailSettings":
return Optional.ofNullable(clazz.cast(emailSettings()));
case "SmsSettings":
return Optional.ofNullable(clazz.cast(smsSettings()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Function