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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCertificate.CustomExtensionProperty
static final class
An implementation forCfnCertificate.CustomExtensionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getObjectIdentifier
Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database..- See Also:
-
getValue
Specifies the base64-encoded value of the X.509 extension.- See Also:
-
getCritical
Specifies the critical flag of the X.509 extension.- See Also:
-
builder
-