Interface CfnCertificate.ExtendedKeyUsageProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificate.ExtendedKeyUsageProperty.Jsii$Proxy
- Enclosing class:
CfnCertificate
@Stability(Stable)
public static interface CfnCertificate.ExtendedKeyUsageProperty
extends software.amazon.jsii.JsiiSerializable
Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the `KeyUsage` extension.
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.*; ExtendedKeyUsageProperty extendedKeyUsageProperty = ExtendedKeyUsageProperty.builder() .extendedKeyUsageObjectIdentifier("extendedKeyUsageObjectIdentifier") .extendedKeyUsageType("extendedKeyUsageType") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCertificate.ExtendedKeyUsageProperty
static final class
An implementation forCfnCertificate.ExtendedKeyUsageProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Specifies a custom `ExtendedKeyUsage` with an object identifier (OID).default String
Specifies a standard `ExtendedKeyUsage` as defined as in [RFC 5280](https://docs.aws.amazon.com/https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12) .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExtendedKeyUsageObjectIdentifier
Specifies a custom `ExtendedKeyUsage` with an object identifier (OID). -
getExtendedKeyUsageType
Specifies a standard `ExtendedKeyUsage` as defined as in [RFC 5280](https://docs.aws.amazon.com/https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.12) . -
builder
-