AgentAgentKnowledgeBaseAssociationArgs

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",
});
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")
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",
});
});
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
})
}
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());
}
}
resources:
example:
type: aws:bedrock:AgentAgentKnowledgeBaseAssociation
properties:
agentId: GGRRAED6JP
description: Example Knowledge base
knowledgeBaseId: EMDPPAYPZI
knowledgeBaseState: ENABLED

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

Constructors

Link copied to clipboard
constructor(agentId: Output<String>? = null, agentVersion: Output<String>? = null, description: Output<String>? = null, knowledgeBaseId: Output<String>? = null, knowledgeBaseState: Output<String>? = null, timeouts: Output<AgentAgentKnowledgeBaseAssociationTimeoutsArgs>? = null)

Properties

Link copied to clipboard
val agentId: Output<String>? = null

Unique identifier of the agent with which you want to associate the knowledge base.

Link copied to clipboard
val agentVersion: Output<String>? = null

Version of the agent with which you want to associate the knowledge base. Valid values: DRAFT.

Link copied to clipboard
val description: Output<String>? = null

Description of what the agent should use the knowledge base for.

Link copied to clipboard
val knowledgeBaseId: Output<String>? = null

Unique identifier of the knowledge base to associate with the agent.

Link copied to clipboard
val knowledgeBaseState: Output<String>? = null

Whether to use the knowledge base when sending an InvokeAgent request. Valid values: ENABLED, DISABLED. The following arguments are optional:

Link copied to clipboard

Functions

Link copied to clipboard
open override fun toJava(): AgentAgentKnowledgeBaseAssociationArgs