interface PrivateKeyAttributesV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnTemplatePropsMixin_PrivateKeyAttributesV2Property |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnTemplatePropsMixin » PrivateKeyAttributesV2Property |
Defines the attributes of the 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 privateKeyAttributesV2Property: pcaconnectorad_mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property = {
cryptoProviders: ['cryptoProviders'],
keySpec: 'keySpec',
minimalKeyLength: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| crypto | string[] | Defines the cryptographic providers used to generate the private key. |
| key | string | Defines the purpose of the private key. |
| minimal | number | Set the minimum key length of the private key. |
cryptoProviders?
Type:
string[]
(optional)
Defines the cryptographic providers used to generate the private key.
keySpec?
Type:
string
(optional)
Defines the purpose of the private key.
Set it to "KEY_EXCHANGE" or "SIGNATURE" value.
minimalKeyLength?
Type:
number
(optional)
Set the minimum key length of the private key.

.NET
Go
Java
Python
TypeScript