interface RequiredClaimProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnIdentityProviderConfigPropsMixin_RequiredClaimProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnIdentityProviderConfigPropsMixin » 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 { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const requiredClaimProperty: eks_mixins.CfnIdentityProviderConfigPropsMixin.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
(optional)
The key to match from the token.
value?
Type:
string
(optional)
The value for the key from the token.

.NET
Go
Java
Python
TypeScript