interface CustomAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ACMPCA.Mixins.CfnCertificateAuthorityPropsMixin.CustomAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsacmpca/mixins#CfnCertificateAuthorityPropsMixin_CustomAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.acmpca.mixins.CfnCertificateAuthorityPropsMixin.CustomAttributeProperty |
Python | aws_cdk.mixins_preview.aws_acmpca.mixins.CfnCertificateAuthorityPropsMixin.CustomAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_acmpca » mixins » CfnCertificateAuthorityPropsMixin » 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 { mixins as acmpca_mixins } from '@aws-cdk/mixins-preview/aws-acmpca';
const customAttributeProperty: acmpca_mixins.CfnCertificateAuthorityPropsMixin.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
(optional)
Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN).
value?
Type:
string
(optional)
Specifies the attribute value of relative distinguished name (RDN).

.NET
Go
Java
Python
TypeScript