Interface CfnRuntime.CustomClaimValidationTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuntime.CustomClaimValidationTypeProperty.Jsii$Proxy
Enclosing class:
CfnRuntime

@Stability(Stable) public static interface CfnRuntime.CustomClaimValidationTypeProperty extends software.amazon.jsii.JsiiSerializable
Required custom claim.

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.bedrockagentcore.*;
 CustomClaimValidationTypeProperty customClaimValidationTypeProperty = CustomClaimValidationTypeProperty.builder()
         .authorizingClaimMatchValue(AuthorizingClaimMatchValueTypeProperty.builder()
                 .claimMatchOperator("claimMatchOperator")
                 .claimMatchValue(ClaimMatchValueTypeProperty.builder()
                         .matchValueString("matchValueString")
                         .matchValueStringList(List.of("matchValueStringList"))
                         .build())
                 .build())
         .inboundTokenClaimName("inboundTokenClaimName")
         .inboundTokenClaimValueType("inboundTokenClaimValueType")
         .build();
 

See Also: