public static interface OneDriveConfiguration.Builder extends SdkPojo, CopyableBuilder<OneDriveConfiguration.Builder,OneDriveConfiguration>
| Modifier and Type | Method and Description |
|---|---|
OneDriveConfiguration.Builder |
disableLocalGroups(Boolean disableLocalGroups)
A Boolean value that specifies whether local groups are disabled (
True) or enabled (
False). |
OneDriveConfiguration.Builder |
exclusionPatterns(Collection<String> exclusionPatterns)
List of regular expressions applied to documents.
|
OneDriveConfiguration.Builder |
exclusionPatterns(String... exclusionPatterns)
List of regular expressions applied to documents.
|
OneDriveConfiguration.Builder |
fieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)
A list of
DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom
fields in the Amazon Kendra index. |
OneDriveConfiguration.Builder |
fieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)
A list of
DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom
fields in the Amazon Kendra index. |
OneDriveConfiguration.Builder |
fieldMappings(DataSourceToIndexFieldMapping... fieldMappings)
A list of
DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom
fields in the Amazon Kendra index. |
OneDriveConfiguration.Builder |
inclusionPatterns(Collection<String> inclusionPatterns)
A list of regular expression patterns.
|
OneDriveConfiguration.Builder |
inclusionPatterns(String... inclusionPatterns)
A list of regular expression patterns.
|
default OneDriveConfiguration.Builder |
oneDriveUsers(Consumer<OneDriveUsers.Builder> oneDriveUsers)
A list of user accounts whose documents should be indexed.
|
OneDriveConfiguration.Builder |
oneDriveUsers(OneDriveUsers oneDriveUsers)
A list of user accounts whose documents should be indexed.
|
OneDriveConfiguration.Builder |
secretArn(String secretArn)
The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password to
connect to OneDrive.
|
OneDriveConfiguration.Builder |
tenantDomain(String tenantDomain)
The Azure Active Directory domain of the organization.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildOneDriveConfiguration.Builder tenantDomain(String tenantDomain)
The Azure Active Directory domain of the organization.
tenantDomain - The Azure Active Directory domain of the organization.OneDriveConfiguration.Builder secretArn(String secretArn)
The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password to connect to OneDrive. The user namd should be the application ID for the OneDrive application, and the password is the application key for the OneDrive application.
secretArn - The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and
password to connect to OneDrive. The user namd should be the application ID for the OneDrive
application, and the password is the application key for the OneDrive application.OneDriveConfiguration.Builder oneDriveUsers(OneDriveUsers oneDriveUsers)
A list of user accounts whose documents should be indexed.
oneDriveUsers - A list of user accounts whose documents should be indexed.default OneDriveConfiguration.Builder oneDriveUsers(Consumer<OneDriveUsers.Builder> oneDriveUsers)
A list of user accounts whose documents should be indexed.
This is a convenience that creates an instance of theOneDriveUsers.Builder avoiding the need to
create one manually via OneDriveUsers.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to oneDriveUsers(OneDriveUsers).oneDriveUsers - a consumer that will call methods on OneDriveUsers.BuilderoneDriveUsers(OneDriveUsers)OneDriveConfiguration.Builder inclusionPatterns(Collection<String> inclusionPatterns)
A list of regular expression patterns. Documents that match the pattern are included in the index. Documents that don't match the pattern are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.
The exclusion pattern is applied to the file name.
inclusionPatterns - A list of regular expression patterns. Documents that match the pattern are included in the index.
Documents that don't match the pattern are excluded from the index. If a document matches both an
inclusion pattern and an exclusion pattern, the document is not included in the index.
The exclusion pattern is applied to the file name.
OneDriveConfiguration.Builder inclusionPatterns(String... inclusionPatterns)
A list of regular expression patterns. Documents that match the pattern are included in the index. Documents that don't match the pattern are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.
The exclusion pattern is applied to the file name.
inclusionPatterns - A list of regular expression patterns. Documents that match the pattern are included in the index.
Documents that don't match the pattern are excluded from the index. If a document matches both an
inclusion pattern and an exclusion pattern, the document is not included in the index.
The exclusion pattern is applied to the file name.
OneDriveConfiguration.Builder exclusionPatterns(Collection<String> exclusionPatterns)
List of regular expressions applied to documents. Items that match the exclusion pattern are not indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the exclusion pattern isn't indexed.
The exclusion pattern is applied to the file name.
exclusionPatterns - List of regular expressions applied to documents. Items that match the exclusion pattern are not
indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the
exclusion pattern isn't indexed.
The exclusion pattern is applied to the file name.
OneDriveConfiguration.Builder exclusionPatterns(String... exclusionPatterns)
List of regular expressions applied to documents. Items that match the exclusion pattern are not indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the exclusion pattern isn't indexed.
The exclusion pattern is applied to the file name.
exclusionPatterns - List of regular expressions applied to documents. Items that match the exclusion pattern are not
indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the
exclusion pattern isn't indexed.
The exclusion pattern is applied to the file name.
OneDriveConfiguration.Builder fieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)
A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom
fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.
fieldMappings - A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to
custom fields in the Amazon Kendra index. You must first create the index fields before you map
OneDrive fields.OneDriveConfiguration.Builder fieldMappings(DataSourceToIndexFieldMapping... fieldMappings)
A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom
fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.
fieldMappings - A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to
custom fields in the Amazon Kendra index. You must first create the index fields before you map
OneDrive fields.OneDriveConfiguration.Builder fieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)
A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom
fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.
List.Builder
avoiding the need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called
immediately and its result is passed to #fieldMappings(List) .fieldMappings - a consumer that will call methods on List.Builder #fieldMappings(List) OneDriveConfiguration.Builder disableLocalGroups(Boolean disableLocalGroups)
A Boolean value that specifies whether local groups are disabled (True) or enabled (
False).
disableLocalGroups - A Boolean value that specifies whether local groups are disabled (True) or enabled (
False).Copyright © 2021. All rights reserved.