Interface CfnTemplate.PrivateKeyAttributesV2Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.PrivateKeyAttributesV2Property.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.PrivateKeyAttributesV2Property
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.services.pcaconnectorad.*; PrivateKeyAttributesV2Property privateKeyAttributesV2Property = PrivateKeyAttributesV2Property.builder() .keySpec("keySpec") .minimalKeyLength(123) // the properties below are optional .cryptoProviders(List.of("cryptoProviders")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.PrivateKeyAttributesV2Property
static final class
An implementation forCfnTemplate.PrivateKeyAttributesV2Property
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Defines the cryptographic providers used to generate the private key.Defines the purpose of the private key.Set the minimum key length of the private key.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeySpec
Defines the purpose of the private key.Set it to "KEY_EXCHANGE" or "SIGNATURE" value.
- See Also:
-
getMinimalKeyLength
Set the minimum key length of the private key.- See Also:
-
getCryptoProviders
Defines the cryptographic providers used to generate the private key.- See Also:
-
builder
-