Interface CfnDataSource.AclConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.AclConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.AclConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kendra.*;
AclConfigurationProperty aclConfigurationProperty = AclConfigurationProperty.builder()
.allowedGroupsColumnName("allowedGroupsColumnName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.AclConfigurationPropertystatic final classAn implementation forCfnDataSource.AclConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of groups, separated by semi-colons, that filters a query response based on user context.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedGroupsColumnName
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
UserContextfield of the Query operation. -
builder
-