Agent Agent Knowledge Base Association Args
data class AgentAgentKnowledgeBaseAssociationArgs(val agentId: Output<String>? = null, val agentVersion: Output<String>? = null, val description: Output<String>? = null, val knowledgeBaseId: Output<String>? = null, val knowledgeBaseState: Output<String>? = null, val timeouts: Output<AgentAgentKnowledgeBaseAssociationTimeoutsArgs>? = null) : ConvertibleToJava<AgentAgentKnowledgeBaseAssociationArgs>
Resource for managing an AWS Agents for Amazon Bedrock Agent Knowledge Base Association.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.bedrock.AgentAgentKnowledgeBaseAssociation("example", {
agentId: "GGRRAED6JP",
description: "Example Knowledge base",
knowledgeBaseId: "EMDPPAYPZI",
knowledgeBaseState: "ENABLED",
});
Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.bedrock.AgentAgentKnowledgeBaseAssociation("example",
agent_id="GGRRAED6JP",
description="Example Knowledge base",
knowledge_base_id="EMDPPAYPZI",
knowledge_base_state="ENABLED")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Bedrock.AgentAgentKnowledgeBaseAssociation("example", new()
{
AgentId = "GGRRAED6JP",
Description = "Example Knowledge base",
KnowledgeBaseId = "EMDPPAYPZI",
KnowledgeBaseState = "ENABLED",
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/bedrock"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := bedrock.NewAgentAgentKnowledgeBaseAssociation(ctx, "example", &bedrock.AgentAgentKnowledgeBaseAssociationArgs{
AgentId: pulumi.String("GGRRAED6JP"),
Description: pulumi.String("Example Knowledge base"),
KnowledgeBaseId: pulumi.String("EMDPPAYPZI"),
KnowledgeBaseState: pulumi.String("ENABLED"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.bedrock.AgentAgentKnowledgeBaseAssociation;
import com.pulumi.aws.bedrock.AgentAgentKnowledgeBaseAssociationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new AgentAgentKnowledgeBaseAssociation("example", AgentAgentKnowledgeBaseAssociationArgs.builder()
.agentId("GGRRAED6JP")
.description("Example Knowledge base")
.knowledgeBaseId("EMDPPAYPZI")
.knowledgeBaseState("ENABLED")
.build());
}
}
Content copied to clipboard
resources:
example:
type: aws:bedrock:AgentAgentKnowledgeBaseAssociation
properties:
agentId: GGRRAED6JP
description: Example Knowledge base
knowledgeBaseId: EMDPPAYPZI
knowledgeBaseState: ENABLED
Content copied to clipboard
Import
Using pulumi import
, import Agents for Amazon Bedrock Agent Knowledge Base Association using the agent ID, the agent version, and the knowledge base ID separated by ,
. For example:
$ pulumi import aws:bedrock/agentAgentKnowledgeBaseAssociation:AgentAgentKnowledgeBaseAssociation example GGRRAED6JP,DRAFT,EMDPPAYPZI
Content copied to clipboard
Properties
Link copied to clipboard
Version of the agent with which you want to associate the knowledge base. Valid values: DRAFT
.
Link copied to clipboard
Description of what the agent should use the knowledge base for.
Link copied to clipboard
Unique identifier of the knowledge base to associate with the agent.
Link copied to clipboard
Whether to use the knowledge base when sending an InvokeAgent request. Valid values: ENABLED
, DISABLED
. The following arguments are optional:
Link copied to clipboard