This is the new CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::BedrockAgentCore::Gateway CustomClaimValidationType
Defines the name of a custom claim field and rules for finding matches to authenticate its value.
Syntax
To declare this entity in your CloudFormation template, use the following syntax:
JSON
{ "AuthorizingClaimMatchValue" :AuthorizingClaimMatchValueType, "InboundTokenClaimName" :String, "InboundTokenClaimValueType" :String}
YAML
AuthorizingClaimMatchValue:AuthorizingClaimMatchValueTypeInboundTokenClaimName:StringInboundTokenClaimValueType:String
Properties
-
Defines the value or values to match for and the relationship of the match.
Required: Yes
Type: AuthorizingClaimMatchValueType
Update requires: No interruption
InboundTokenClaimName-
The name of the custom claim field to check.
Required: Yes
Type: String
Pattern:
[A-Za-z0-9_.-:]+Update requires: No interruption
InboundTokenClaimValueType-
The data type of the claim value to check for.
-
Use
STRINGif you want to find an exact match to a string you define. -
Use
STRING_ARRAYif you want to fnd a match to at least one value in an array you define.
Required: Yes
Type: String
Allowed values:
STRING | STRING_ARRAYUpdate requires: No interruption
-