interface CustomClaimValidationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryPropsMixin.CustomClaimValidationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryPropsMixin_CustomClaimValidationTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryPropsMixin.CustomClaimValidationTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryPropsMixin.CustomClaimValidationTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryPropsMixin » 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/cfn-property-mixins';
const customClaimValidationTypeProperty: agentregistry.CfnRegistryPropsMixin.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
(optional)
The value and match operator used to authorize a claim during JWT validation.
inboundTokenClaimName?
Type:
string
(optional)
inboundTokenClaimValueType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript