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();
 

See Also: