public static interface CfnIndex.JwtTokenTypeConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnIndex.JwtTokenTypeConfigurationProperty.Builder
A builder for
CfnIndex.JwtTokenTypeConfigurationProperty |
static class |
CfnIndex.JwtTokenTypeConfigurationProperty.Jsii$Proxy
An implementation for
CfnIndex.JwtTokenTypeConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnIndex.JwtTokenTypeConfigurationProperty.Builder |
builder() |
default java.lang.String |
getClaimRegex()
The regular expression that identifies the claim.
|
default java.lang.String |
getGroupAttributeField()
The group attribute field.
|
default java.lang.String |
getIssuer()
The issuer of the token.
|
java.lang.String |
getKeyLocation()
The location of the key.
|
default java.lang.String |
getSecretManagerArn()
The Amazon Resource Name (arn) of the secret.
|
default java.lang.String |
getUrl()
The signing key URL.
|
default java.lang.String |
getUserNameAttributeField()
The user name attribute field.
|
java.lang.String getKeyLocation()
default java.lang.String getClaimRegex()
default java.lang.String getGroupAttributeField()
default java.lang.String getIssuer()
default java.lang.String getSecretManagerArn()
default java.lang.String getUrl()
default java.lang.String getUserNameAttributeField()
static CfnIndex.JwtTokenTypeConfigurationProperty.Builder builder()