interface PrivateKeySourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_PrivateKeySourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » PrivateKeySourceProperty |
Contains the private key source configuration for a JWT client assertion.
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 privateKeySourceProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty = {
kmsKeySource: {
kmsKeyArn: 'kmsKeyArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | IResolvable | Kms | Contains the KMS key configuration for a JWT client assertion. |
kmsKeySource?
Type:
IResolvable | Kms
(optional)
Contains the KMS key configuration for a JWT client assertion.

.NET
Go
Java
Python
TypeScript