interface CustomClaimValidationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistry.CustomClaimValidationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistry_CustomClaimValidationTypeProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistry.CustomClaimValidationTypeProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistry.CustomClaimValidationTypeProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistry » CustomClaimValidationTypeProperty |
A validation rule applied to a single claim of an inbound JWT.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_agentregistry as agentregistry } from 'aws-cdk-lib';
const customClaimValidationTypeProperty: agentregistry.CfnRegistry.CustomClaimValidationTypeProperty = {
authorizingClaimMatchValue: {
claimMatchOperator: 'claimMatchOperator',
claimMatchValue: {
matchValueString: 'matchValueString',
matchValueStringList: ['matchValueStringList'],
},
},
inboundTokenClaimName: 'inboundTokenClaimName',
inboundTokenClaimValueType: 'inboundTokenClaimValueType',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorizing | IResolvable | Authorizing | The value and match operator used to authorize a claim during JWT validation. |
| inbound | string | |
| inbound | string |
authorizingClaimMatchValue
Type:
IResolvable | Authorizing
The value and match operator used to authorize a claim during JWT validation.
inboundTokenClaimName
Type:
string
inboundTokenClaimValueType
Type:
string

.NET
Go
Java
Python
TypeScript