interface AccessDescriptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ACMPCA.CfnCertificateAuthorityPropsMixin.AccessDescriptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsacmpca#CfnCertificateAuthorityPropsMixin_AccessDescriptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.acmpca.CfnCertificateAuthorityPropsMixin.AccessDescriptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_acmpca.CfnCertificateAuthorityPropsMixin.AccessDescriptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_acmpca » CfnCertificateAuthorityPropsMixin » AccessDescriptionProperty |
Provides access information used by the authorityInfoAccess and subjectInfoAccess extensions described in RFC 5280 .
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 accessDescriptionProperty: acmpca.CfnCertificateAuthorityPropsMixin.AccessDescriptionProperty = {
accessLocation: {
directoryName: {
commonName: 'commonName',
country: 'country',
customAttributes: [{
objectIdentifier: 'objectIdentifier',
value: 'value',
}],
distinguishedNameQualifier: 'distinguishedNameQualifier',
generationQualifier: 'generationQualifier',
givenName: 'givenName',
initials: 'initials',
locality: 'locality',
organization: 'organization',
organizationalUnit: 'organizationalUnit',
pseudonym: 'pseudonym',
serialNumber: 'serialNumber',
state: 'state',
surname: 'surname',
title: 'title',
},
dnsName: 'dnsName',
ediPartyName: {
nameAssigner: 'nameAssigner',
partyName: 'partyName',
},
ipAddress: 'ipAddress',
otherName: {
typeId: 'typeId',
value: 'value',
},
registeredId: 'registeredId',
rfc822Name: 'rfc822Name',
uniformResourceIdentifier: 'uniformResourceIdentifier',
},
accessMethod: {
accessMethodType: 'accessMethodType',
customObjectIdentifier: 'customObjectIdentifier',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | IResolvable | General | The location of AccessDescription information. |
| access | IResolvable | Access | The type and format of AccessDescription information. |
accessLocation?
Type:
IResolvable | General
(optional)
The location of AccessDescription information.
accessMethod?
Type:
IResolvable | Access
(optional)
The type and format of AccessDescription information.

.NET
Go
Java
Python
TypeScript