public static interface CfnCertificateAuthority.AccessMethodProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCertificateAuthority.AccessMethodProperty.Builder
A builder for
CfnCertificateAuthority.AccessMethodProperty |
static class |
CfnCertificateAuthority.AccessMethodProperty.Jsii$Proxy
An implementation for
CfnCertificateAuthority.AccessMethodProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCertificateAuthority.AccessMethodProperty.Builder |
builder() |
default java.lang.String |
getAccessMethodType()
Specifies the `AccessMethod` .
|
default java.lang.String |
getCustomObjectIdentifier()
An object identifier (OID) specifying the `AccessMethod` .
|
default java.lang.String getAccessMethodType()
default java.lang.String getCustomObjectIdentifier()
The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID) .
static CfnCertificateAuthority.AccessMethodProperty.Builder builder()