interface JwtValidationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.CfnListenerRule.JwtValidationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListenerRule_JwtValidationConfigProperty |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.CfnListenerRule.JwtValidationConfigProperty |
Python | aws_cdk.aws_elasticloadbalancingv2.CfnListenerRule.JwtValidationConfigProperty |
TypeScript | aws-cdk-lib » aws_elasticloadbalancingv2 » CfnListenerRule » JwtValidationConfigProperty |
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 jwtValidationConfigProperty: elbv2.CfnListenerRule.JwtValidationConfigProperty = {
issuer: 'issuer',
jwksEndpoint: 'jwksEndpoint',
// the properties below are optional
additionalClaims: [{
format: 'format',
name: 'name',
values: ['values'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| issuer | string | |
| jwks | string | |
| additional | IResolvable | (IResolvable | Jwt)[] |
issuer
Type:
string
jwksEndpoint
Type:
string
additionalClaims?
Type:
IResolvable | (IResolvable | Jwt)[]
(optional)

.NET
Go
Java
Python
TypeScript