Interface CfnIdentityProviderConfig.RequiredClaimProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentityProviderConfig.RequiredClaimProperty.Jsii$Proxy
Enclosing class:
CfnIdentityProviderConfig

@Stability(Stable) public static interface CfnIdentityProviderConfig.RequiredClaimProperty extends software.amazon.jsii.JsiiSerializable
A key-value pair that describes a required claim in the identity token.

If set, each claim is verified to be present in the token with a matching value.

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.eks.legacy.*;
 RequiredClaimProperty requiredClaimProperty = RequiredClaimProperty.builder()
         .key("key")
         .value("value")
         .build();