interface AccessMethodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ACMPCA.Mixins.CfnCertificateAuthorityPropsMixin.AccessMethodProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsacmpca/mixins#CfnCertificateAuthorityPropsMixin_AccessMethodProperty |
Java | software.amazon.awscdk.mixins.preview.services.acmpca.mixins.CfnCertificateAuthorityPropsMixin.AccessMethodProperty |
Python | aws_cdk.mixins_preview.aws_acmpca.mixins.CfnCertificateAuthorityPropsMixin.AccessMethodProperty |
TypeScript | @aws-cdk/mixins-preview » aws_acmpca » mixins » 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 { mixins as acmpca_mixins } from '@aws-cdk/mixins-preview/aws-acmpca';
const accessMethodProperty: acmpca_mixins.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