Interface CfnCertificateAuthority.AccessMethodProperty

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

@Stability(Stable) public static interface CfnCertificateAuthority.AccessMethodProperty extends software.amazon.jsii.JsiiSerializable
Describes the type and format of extension access.

Only one of CustomObjectIdentifier or AccessMethodType may be provided. Providing both results in InvalidArgsException .

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.*;
 AccessMethodProperty accessMethodProperty = AccessMethodProperty.builder()
         .accessMethodType("accessMethodType")
         .customObjectIdentifier("customObjectIdentifier")
         .build();
 

See Also: