Class: Aws::ConnectWisdomService::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::ConnectWisdomService::Client
- Includes:
- Aws::ClientStubs
- Defined in:
- lib/aws-sdk-connectwisdomservice/client.rb
Overview
An API client for ConnectWisdomService. To construct a client, you need to configure a ‘:region` and `:credentials`.
client = Aws::ConnectWisdomService::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
See #initialize for a full list of supported configuration options.
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#create_assistant(params = {}) ⇒ Types::CreateAssistantResponse
Creates an Amazon Connect Wisdom assistant.
-
#create_assistant_association(params = {}) ⇒ Types::CreateAssistantAssociationResponse
Creates an association between an Amazon Connect Wisdom assistant and another resource.
-
#create_content(params = {}) ⇒ Types::CreateContentResponse
Creates Wisdom content.
-
#create_knowledge_base(params = {}) ⇒ Types::CreateKnowledgeBaseResponse
Creates a knowledge base.
-
#create_quick_response(params = {}) ⇒ Types::CreateQuickResponseResponse
Creates a Wisdom quick response.
-
#create_session(params = {}) ⇒ Types::CreateSessionResponse
Creates a session.
-
#delete_assistant(params = {}) ⇒ Struct
Deletes an assistant.
-
#delete_assistant_association(params = {}) ⇒ Struct
Deletes an assistant association.
-
#delete_content(params = {}) ⇒ Struct
Deletes the content.
-
#delete_import_job(params = {}) ⇒ Struct
Deletes the quick response import job.
-
#delete_knowledge_base(params = {}) ⇒ Struct
Deletes the knowledge base.
-
#delete_quick_response(params = {}) ⇒ Struct
Deletes a quick response.
-
#get_assistant(params = {}) ⇒ Types::GetAssistantResponse
Retrieves information about an assistant.
-
#get_assistant_association(params = {}) ⇒ Types::GetAssistantAssociationResponse
Retrieves information about an assistant association.
-
#get_content(params = {}) ⇒ Types::GetContentResponse
Retrieves content, including a pre-signed URL to download the content.
-
#get_content_summary(params = {}) ⇒ Types::GetContentSummaryResponse
Retrieves summary information about the content.
-
#get_import_job(params = {}) ⇒ Types::GetImportJobResponse
Retrieves the started import job.
-
#get_knowledge_base(params = {}) ⇒ Types::GetKnowledgeBaseResponse
Retrieves information about the knowledge base.
-
#get_quick_response(params = {}) ⇒ Types::GetQuickResponseResponse
Retrieves the quick response.
-
#get_recommendations(params = {}) ⇒ Types::GetRecommendationsResponse
Retrieves recommendations for the specified session.
-
#get_session(params = {}) ⇒ Types::GetSessionResponse
Retrieves information for a specified session.
-
#list_assistant_associations(params = {}) ⇒ Types::ListAssistantAssociationsResponse
Lists information about assistant associations.
-
#list_assistants(params = {}) ⇒ Types::ListAssistantsResponse
Lists information about assistants.
-
#list_contents(params = {}) ⇒ Types::ListContentsResponse
Lists the content.
-
#list_import_jobs(params = {}) ⇒ Types::ListImportJobsResponse
Lists information about import jobs.
-
#list_knowledge_bases(params = {}) ⇒ Types::ListKnowledgeBasesResponse
Lists the knowledge bases.
-
#list_quick_responses(params = {}) ⇒ Types::ListQuickResponsesResponse
Lists information about quick response.
-
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse
Lists the tags for the specified resource.
-
#notify_recommendations_received(params = {}) ⇒ Types::NotifyRecommendationsReceivedResponse
Removes the specified recommendations from the specified assistant’s queue of newly available recommendations.
-
#query_assistant(params = {}) ⇒ Types::QueryAssistantResponse
Performs a manual search against the specified assistant.
-
#remove_knowledge_base_template_uri(params = {}) ⇒ Struct
Removes a URI template from a knowledge base.
-
#search_content(params = {}) ⇒ Types::SearchContentResponse
Searches for content in a specified knowledge base.
-
#search_quick_responses(params = {}) ⇒ Types::SearchQuickResponsesResponse
Searches existing Wisdom quick responses in a Wisdom knowledge base.
-
#search_sessions(params = {}) ⇒ Types::SearchSessionsResponse
Searches for sessions.
-
#start_content_upload(params = {}) ⇒ Types::StartContentUploadResponse
Get a URL to upload content to a knowledge base.
-
#start_import_job(params = {}) ⇒ Types::StartImportJobResponse
Start an asynchronous job to import Wisdom resources from an uploaded source file.
-
#tag_resource(params = {}) ⇒ Struct
Adds the specified tags to the specified resource.
-
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags from the specified resource.
-
#update_content(params = {}) ⇒ Types::UpdateContentResponse
Updates information about the content.
-
#update_knowledge_base_template_uri(params = {}) ⇒ Types::UpdateKnowledgeBaseTemplateUriResponse
Updates the template URI of a knowledge base.
-
#update_quick_response(params = {}) ⇒ Types::UpdateQuickResponseResponse
Updates an existing Wisdom quick response.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
444 445 446 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 444 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2907 2908 2909 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2907 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2910 2911 2912 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2910 def errors_module Errors end |
Instance Method Details
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2880 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) tracer = config.telemetry_provider.tracer_provider.tracer( Aws::Telemetry.module_to_tracer_name('Aws::ConnectWisdomService') ) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config, tracer: tracer ) context[:gem_name] = 'aws-sdk-connectwisdomservice' context[:gem_version] = '1.42.0' Seahorse::Client::Request.new(handlers, context) end |
#create_assistant(params = {}) ⇒ Types::CreateAssistantResponse
Creates an Amazon Connect Wisdom assistant.
532 533 534 535 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 532 def create_assistant(params = {}, = {}) req = build_request(:create_assistant, params) req.send_request() end |
#create_assistant_association(params = {}) ⇒ Types::CreateAssistantAssociationResponse
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.
601 602 603 604 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 601 def create_assistant_association(params = {}, = {}) req = build_request(:create_assistant_association, params) req.send_request() end |
#create_content(params = {}) ⇒ Types::CreateContentResponse
Creates Wisdom content. Before to calling this API, use
- StartContentUpload][1
-
to upload an asset.
[1]: docs.aws.amazon.com/wisdom/latest/APIReference/API_StartContentUpload.html
710 711 712 713 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 710 def create_content(params = {}, = {}) req = build_request(:create_content, params) req.send_request() end |
#create_knowledge_base(params = {}) ⇒ Types::CreateKnowledgeBaseResponse
Creates a knowledge base.
<note markdown=“1”> 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:
1. Call [DeleteKnowledgeBase][2].
-
Call [DeleteDataIntegration].
-
Call [CreateDataIntegration] to recreate the DataIntegration or a create different one.
-
Call CreateKnowledgeBase.
</note>
[1]: docs.aws.amazon.com/appintegrations/latest/APIReference/Welcome.html [2]: docs.aws.amazon.com/wisdom/latest/APIReference/API_DeleteKnowledgeBase.html [3]: docs.aws.amazon.com/appintegrations/latest/APIReference/API_DeleteDataIntegration.html [4]: docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
841 842 843 844 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 841 def create_knowledge_base(params = {}, = {}) req = build_request(:create_knowledge_base, params) req.send_request() end |
#create_quick_response(params = {}) ⇒ Types::CreateQuickResponseResponse
Creates a Wisdom quick response.
966 967 968 969 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 966 def create_quick_response(params = {}, = {}) req = build_request(:create_quick_response, params) req.send_request() end |
#create_session(params = {}) ⇒ Types::CreateSessionResponse
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.
1031 1032 1033 1034 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1031 def create_session(params = {}, = {}) req = build_request(:create_session, params) req.send_request() end |
#delete_assistant(params = {}) ⇒ Struct
Deletes an assistant.
1054 1055 1056 1057 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1054 def delete_assistant(params = {}, = {}) req = build_request(:delete_assistant, params) req.send_request() end |
#delete_assistant_association(params = {}) ⇒ Struct
Deletes an assistant association.
1082 1083 1084 1085 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1082 def delete_assistant_association(params = {}, = {}) req = build_request(:delete_assistant_association, params) req.send_request() end |
#delete_content(params = {}) ⇒ Struct
Deletes the content.
1112 1113 1114 1115 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1112 def delete_content(params = {}, = {}) req = build_request(:delete_content, params) req.send_request() end |
#delete_import_job(params = {}) ⇒ Struct
Deletes the quick response import job.
1140 1141 1142 1143 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1140 def delete_import_job(params = {}, = {}) req = build_request(:delete_import_job, params) req.send_request() end |
#delete_knowledge_base(params = {}) ⇒ Struct
Deletes the knowledge base.
<note markdown=“1”> 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][2
-
and [CreateDataIntegration] in the
*Amazon AppIntegrations API Reference*.
</note>
[1]: docs.aws.amazon.com/appintegrations/latest/APIReference/Welcome.html [2]: docs.aws.amazon.com/appintegrations/latest/APIReference/API_DeleteDataIntegration.html [3]: docs.aws.amazon.com/appintegrations/latest/APIReference/API_CreateDataIntegration.html
1179 1180 1181 1182 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1179 def delete_knowledge_base(params = {}, = {}) req = build_request(:delete_knowledge_base, params) req.send_request() end |
#delete_quick_response(params = {}) ⇒ Struct
Deletes a quick response.
1208 1209 1210 1211 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1208 def delete_quick_response(params = {}, = {}) req = build_request(:delete_quick_response, params) req.send_request() end |
#get_assistant(params = {}) ⇒ Types::GetAssistantResponse
Retrieves information about an assistant.
1246 1247 1248 1249 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1246 def get_assistant(params = {}, = {}) req = build_request(:get_assistant, params) req.send_request() end |
#get_assistant_association(params = {}) ⇒ Types::GetAssistantAssociationResponse
Retrieves information about an assistant association.
1288 1289 1290 1291 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1288 def get_assistant_association(params = {}, = {}) req = build_request(:get_assistant_association, params) req.send_request() end |
#get_content(params = {}) ⇒ Types::GetContentResponse
Retrieves content, including a pre-signed URL to download the content.
1339 1340 1341 1342 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1339 def get_content(params = {}, = {}) req = build_request(:get_content, params) req.send_request() end |
#get_content_summary(params = {}) ⇒ Types::GetContentSummaryResponse
Retrieves summary information about the content.
1387 1388 1389 1390 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1387 def get_content_summary(params = {}, = {}) req = build_request(:get_content_summary, params) req.send_request() end |
#get_import_job(params = {}) ⇒ Types::GetImportJobResponse
Retrieves the started import job.
1433 1434 1435 1436 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1433 def get_import_job(params = {}, = {}) req = build_request(:get_import_job, params) req.send_request() end |
#get_knowledge_base(params = {}) ⇒ Types::GetKnowledgeBaseResponse
Retrieves information about the knowledge base.
1477 1478 1479 1480 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1477 def get_knowledge_base(params = {}, = {}) req = build_request(:get_knowledge_base, params) req.send_request() end |
#get_quick_response(params = {}) ⇒ Types::GetQuickResponseResponse
Retrieves the quick response.
1532 1533 1534 1535 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1532 def get_quick_response(params = {}, = {}) req = build_request(:get_quick_response, params) req.send_request() end |
#get_recommendations(params = {}) ⇒ Types::GetRecommendationsResponse
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].
[1]: docs.aws.amazon.com/wisdom/latest/APIReference/API_NotifyRecommendationsReceived.html [2]: docs.aws.amazon.com/wisdom/latest/APIReference/API_QueryAssistant.html
1613 1614 1615 1616 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1613 def get_recommendations(params = {}, = {}) req = build_request(:get_recommendations, params) req.send_request() end |
#get_session(params = {}) ⇒ Types::GetSessionResponse
Retrieves information for a specified session.
1653 1654 1655 1656 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1653 def get_session(params = {}, = {}) req = build_request(:get_session, params) req.send_request() end |
#list_assistant_associations(params = {}) ⇒ Types::ListAssistantAssociationsResponse
Lists information about assistant associations.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1705 1706 1707 1708 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1705 def list_assistant_associations(params = {}, = {}) req = build_request(:list_assistant_associations, params) req.send_request() end |
#list_assistants(params = {}) ⇒ Types::ListAssistantsResponse
Lists information about assistants.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1753 1754 1755 1756 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1753 def list_assistants(params = {}, = {}) req = build_request(:list_assistants, params) req.send_request() end |
#list_contents(params = {}) ⇒ Types::ListContentsResponse
Lists the content.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1811 1812 1813 1814 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1811 def list_contents(params = {}, = {}) req = build_request(:list_contents, params) req.send_request() end |
#list_import_jobs(params = {}) ⇒ Types::ListImportJobsResponse
Lists information about import jobs.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1868 1869 1870 1871 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1868 def list_import_jobs(params = {}, = {}) req = build_request(:list_import_jobs, params) req.send_request() end |
#list_knowledge_bases(params = {}) ⇒ Types::ListKnowledgeBasesResponse
Lists the knowledge bases.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1919 1920 1921 1922 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1919 def list_knowledge_bases(params = {}, = {}) req = build_request(:list_knowledge_bases, params) req.send_request() end |
#list_quick_responses(params = {}) ⇒ Types::ListQuickResponsesResponse
Lists information about quick response.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1980 1981 1982 1983 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 1980 def list_quick_responses(params = {}, = {}) req = build_request(:list_quick_responses, params) req.send_request() end |
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse
Lists the tags for the specified resource.
2009 2010 2011 2012 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2009 def (params = {}, = {}) req = build_request(:list_tags_for_resource, params) req.send_request() end |
#notify_recommendations_received(params = {}) ⇒ Types::NotifyRecommendationsReceivedResponse
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.
[1]: docs.aws.amazon.com/wisdom/latest/APIReference/API_GetRecommendations.html
2059 2060 2061 2062 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2059 def notify_recommendations_received(params = {}, = {}) req = build_request(:notify_recommendations_received, params) req.send_request() end |
#query_assistant(params = {}) ⇒ Types::QueryAssistantResponse
Performs a manual search against the specified assistant. To retrieve recommendations for an assistant, use [GetRecommendations].
[1]: docs.aws.amazon.com/wisdom/latest/APIReference/API_GetRecommendations.html
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2125 2126 2127 2128 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2125 def query_assistant(params = {}, = {}) req = build_request(:query_assistant, params) req.send_request() end |
#remove_knowledge_base_template_uri(params = {}) ⇒ Struct
Removes a URI template from a knowledge base.
2150 2151 2152 2153 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2150 def remove_knowledge_base_template_uri(params = {}, = {}) req = build_request(:remove_knowledge_base_template_uri, params) req.send_request() end |
#search_content(params = {}) ⇒ Types::SearchContentResponse
Searches for content in a specified knowledge base. Can be used to get a specific content resource by its name.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2221 2222 2223 2224 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2221 def search_content(params = {}, = {}) req = build_request(:search_content, params) req.send_request() end |
#search_quick_responses(params = {}) ⇒ Types::SearchQuickResponsesResponse
Searches existing Wisdom quick responses in a Wisdom knowledge base.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2329 2330 2331 2332 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2329 def search_quick_responses(params = {}, = {}) req = build_request(:search_quick_responses, params) req.send_request() end |
#search_sessions(params = {}) ⇒ Types::SearchSessionsResponse
Searches for sessions.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2388 2389 2390 2391 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2388 def search_sessions(params = {}, = {}) req = build_request(:search_sessions, params) req.send_request() end |
#start_content_upload(params = {}) ⇒ Types::StartContentUploadResponse
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.
[1]: docs.aws.amazon.com/wisdom/latest/APIReference/API_CreateContent.html [2]: docs.aws.amazon.com/wisdom/latest/APIReference/API_UpdateContent.html
2445 2446 2447 2448 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2445 def start_content_upload(params = {}, = {}) req = build_request(:start_content_upload, params) req.send_request() end |
#start_import_job(params = {}) ⇒ Types::StartImportJobResponse
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].
^
[1]: docs.aws.amazon.com/wisdom/latest/APIReference/API_StartContentUpload.html [2]: docs.aws.amazon.com/console/connect/quick-responses/add-data
2552 2553 2554 2555 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2552 def start_import_job(params = {}, = {}) req = build_request(:start_import_job, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
Adds the specified tags to the specified resource.
2580 2581 2582 2583 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2580 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags from the specified resource.
2606 2607 2608 2609 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2606 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |
#update_content(params = {}) ⇒ Types::UpdateContentResponse
Updates information about the content.
2697 2698 2699 2700 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2697 def update_content(params = {}, = {}) req = build_request(:update_content, params) req.send_request() end |
#update_knowledge_base_template_uri(params = {}) ⇒ Types::UpdateKnowledgeBaseTemplateUriResponse
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 `myInstanceName.lightning.force.com/lightning/r/Knowledge__kav/*$Id*/view`.
2750 2751 2752 2753 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2750 def update_knowledge_base_template_uri(params = {}, = {}) req = build_request(:update_knowledge_base_template_uri, params) req.send_request() end |
#update_quick_response(params = {}) ⇒ Types::UpdateQuickResponseResponse
Updates an existing Wisdom quick response.
2871 2872 2873 2874 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2871 def update_quick_response(params = {}, = {}) req = build_request(:update_quick_response, params) req.send_request() end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2900 2901 2902 |
# File 'lib/aws-sdk-connectwisdomservice/client.rb', line 2900 def waiter_names [] end |