interface RequiredClaimProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EKS.CfnIdentityProviderConfig.RequiredClaimProperty | 
|  Java | software.amazon.awscdk.services.eks.CfnIdentityProviderConfig.RequiredClaimProperty | 
|  Python | aws_cdk.aws_eks.CfnIdentityProviderConfig.RequiredClaimProperty | 
|  TypeScript | @aws-cdk/aws-eks»CfnIdentityProviderConfig»RequiredClaimProperty | 
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 * as eks from '@aws-cdk/aws-eks';
const requiredClaimProperty: eks.CfnIdentityProviderConfig.RequiredClaimProperty = {
  key: 'key',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| key | string | The key to match from the token. | 
| value | string | The value for the key from the token. | 
key
Type:
string
The key to match from the token.
value
Type:
string
The value for the key from the token.
