Skip to content

Delete Agent Alias

bedrockagent_delete_agent_alias R Documentation

Deletes an alias of an agent

Description

Deletes an alias of an agent.

Usage

bedrockagent_delete_agent_alias(agentId, agentAliasId)

Arguments

agentId

[required] The unique identifier of the agent that the alias belongs to.

agentAliasId

[required] The unique identifier of the alias to delete.

Value

A list with the following syntax:

list(
  agentId = "string",
  agentAliasId = "string",
  agentAliasStatus = "CREATING"|"PREPARED"|"FAILED"|"UPDATING"|"DELETING"|"DISSOCIATED"
)

Request syntax

svc$delete_agent_alias(
  agentId = "string",
  agentAliasId = "string"
)