interface JwtValidationActionAdditionalClaimProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListenerRule.JwtValidationActionAdditionalClaimProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListenerRule_JwtValidationActionAdditionalClaimProperty |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListenerRule.JwtValidationActionAdditionalClaimProperty |
Python | aws_cdk.aws_elasticloadbalancingv2.CfnListenerRule.JwtValidationActionAdditionalClaimProperty |
TypeScript | aws-cdk-lib » aws_elasticloadbalancingv2 » CfnListenerRule » JwtValidationActionAdditionalClaimProperty |
Information about an additional claim to validate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const jwtValidationActionAdditionalClaimProperty: elbv2.CfnListenerRule.JwtValidationActionAdditionalClaimProperty = {
format: 'format',
name: 'name',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| format | string | The format of the claim value. |
| name | string | The name of the claim. |
| values | string[] | The claim value. |
format
Type:
string
The format of the claim value.
name
Type:
string
The name of the claim.
You can't specify exp , iss , nbf , or iat because we validate them by default.
values
Type:
string[]
The claim value.
The maximum size of the list is 10. Each value can be up to 256 characters in length. If the format is space-separated-values , the values can't include spaces.

.NET
Go
Java
Python
TypeScript