Interface CfnTemplatePropsMixin.PrivateKeyAttributesV3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.PrivateKeyAttributesV3Property.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.PrivateKeyAttributesV3Property
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.*;
PrivateKeyAttributesV3Property privateKeyAttributesV3Property = PrivateKeyAttributesV3Property.builder()
.algorithm("algorithm")
.cryptoProviders(List.of("cryptoProviders"))
.keySpec("keySpec")
.keyUsageProperty(KeyUsagePropertyProperty.builder()
.propertyFlags(KeyUsagePropertyFlagsProperty.builder()
.decrypt(false)
.keyAgreement(false)
.sign(false)
.build())
.propertyType("propertyType")
.build())
.minimalKeyLength(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.PrivateKeyAttributesV3Propertystatic final classAn implementation forCfnTemplatePropsMixin.PrivateKeyAttributesV3Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringDefines the algorithm used to generate the private key.Defines the cryptographic providers used to generate the private key.default StringDefines the purpose of the private key.default ObjectThe key usage property defines the purpose of the private key contained in the certificate.default NumberSet the minimum key length of the private key.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlgorithm
Defines the algorithm used to generate the private key.- See Also:
-
getCryptoProviders
Defines the cryptographic providers used to generate the private key.- See Also:
-
getKeySpec
Defines the purpose of the private key.Set it to "KEY_EXCHANGE" or "SIGNATURE" value.
- See Also:
-
getKeyUsageProperty
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.
Returns union: either
IResolvableorCfnTemplatePropsMixin.KeyUsagePropertyProperty- See Also:
-
getMinimalKeyLength
Set the minimum key length of the private key.- See Also:
-
builder
-