interface PrivateKeyAttributesV2Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCAConnectorAD.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcaconnectorad#CfnTemplatePropsMixin_PrivateKeyAttributesV2Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property |
Python | aws_cdk.cfn_property_mixins.aws_pcaconnectorad.CfnTemplatePropsMixin.PrivateKeyAttributesV2Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcaconnectorad » 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 { aws_pcaconnectorad as pcaconnectorad } from '@aws-cdk/cfn-property-mixins';
const privateKeyAttributesV2Property: pcaconnectorad.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