Class BedrockAgentRuntimeConfiguration

java.lang.Object
org.apache.camel.component.aws2.bedrock.agentruntime.BedrockAgentRuntimeConfiguration
All Implemented Interfaces:
Cloneable

@UriParams public class BedrockAgentRuntimeConfiguration extends Object implements Cloneable
  • Constructor Details

    • BedrockAgentRuntimeConfiguration

      public BedrockAgentRuntimeConfiguration()
  • Method Details

    • getBedrockAgentRuntimeClient

      public software.amazon.awssdk.services.bedrockagentruntime.BedrockAgentRuntimeClient getBedrockAgentRuntimeClient()
    • setBedrockAgentRuntimeClient

      public void setBedrockAgentRuntimeClient(software.amazon.awssdk.services.bedrockagentruntime.BedrockAgentRuntimeClient bedrockRuntimeClient)
      To use an existing configured AWS Bedrock Agent Runtime client
    • getAccessKey

      public String getAccessKey()
    • setAccessKey

      public void setAccessKey(String accessKey)
      Amazon AWS Access Key
    • getSecretKey

      public String getSecretKey()
    • setSecretKey

      public void setSecretKey(String secretKey)
      Amazon AWS Secret Key
    • getSessionToken

      public String getSessionToken()
    • setSessionToken

      public void setSessionToken(String sessionToken)
      Amazon AWS Session Token used when the user needs to assume an IAM role
    • getOperation

      public BedrockAgentRuntimeOperations getOperation()
    • setOperation

      public void setOperation(BedrockAgentRuntimeOperations operation)
      The operation to perform
    • getProxyProtocol

      public software.amazon.awssdk.core.Protocol getProxyProtocol()
    • setProxyProtocol

      public void setProxyProtocol(software.amazon.awssdk.core.Protocol proxyProtocol)
      To define a proxy protocol when instantiating the Bedrock Agent Runtime client
    • getProxyHost

      public String getProxyHost()
    • setProxyHost

      public void setProxyHost(String proxyHost)
      To define a proxy host when instantiating the Bedrock Agent Runtime client
    • getProxyPort

      public Integer getProxyPort()
    • setProxyPort

      public void setProxyPort(Integer proxyPort)
      To define a proxy port when instantiating the Bedrock Agent Runtime client
    • getRegion

      public String getRegion()
    • setRegion

      public void setRegion(String region)
      The region in which Bedrock Agent Runtime client needs to work. When using this parameter, the configuration will expect the lowercase name of the region (for example, ap-east-1) You'll need to use the name Region.EU_WEST_1.id()
    • isPojoRequest

      public boolean isPojoRequest()
    • setPojoRequest

      public void setPojoRequest(boolean pojoRequest)
      If we want to use a POJO request as body or not
    • isTrustAllCertificates

      public boolean isTrustAllCertificates()
    • setTrustAllCertificates

      public void setTrustAllCertificates(boolean trustAllCertificates)
      If we want to trust all certificates in case of overriding the endpoint
    • isOverrideEndpoint

      public boolean isOverrideEndpoint()
    • setOverrideEndpoint

      public void setOverrideEndpoint(boolean overrideEndpoint)
      Set the need for overriding the endpoint. This option needs to be used in combination with the uriEndpointOverride option
    • getUriEndpointOverride

      public String getUriEndpointOverride()
    • setUriEndpointOverride

      public void setUriEndpointOverride(String uriEndpointOverride)
      Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option
    • setUseDefaultCredentialsProvider

      public void setUseDefaultCredentialsProvider(Boolean useDefaultCredentialsProvider)
      Set whether the Bedrock Agent Runtime client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.
    • isUseDefaultCredentialsProvider

      public Boolean isUseDefaultCredentialsProvider()
    • isUseProfileCredentialsProvider

      public boolean isUseProfileCredentialsProvider()
    • setUseProfileCredentialsProvider

      public void setUseProfileCredentialsProvider(boolean useProfileCredentialsProvider)
      Set whether the Bedrock Agent Runtime client should expect to load credentials through a profile credentials provider.
    • isUseSessionCredentials

      public boolean isUseSessionCredentials()
    • setUseSessionCredentials

      public void setUseSessionCredentials(boolean useSessionCredentials)
      Set whether the Bedrock Agent Runtime client should expect to use Session Credentials. This is useful in a situation in which the user needs to assume an IAM role for doing operations in Bedrock.
    • getProfileCredentialsName

      public String getProfileCredentialsName()
    • setProfileCredentialsName

      public void setProfileCredentialsName(String profileCredentialsName)
      If using a profile credentials provider, this parameter will set the profile name
    • getModelId

      public String getModelId()
    • setModelId

      public void setModelId(String modelId)
      Define the model Id we are going to use
    • getKnowledgeBaseId

      public String getKnowledgeBaseId()
    • setKnowledgeBaseId

      public void setKnowledgeBaseId(String knowledgeBaseId)
      Define the Knowledge Base Id we are going to use
    • copy