Skip to content

Get Flow Alias

bedrockagent_get_flow_alias R Documentation

Retrieves information about a flow

Description

Retrieves information about a flow. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Usage

bedrockagent_get_flow_alias(flowIdentifier, aliasIdentifier)

Arguments

flowIdentifier

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

aliasIdentifier

[required] The unique identifier of the alias for which to retrieve information.

Value

A list with the following syntax:

list(
  name = "string",
  description = "string",
  routingConfiguration = list(
    list(
      flowVersion = "string"
    )
  ),
  concurrencyConfiguration = list(
    type = "Automatic"|"Manual",
    maxConcurrency = 123
  ),
  flowId = "string",
  id = "string",
  arn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_flow_alias(
  flowIdentifier = "string",
  aliasIdentifier = "string"
)