ConnectWisdomService.Paginator.
ListKnowledgeBases
¶paginator = client.get_paginator('list_knowledge_bases')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from ConnectWisdomService.Client.list_knowledge_bases()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'knowledgeBaseSummaries': [
{
'description': 'string',
'knowledgeBaseArn': 'string',
'knowledgeBaseId': 'string',
'knowledgeBaseType': 'EXTERNAL'|'CUSTOM',
'name': 'string',
'renderingConfiguration': {
'templateUri': 'string'
},
'serverSideEncryptionConfiguration': {
'kmsKeyId': 'string'
},
'sourceConfiguration': {
'appIntegrations': {
'appIntegrationArn': 'string',
'objectFields': [
'string',
]
}
},
'status': 'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'ACTIVE'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'|'DELETED',
'tags': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
Information about the knowledge bases.
Summary information about the knowledge base.
The description of the knowledge base.
The Amazon Resource Name (ARN) of the knowledge base.
The identifier of the knowledge base.
The type of knowledge base.
The name of the knowledge base.
Information about how to render the content.
A URI template containing exactly one variable in ${variableName}
format. This can only be set for EXTERNAL
knowledge bases. For Salesforce and ServiceNow, the variable must be one of the following:
Id
, ArticleNumber
, VersionNumber
, Title
, PublishStatus
, or IsDeleted
number
, short_description
, sys_mod_count
, workflow_state
, or active
<p>The variable is replaced with the actual value for a piece of content when calling <a href="https://docs.aws.amazon.com/wisdom/latest/APIReference/API_GetContent.html">GetContent</a>. </p>
The KMS key used for encryption.
The KMS key. For information about valid ID values, see Key identifiers (KeyId).
Configuration information about the external data source.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: appIntegrations
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
Configuration information for Amazon AppIntegrations to automatically ingest content.
The Amazon Resource Name (ARN) of the AppIntegrations DataIntegration to use for ingesting content.
The fields from the source that are made available to your agents in Wisdom.
Id
, ArticleNumber
, VersionNumber
, Title
, PublishStatus
, and IsDeleted
.number
, short_description
, sys_mod_count
, workflow_state
, and active
.Make sure to include additional fields. These fields are indexed and used to source recommendations.
The status of the knowledge base summary.
The tags used to organize, track, or control access for this resource.
A token to resume pagination.