Interface CfnIndex.JwtTokenTypeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIndex.JwtTokenTypeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnIndex

@Stability(Stable) public static interface CfnIndex.JwtTokenTypeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kendra.*;
 JwtTokenTypeConfigurationProperty jwtTokenTypeConfigurationProperty = JwtTokenTypeConfigurationProperty.builder()
         .keyLocation("keyLocation")
         // the properties below are optional
         .claimRegex("claimRegex")
         .groupAttributeField("groupAttributeField")
         .issuer("issuer")
         .secretManagerArn("secretManagerArn")
         .url("url")
         .userNameAttributeField("userNameAttributeField")
         .build();
 

See Also: