interface CustomJWTAuthorizerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.CustomJWTAuthorizerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_CustomJWTAuthorizerConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.CustomJWTAuthorizerConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.CustomJWTAuthorizerConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » 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.CfnHarness.CustomJWTAuthorizerConfigurationProperty = {
discoveryUrl: 'discoveryUrl',
// the properties below are optional
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
allowedScopes: ['allowedScopes'],
customClaims: [{
authorizingClaimMatchValue: {
claimMatchOperator: 'claimMatchOperator',
claimMatchValue: {
matchValueString: 'matchValueString',
matchValueStringList: ['matchValueStringList'],
},
},
inboundTokenClaimName: 'inboundTokenClaimName',
inboundTokenClaimValueType: 'inboundTokenClaimValueType',
}],
privateEndpoint: {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
subnetIds: ['subnetIds'],
vpcIdentifier: 'vpcIdentifier',
// the properties below are optional
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
tags: {
tagsKey: 'tags',
},
},
selfManagedLatticeResource: {
resourceConfigurationIdentifier: 'resourceConfigurationIdentifier',
},
},
privateEndpointOverrides: [{
domain: 'domain',
privateEndpoint: {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
subnetIds: ['subnetIds'],
vpcIdentifier: 'vpcIdentifier',
// the properties below are optional
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
tags: {
tagsKey: 'tags',
},
},
selfManagedLatticeResource: {
resourceConfigurationIdentifier: 'resourceConfigurationIdentifier',
},
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| discovery | string | |
| allowed | string[] | |
| allowed | string[] | |
| allowed | string[] | |
| custom | IResolvable | (IResolvable | Custom)[] | |
| private | IResolvable | Private | Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network. |
| private | IResolvable | (IResolvable | Private)[] |
discoveryUrl
Type:
string
allowedAudience?
Type:
string[]
(optional)
allowedClients?
Type:
string[]
(optional)
allowedScopes?
Type:
string[]
(optional)
customClaims?
Type:
IResolvable | (IResolvable | Custom)[]
(optional)
privateEndpoint?
Type:
IResolvable | Private
(optional)
Private endpoint configuration for connecting to the OpenID Connect discovery endpoint over a private network.
privateEndpointOverrides?
Type:
IResolvable | (IResolvable | Private)[]
(optional)

.NET
Go
Java
Python
TypeScript