interface AuthorizerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGateway.AuthorizerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGateway_AuthorizerConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGateway.AuthorizerConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGateway.AuthorizerConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGateway » AuthorizerConfigurationProperty |
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.CfnGateway.AuthorizerConfigurationProperty = {
customJwtAuthorizer: {
discoveryUrl: 'discoveryUrl',
// the properties below are optional
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | Custom | The authorizer configuration for the gateway. |
customJwtAuthorizer
Type:
IResolvable | Custom
The authorizer configuration for the gateway.

.NET
Go
Java
Python
TypeScript