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.*; RequiredClaimProperty requiredClaimProperty = RequiredClaimProperty.builder() .key("key") .value("value") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdentityProviderConfig.RequiredClaimProperty
static final class
An implementation forCfnIdentityProviderConfig.RequiredClaimProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key to match from the token. -
getValue
The value for the key from the token. -
builder
-