interface RequiredClaimProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnIdentityProviderConfigPropsMixin_RequiredClaimProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » 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 { aws_eks as eks } from '@aws-cdk/cfn-property-mixins';
const requiredClaimProperty: eks.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