kendra / Client / describe_thesaurus
describe_thesaurus#
- kendra.Client.describe_thesaurus(**kwargs)#
Gets information about an existing Amazon Kendra thesaurus.
See also: AWS API Documentation
Request Syntax
response = client.describe_thesaurus( Id='string', IndexId='string' )
- Parameters:
Id (string) –
[REQUIRED]
The identifier of the thesaurus you want to get information on.
IndexId (string) –
[REQUIRED]
The identifier of the index for the thesaurus.
- Return type:
dict
- Returns:
Response Syntax
{ 'Id': 'string', 'IndexId': 'string', 'Name': 'string', 'Description': 'string', 'Status': 'CREATING'|'ACTIVE'|'DELETING'|'UPDATING'|'ACTIVE_BUT_UPDATE_FAILED'|'FAILED', 'ErrorMessage': 'string', 'CreatedAt': datetime(2015, 1, 1), 'UpdatedAt': datetime(2015, 1, 1), 'RoleArn': 'string', 'SourceS3Path': { 'Bucket': 'string', 'Key': 'string' }, 'FileSizeBytes': 123, 'TermCount': 123, 'SynonymRuleCount': 123 }
Response Structure
(dict) –
Id (string) –
The identifier of the thesaurus.
IndexId (string) –
The identifier of the index for the thesaurus.
Name (string) –
The thesaurus name.
Description (string) –
The thesaurus description.
Status (string) –
The current status of the thesaurus. When the value is
ACTIVE
, queries are able to use the thesaurus. If theStatus
field value isFAILED
, theErrorMessage
field provides more information.If the status is
ACTIVE_BUT_UPDATE_FAILED
, it means that Amazon Kendra could not ingest the new thesaurus file. The old thesaurus file is still active.ErrorMessage (string) –
When the
Status
field value isFAILED
, theErrorMessage
field provides more information.CreatedAt (datetime) –
The Unix timestamp when the thesaurus was created.
UpdatedAt (datetime) –
The Unix timestamp when the thesaurus was last updated.
RoleArn (string) –
An IAM role that gives Amazon Kendra permissions to access thesaurus file specified in
SourceS3Path
.SourceS3Path (dict) –
Information required to find a specific file in an Amazon S3 bucket.
Bucket (string) –
The name of the S3 bucket that contains the file.
Key (string) –
The name of the file.
FileSizeBytes (integer) –
The size of the thesaurus file in bytes.
TermCount (integer) –
The number of unique terms in the thesaurus file. For example, the synonyms
a,b,c
anda=>d
, the term count would be 4.SynonymRuleCount (integer) –
The number of synonym rules in the thesaurus file.
Exceptions
kendra.Client.exceptions.ValidationException
kendra.Client.exceptions.ResourceNotFoundException
kendra.Client.exceptions.ThrottlingException
kendra.Client.exceptions.AccessDeniedException
kendra.Client.exceptions.InternalServerException