@Stability(value=Stable)
public static interface CfnCertificate.CustomExtensionProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCertificate.CustomExtensionProperty.Builder
A builder for
CfnCertificate.CustomExtensionProperty |
static class |
CfnCertificate.CustomExtensionProperty.Jsii$Proxy
An implementation for
CfnCertificate.CustomExtensionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCertificate.CustomExtensionProperty.Builder |
builder() |
default Object |
getCritical()
Specifies the critical flag of the X.509 extension.
|
String |
getObjectIdentifier()
Specifies the object identifier (OID) of the X.509 extension.
|
String |
getValue()
Specifies the base64-encoded value of the X.509 extension.
|
@Stability(value=Stable) @NotNull String getObjectIdentifier()
@Stability(value=Stable) @NotNull String getValue()
@Stability(value=Stable) @Nullable default Object getCritical()
@Stability(value=Stable) static CfnCertificate.CustomExtensionProperty.Builder builder()
Copyright © 2022. All rights reserved.