interface CustomAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ACMPCA.CfnCertificateAuthority.CustomAttributeProperty |
Java | software.amazon.awscdk.services.acmpca.CfnCertificateAuthority.CustomAttributeProperty |
Python | aws_cdk.aws_acmpca.CfnCertificateAuthority.CustomAttributeProperty |
TypeScript | @aws-cdk/aws-acmpca » CfnCertificateAuthority » CustomAttributeProperty |
Defines the X.500 relative distinguished name (RDN).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as acmpca from '@aws-cdk/aws-acmpca';
const customAttributeProperty: acmpca.CfnCertificateAuthority.CustomAttributeProperty = {
objectIdentifier: 'objectIdentifier',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| object | string | Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN). |
| value | string | Specifies the attribute value of relative distinguished name (RDN). |
objectIdentifier
Type:
string
Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN).
value
Type:
string
Specifies the attribute value of relative distinguished name (RDN).

.NET
Java
Python
TypeScript