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