interface JwtTokenTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnIndexPropsMixin.JwtTokenTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnIndexPropsMixin_JwtTokenTypeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnIndexPropsMixin.JwtTokenTypeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnIndexPropsMixin.JwtTokenTypeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnIndexPropsMixin » JwtTokenTypeConfigurationProperty |
Provides the configuration information for the JWT 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 jwtTokenTypeConfigurationProperty: kendra_mixins.CfnIndexPropsMixin.JwtTokenTypeConfigurationProperty = {
claimRegex: 'claimRegex',
groupAttributeField: 'groupAttributeField',
issuer: 'issuer',
keyLocation: 'keyLocation',
secretManagerArn: 'secretManagerArn',
url: 'url',
userNameAttributeField: 'userNameAttributeField',
};
Properties
| Name | Type | Description |
|---|---|---|
| claim | string | The regular expression that identifies the claim. |
| group | string | The group attribute field. |
| issuer? | string | The issuer of the token. |
| key | string | The location of the key. |
| secret | string | The Amazon Resource Name (arn) of the secret. |
| url? | string | The signing key URL. |
| user | string | The user name attribute field. |
claimRegex?
Type:
string
(optional)
The regular expression that identifies the claim.
groupAttributeField?
Type:
string
(optional)
The group attribute field.
issuer?
Type:
string
(optional)
The issuer of the token.
keyLocation?
Type:
string
(optional)
The location of the key.
secretManagerArn?
Type:
string
(optional)
The Amazon Resource Name (arn) of the secret.
url?
Type:
string
(optional)
The signing key URL.
userNameAttributeField?
Type:
string
(optional)
The user name attribute field.

.NET
Go
Java
Python
TypeScript