interface AuthorizerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.AuthorizerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_AuthorizerConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.AuthorizerConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.AuthorizerConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » AuthorizerConfigurationProperty |
The authorizer configuration.
Example
// 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.CfnRuntime.AuthorizerConfigurationProperty = {
customJwtAuthorizer: {
discoveryUrl: 'discoveryUrl',
// the properties below are optional
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | Custom | Represents inbound authorization configuration options used to authenticate incoming requests. |
customJwtAuthorizer?
Type:
IResolvable | Custom
(optional)
Represents inbound authorization configuration options used to authenticate incoming requests.

.NET
Go
Java
Python
TypeScript