Class CfnCertificateAuthority.CustomAttributeProperty
Defines the X.500 relative distinguished name (RDN).
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ACMPCA
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCertificateAuthority.CustomAttributeProperty : CfnCertificateAuthority.ICustomAttributeProperty
Syntax (vb)
Public Class CfnCertificateAuthority.CustomAttributeProperty Implements CfnCertificateAuthority.ICustomAttributeProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ACMPCA;
var customAttributeProperty = new CustomAttributeProperty {
ObjectIdentifier = "objectIdentifier",
Value = "value"
};
Synopsis
Constructors
CustomAttributeProperty() | Defines the X.500 relative distinguished name (RDN). |
Properties
ObjectIdentifier | Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN). |
Value | Specifies the attribute value of relative distinguished name (RDN). |
Constructors
CustomAttributeProperty()
Defines the X.500 relative distinguished name (RDN).
public CustomAttributeProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ACMPCA;
var customAttributeProperty = new CustomAttributeProperty {
ObjectIdentifier = "objectIdentifier",
Value = "value"
};
Properties
ObjectIdentifier
Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN).
public string ObjectIdentifier { get; set; }
Property Value
Remarks
Value
Specifies the attribute value of relative distinguished name (RDN).
public string Value { get; set; }