interface PrivateKeyFlagsV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCAConnectorAD.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcaconnectorad#CfnTemplatePropsMixin_PrivateKeyFlagsV2Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property |
Python | aws_cdk.cfn_property_mixins.aws_pcaconnectorad.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcaconnectorad » CfnTemplatePropsMixin » PrivateKeyFlagsV2Property |
Private key flags for v2 templates specify the client compatibility, if the private key can be exported, and if user input is required when using a private key.
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/cfn-property-mixins';
const privateKeyFlagsV2Property: pcaconnectorad.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property = {
clientVersion: 'clientVersion',
exportableKey: false,
strongKeyProtectionRequired: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | Defines the minimum client compatibility. |
| exportable | boolean | IResolvable | Allows the private key to be exported. |
| strong | boolean | IResolvable | Require user input when using the private key for enrollment. |
clientVersion?
Type:
string
(optional)
Defines the minimum client compatibility.
exportableKey?
Type:
boolean | IResolvable
(optional)
Allows the private key to be exported.
strongKeyProtectionRequired?
Type:
boolean | IResolvable
(optional)
Require user input when using the private key for enrollment.

.NET
Go
Java
Python
TypeScript