interface AclConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Kendra.CfnDataSource.AclConfigurationProperty |
Java | software.amazon.awscdk.services.kendra.CfnDataSource.AclConfigurationProperty |
Python | aws_cdk.aws_kendra.CfnDataSource.AclConfigurationProperty |
TypeScript | @aws-cdk/aws-kendra » CfnDataSource » AclConfigurationProperty |
Provides information about the column that should be used for filtering the query response by groups.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kendra from '@aws-cdk/aws-kendra';
const aclConfigurationProperty: kendra.CfnDataSource.AclConfigurationProperty = {
allowedGroupsColumnName: 'allowedGroupsColumnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string | A list of groups, separated by semi-colons, that filters a query response based on user context. |
allowedGroupsColumnName
Type:
string
A list of groups, separated by semi-colons, that filters a query response based on user context.
The document is only returned to users that are in one of the groups specified in the UserContext field of the Query operation.

.NET
Java
Python
TypeScript