Skip to content

Update Flow Alias

bedrockagent_update_flow_alias R Documentation

Modifies the alias of a flow

Description

Modifies the alias of a flow. Include both fields that you want to keep and ones that you want to change. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Usage

bedrockagent_update_flow_alias(aliasIdentifier, description,
  flowIdentifier, name, routingConfiguration)

Arguments

aliasIdentifier

[required] The unique identifier of the alias.

description

A description for the alias.

flowIdentifier

[required] The unique identifier of the flow.

name

[required] The name of the alias.

routingConfiguration

[required] Contains information about the version to which to map the alias.

Value

A list with the following syntax:

list(
  arn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  description = "string",
  flowId = "string",
  id = "string",
  name = "string",
  routingConfiguration = list(
    list(
      flowVersion = "string"
    )
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_flow_alias(
  aliasIdentifier = "string",
  description = "string",
  flowIdentifier = "string",
  name = "string",
  routingConfiguration = list(
    list(
      flowVersion = "string"
    )
  )
)