interface PrivateKeyFlagsV3Property
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_pcaconnectorad.CfnTemplate.PrivateKeyFlagsV3Property |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorad#CfnTemplate_PrivateKeyFlagsV3Property |
Java | software.amazon.awscdk.services.pcaconnectorad.CfnTemplate.PrivateKeyFlagsV3Property |
Python | aws_cdk.aws_pcaconnectorad.CfnTemplate.PrivateKeyFlagsV3Property |
TypeScript | aws-cdk-lib » aws_pcaconnectorad » CfnTemplate » PrivateKeyFlagsV3Property |
Private key flags for v3 templates specify the client compatibility, if the private key can be exported, if user input is required when using a private key, and if an alternate signature algorithm should be used.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorad as pcaconnectorad } from 'aws-cdk-lib';
const privateKeyFlagsV3Property: pcaconnectorad.CfnTemplate.PrivateKeyFlagsV3Property = {
clientVersion: 'clientVersion',
// the properties below are optional
exportableKey: false,
requireAlternateSignatureAlgorithm: false,
strongKeyProtectionRequired: false,
};
Properties
Name | Type | Description |
---|---|---|
client | string | Defines the minimum client compatibility. |
exportable | boolean | IResolvable | Allows the private key to be exported. |
require | boolean | IResolvable | Reguires the PKCS #1 v2.1 signature format for certificates. You should verify that your CA, objects, and applications can accept this signature format. |
strong | boolean | IResolvable | Requirer user input when using the private key for enrollment. |
clientVersion
Type:
string
Defines the minimum client compatibility.
exportableKey?
Type:
boolean |
IResolvable
(optional)
Allows the private key to be exported.
requireAlternateSignatureAlgorithm?
Type:
boolean |
IResolvable
(optional)
Reguires the PKCS #1 v2.1 signature format for certificates. You should verify that your CA, objects, and applications can accept this signature format.
strongKeyProtectionRequired?
Type:
boolean |
IResolvable
(optional)
Requirer user input when using the private key for enrollment.