
com.pulumi.aws.bedrock.inputs.AgentKnowledgeBaseStorageConfigurationPineconeConfigurationArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.bedrock.inputs;
import com.pulumi.aws.bedrock.inputs.AgentKnowledgeBaseStorageConfigurationPineconeConfigurationFieldMappingArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class AgentKnowledgeBaseStorageConfigurationPineconeConfigurationArgs extends com.pulumi.resources.ResourceArgs {
public static final AgentKnowledgeBaseStorageConfigurationPineconeConfigurationArgs Empty = new AgentKnowledgeBaseStorageConfigurationPineconeConfigurationArgs();
/**
* Endpoint URL for your index management page.
*
*/
@Import(name="connectionString", required=true)
private Output connectionString;
/**
* @return Endpoint URL for your index management page.
*
*/
public Output connectionString() {
return this.connectionString;
}
/**
* ARN of the secret that you created in AWS Secrets Manager that is linked to your Pinecone API key.
*
*/
@Import(name="credentialsSecretArn", required=true)
private Output credentialsSecretArn;
/**
* @return ARN of the secret that you created in AWS Secrets Manager that is linked to your Pinecone API key.
*
*/
public Output credentialsSecretArn() {
return this.credentialsSecretArn;
}
/**
* The names of the fields to which to map information about the vector store. This block supports the following arguments:
*
*/
@Import(name="fieldMapping")
private @Nullable Output fieldMapping;
/**
* @return The names of the fields to which to map information about the vector store. This block supports the following arguments:
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy