Interface CfnCertificate.CustomExtensionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCertificate.CustomExtensionProperty.Jsii$Proxy
Enclosing class:
CfnCertificate

@Stability(Stable) public static interface CfnCertificate.CustomExtensionProperty extends software.amazon.jsii.JsiiSerializable
Specifies the X.509 extension information for a certificate.

Extensions present in CustomExtensions follow the ApiPassthrough template rules .

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.acmpca.*;
 CustomExtensionProperty customExtensionProperty = CustomExtensionProperty.builder()
         .objectIdentifier("objectIdentifier")
         .value("value")
         // the properties below are optional
         .critical(false)
         .build();
 

See Also: