Interface CfnTemplate.PrivateKeyFlagsV4Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.PrivateKeyFlagsV4Property.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.PrivateKeyFlagsV4Property
extends software.amazon.jsii.JsiiSerializable
Private key flags for v4 templates specify the client compatibility, if the private key can be exported, if user input is required when using a private key, if an alternate signature algorithm should be used, and if certificates are renewed using the same 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.*;
PrivateKeyFlagsV4Property privateKeyFlagsV4Property = PrivateKeyFlagsV4Property.builder()
.clientVersion("clientVersion")
// the properties below are optional
.exportableKey(false)
.requireAlternateSignatureAlgorithm(false)
.requireSameKeyRenewal(false)
.strongKeyProtectionRequired(false)
.useLegacyProvider(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.PrivateKeyFlagsV4Propertystatic final classAn implementation forCfnTemplate.PrivateKeyFlagsV4Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Defines the minimum client compatibility.default ObjectAllows the private key to be exported.default ObjectRequires the PKCS #1 v2.1 signature format for certificates.default ObjectRenew certificate using the same private key.default ObjectRequire user input when using the private key for enrollment.default ObjectSpecifies the cryptographic service provider category used to generate private keys.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientVersion
Defines the minimum client compatibility.- See Also:
-
getExportableKey
Allows the private key to be exported.Returns union: either
BooleanorIResolvable- See Also:
-
getRequireAlternateSignatureAlgorithm
Requires the PKCS #1 v2.1 signature format for certificates. You should verify that your CA, objects, and applications can accept this signature format.Returns union: either
BooleanorIResolvable- See Also:
-
getRequireSameKeyRenewal
Renew certificate using the same private key.Returns union: either
BooleanorIResolvable- See Also:
-
getStrongKeyProtectionRequired
Require user input when using the private key for enrollment.Returns union: either
BooleanorIResolvable- See Also:
-
getUseLegacyProvider
Specifies the cryptographic service provider category used to generate private keys.Set to TRUE to use Legacy Cryptographic Service Providers and FALSE to use Key Storage Providers.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
-