interface AuthorizerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnRuntimePropsMixin.AuthorizerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnRuntimePropsMixin_AuthorizerConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnRuntimePropsMixin.AuthorizerConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimePropsMixin.AuthorizerConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnRuntimePropsMixin » 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 { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const authorizerConfigurationProperty: bedrockagentcore_mixins.CfnRuntimePropsMixin.AuthorizerConfigurationProperty = {
customJwtAuthorizer: {
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
discoveryUrl: 'discoveryUrl',
},
};
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