aws-cdk-lib.aws_eks.CfnIdentityProviderConfig.RequiredClaimProperty

interface RequiredClaimProperty

LanguageType name
.NETAmazon.CDK.AWS.EKS.CfnIdentityProviderConfig.RequiredClaimProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnIdentityProviderConfig_RequiredClaimProperty
Javasoftware.amazon.awscdk.services.eks.CfnIdentityProviderConfig.RequiredClaimProperty
Pythonaws_cdk.aws_eks.CfnIdentityProviderConfig.RequiredClaimProperty
TypeScript aws-cdk-lib » 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 { aws_eks as eks } from 'aws-cdk-lib';
const requiredClaimProperty: eks.CfnIdentityProviderConfig.RequiredClaimProperty = {
  key: 'key',
  value: 'value',
};

Properties

NameTypeDescription
keystringThe key to match from the token.
valuestringThe 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.