interface AccessMethodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ACMPCA.CfnCertificateAuthorityPropsMixin.AccessMethodProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsacmpca#CfnCertificateAuthorityPropsMixin_AccessMethodProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.acmpca.CfnCertificateAuthorityPropsMixin.AccessMethodProperty |
Python | aws_cdk.cfn_property_mixins.aws_acmpca.CfnCertificateAuthorityPropsMixin.AccessMethodProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_acmpca » CfnCertificateAuthorityPropsMixin » AccessMethodProperty |
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 { aws_acmpca as acmpca } from '@aws-cdk/cfn-property-mixins';
const accessMethodProperty: acmpca.CfnCertificateAuthorityPropsMixin.AccessMethodProperty = {
accessMethodType: 'accessMethodType',
customObjectIdentifier: 'customObjectIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | Specifies the AccessMethod . |
| custom | string | An object identifier (OID) specifying the AccessMethod . |
accessMethodType?
Type:
string
(optional)
Specifies the AccessMethod .
customObjectIdentifier?
Type:
string
(optional)
An object identifier (OID) specifying the AccessMethod .
The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID) .

.NET
Go
Java
Python
TypeScript