interface CustomAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ACMPCA.CfnCertificateAuthorityPropsMixin.CustomAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsacmpca#CfnCertificateAuthorityPropsMixin_CustomAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.acmpca.CfnCertificateAuthorityPropsMixin.CustomAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_acmpca.CfnCertificateAuthorityPropsMixin.CustomAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_acmpca » 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 { aws_acmpca as acmpca } from '@aws-cdk/cfn-property-mixins';
const customAttributeProperty: acmpca.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