interface JsonTokenTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Kendra.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskendra#CfnIndexPropsMixin_JsonTokenTypeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kendra.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kendra.CfnIndexPropsMixin.JsonTokenTypeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kendra » 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 { aws_kendra as kendra } from '@aws-cdk/cfn-property-mixins';
const jsonTokenTypeConfigurationProperty: kendra.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