Class CfnListenerRule.JwtValidationActionAdditionalClaimProperty
Information about an additional claim to validate.
Inherited Members
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnListenerRule.JwtValidationActionAdditionalClaimProperty : CfnListenerRule.IJwtValidationActionAdditionalClaimProperty
Syntax (vb)
Public Class CfnListenerRule.JwtValidationActionAdditionalClaimProperty Implements CfnListenerRule.IJwtValidationActionAdditionalClaimProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;
var jwtValidationActionAdditionalClaimProperty = new JwtValidationActionAdditionalClaimProperty {
Format = "format",
Name = "name",
Values = new [] { "values" }
};
Synopsis
Constructors
| JwtValidationActionAdditionalClaimProperty() | Information about an additional claim to validate. |
Properties
| Format | The format of the claim value. |
| Name | The name of the claim. |
| Values | The claim value. |
Constructors
JwtValidationActionAdditionalClaimProperty()
Information about an additional claim to validate.
public JwtValidationActionAdditionalClaimProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;
var jwtValidationActionAdditionalClaimProperty = new JwtValidationActionAdditionalClaimProperty {
Format = "format",
Name = "name",
Values = new [] { "values" }
};
Properties
Format
The format of the claim value.
public string Format { get; set; }
Property Value
Remarks
Name
The name of the claim.
public string Name { get; set; }
Property Value
Remarks
You can't specify exp , iss , nbf , or iat because we validate them by default.
Values
The claim value.
public string[] Values { get; set; }
Property Value
string[]
Remarks
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.