interface JsonTokenTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnIndexPropsMixin_JsonTokenTypeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnIndexPropsMixin » JsonTokenTypeConfigurationProperty |
Provides the configuration information for the JSON token type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kendra_mixins } from '@aws-cdk/mixins-preview/aws-kendra';
const jsonTokenTypeConfigurationProperty: kendra_mixins.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty = {
groupAttributeField: 'groupAttributeField',
userNameAttributeField: 'userNameAttributeField',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The group attribute field. |
| user | string | The user name attribute field. |
groupAttributeField?
Type:
string
(optional)
The group attribute field.
userNameAttributeField?
Type:
string
(optional)
The user name attribute field.

.NET
Go
Java
Python
TypeScript