interface PrivateKeyFlagsV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnTemplatePropsMixin_PrivateKeyFlagsV2Property |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnTemplatePropsMixin.PrivateKeyFlagsV2Property |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » 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 { mixins as pcaconnectorad_mixins } from '@aws-cdk/mixins-preview/aws-pcaconnectorad';
const privateKeyFlagsV2Property: pcaconnectorad_mixins.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