interface PrivateKeyAttributesV4Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV4Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnTemplatePropsMixin_PrivateKeyAttributesV4Property |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV4Property |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV4Property |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnTemplatePropsMixin » PrivateKeyAttributesV4Property |
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 privateKeyAttributesV4Property: pcaconnectorad_mixins.CfnTemplatePropsMixin.PrivateKeyAttributesV4Property = {
algorithm: 'algorithm',
cryptoProviders: ['cryptoProviders'],
keySpec: 'keySpec',
keyUsageProperty: {
propertyFlags: {
decrypt: false,
keyAgreement: false,
sign: false,
},
propertyType: 'propertyType',
},
minimalKeyLength: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| algorithm? | string | Defines the algorithm used to generate the private key. |
| crypto | string[] | Defines the cryptographic providers used to generate the private key. |
| key | string | Defines the purpose of the private key. |
| key | IResolvable | Key | The key usage property defines the purpose of the private key contained in the certificate. |
| minimal | number | Set the minimum key length of the private key. |
algorithm?
Type:
string
(optional)
Defines the algorithm used to generate 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.
keyUsageProperty?
Type:
IResolvable | Key
(optional)
The key usage property defines the purpose of the private key contained in the certificate.
You can specify specific purposes using property flags or all by using property type ALL.
minimalKeyLength?
Type:
number
(optional)
Set the minimum key length of the private key.

.NET
Go
Java
Python
TypeScript