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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuntime.AuthorizingClaimMatchValueTypePropertystatic final classAn implementation forCfnRuntime.AuthorizingClaimMatchValueTypeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The relationship between the claim field value and the value or values being matched.The value or values in the custom claim to match for.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClaimMatchOperator
The relationship between the claim field value and the value or values being matched.- See Also:
-
getClaimMatchValue
The value or values in the custom claim to match for.Returns union: either
IResolvableorCfnRuntime.ClaimMatchValueTypeProperty- See Also:
-
builder
-