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();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCertificateAuthority.AccessMethodPropertystatic final classAn implementation forCfnCertificateAuthority.AccessMethodProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getAccessMethodType
Specifies theAccessMethod. - 
getCustomObjectIdentifier
An object identifier (OID) specifying theAccessMethod.The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID) .
 - 
builder
 
 -