interface AuthorizingClaimMatchValueTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistry.AuthorizingClaimMatchValueTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistry_AuthorizingClaimMatchValueTypeProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistry.AuthorizingClaimMatchValueTypeProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistry.AuthorizingClaimMatchValueTypeProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistry » AuthorizingClaimMatchValueTypeProperty |
The value and match operator used to authorize a claim during JWT validation.
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 authorizingClaimMatchValueTypeProperty: agentregistry.CfnRegistry.AuthorizingClaimMatchValueTypeProperty = {
claimMatchOperator: 'claimMatchOperator',
claimMatchValue: {
matchValueString: 'matchValueString',
matchValueStringList: ['matchValueStringList'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| claim | string | |
| claim | IResolvable | Claim | The expected value used to match a claim. |
claimMatchOperator
Type:
string
claimMatchValue
Type:
IResolvable | Claim
The expected value used to match a claim.
Exactly one member is set.

.NET
Go
Java
Python
TypeScript