Skip to content

Describe Vocabulary

connect_describe_vocabulary R Documentation

Describes the specified vocabulary

Description

Describes the specified vocabulary.

Usage

connect_describe_vocabulary(InstanceId, VocabularyId)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

VocabularyId

[required] The identifier of the custom vocabulary.

Value

A list with the following syntax:

list(
  Vocabulary = list(
    Name = "string",
    Id = "string",
    Arn = "string",
    LanguageCode = "ar-AE"|"de-CH"|"de-DE"|"en-AB"|"en-AU"|"en-GB"|"en-IE"|"en-IN"|"en-US"|"en-WL"|"es-ES"|"es-US"|"fr-CA"|"fr-FR"|"hi-IN"|"it-IT"|"ja-JP"|"ko-KR"|"pt-BR"|"pt-PT"|"zh-CN"|"en-NZ"|"en-ZA",
    State = "CREATION_IN_PROGRESS"|"ACTIVE"|"CREATION_FAILED"|"DELETE_IN_PROGRESS",
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    FailureReason = "string",
    Content = "string",
    Tags = list(
      "string"
    )
  )
)

Request syntax

svc$describe_vocabulary(
  InstanceId = "string",
  VocabularyId = "string"
)