Interface CfnCertificatePropsMixin.CustomExtensionProperty

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

@Stability(Stable) public static interface CfnCertificatePropsMixin.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.cfnpropertymixins.services.acmpca.*;
 CustomExtensionProperty customExtensionProperty = CustomExtensionProperty.builder()
         .critical(false)
         .objectIdentifier("objectIdentifier")
         .value("value")
         .build();
 

See Also: