interface DiscoveryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistry.DiscoveryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistry_DiscoveryConfigurationProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistry.DiscoveryConfigurationProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistry.DiscoveryConfigurationProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistry » DiscoveryConfigurationProperty |
Discovery configuration for the registry.
Controls how consumers are authorized to search the registry and invoke its MCP endpoint.
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 discoveryConfigurationProperty: agentregistry.CfnRegistry.DiscoveryConfigurationProperty = {
authorizerConfiguration: {
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',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| authorizer | IResolvable | Authorizer | The authorizer configuration for the registry. |
authorizerConfiguration?
Type:
IResolvable | Authorizer
(optional)
The authorizer configuration for the registry.
This is a union - specify exactly one member.

.NET
Go
Java
Python
TypeScript