interface DistinguishedName
| Language | Type name |
|---|---|
Python | aws_rfdk.DistinguishedName |
TypeScript (source) | aws-rfdk » DistinguishedName |
The identification for a self-signed CA or Certificate.
These fields are industry standard, and can be found in rfc1779 (see: https://tools.ietf.org/html/rfc1779) or the X.520 specification (see: ITU-T Rec.X.520)
Properties
| Name | Type | Description |
|---|---|---|
| cn | string | Common Name for the identity. |
| o? | string | Organization that is creating the identity. |
| ou? | string | Organization Unit that is creating the identity. |
cn
Type:
string
Common Name for the identity.
a) For servers -- The fully qualified domain name (aka: fqdn) of the server. b) For clients, or as a self-signed CA -- Any name you would like to identify the certificate.
o?
Type:
string
(optional, default: : AWS)
Organization that is creating the identity.
For example, your company name.
ou?
Type:
string
(optional, default: : Thinkbox)
Organization Unit that is creating the identity.
For example, the name of your group/unit.

Python
TypeScript (