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

com.amazonaws.services.bedrockagent.model.RdsFieldMapping Maven / Gradle / Ivy

/*
 * Copyright 2019-2024 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 com.amazonaws.services.bedrockagent.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains the names of the fields to which to map information about the vector store. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class RdsFieldMapping implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the field in which Amazon Bedrock stores metadata about the vector store. *

*/ private String metadataField; /** *

* The name of the field in which Amazon Bedrock stores the ID for each entry. *

*/ private String primaryKeyField; /** *

* The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to * the chunking strategy you choose. *

*/ private String textField; /** *

* The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. *

*/ private String vectorField; /** *

* The name of the field in which Amazon Bedrock stores metadata about the vector store. *

* * @param metadataField * The name of the field in which Amazon Bedrock stores metadata about the vector store. */ public void setMetadataField(String metadataField) { this.metadataField = metadataField; } /** *

* The name of the field in which Amazon Bedrock stores metadata about the vector store. *

* * @return The name of the field in which Amazon Bedrock stores metadata about the vector store. */ public String getMetadataField() { return this.metadataField; } /** *

* The name of the field in which Amazon Bedrock stores metadata about the vector store. *

* * @param metadataField * The name of the field in which Amazon Bedrock stores metadata about the vector store. * @return Returns a reference to this object so that method calls can be chained together. */ public RdsFieldMapping withMetadataField(String metadataField) { setMetadataField(metadataField); return this; } /** *

* The name of the field in which Amazon Bedrock stores the ID for each entry. *

* * @param primaryKeyField * The name of the field in which Amazon Bedrock stores the ID for each entry. */ public void setPrimaryKeyField(String primaryKeyField) { this.primaryKeyField = primaryKeyField; } /** *

* The name of the field in which Amazon Bedrock stores the ID for each entry. *

* * @return The name of the field in which Amazon Bedrock stores the ID for each entry. */ public String getPrimaryKeyField() { return this.primaryKeyField; } /** *

* The name of the field in which Amazon Bedrock stores the ID for each entry. *

* * @param primaryKeyField * The name of the field in which Amazon Bedrock stores the ID for each entry. * @return Returns a reference to this object so that method calls can be chained together. */ public RdsFieldMapping withPrimaryKeyField(String primaryKeyField) { setPrimaryKeyField(primaryKeyField); return this; } /** *

* The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to * the chunking strategy you choose. *

* * @param textField * The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split * according to the chunking strategy you choose. */ public void setTextField(String textField) { this.textField = textField; } /** *

* The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to * the chunking strategy you choose. *

* * @return The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split * according to the chunking strategy you choose. */ public String getTextField() { return this.textField; } /** *

* The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to * the chunking strategy you choose. *

* * @param textField * The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split * according to the chunking strategy you choose. * @return Returns a reference to this object so that method calls can be chained together. */ public RdsFieldMapping withTextField(String textField) { setTextField(textField); return this; } /** *

* The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. *

* * @param vectorField * The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. */ public void setVectorField(String vectorField) { this.vectorField = vectorField; } /** *

* The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. *

* * @return The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. */ public String getVectorField() { return this.vectorField; } /** *

* The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. *

* * @param vectorField * The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources. * @return Returns a reference to this object so that method calls can be chained together. */ public RdsFieldMapping withVectorField(String vectorField) { setVectorField(vectorField); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getMetadataField() != null) sb.append("MetadataField: ").append(getMetadataField()).append(","); if (getPrimaryKeyField() != null) sb.append("PrimaryKeyField: ").append(getPrimaryKeyField()).append(","); if (getTextField() != null) sb.append("TextField: ").append(getTextField()).append(","); if (getVectorField() != null) sb.append("VectorField: ").append(getVectorField()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RdsFieldMapping == false) return false; RdsFieldMapping other = (RdsFieldMapping) obj; if (other.getMetadataField() == null ^ this.getMetadataField() == null) return false; if (other.getMetadataField() != null && other.getMetadataField().equals(this.getMetadataField()) == false) return false; if (other.getPrimaryKeyField() == null ^ this.getPrimaryKeyField() == null) return false; if (other.getPrimaryKeyField() != null && other.getPrimaryKeyField().equals(this.getPrimaryKeyField()) == false) return false; if (other.getTextField() == null ^ this.getTextField() == null) return false; if (other.getTextField() != null && other.getTextField().equals(this.getTextField()) == false) return false; if (other.getVectorField() == null ^ this.getVectorField() == null) return false; if (other.getVectorField() != null && other.getVectorField().equals(this.getVectorField()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getMetadataField() == null) ? 0 : getMetadataField().hashCode()); hashCode = prime * hashCode + ((getPrimaryKeyField() == null) ? 0 : getPrimaryKeyField().hashCode()); hashCode = prime * hashCode + ((getTextField() == null) ? 0 : getTextField().hashCode()); hashCode = prime * hashCode + ((getVectorField() == null) ? 0 : getVectorField().hashCode()); return hashCode; } @Override public RdsFieldMapping clone() { try { return (RdsFieldMapping) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.bedrockagent.model.transform.RdsFieldMappingMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy