interface CustomJWTAuthorizerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayPropsMixin.CustomJWTAuthorizerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayPropsMixin_CustomJWTAuthorizerConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayPropsMixin.CustomJWTAuthorizerConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayPropsMixin.CustomJWTAuthorizerConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayPropsMixin » CustomJWTAuthorizerConfigurationProperty |
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 customJWTAuthorizerConfigurationProperty: bedrockagentcore_mixins.CfnGatewayPropsMixin.CustomJWTAuthorizerConfigurationProperty = {
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
discoveryUrl: 'discoveryUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | The allowed audience authorized for the gateway target. |
| allowed | string[] | |
| discovery | string | The discovery URL for the authorizer configuration. |
allowedAudience?
Type:
string[]
(optional)
The allowed audience authorized for the gateway target.
allowedClients?
Type:
string[]
(optional)
discoveryUrl?
Type:
string
(optional)
The discovery URL for the authorizer configuration.

.NET
Go
Java
Python
TypeScript