Updates configurations for an alias of an agent
Source:R/bedrockagent_operations.R
bedrockagent_update_agent_alias.RdUpdates configurations for an alias of an agent.
See https://www.paws-r-sdk.com/docs/bedrockagent_update_agent_alias/ for full documentation.
Usage
bedrockagent_update_agent_alias(
agentId,
agentAliasId,
agentAliasName,
description = NULL,
routingConfiguration = NULL,
aliasInvocationState = NULL
)Arguments
- agentId
[required] The unique identifier of the agent.
- agentAliasId
[required] The unique identifier of the alias.
- agentAliasName
[required] Specifies a new name for the alias.
- description
Specifies a new description for the alias.
- routingConfiguration
Contains details about the routing configuration of the alias.
- aliasInvocationState
The invocation state for the agent alias. To pause the agent alias, set the value to
REJECT_INVOCATIONS. To start the agent alias running again, set the value toACCEPT_INVOCATIONS. Use theget_agent_alias, orlist_agent_aliases, operation to get the invocation state of an agent alias.