Skip to content

Describe Bot Locale

lexmodelsv2_describe_bot_locale R Documentation

Describes the settings that a bot has for a specific locale

Description

Describes the settings that a bot has for a specific locale.

Usage

lexmodelsv2_describe_bot_locale(botId, botVersion, localeId)

Arguments

botId

[required] The identifier of the bot associated with the locale.

botVersion

[required] The version of the bot associated with the locale.

localeId

[required] The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see Supported languages.

Value

A list with the following syntax:

list(
  botId = "string",
  botVersion = "string",
  localeId = "string",
  localeName = "string",
  description = "string",
  nluIntentConfidenceThreshold = 123.0,
  voiceSettings = list(
    voiceId = "string",
    engine = "standard"|"neural"
  ),
  intentsCount = 123,
  slotTypesCount = 123,
  botLocaleStatus = "Creating"|"Building"|"Built"|"ReadyExpressTesting"|"Failed"|"Deleting"|"NotBuilt"|"Importing"|"Processing",
  failureReasons = list(
    "string"
  ),
  creationDateTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedDateTime = as.POSIXct(
    "2015-01-01"
  ),
  lastBuildSubmittedDateTime = as.POSIXct(
    "2015-01-01"
  ),
  botLocaleHistoryEvents = list(
    list(
      event = "string",
      eventDate = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  recommendedActions = list(
    "string"
  ),
  generativeAISettings = list(
    runtimeSettings = list(
      slotResolutionImprovement = list(
        enabled = TRUE|FALSE,
        bedrockModelSpecification = list(
          modelArn = "string",
          guardrail = list(
            identifier = "string",
            version = "string"
          ),
          traceStatus = "ENABLED"|"DISABLED",
          customPrompt = "string"
        )
      )
    ),
    buildtimeSettings = list(
      descriptiveBotBuilder = list(
        enabled = TRUE|FALSE,
        bedrockModelSpecification = list(
          modelArn = "string",
          guardrail = list(
            identifier = "string",
            version = "string"
          ),
          traceStatus = "ENABLED"|"DISABLED",
          customPrompt = "string"
        )
      ),
      sampleUtteranceGeneration = list(
        enabled = TRUE|FALSE,
        bedrockModelSpecification = list(
          modelArn = "string",
          guardrail = list(
            identifier = "string",
            version = "string"
          ),
          traceStatus = "ENABLED"|"DISABLED",
          customPrompt = "string"
        )
      )
    )
  )
)

Request syntax

svc$describe_bot_locale(
  botId = "string",
  botVersion = "string",
  localeId = "string"
)