Skip to content

List Bot Version Replicas

lexmodelsv2_list_bot_version_replicas R Documentation

Contains information about all the versions replication statuses applicable for Global Resiliency

Description

Contains information about all the versions replication statuses applicable for Global Resiliency.

Usage

lexmodelsv2_list_bot_version_replicas(botId, replicaRegion, maxResults,
  nextToken, sortBy)

Arguments

botId

[required] The request for the unique ID in the list of replicated bots.

replicaRegion

[required] The request for the region used in the list of replicated bots.

maxResults

The maximum results given in the list of replicated bots.

nextToken

The next token given in the list of replicated bots.

sortBy

The requested sort category for the list of replicated bots.

Value

A list with the following syntax:

list(
  botId = "string",
  sourceRegion = "string",
  replicaRegion = "string",
  botVersionReplicaSummaries = list(
    list(
      botVersion = "string",
      botVersionReplicationStatus = "Creating"|"Available"|"Deleting"|"Failed",
      creationDateTime = as.POSIXct(
        "2015-01-01"
      ),
      failureReasons = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_bot_version_replicas(
  botId = "string",
  replicaRegion = "string",
  maxResults = 123,
  nextToken = "string",
  sortBy = list(
    attribute = "BotVersion",
    order = "Ascending"|"Descending"
  )
)