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

software.amazon.awssdk.services.entityresolution.model.InputSource Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Entity Resolution module holds the client classes that are used for communicating with Entity Resolution.

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

/**
 * 

* An object containing InputSourceARN, SchemaName, and ApplyNormalization. *

*/ @Generated("software.amazon.awssdk:codegen") public final class InputSource implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField APPLY_NORMALIZATION_FIELD = SdkField. builder(MarshallingType.BOOLEAN) .memberName("applyNormalization").getter(getter(InputSource::applyNormalization)) .setter(setter(Builder::applyNormalization)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("applyNormalization").build()) .build(); private static final SdkField INPUT_SOURCE_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("inputSourceARN").getter(getter(InputSource::inputSourceARN)).setter(setter(Builder::inputSourceARN)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("inputSourceARN").build()).build(); private static final SdkField SCHEMA_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("schemaName").getter(getter(InputSource::schemaName)).setter(setter(Builder::schemaName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("schemaName").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(APPLY_NORMALIZATION_FIELD, INPUT_SOURCE_ARN_FIELD, SCHEMA_NAME_FIELD)); private static final Map> SDK_NAME_TO_FIELD = Collections .unmodifiableMap(new HashMap>() { { put("applyNormalization", APPLY_NORMALIZATION_FIELD); put("inputSourceARN", INPUT_SOURCE_ARN_FIELD); put("schemaName", SCHEMA_NAME_FIELD); } }); private static final long serialVersionUID = 1L; private final Boolean applyNormalization; private final String inputSourceARN; private final String schemaName; private InputSource(BuilderImpl builder) { this.applyNormalization = builder.applyNormalization; this.inputSourceARN = builder.inputSourceARN; this.schemaName = builder.schemaName; } /** *

* Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an * AttributeType of PHONE_NUMBER, and the data in the input table is in a format of * 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890. *

* * @return Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an * AttributeType of PHONE_NUMBER, and the data in the input table is in a format * of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890. */ public final Boolean applyNormalization() { return applyNormalization; } /** *

* An Glue table Amazon Resource Name (ARN) for the input source table. *

* * @return An Glue table Amazon Resource Name (ARN) for the input source table. */ public final String inputSourceARN() { return inputSourceARN; } /** *

* The name of the schema to be retrieved. *

* * @return The name of the schema to be retrieved. */ public final String schemaName() { return schemaName; } @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(applyNormalization()); hashCode = 31 * hashCode + Objects.hashCode(inputSourceARN()); hashCode = 31 * hashCode + Objects.hashCode(schemaName()); 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 InputSource)) { return false; } InputSource other = (InputSource) obj; return Objects.equals(applyNormalization(), other.applyNormalization()) && Objects.equals(inputSourceARN(), other.inputSourceARN()) && Objects.equals(schemaName(), other.schemaName()); } /** * 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("InputSource").add("ApplyNormalization", applyNormalization()) .add("InputSourceARN", inputSourceARN()).add("SchemaName", schemaName()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "applyNormalization": return Optional.ofNullable(clazz.cast(applyNormalization())); case "inputSourceARN": return Optional.ofNullable(clazz.cast(inputSourceARN())); case "schemaName": return Optional.ofNullable(clazz.cast(schemaName())); 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 getter(Function g) { return obj -> g.apply((InputSource) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an * AttributeType of PHONE_NUMBER, and the data in the input table is in a format of * 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890. *

* * @param applyNormalization * Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an * AttributeType of PHONE_NUMBER, and the data in the input table is in a * format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890. * @return Returns a reference to this object so that method calls can be chained together. */ Builder applyNormalization(Boolean applyNormalization); /** *

* An Glue table Amazon Resource Name (ARN) for the input source table. *

* * @param inputSourceARN * An Glue table Amazon Resource Name (ARN) for the input source table. * @return Returns a reference to this object so that method calls can be chained together. */ Builder inputSourceARN(String inputSourceARN); /** *

* The name of the schema to be retrieved. *

* * @param schemaName * The name of the schema to be retrieved. * @return Returns a reference to this object so that method calls can be chained together. */ Builder schemaName(String schemaName); } static final class BuilderImpl implements Builder { private Boolean applyNormalization; private String inputSourceARN; private String schemaName; private BuilderImpl() { } private BuilderImpl(InputSource model) { applyNormalization(model.applyNormalization); inputSourceARN(model.inputSourceARN); schemaName(model.schemaName); } public final Boolean getApplyNormalization() { return applyNormalization; } public final void setApplyNormalization(Boolean applyNormalization) { this.applyNormalization = applyNormalization; } @Override public final Builder applyNormalization(Boolean applyNormalization) { this.applyNormalization = applyNormalization; return this; } public final String getInputSourceARN() { return inputSourceARN; } public final void setInputSourceARN(String inputSourceARN) { this.inputSourceARN = inputSourceARN; } @Override public final Builder inputSourceARN(String inputSourceARN) { this.inputSourceARN = inputSourceARN; return this; } public final String getSchemaName() { return schemaName; } public final void setSchemaName(String schemaName) { this.schemaName = schemaName; } @Override public final Builder schemaName(String schemaName) { this.schemaName = schemaName; return this; } @Override public InputSource build() { return new InputSource(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy