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