Module: Aws::ConnectWisdomService::Types
- Defined in:
- lib/aws-sdk-connectwisdomservice/types.rb
Defined Under Namespace
Classes: AccessDeniedException, AppIntegrationsConfiguration, AssistantAssociationData, AssistantAssociationInputData, AssistantAssociationOutputData, AssistantAssociationSummary, AssistantData, AssistantIntegrationConfiguration, AssistantSummary, Configuration, ConflictException, ConnectConfiguration, ContentData, ContentReference, ContentSummary, CreateAssistantAssociationRequest, CreateAssistantAssociationResponse, CreateAssistantRequest, CreateAssistantResponse, CreateContentRequest, CreateContentResponse, CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse, CreateQuickResponseRequest, CreateQuickResponseResponse, CreateSessionRequest, CreateSessionResponse, DeleteAssistantAssociationRequest, DeleteAssistantAssociationResponse, DeleteAssistantRequest, DeleteAssistantResponse, DeleteContentRequest, DeleteContentResponse, DeleteImportJobRequest, DeleteImportJobResponse, DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse, DeleteQuickResponseRequest, DeleteQuickResponseResponse, Document, DocumentText, ExternalSourceConfiguration, Filter, GetAssistantAssociationRequest, GetAssistantAssociationResponse, GetAssistantRequest, GetAssistantResponse, GetContentRequest, GetContentResponse, GetContentSummaryRequest, GetContentSummaryResponse, GetImportJobRequest, GetImportJobResponse, GetKnowledgeBaseRequest, GetKnowledgeBaseResponse, GetQuickResponseRequest, GetQuickResponseResponse, GetRecommendationsRequest, GetRecommendationsResponse, GetSessionRequest, GetSessionResponse, GroupingConfiguration, Highlight, ImportJobData, ImportJobSummary, KnowledgeBaseAssociationData, KnowledgeBaseData, KnowledgeBaseSummary, ListAssistantAssociationsRequest, ListAssistantAssociationsResponse, ListAssistantsRequest, ListAssistantsResponse, ListContentsRequest, ListContentsResponse, ListImportJobsRequest, ListImportJobsResponse, ListKnowledgeBasesRequest, ListKnowledgeBasesResponse, ListQuickResponsesRequest, ListQuickResponsesResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, NotifyRecommendationsReceivedError, NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse, PreconditionFailedException, QueryAssistantRequest, QueryAssistantResponse, QueryRecommendationTriggerData, QuickResponseContentProvider, QuickResponseContents, QuickResponseData, QuickResponseDataProvider, QuickResponseFilterField, QuickResponseOrderField, QuickResponseQueryField, QuickResponseSearchExpression, QuickResponseSearchResultData, QuickResponseSummary, RecommendationData, RecommendationTrigger, RecommendationTriggerData, RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse, RenderingConfiguration, RequestTimeoutException, ResourceNotFoundException, ResultData, SearchContentRequest, SearchContentResponse, SearchExpression, SearchQuickResponsesRequest, SearchQuickResponsesResponse, SearchSessionsRequest, SearchSessionsResponse, ServerSideEncryptionConfiguration, ServiceQuotaExceededException, SessionData, SessionIntegrationConfiguration, SessionSummary, SourceConfiguration, StartContentUploadRequest, StartContentUploadResponse, StartImportJobRequest, StartImportJobResponse, TagResourceRequest, TagResourceResponse, TooManyTagsException, UntagResourceRequest, UntagResourceResponse, UpdateContentRequest, UpdateContentResponse, UpdateKnowledgeBaseTemplateUriRequest, UpdateKnowledgeBaseTemplateUriResponse, UpdateQuickResponseRequest, UpdateQuickResponseResponse, ValidationException
Instance Attribute Summary collapse
-
#app_integrations ⇒ Types::AppIntegrationsConfiguration
Configuration information for Amazon AppIntegrations to automatically ingest content.
-
#connect_configuration ⇒ Types::ConnectConfiguration
The configuration information of the Amazon Connect data source.
-
#content ⇒ String
The content of the quick response.
-
#knowledge_base_association ⇒ Types::KnowledgeBaseAssociationData
The knowledge base where output data is sent.
-
#knowledge_base_id ⇒ String
The identifier of the knowledge base.
-
#query ⇒ Types::QueryRecommendationTriggerData
Data associated with the QUERY RecommendationTriggerType.
Instance Attribute Details
#app_integrations ⇒ Types::AppIntegrationsConfiguration
Configuration information for Amazon AppIntegrations to automatically ingest content.
3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 3499 class SourceConfiguration < Struct.new( :app_integrations, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AppIntegrations < SourceConfiguration; end class Unknown < SourceConfiguration; end end |
#connect_configuration ⇒ Types::ConnectConfiguration
The configuration information of the Amazon Connect data source.
409 410 411 412 413 414 415 416 417 418 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 409 class Configuration < Struct.new( :connect_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ConnectConfiguration < Configuration; end class Unknown < Configuration; end end |
#content ⇒ String
The content of the quick response.
2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 2426 class QuickResponseContentProvider < Struct.new( :content, :unknown) SENSITIVE = [:content] include Aws::Structure include Aws::Structure::Union class Content < QuickResponseContentProvider; end class Unknown < QuickResponseContentProvider; end end |
#knowledge_base_association ⇒ Types::KnowledgeBaseAssociationData
The knowledge base where output data is sent.
186 187 188 189 190 191 192 193 194 195 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 186 class AssistantAssociationOutputData < Struct.new( :knowledge_base_association, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class KnowledgeBaseAssociation < AssistantAssociationOutputData; end class Unknown < AssistantAssociationOutputData; end end |
#knowledge_base_id ⇒ String
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.
165 166 167 168 169 170 171 172 173 174 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 165 class AssistantAssociationInputData < Struct.new( :knowledge_base_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class KnowledgeBaseId < AssistantAssociationInputData; end class Unknown < AssistantAssociationInputData; end end |
#query ⇒ Types::QueryRecommendationTriggerData
Data associated with the QUERY RecommendationTriggerType.
3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 3072 class RecommendationTriggerData < Struct.new( :query, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Query < RecommendationTriggerData; end class Unknown < RecommendationTriggerData; end end |