Interface CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty.Jsii$Proxy
Enclosing class:
CfnOAuth2CredentialProviderPropsMixin

@Stability(Stable) public static interface CfnOAuth2CredentialProviderPropsMixin.PrivateKeySourceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
 PrivateKeySourceProperty privateKeySourceProperty = PrivateKeySourceProperty.builder()
         .kmsKeySource(KmsKeySourceTypeProperty.builder()
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .build();
 

See Also: