@cdklabs/generative-ai-cdk-constructs • Docs
@cdklabs/generative-ai-cdk-constructs / bedrock / Agent
Deploy a Bedrock Agent.
Construct
new Agent(
scope
,id
,props
):Agent
• scope: Construct
• id: string
• props: AgentProps
Construct.constructor
readonly
agentArn:string
The ARN of the agent.
readonly
agentId:string
The unique identifier of the agent.
readonly
agentInstance:CfnAgent
Instance of Agent
readonly
agentversion:string
The version for the agent
readonly
optional
aliasArn:string
The ARN of the agent alias.
readonly
optional
aliasId:string
The unique identifier of the agent alias.
readonly
optional
aliasName:string
The name for the agent alias.
readonly
foundationModel:IInvokable
The model used by the agent.
knowledgeBases:
AgentKnowledgeBaseProperty
[] =[]
A list of KnowledgeBases associated with the agent.
- No knowledge base is used.
readonly
name:string
The name of the agent.
readonly
node:Node
The tree node.
Construct.node
readonly
role:Role
The IAM role for the agent.
_addAliasDependency(
updatedAt
):void
Internal
Register a dependency for aliases.
• updatedAt: string
The updatedAt of the resource that will be registered as a dependency.
This is an internal core function and should not be called directly.
void
addActionGroup(
actionGroup
):void
Add action group to the agent.
• actionGroup: AgentActionGroup
void
addActionGroups(
actionGroups
):void
Add action groups to the agent.
• actionGroups: AgentActionGroup
[]
void
addAlias(
props
):AgentAlias
Add an alias to the agent.
• props: AddAgentAliasProps
addGuardrail(
guardrail
):void
Add guardrail to the agent.
• guardrail: IGuardrail
void
addKnowledgeBase(
knowledgeBase
):void
Add knowledge base to the agent.
• knowledgeBase: KnowledgeBase
void
addKnowledgeBases(
knowledgeBases
):void
Add knowledge bases to the agent.
• knowledgeBases: KnowledgeBase
[]
void
toString():
string
Returns a string representation of this construct.
string
Construct.toString
static
isConstruct(x
):x is Construct
Checks if x
is a construct.
Use this method instead of instanceof
to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs
library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct
in each copy of the constructs
library
is seen as a different class, and an instance of one class will not test as
instanceof
the other class. npm install
will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof
will behave
unpredictably. It is safest to avoid using instanceof
, and using
this type-testing method instead.
• x: any
Any object
x is Construct
true if x
is an object created from a class which extends Construct
.
Construct.isConstruct