// The code below shows an example of how to instantiate this type.// The values are placeholders you should change.import { aws_bedrockagentcore as bedrockagentcore } from'aws-cdk-lib';
const authorizerConfigurationProperty: bedrockagentcore.CfnHarness.AuthorizerConfigurationProperty = {
customJwtAuthorizer: {
discoveryUrl: 'discoveryUrl',
// the properties below are optional
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
allowedScopes: ['allowedScopes'],
customClaims: [{
authorizingClaimMatchValue: {
claimMatchOperator: 'claimMatchOperator',
claimMatchValue: {
matchValueString: 'matchValueString',
matchValueStringList: ['matchValueStringList'],
},
},
inboundTokenClaimName: 'inboundTokenClaimName',
inboundTokenClaimValueType: 'inboundTokenClaimValueType',
}],
},
};