Wisdom
This page documents function available when using the Wisdom
module, created with @service Wisdom
.
Index
Main.Wisdom.create_assistant
Main.Wisdom.create_assistant_association
Main.Wisdom.create_content
Main.Wisdom.create_knowledge_base
Main.Wisdom.create_quick_response
Main.Wisdom.create_session
Main.Wisdom.delete_assistant
Main.Wisdom.delete_assistant_association
Main.Wisdom.delete_content
Main.Wisdom.delete_import_job
Main.Wisdom.delete_knowledge_base
Main.Wisdom.delete_quick_response
Main.Wisdom.get_assistant
Main.Wisdom.get_assistant_association
Main.Wisdom.get_content
Main.Wisdom.get_content_summary
Main.Wisdom.get_import_job
Main.Wisdom.get_knowledge_base
Main.Wisdom.get_quick_response
Main.Wisdom.get_recommendations
Main.Wisdom.get_session
Main.Wisdom.list_assistant_associations
Main.Wisdom.list_assistants
Main.Wisdom.list_contents
Main.Wisdom.list_import_jobs
Main.Wisdom.list_knowledge_bases
Main.Wisdom.list_quick_responses
Main.Wisdom.list_tags_for_resource
Main.Wisdom.notify_recommendations_received
Main.Wisdom.query_assistant
Main.Wisdom.remove_knowledge_base_template_uri
Main.Wisdom.search_content
Main.Wisdom.search_quick_responses
Main.Wisdom.search_sessions
Main.Wisdom.start_content_upload
Main.Wisdom.start_import_job
Main.Wisdom.tag_resource
Main.Wisdom.untag_resource
Main.Wisdom.update_content
Main.Wisdom.update_knowledge_base_template_uri
Main.Wisdom.update_quick_response
Documentation
Main.Wisdom.create_assistant
— Methodcreate_assistant(name, type)
create_assistant(name, type, params::Dict{String,<:Any})
Creates an Amazon Connect Wisdom assistant.
Arguments
name
: The name of the assistant.type
: The type of assistant.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs."description"
: The description of the assistant."serverSideEncryptionConfiguration"
: The configuration information for the customer managed key used for encryption. The customer managed key must have a policy that allows kms:CreateGrant, kms:DescribeKey, and kms:Decrypt/kms:GenerateDataKey permissions to the IAM identity using the key to invoke Wisdom. To use Wisdom with chat, the key policy must also allow kms:Decrypt, kms:GenerateDataKey*, and kms:DescribeKey permissions to the connect.amazonaws.com service principal. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance."tags"
: The tags used to organize, track, or control access for this resource.
Main.Wisdom.create_assistant_association
— Methodcreate_assistant_association(assistant_id, association, association_type)
create_assistant_association(assistant_id, association, association_type, params::Dict{String,<:Any})
Creates an association between an Amazon Connect Wisdom assistant and another resource. Currently, the only supported association is with a knowledge base. An assistant can have only a single association.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.association
: The identifier of the associated resource.association_type
: The type of association.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs."tags"
: The tags used to organize, track, or control access for this resource.
Main.Wisdom.create_content
— Methodcreate_content(knowledge_base_id, name, upload_id)
create_content(knowledge_base_id, name, upload_id, params::Dict{String,<:Any})
Creates Wisdom content. Before to calling this API, use StartContentUpload to upload an asset.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.name
: The name of the content. Each piece of content in a knowledge base must have a unique name. You can retrieve a piece of content using only its knowledge base and its name with the SearchContent API.upload_id
: A pointer to the uploaded asset. This value is returned by StartContentUpload.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs."metadata"
: A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift."overrideLinkOutUri"
: The URI you want to use for the article. If the knowledge base has a templateUri, setting this argument overrides it for this piece of content."tags"
: The tags used to organize, track, or control access for this resource."title"
: The title of the content. If not set, the title is equal to the name.
Main.Wisdom.create_knowledge_base
— Methodcreate_knowledge_base(knowledge_base_type, name)
create_knowledge_base(knowledge_base_type, name, params::Dict{String,<:Any})
Creates a knowledge base. When using this API, you cannot reuse Amazon AppIntegrations DataIntegrations with external knowledge bases such as Salesforce and ServiceNow. If you do, you'll get an InvalidRequestException error. For example, you're programmatically managing your external knowledge base, and you want to add or remove one of the fields that is being ingested from Salesforce. Do the following: Call DeleteKnowledgeBase. Call DeleteDataIntegration. Call CreateDataIntegration to recreate the DataIntegration or a create different one. Call CreateKnowledgeBase.
Arguments
knowledge_base_type
: The type of knowledge base. Only CUSTOM knowledge bases allow you to upload your own content. EXTERNAL knowledge bases support integrations with third-party systems whose content is synchronized automatically.name
: The name of the knowledge base.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs."description"
: The description."renderingConfiguration"
: Information about how to render the content."serverSideEncryptionConfiguration"
: The configuration information for the customer managed key used for encryption. This KMS key must have a policy that allows kms:CreateGrant, kms:DescribeKey, and kms:Decrypt/kms:GenerateDataKey permissions to the IAM identity using the key to invoke Wisdom. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance."sourceConfiguration"
: The source of the knowledge base content. Only set this argument for EXTERNAL knowledge bases."tags"
: The tags used to organize, track, or control access for this resource.
Main.Wisdom.create_quick_response
— Methodcreate_quick_response(content, knowledge_base_id, name)
create_quick_response(content, knowledge_base_id, name, params::Dict{String,<:Any})
Creates a Wisdom quick response.
Arguments
content
: The content of the quick response.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.name
: The name of the quick response.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"channels"
: The Amazon Connect channels this quick response applies to."clientToken"
: A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs."contentType"
: The media type of the quick response content. Use application/x.quickresponse;format=plain for a quick response written in plain text. Use application/x.quickresponse;format=markdown for a quick response written in richtext."description"
: The description of the quick response."groupingConfiguration"
: The configuration information of the user groups that the quick response is accessible to."isActive"
: Whether the quick response is active."language"
: The language code value for the language in which the quick response is written. The supported language codes include deDE, enUS, esES, frFR, idID, itIT, jaJP, koKR, ptBR, zhCN, zh_TW"shortcutKey"
: The shortcut key of the quick response. The value should be unique across the knowledge base."tags"
: The tags used to organize, track, or control access for this resource.
Main.Wisdom.create_session
— Methodcreate_session(assistant_id, name)
create_session(assistant_id, name, params::Dict{String,<:Any})
Creates a session. A session is a contextual container used for generating recommendations. Amazon Connect creates a new Wisdom session for each contact on which Wisdom is enabled.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.name
: The name of the session.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs."description"
: The description."tags"
: The tags used to organize, track, or control access for this resource.
Main.Wisdom.delete_assistant
— Methoddelete_assistant(assistant_id)
delete_assistant(assistant_id, params::Dict{String,<:Any})
Deletes an assistant.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.delete_assistant_association
— Methoddelete_assistant_association(assistant_association_id, assistant_id)
delete_assistant_association(assistant_association_id, assistant_id, params::Dict{String,<:Any})
Deletes an assistant association.
Arguments
assistant_association_id
: The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.delete_content
— Methoddelete_content(content_id, knowledge_base_id)
delete_content(content_id, knowledge_base_id, params::Dict{String,<:Any})
Deletes the content.
Arguments
content_id
: The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.delete_import_job
— Methoddelete_import_job(import_job_id, knowledge_base_id)
delete_import_job(import_job_id, knowledge_base_id, params::Dict{String,<:Any})
Deletes the quick response import job.
Arguments
import_job_id
: The identifier of the import job to be deleted.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it.
Main.Wisdom.delete_knowledge_base
— Methoddelete_knowledge_base(knowledge_base_id)
delete_knowledge_base(knowledge_base_id, params::Dict{String,<:Any})
Deletes the knowledge base. When you use this API to delete an external knowledge base such as Salesforce or ServiceNow, you must also delete the Amazon AppIntegrations DataIntegration. This is because you can't reuse the DataIntegration after it's been associated with an external knowledge base. However, you can delete and recreate it. See DeleteDataIntegration and CreateDataIntegration in the Amazon AppIntegrations API Reference.
Arguments
knowledge_base_id
: The knowledge base to delete content from. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.delete_quick_response
— Methoddelete_quick_response(knowledge_base_id, quick_response_id)
delete_quick_response(knowledge_base_id, quick_response_id, params::Dict{String,<:Any})
Deletes a quick response.
Arguments
knowledge_base_id
: The knowledge base from which the quick response is deleted. The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it.quick_response_id
: The identifier of the quick response to delete.
Main.Wisdom.get_assistant
— Methodget_assistant(assistant_id)
get_assistant(assistant_id, params::Dict{String,<:Any})
Retrieves information about an assistant.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.get_assistant_association
— Methodget_assistant_association(assistant_association_id, assistant_id)
get_assistant_association(assistant_association_id, assistant_id, params::Dict{String,<:Any})
Retrieves information about an assistant association.
Arguments
assistant_association_id
: The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.get_content
— Methodget_content(content_id, knowledge_base_id)
get_content(content_id, knowledge_base_id, params::Dict{String,<:Any})
Retrieves content, including a pre-signed URL to download the content.
Arguments
content_id
: The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.get_content_summary
— Methodget_content_summary(content_id, knowledge_base_id)
get_content_summary(content_id, knowledge_base_id, params::Dict{String,<:Any})
Retrieves summary information about the content.
Arguments
content_id
: The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.get_import_job
— Methodget_import_job(import_job_id, knowledge_base_id)
get_import_job(import_job_id, knowledge_base_id, params::Dict{String,<:Any})
Retrieves the started import job.
Arguments
import_job_id
: The identifier of the import job to retrieve.knowledge_base_id
: The identifier of the knowledge base that the import job belongs to.
Main.Wisdom.get_knowledge_base
— Methodget_knowledge_base(knowledge_base_id)
get_knowledge_base(knowledge_base_id, params::Dict{String,<:Any})
Retrieves information about the knowledge base.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.get_quick_response
— Methodget_quick_response(knowledge_base_id, quick_response_id)
get_quick_response(knowledge_base_id, quick_response_id, params::Dict{String,<:Any})
Retrieves the quick response.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base.quick_response_id
: The identifier of the quick response.
Main.Wisdom.get_recommendations
— Methodget_recommendations(assistant_id, session_id)
get_recommendations(assistant_id, session_id, params::Dict{String,<:Any})
Retrieves recommendations for the specified session. To avoid retrieving the same recommendations in subsequent calls, use NotifyRecommendationsReceived. This API supports long-polling behavior with the waitTimeSeconds parameter. Short poll is the default behavior and only returns recommendations already available. To perform a manual query against an assistant, use QueryAssistant.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.session_id
: The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."waitTimeSeconds"
: The duration (in seconds) for which the call waits for a recommendation to be made available before returning. If a recommendation is available, the call returns sooner than WaitTimeSeconds. If no messages are available and the wait time expires, the call returns successfully with an empty list.
Main.Wisdom.get_session
— Methodget_session(assistant_id, session_id)
get_session(assistant_id, session_id, params::Dict{String,<:Any})
Retrieves information for a specified session.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.session_id
: The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.list_assistant_associations
— Methodlist_assistant_associations(assistant_id)
list_assistant_associations(assistant_id, params::Dict{String,<:Any})
Lists information about assistant associations.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.list_assistants
— Methodlist_assistants()
list_assistants(params::Dict{String,<:Any})
Lists information about assistants.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.list_contents
— Methodlist_contents(knowledge_base_id)
list_contents(knowledge_base_id, params::Dict{String,<:Any})
Lists the content.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.list_import_jobs
— Methodlist_import_jobs(knowledge_base_id)
list_import_jobs(knowledge_base_id, params::Dict{String,<:Any})
Lists information about import jobs.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.list_knowledge_bases
— Methodlist_knowledge_bases()
list_knowledge_bases(params::Dict{String,<:Any})
Lists the knowledge bases.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.list_quick_responses
— Methodlist_quick_responses(knowledge_base_id)
list_quick_responses(knowledge_base_id, params::Dict{String,<:Any})
Lists information about quick response.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.list_tags_for_resource
— Methodlist_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})
Lists the tags for the specified resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) of the resource.
Main.Wisdom.notify_recommendations_received
— Methodnotify_recommendations_received(assistant_id, recommendation_ids, session_id)
notify_recommendations_received(assistant_id, recommendation_ids, session_id, params::Dict{String,<:Any})
Removes the specified recommendations from the specified assistant's queue of newly available recommendations. You can use this API in conjunction with GetRecommendations and a waitTimeSeconds input for long-polling behavior and avoiding duplicate recommendations.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.recommendation_ids
: The identifiers of the recommendations.session_id
: The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.query_assistant
— Methodquery_assistant(assistant_id, query_text)
query_assistant(assistant_id, query_text, params::Dict{String,<:Any})
Performs a manual search against the specified assistant. To retrieve recommendations for an assistant, use GetRecommendations.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.query_text
: The text to search for.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.remove_knowledge_base_template_uri
— Methodremove_knowledge_base_template_uri(knowledge_base_id)
remove_knowledge_base_template_uri(knowledge_base_id, params::Dict{String,<:Any})
Removes a URI template from a knowledge base.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Main.Wisdom.search_content
— Methodsearch_content(knowledge_base_id, search_expression)
search_content(knowledge_base_id, search_expression, params::Dict{String,<:Any})
Searches for content in a specified knowledge base. Can be used to get a specific content resource by its name.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.search_expression
: The search expression to filter results.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.search_quick_responses
— Methodsearch_quick_responses(knowledge_base_id, search_expression)
search_quick_responses(knowledge_base_id, search_expression, params::Dict{String,<:Any})
Searches existing Wisdom quick responses in a Wisdom knowledge base.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.search_expression
: The search expression for querying the quick response.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"attributes"
: The user-defined Amazon Connect contact attributes to be resolved when search results are returned."maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.search_sessions
— Methodsearch_sessions(assistant_id, search_expression)
search_sessions(assistant_id, search_expression, params::Dict{String,<:Any})
Searches for sessions.
Arguments
assistant_id
: The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.search_expression
: The search expression to filter results.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"maxResults"
: The maximum number of results to return per page."nextToken"
: The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Main.Wisdom.start_content_upload
— Methodstart_content_upload(content_type, knowledge_base_id)
start_content_upload(content_type, knowledge_base_id, params::Dict{String,<:Any})
Get a URL to upload content to a knowledge base. To upload content, first make a PUT request to the returned URL with your file, making sure to include the required headers. Then use CreateContent to finalize the content creation process or UpdateContent to modify an existing resource. You can only upload content to a knowledge base of type CUSTOM.
Arguments
content_type
: The type of content to upload.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"presignedUrlTimeToLive"
: The expected expiration time of the generated presigned URL, specified in minutes.
Main.Wisdom.start_import_job
— Methodstart_import_job(import_job_type, knowledge_base_id, upload_id)
start_import_job(import_job_type, knowledge_base_id, upload_id, params::Dict{String,<:Any})
Start an asynchronous job to import Wisdom resources from an uploaded source file. Before calling this API, use StartContentUpload to upload an asset that contains the resource data. For importing Wisdom quick responses, you need to upload a csv file including the quick responses. For information about how to format the csv file for importing quick responses, see Import quick responses.
Arguments
import_job_type
: The type of the import job. For importing quick response resource, set the value to QUICK_RESPONSES.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICKRESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN. For importing Wisdom quick responses, this should be a QUICKRESPONSES type knowledge base.upload_id
: A pointer to the uploaded asset. This value is returned by StartContentUpload.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"clientToken"
: The tags used to organize, track, or control access for this resource."externalSourceConfiguration"
: The configuration information of the external source that the resource data are imported from."metadata"
: The metadata fields of the imported Wisdom resources.
Main.Wisdom.tag_resource
— Methodtag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})
Adds the specified tags to the specified resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) of the resource.tags
: The tags used to organize, track, or control access for this resource.
Main.Wisdom.untag_resource
— Methoduntag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})
Removes the specified tags from the specified resource.
Arguments
resource_arn
: The Amazon Resource Name (ARN) of the resource.tag_keys
: The tag keys.
Main.Wisdom.update_content
— Methodupdate_content(content_id, knowledge_base_id)
update_content(content_id, knowledge_base_id, params::Dict{String,<:Any})
Updates information about the content.
Arguments
content_id
: The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"metadata"
: A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift."overrideLinkOutUri"
: The URI for the article. If the knowledge base has a templateUri, setting this argument overrides it for this piece of content. To remove an existing overrideLinkOurUri, exclude this argument and set removeOverrideLinkOutUri to true."removeOverrideLinkOutUri"
: Unset the existing overrideLinkOutUri if it exists."revisionId"
: The revisionId of the content resource to update, taken from an earlier call to GetContent, GetContentSummary, SearchContent, or ListContents. If included, this argument acts as an optimistic lock to ensure content was not modified since it was last read. If it has been modified, this API throws a PreconditionFailedException."title"
: The title of the content."uploadId"
: A pointer to the uploaded asset. This value is returned by StartContentUpload.
Main.Wisdom.update_knowledge_base_template_uri
— Methodupdate_knowledge_base_template_uri(knowledge_base_id, template_uri)
update_knowledge_base_template_uri(knowledge_base_id, template_uri, params::Dict{String,<:Any})
Updates the template URI of a knowledge base. This is only supported for knowledge bases of type EXTERNAL. Include a single variable in {variable} format; this interpolated by Wisdom using ingested content. For example, if you ingest a Salesforce article, it has an Id value, and you can set the template URI to https://myInstanceName.lightning.force.com/lightning/r/Knowledge__kav/{Id}/view.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.template_uri
: The template URI to update.
Main.Wisdom.update_quick_response
— Methodupdate_quick_response(knowledge_base_id, quick_response_id)
update_quick_response(knowledge_base_id, quick_response_id, params::Dict{String,<:Any})
Updates an existing Wisdom quick response.
Arguments
knowledge_base_id
: The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it. Can be either the ID or the ARN. URLs cannot contain the ARN.quick_response_id
: The identifier of the quick response.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"channels"
: The Amazon Connect contact channels this quick response applies to. The supported contact channel types include Chat."content"
: The updated content of the quick response."contentType"
: The media type of the quick response content. Use application/x.quickresponse;format=plain for quick response written in plain text. Use application/x.quickresponse;format=markdown for quick response written in richtext."description"
: The updated description of the quick response."groupingConfiguration"
: The updated grouping configuration of the quick response."isActive"
: Whether the quick response is active."language"
: The language code value for the language in which the quick response is written. The supported language codes include deDE, enUS, esES, frFR, idID, itIT, jaJP, koKR, ptBR, zhCN, zh_TW"name"
: The name of the quick response."removeDescription"
: Whether to remove the description from the quick response."removeGroupingConfiguration"
: Whether to remove the grouping configuration of the quick response."removeShortcutKey"
: Whether to remove the shortcut key of the quick response."shortcutKey"
: The shortcut key of the quick response. The value should be unique across the knowledge base.