interface AuthorizingClaimMatchValueTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryPropsMixin.AuthorizingClaimMatchValueTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryPropsMixin_AuthorizingClaimMatchValueTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryPropsMixin.AuthorizingClaimMatchValueTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryPropsMixin.AuthorizingClaimMatchValueTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryPropsMixin » 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/cfn-property-mixins';
const authorizingClaimMatchValueTypeProperty: agentregistry.CfnRegistryPropsMixin.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
(optional)
claimMatchValue?
Type:
IResolvable | Claim
(optional)
The expected value used to match a claim.
Exactly one member is set.

.NET
Go
Java
Python
TypeScript