Interface CfnTemplate.KeyUsagePropertyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.KeyUsagePropertyProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.KeyUsagePropertyProperty
extends software.amazon.jsii.JsiiSerializable
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.
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.*; KeyUsagePropertyProperty keyUsagePropertyProperty = KeyUsagePropertyProperty.builder() .propertyFlags(KeyUsagePropertyFlagsProperty.builder() .decrypt(false) .keyAgreement(false) .sign(false) .build()) .propertyType("propertyType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.KeyUsagePropertyProperty
static final class
An implementation forCfnTemplate.KeyUsagePropertyProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPropertyFlags
You can specify key usage for encryption, key agreement, and signature.You can use property flags or property type but not both.
- See Also:
-
getPropertyType
You can specify all key usages using property type ALL.You can use property type or property flags but not both.
- See Also:
-
builder
-