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

.NET
Go
Java
Python
TypeScript