Interface CfnDataSource.GoogleDriveConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.GoogleDriveConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.GoogleDriveConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information to connect to Google Drive as your data source.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.kendra.*;
 GoogleDriveConfigurationProperty googleDriveConfigurationProperty = GoogleDriveConfigurationProperty.builder()
         .secretArn("secretArn")
         // the properties below are optional
         .excludeMimeTypes(List.of("excludeMimeTypes"))
         .excludeSharedDrives(List.of("excludeSharedDrives"))
         .excludeUserAccounts(List.of("excludeUserAccounts"))
         .exclusionPatterns(List.of("exclusionPatterns"))
         .fieldMappings(List.of(DataSourceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .inclusionPatterns(List.of("inclusionPatterns"))
         .build();
 

See Also: