Interface CfnRuntime.AuthorizingClaimMatchValueTypeProperty

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

@Stability(Stable) public static interface CfnRuntime.AuthorizingClaimMatchValueTypeProperty extends software.amazon.jsii.JsiiSerializable
The value or values in the custom claim to match and relationship of match.

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.*;
 AuthorizingClaimMatchValueTypeProperty authorizingClaimMatchValueTypeProperty = AuthorizingClaimMatchValueTypeProperty.builder()
         .claimMatchOperator("claimMatchOperator")
         .claimMatchValue(ClaimMatchValueTypeProperty.builder()
                 .matchValueString("matchValueString")
                 .matchValueStringList(List.of("matchValueStringList"))
                 .build())
         .build();
 

See Also: