Interface CfnListenerRule.JwtValidationActionAdditionalClaimProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnListenerRule.JwtValidationActionAdditionalClaimProperty.Jsii$Proxy
- Enclosing class:
CfnListenerRule
@Stability(Stable)
public static interface CfnListenerRule.JwtValidationActionAdditionalClaimProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.elasticloadbalancingv2.*;
JwtValidationActionAdditionalClaimProperty jwtValidationActionAdditionalClaimProperty = JwtValidationActionAdditionalClaimProperty.builder()
.format("format")
.name("name")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnListenerRule.JwtValidationActionAdditionalClaimProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFormat
The format of the claim value.- See Also:
-
getName
The name of the claim.You can't specify
exp,iss,nbf, oriatbecause we validate them by default.- See Also:
-
getValues
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.- See Also:
-
builder
@Stability(Stable) static CfnListenerRule.JwtValidationActionAdditionalClaimProperty.Builder builder()
-