Class: Aws::QuickSight::Types::KbTemplateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::KbTemplateConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The template configuration for a knowledge base. This object contains connector-specific configuration that defines how data is crawled and indexed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#template ⇒ Hash, ...
The connector configuration for the knowledge base data source.
Instance Attribute Details
#template ⇒ Hash, ...
The connector configuration for the knowledge base data source. The
structure depends on the connector type of the data source
referenced by DataSourceArn.
The template must be a JSON object. The required fields vary by connector type:
Amazon S3 (
S3V2) – RequiresconnectionConfigurationwithbucketName. SupportsfilterConfigurationfor inclusion and exclusion prefixes and patterns. SupportsaccessControlConfigurationanddeletionProtectionConfiguration.Google Drive (
GOOGLEDRIVEV3) – RequiresconnectionConfigurationwithauthTypeset toSERVICE_ACCOUNT. SupportsdataEntityConfigurationwithcrawlMyDrive,crawlSharedWithMe, andcrawlSharedDrives.OneDrive (
ONEDRIVEV3) – RequiresauthTypeat the template root level set toTWO_LEGGED_OAUTH. RequiresconnectionConfigurationwithtenantIdin UUID format. SupportsdataEntityConfigurationwithcrawlPersonalDrivesandcrawlSharedWithMe.SharePoint (
SHAREPOINTV3) – RequiresconnectionConfigurationwithtenantIdin UUID format. SupportsdataEntityConfigurationwithsiteUrls,crawlFiles, andcrawlPages.Web Crawler (
WEBCRAWLERV3) – RequiresconnectionConfigurationwithseedUrlsorsiteMapUrls(mutually exclusive) andauthType. SupportscrawlConfigurationfor crawl depth, rate limits, and scope. SupportsfilterConfigurationfor file size limits and URL patterns. Valid values forauthType:NO_AUTH,BASIC_AUTH,FORM,SAML.
The optional deletionProtectionConfiguration object is supported
by all connector types. It contains enableDeletionProtection and
deletionProtectionThreshold.
28796 28797 28798 28799 28800 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28796 class KbTemplateConfiguration < Struct.new( :template) SENSITIVE = [] include Aws::Structure end |